diff options
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 54291171b34a..8c8af810c53a 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 000000000000..259e1aec3a09 --- /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 |