summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
Diffstat (limited to 'devel')
-rw-r--r--devel/apr0/distinfo3
-rw-r--r--devel/apr0/patches/patch-apr-util_configure18
2 files changed, 20 insertions, 1 deletions
diff --git a/devel/apr0/distinfo b/devel/apr0/distinfo
index 63daf2a73b0..3793c7c66b5 100644
--- a/devel/apr0/distinfo
+++ b/devel/apr0/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2013/08/04 02:44:36 obache Exp $
+$NetBSD: distinfo,v 1.7 2014/03/06 11:52:19 jperkin Exp $
SHA1 (httpd-2.0.65.tar.bz2) = 0183866df73c7877ba9275a075a2ece7a67f6c95
RMD160 (httpd-2.0.65.tar.bz2) = 1f0142a843486a53ba184ceb9214dc78f071e17e
@@ -7,6 +7,7 @@ SHA1 (patch-aa) = c84bdb6bcb14bf6bc7ea0d8f13334dd8c3ef2ef9
SHA1 (patch-an) = 76d9ac0cdddec7c0f41535baee63bf0aa26ed596
SHA1 (patch-ao) = 1dc1dac5370159639b3dcc3ea97e51eeb47622a0
SHA1 (patch-ap) = 357776c7208407936e09891ae87d23b112a12756
+SHA1 (patch-apr-util_configure) = f0942b2b3465d7b55aee83688e0617401019bb7e
SHA1 (patch-aq) = 6cc1fb879fb5d9280f543ebe068a441e2e6560f3
SHA1 (patch-ar) = defa2be14ec057e1c41151b8cd1edc0ffb219694
SHA1 (patch-as) = 37e70ff8b1a3344e47bcd2fe2b145a6e3e6a4562
diff --git a/devel/apr0/patches/patch-apr-util_configure b/devel/apr0/patches/patch-apr-util_configure
new file mode 100644
index 00000000000..3507419adb0
--- /dev/null
+++ b/devel/apr0/patches/patch-apr-util_configure
@@ -0,0 +1,18 @@
+$NetBSD: patch-apr-util_configure,v 1.1 2014/03/06 11:52:19 jperkin Exp $
+
+Search for builtin expat in /usr/lib64 too.
+
+--- apr-util/configure.orig 2013-06-28 17:48:52.000000000 +0000
++++ apr-util/configure
+@@ -23132,6 +23132,11 @@ $as_echo_n "checking for Expat in $withv
+ expat_include_dir="$abs_expatdir/include"
+ expat_ldflags="-L$abs_expatdir/lib"
+ expat_libs="-lexpat"
++ elif test -r "$abs_expatdir/include/expat.h" -a \
++ -r "$abs_expatdir/lib64/libexpat.a"; then
++ expat_include_dir="$abs_expatdir/include"
++ expat_ldflags="-L$abs_expatdir/lib64"
++ expat_libs="-lexpat"
+ elif test -r "$abs_expatdir/xmlparse.h"; then
+ expat_include_dir="$abs_expatdir"
+ expat_ldflags="-L$abs_expatdir"