From: Mike Frysinger Date: Fri, 19 May 2017 17:25:59 +0000 (-0400) Subject: include sys/sysmacros.h as needed X-Git-Tag: v1.43.5~55 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3fb715b55426875902dfef3056b2cf7335953178;p=thirdparty%2Fe2fsprogs.git include sys/sysmacros.h as needed The minor/major/makedev macros are not entirely standard. glibc has had the definitions in sys/sysmacros.h since the start, and wants to move away from always defining them implicitly via sys/types.h (as this pollutes the namespace in violation of POSIX). Other C libraries have already dropped them. Since the configure script already checks for this header, use that to pull in the header in files that use these macros. Signed-off-by: Mike Frysinger Signed-off-by: Theodore Ts'o --- diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index 059ddc39d..453f5b522 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -26,6 +26,9 @@ extern char *optarg; #include #endif #include +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif #include "debugfs.h" #include "uuid/uuid.h" diff --git a/lib/blkid/devname.c b/lib/blkid/devname.c index 3e2efa9d5..671e781f0 100644 --- a/lib/blkid/devname.c +++ b/lib/blkid/devname.c @@ -36,6 +36,9 @@ #if HAVE_SYS_MKDEV_H #include #endif +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif #include #include "blkidP.h" diff --git a/lib/blkid/devno.c b/lib/blkid/devno.c index aa6eb9077..480030f20 100644 --- a/lib/blkid/devno.c +++ b/lib/blkid/devno.c @@ -31,6 +31,9 @@ #if HAVE_SYS_MKDEV_H #include #endif +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif #include "blkidP.h" diff --git a/lib/ext2fs/finddev.c b/lib/ext2fs/finddev.c index 311608de1..62fa0dbe7 100644 --- a/lib/ext2fs/finddev.c +++ b/lib/ext2fs/finddev.c @@ -31,6 +31,9 @@ #if HAVE_SYS_MKDEV_H #include #endif +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif #include "ext2_fs.h" #include "ext2fs.h" diff --git a/lib/ext2fs/ismounted.c b/lib/ext2fs/ismounted.c index bcac0f15a..7d5247155 100644 --- a/lib/ext2fs/ismounted.c +++ b/lib/ext2fs/ismounted.c @@ -49,6 +49,9 @@ #if HAVE_SYS_TYPES_H #include #endif +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif #include "ext2_fs.h" #include "ext2fs.h" diff --git a/misc/create_inode.c b/misc/create_inode.c index ae22ff6fe..8ce3fafaa 100644 --- a/misc/create_inode.c +++ b/misc/create_inode.c @@ -22,6 +22,10 @@ #include #endif #include +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif + #include #include #include diff --git a/misc/mk_hugefiles.c b/misc/mk_hugefiles.c index 049c6f413..5882394df 100644 --- a/misc/mk_hugefiles.c +++ b/misc/mk_hugefiles.c @@ -35,6 +35,9 @@ extern int optind; #include #include #include +#ifdef HAVE_SYS_SYSMACROS_H +#include +#endif #include #include #include