diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-09-11 23:47:59 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-09-11 23:47:59 -0400 |
commit | 40c56e010bd9cd674ac3b4366cb678eaa1544ac4 (patch) | |
tree | 527da95d99727e9c654041c1bb882bcb7c0f7b8b /sys-apps | |
parent | 71e765caca8c0e3eab3d2beee650670c95d08953 (diff) | |
download | gentoo-40c56e010bd9cd674ac3b4366cb678eaa1544ac4.tar.gz gentoo-40c56e010bd9cd674ac3b4366cb678eaa1544ac4.tar.xz |
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.
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/dmapi/dmapi-2.2.12-r1.ebuild | 1 | ||||
-rw-r--r-- | sys-apps/dmapi/files/dmapi-2.2.12-headers.patch | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/sys-apps/dmapi/dmapi-2.2.12-r1.ebuild b/sys-apps/dmapi/dmapi-2.2.12-r1.ebuild index 54291171b34..8c8af810c53 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 00000000000..259e1aec3a0 --- /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 |