From b64d15e731e3d6a7671f0ec6c34a20203cf2609d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 18 Apr 2016 18:53:37 -0400 Subject: sys-process/numactl: fix build w/newer glibc #580098 --- .../numactl/files/numactl-2.0.11-sysmacros.patch | 41 ++++++++++++++++++++++ sys-process/numactl/numactl-2.0.11.ebuild | 1 + 2 files changed, 42 insertions(+) create mode 100644 sys-process/numactl/files/numactl-2.0.11-sysmacros.patch (limited to 'sys-process/numactl') diff --git a/sys-process/numactl/files/numactl-2.0.11-sysmacros.patch b/sys-process/numactl/files/numactl-2.0.11-sysmacros.patch new file mode 100644 index 000000000000..3f9536757391 --- /dev/null +++ b/sys-process/numactl/files/numactl-2.0.11-sysmacros.patch @@ -0,0 +1,41 @@ +https://bugs.gentoo.org/580098 + +From c1644f92e340d797e490c41a9ef9961125d202b9 Mon Sep 17 00:00:00 2001 +From: Mike Frysinger +Date: Mon, 18 Apr 2016 18:49:51 -0400 +Subject: [PATCH] include sys/sysmacros.h for major/minor + +These functions are not part of any official spec, and glibc has always +kept them in sys/sysmacros.h. As glibc moves to conform to POSIX, and +more alternative C libraries come up, we need to include this header +explicitly to get the prototypes. Otherwise we fail to build like: + +affinity.c: In function 'affinity_file': +affinity.c:177:7: warning: implicit declaration of function 'major' [-Wimplicit-function-declaration] + if (major(d) != maj || minor(d) != min) + ^ +affinity.c:177:26: warning: implicit declaration of function 'minor' [-Wimplicit-function-declaration] + if (major(d) != maj || minor(d) != min) + ^ +./.libs/libnuma.so: undefined reference to 'minor' +./.libs/libnuma.so: undefined reference to 'major' +collect2: error: ld returned 1 exit status +--- + affinity.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/affinity.c b/affinity.c +index 9fbd6af..984291c 100644 +--- a/affinity.c ++++ b/affinity.c +@@ -40,6 +40,7 @@ + #include + #include + #include ++#include + #include + #include + #include +-- +2.7.4 + diff --git a/sys-process/numactl/numactl-2.0.11.ebuild b/sys-process/numactl/numactl-2.0.11.ebuild index 7300b7b80867..4eb1b9eae2dc 100644 --- a/sys-process/numactl/numactl-2.0.11.ebuild +++ b/sys-process/numactl/numactl-2.0.11.ebuild @@ -21,6 +21,7 @@ ECONF_SOURCE=${S} src_prepare() { epatch "${FILESDIR}"/${PN}-2.0.8-cpuid-pic.patch #456238 epatch "${FILESDIR}"/${PN}-2.0.10-numademo-cflags.patch #540856 + epatch "${FILESDIR}"/${PN}-2.0.11-sysmacros.patch #580098 eautoreconf # We need to copy the sources or else tests will fail multilib_copy_sources -- cgit v1.2.3-65-gdbad