lockdev: Fix build with glibc 2.28+

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2018-08-11 15:21:18 -07:00
parent f92e153135
commit dc34422037
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,30 @@
From 2f39dc3d6f920c0826aa74367da1a0a7cc49b0fe Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 11 Aug 2018 15:18:04 -0700
Subject: [PATCH] include sys/sysmacros.h for major/minor definitions
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
inclusion of <sys/sysmacros.h> by <sys/types.h> is deprecated.
This means that in a future release, the macros “major”, “minor”, and
“makedev” will only be available from <sys/sysmacros.h>.
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/lockdev.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/lockdev.c b/src/lockdev.c
index 9a0fca5..3581938 100644
--- a/src/lockdev.c
+++ b/src/lockdev.c
@@ -117,6 +117,7 @@
#include <sys/stat.h>
#include <sys/file.h>
#include <sys/types.h>
+#include <sys/sysmacros.h>
#include <sys/wait.h>
#include "lockdev.h"
#include "ttylock.h"

View File

@ -6,7 +6,9 @@ LIC_FILES_CHKSUM="file://COPYING;md5=4fbd65380cdd255951079008b364516c"
PV = "1.0.3+git${SRCPV}"
SRCREV = "16b899645d32012cc94cc9232f64d4ddaaf0b795"
SRC_URI = "git://anonscm.debian.org/lockdev/lockdev.git"
SRC_URI = "git://anonscm.debian.org/lockdev/lockdev.git \
file://0001-include-sys-sysmacros.h-for-major-minor-definitions.patch \
"
S = "${WORKDIR}/git"