diff options
author | jlam <jlam@pkgsrc.org> | 2002-03-06 19:52:49 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-03-06 19:52:49 +0000 |
commit | c832aaa26e152a9fd8b9f7c1d25bf1917639940f (patch) | |
tree | 6cd733a583941c632b3fd5c86ade9e3984e2ca7c /www/apache2 | |
parent | b05001c7bc61a38f457e83b21d95ff763c2fc6ac (diff) | |
download | pkgsrc-c832aaa26e152a9fd8b9f7c1d25bf1917639940f.tar.gz |
Find the pkgsrc-installed expat libraries.
XXX This patch will go away once the changes to buildlink to handle libtool
XXX archives properly are committed.
Diffstat (limited to 'www/apache2')
-rw-r--r-- | www/apache2/distinfo | 3 | ||||
-rw-r--r-- | www/apache2/patches/patch-aj | 21 |
2 files changed, 23 insertions, 1 deletions
diff --git a/www/apache2/distinfo b/www/apache2/distinfo index 666a12af338..0eb2fff146e 100644 --- a/www/apache2/distinfo +++ b/www/apache2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2002/03/06 00:55:33 jlam Exp $ +$NetBSD: distinfo,v 1.4 2002/03/06 19:52:49 jlam Exp $ SHA1 (httpd-2.0.32-beta.tar.gz) = 0adf90d3d292bd8f2c343c9bce591bb7d100e38e Size (httpd-2.0.32-beta.tar.gz) = 3901686 bytes @@ -11,3 +11,4 @@ SHA1 (patch-af) = d21dfcae2158353aeab5c62206d4e8668b888d10 SHA1 (patch-ag) = 32aa50334f8146c43dfdfa36bea901d426fac5af SHA1 (patch-ah) = bf00adbfe32c9322bde130089baf004dda7acb03 SHA1 (patch-ai) = 36d8e13103418daf2d9f0c3a49e84ca906796858 +SHA1 (patch-aj) = 43af1d030eb29fc13f99498729472af6901034e5 diff --git a/www/apache2/patches/patch-aj b/www/apache2/patches/patch-aj new file mode 100644 index 00000000000..a75814b310b --- /dev/null +++ b/www/apache2/patches/patch-aj @@ -0,0 +1,21 @@ +$NetBSD: patch-aj,v 1.1 2002/03/06 19:52:50 jlam Exp $ + +--- srclib/apr-util/configure.orig Thu Feb 14 03:14:58 2002 ++++ srclib/apr-util/configure +@@ -5727,13 +5727,13 @@ + + if test -r "$abs_expatdir/lib/expat.h.in"; then + expat_include_dir="$abs_expatdir/lib" +- expat_libs="$abs_expatdir/lib/libexpat.la" ++ expat_libs="-L$abs_expatdir/lib -lexpat" + elif test -r "$abs_expatdir/include/expat.h"; then + expat_include_dir="$abs_expatdir/include" +- expat_libs="$abs_expatdir/lib/libexpat.la" ++ expat_libs="-L$abs_expatdir/lib -lexpat" + elif test -r "$abs_expatdir/xmlparse.h"; then + expat_include_dir="$abs_expatdir" +- expat_libs="$abs_expatdir/libexpat.la" ++ expat_libs="-L$abs_expatdir -lexpat" + expat_old=yes + elif test -r "$abs_expatdir/include/xmlparse.h" -a \ + -r "$abs_expatdir/lib/libexpat.a"; then |