commit:     badbaf41c17db1029b4b7628b1ec38611a66d261
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 23 17:20:23 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Apr 23 17:20:23 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=badbaf41

app-emulation/qemu-guest-agent: fix build w/newer glibc #580924

 .../files/qemu-guest-agent-2.5.0-sysmacros.patch        | 17 +++++++++++++++++
 .../qemu-guest-agent/qemu-guest-agent-2.5.0.ebuild      |  1 +
 2 files changed, 18 insertions(+)

diff --git 
a/app-emulation/qemu-guest-agent/files/qemu-guest-agent-2.5.0-sysmacros.patch 
b/app-emulation/qemu-guest-agent/files/qemu-guest-agent-2.5.0-sysmacros.patch
new file mode 100644
index 0000000..4d5690c
--- /dev/null
+++ 
b/app-emulation/qemu-guest-agent/files/qemu-guest-agent-2.5.0-sysmacros.patch
@@ -0,0 +1,17 @@
+https://bugs.gentoo.org/580924
+
+Linux C libs are moving away from implicit header pollution with sys/types.h
+
+--- a/include/qemu/osdep.h
++++ b/include/qemu/osdep.h
+@@ -78,6 +78,10 @@ extern int daemon(int, int);
+ #include <assert.h>
+ #include <signal.h>
+ 
++#ifdef __linux__
++#include <sys/sysmacros.h>
++#endif
++
+ #ifdef __OpenBSD__
+ #include <sys/signal.h>
+ #endif

diff --git a/app-emulation/qemu-guest-agent/qemu-guest-agent-2.5.0.ebuild 
b/app-emulation/qemu-guest-agent/qemu-guest-agent-2.5.0.ebuild
index 55893ad..0031ca9 100644
--- a/app-emulation/qemu-guest-agent/qemu-guest-agent-2.5.0.ebuild
+++ b/app-emulation/qemu-guest-agent/qemu-guest-agent-2.5.0.ebuild
@@ -35,6 +35,7 @@ DEPEND="${RDEPEND}
 S="${WORKDIR}/${MY_P}"
 
 src_prepare() {
+       epatch "${FILESDIR}"/${PN}-2.5.0-sysmacros.patch #580924
        epatch_user
 }
 

Reply via email to