diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2017-02-21 19:55:27 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-01 23:27:07 +0000 |
| commit | 584761577bc819ec45c2c8d86ff8d29748f9a051 (patch) | |
| tree | eb57f69447c10977066a38f754afe563da93e8e3 /meta/recipes-devtools | |
| parent | 3b2d79971f81251a3d4ee467b7144ffd8d937fcc (diff) | |
| download | poky-584761577bc819ec45c2c8d86ff8d29748f9a051.tar.gz | |
e2fsprogs: Fix build with glibc-2.25
(From OE-Core rev: 1e8fc70596e27edca428dd78b8095e6b76aa8e58)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
| -rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs/e2fsprogs-1.43-sysmacros.patch | 130 | ||||
| -rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.4.bb | 1 |
2 files changed, 131 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs/e2fsprogs-1.43-sysmacros.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs/e2fsprogs-1.43-sysmacros.patch new file mode 100644 index 0000000000..abbf2bad26 --- /dev/null +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs/e2fsprogs-1.43-sysmacros.patch | |||
| @@ -0,0 +1,130 @@ | |||
| 1 | From 30ef41f68703b6a16027cc8787118b87f1462dff Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Mike Frysinger <vapier@gentoo.org> | ||
| 3 | Date: Mon, 28 Mar 2016 20:31:33 -0400 | ||
| 4 | Subject: [PATCH e2fsprogs] include sys/sysmacros.h as needed | ||
| 5 | |||
| 6 | The minor/major/makedev macros are not entirely standard. glibc has had | ||
| 7 | the definitions in sys/sysmacros.h since the start, and wants to move away | ||
| 8 | from always defining them implicitly via sys/types.h (as this pollutes the | ||
| 9 | namespace in violation of POSIX). Other C libraries have already dropped | ||
| 10 | them. Since the configure script already checks for this header, use that | ||
| 11 | to pull in the header in files that use these macros. | ||
| 12 | |||
| 13 | Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||
| 14 | |||
| 15 | Taken from gentoo portage. | ||
| 16 | |||
| 17 | Upstream-Status: Pending | ||
| 18 | |||
| 19 | --- | ||
| 20 | debugfs/debugfs.c | 3 +++ | ||
| 21 | lib/blkid/devname.c | 3 +++ | ||
| 22 | lib/blkid/devno.c | 3 +++ | ||
| 23 | lib/ext2fs/finddev.c | 3 +++ | ||
| 24 | lib/ext2fs/ismounted.c | 3 +++ | ||
| 25 | misc/create_inode.c | 4 ++++ | ||
| 26 | misc/mk_hugefiles.c | 3 +++ | ||
| 27 | 7 files changed, 22 insertions(+) | ||
| 28 | |||
| 29 | diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c | ||
| 30 | index ba8be40..7d481bc 100644 | ||
| 31 | --- a/debugfs/debugfs.c | ||
| 32 | +++ b/debugfs/debugfs.c | ||
| 33 | @@ -26,6 +26,9 @@ extern char *optarg; | ||
| 34 | #include <errno.h> | ||
| 35 | #endif | ||
| 36 | #include <fcntl.h> | ||
| 37 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 38 | +#include <sys/sysmacros.h> | ||
| 39 | +#endif | ||
| 40 | |||
| 41 | #include "debugfs.h" | ||
| 42 | #include "uuid/uuid.h" | ||
| 43 | diff --git a/lib/blkid/devname.c b/lib/blkid/devname.c | ||
| 44 | index 3e2efa9..671e781 100644 | ||
| 45 | --- a/lib/blkid/devname.c | ||
| 46 | +++ b/lib/blkid/devname.c | ||
| 47 | @@ -36,6 +36,9 @@ | ||
| 48 | #if HAVE_SYS_MKDEV_H | ||
| 49 | #include <sys/mkdev.h> | ||
| 50 | #endif | ||
| 51 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 52 | +#include <sys/sysmacros.h> | ||
| 53 | +#endif | ||
| 54 | #include <time.h> | ||
| 55 | |||
| 56 | #include "blkidP.h" | ||
| 57 | diff --git a/lib/blkid/devno.c b/lib/blkid/devno.c | ||
| 58 | index 479d977..61e6fc7 100644 | ||
| 59 | --- a/lib/blkid/devno.c | ||
| 60 | +++ b/lib/blkid/devno.c | ||
| 61 | @@ -31,6 +31,9 @@ | ||
| 62 | #if HAVE_SYS_MKDEV_H | ||
| 63 | #include <sys/mkdev.h> | ||
| 64 | #endif | ||
| 65 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 66 | +#include <sys/sysmacros.h> | ||
| 67 | +#endif | ||
| 68 | |||
| 69 | #include "blkidP.h" | ||
| 70 | |||
| 71 | diff --git a/lib/ext2fs/finddev.c b/lib/ext2fs/finddev.c | ||
| 72 | index 311608d..62fa0db 100644 | ||
| 73 | --- a/lib/ext2fs/finddev.c | ||
| 74 | +++ b/lib/ext2fs/finddev.c | ||
| 75 | @@ -31,6 +31,9 @@ | ||
| 76 | #if HAVE_SYS_MKDEV_H | ||
| 77 | #include <sys/mkdev.h> | ||
| 78 | #endif | ||
| 79 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 80 | +#include <sys/sysmacros.h> | ||
| 81 | +#endif | ||
| 82 | |||
| 83 | #include "ext2_fs.h" | ||
| 84 | #include "ext2fs.h" | ||
| 85 | diff --git a/lib/ext2fs/ismounted.c b/lib/ext2fs/ismounted.c | ||
| 86 | index e0f69dd..7404996 100644 | ||
| 87 | --- a/lib/ext2fs/ismounted.c | ||
| 88 | +++ b/lib/ext2fs/ismounted.c | ||
| 89 | @@ -49,6 +49,9 @@ | ||
| 90 | #if HAVE_SYS_TYPES_H | ||
| 91 | #include <sys/types.h> | ||
| 92 | #endif | ||
| 93 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 94 | +#include <sys/sysmacros.h> | ||
| 95 | +#endif | ||
| 96 | |||
| 97 | #include "ext2_fs.h" | ||
| 98 | #include "ext2fs.h" | ||
| 99 | diff --git a/misc/create_inode.c b/misc/create_inode.c | ||
| 100 | index 4dbd8e5..98aeb41 100644 | ||
| 101 | --- a/misc/create_inode.c | ||
| 102 | +++ b/misc/create_inode.c | ||
| 103 | @@ -22,6 +22,10 @@ | ||
| 104 | #include <attr/xattr.h> | ||
| 105 | #endif | ||
| 106 | #include <sys/ioctl.h> | ||
| 107 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 108 | +#include <sys/sysmacros.h> | ||
| 109 | +#endif | ||
| 110 | + | ||
| 111 | #include <ext2fs/ext2fs.h> | ||
| 112 | #include <ext2fs/ext2_types.h> | ||
| 113 | #include <ext2fs/fiemap.h> | ||
| 114 | diff --git a/misc/mk_hugefiles.c b/misc/mk_hugefiles.c | ||
| 115 | index 71a15c5..00e95cd 100644 | ||
| 116 | --- a/misc/mk_hugefiles.c | ||
| 117 | +++ b/misc/mk_hugefiles.c | ||
| 118 | @@ -35,6 +35,9 @@ extern int optind; | ||
| 119 | #include <sys/ioctl.h> | ||
| 120 | #include <sys/types.h> | ||
| 121 | #include <sys/stat.h> | ||
| 122 | +#ifdef HAVE_SYS_SYSMACROS_H | ||
| 123 | +#include <sys/sysmacros.h> | ||
| 124 | +#endif | ||
| 125 | #include <libgen.h> | ||
| 126 | #include <limits.h> | ||
| 127 | #include <blkid/blkid.h> | ||
| 128 | -- | ||
| 129 | 2.8.2 | ||
| 130 | |||
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.4.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.4.bb index 4b06b189b0..95ebc3a556 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.4.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.4.bb | |||
| @@ -7,6 +7,7 @@ SRC_URI += "file://acinclude.m4 \ | |||
| 7 | file://ptest.patch \ | 7 | file://ptest.patch \ |
| 8 | file://mkdir.patch \ | 8 | file://mkdir.patch \ |
| 9 | file://Revert-mke2fs-enable-the-metadata_csum-and-64bit-fea.patch \ | 9 | file://Revert-mke2fs-enable-the-metadata_csum-and-64bit-fea.patch \ |
| 10 | file://e2fsprogs-1.43-sysmacros.patch \ | ||
| 10 | " | 11 | " |
| 11 | 12 | ||
| 12 | SRC_URI_append_class-native = " file://e2fsprogs-fix-missing-check-for-permission-denied.patch" | 13 | SRC_URI_append_class-native = " file://e2fsprogs-fix-missing-check-for-permission-denied.patch" |
