sys-apps/man-db: fix build with berkdb
authorConrad Kostecki <conrad@kostecki.com>
Mon, 10 Sep 2018 10:24:03 +0000 (12:24 +0200)
committerThomas Deutschmann <whissi@gentoo.org>
Mon, 10 Sep 2018 10:24:04 +0000 (12:24 +0200)
Closes: https://github.com/gentoo/gentoo/pull/9546
Closes: https://bugs.gentoo.org/662588
Package-Manager: Portage-2.3.45, Repoman-2.3.10

sys-apps/man-db/files/man-db-2.8.4-berkdb_build_fix.patch [new file with mode: 0644]
sys-apps/man-db/man-db-2.8.4.ebuild

diff --git a/sys-apps/man-db/files/man-db-2.8.4-berkdb_build_fix.patch b/sys-apps/man-db/files/man-db-2.8.4-berkdb_build_fix.patch
new file mode 100644 (file)
index 0000000..30052f2
--- /dev/null
@@ -0,0 +1,27 @@
+From dd0f554b5c1d563f9ee625c19c8745d8982e00e3 Mon Sep 17 00:00:00 2001
+From: Colin Watson <cjwatson@debian.org>
+Date: Thu, 2 Aug 2018 10:34:00 +0100
+Subject: Fix build with Berkeley DB
+
+Fixes Savannah bug #54425.
+
+* libdb/db_btree.c: Include <stdlib.h> for free.
+---
+ libdb/db_btree.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/libdb/db_btree.c b/libdb/db_btree.c
+index fdd9b15..4469bf6 100644
+--- a/libdb/db_btree.c
++++ b/libdb/db_btree.c
+@@ -28,6 +28,7 @@
+ /* below this line are routines only useful for the BTREE interface */
+ #ifdef BTREE
++#include <stdlib.h>
+ #include <stdio.h>
+ #include <errno.h>
+ #include <string.h>
+-- 
+cgit v1.0-41-gc330
+
index 670cbc0de539c5ffb2145831cc43cb2c337dac47..42bdf6a7f67fbe4d08dd1b6c8d03d29276755ee9 100644 (file)
@@ -44,6 +44,8 @@ RDEPEND="
 "
 PDEPEND="manpager? ( app-text/manpager )"
 
+PATCHES=( "${FILESDIR}"/${P}-berkdb_build_fix.patch )
+
 pkg_setup() {
        # Create user now as Makefile in src_install does setuid/chown
        enewgroup man 15