summaryrefslogtreecommitdiff
path: root/www/php4/patches
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2003-02-03 23:53:24 +0000
committerjlam <jlam@pkgsrc.org>2003-02-03 23:53:24 +0000
commit48ead3a5dd4d96fda2ff8375f5c514005d44dbb4 (patch)
tree46e1c7eaff0ed67d3c882643893fe4249e488e42 /www/php4/patches
parent19173c8ac78a57df4ff7307abd425acac316da75 (diff)
downloadpkgsrc-48ead3a5dd4d96fda2ff8375f5c514005d44dbb4.tar.gz
Bump PKGREVISION of www/php4 to 1. This fixes a problem reported on
tech-pkg@ where the incorrect libtoolize was being invoked. We now pass in the path to libtoolize via the environment, much like how the other GNU auto* tools are found in pkgsrc.
Diffstat (limited to 'www/php4/patches')
-rw-r--r--www/php4/patches/patch-ab10
1 files changed, 6 insertions, 4 deletions
diff --git a/www/php4/patches/patch-ab b/www/php4/patches/patch-ab
index f35e73b538d..815a3dd2772 100644
--- a/www/php4/patches/patch-ab
+++ b/www/php4/patches/patch-ab
@@ -1,19 +1,21 @@
-$NetBSD: patch-ab,v 1.10 2002/10/02 23:48:07 wiz Exp $
+$NetBSD: patch-ab,v 1.11 2003/02/03 23:53:25 jlam Exp $
---- pear/scripts/phpize.in.orig Wed Jan 10 02:01:59 2001
+--- pear/scripts/phpize.in.orig Wed Apr 17 06:35:59 2002
+++ pear/scripts/phpize.in
-@@ -25,7 +25,11 @@ sed \
+@@ -25,7 +25,12 @@ sed \
touch install-sh mkinstalldirs missing
-aclocal
-autoconf
-autoheader
+-libtoolize -f -c
+if [ -z "$ACLOCAL" ]; then ACLOCAL=aclocal; fi
+if [ -z "$AUTOCONF" ]; then AUTOCONF=autoconf; fi
+if [ -z "$AUTOHEADER" ]; then AUTOHEADER=autoheader; fi
++if [ -z "$LIBTOOLIZE" ]; then LIBTOOLIZE=libtoolize; fi
+
+$ACLOCAL
+$AUTOCONF
+$AUTOHEADER
- libtoolize -f -c
++$LIBTOOLIZE -f -c