commit: 40c56e010bd9cd674ac3b4366cb678eaa1544ac4
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 12 03:47:59 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Sep 12 03:47:59 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c56e01
sys-apps/dmapi: fix build w/newer glibc #560212
As glibc cleans up its headers to not implicitly include things, packages
like dmapi break a little as they don't include headers they need.
sys-apps/dmapi/dmapi-2.2.12-r1.ebuild | 1 +
sys-apps/dmapi/files/dmapi-2.2.12-headers.patch | 16 ++++++++++++++++
2 files changed, 17 insertions(+)
diff --git a/sys-apps/dmapi/dmapi-2.2.12-r1.ebuild
b/sys-apps/dmapi/dmapi-2.2.12-r1.ebuild
index 5429117..8c8af81 100644
--- a/sys-apps/dmapi/dmapi-2.2.12-r1.ebuild
+++ b/sys-apps/dmapi/dmapi-2.2.12-r1.ebuild
@@ -24,6 +24,7 @@ src_prepare() {
-e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
include/builddefs.in \
|| die
+ epatch "${FILESDIR}"/${P}-headers.patch
multilib_copy_sources
}
diff --git a/sys-apps/dmapi/files/dmapi-2.2.12-headers.patch
b/sys-apps/dmapi/files/dmapi-2.2.12-headers.patch
new file mode 100644
index 0000000..259e1ae
--- /dev/null
+++ b/sys-apps/dmapi/files/dmapi-2.2.12-headers.patch
@@ -0,0 +1,16 @@
+https://bugs.gentoo.org/560212
+
+pull in headers for funcs that are used
+
+--- a/libdm/dm_handle2path.c
++++ b/libdm/dm_handle2path.c
+@@ -20,6 +20,9 @@
+ #include <dmapi_kern.h>
+ #include "dmapi_lib.h"
+
++#include <fcntl.h> /* open */
++#include <unistd.h> /* close */
++#include <string.h> /* strlen */
+ #include <mntent.h>
+ #include <dirent.h>
+ #ifdef linux