diff options
author | wiz <wiz> | 2002-10-02 23:48:07 +0000 |
---|---|---|
committer | wiz <wiz> | 2002-10-02 23:48:07 +0000 |
commit | d568fc72dcd4adc883992d24b04567cf7091c7ce (patch) | |
tree | d55c0148b97675b1b741a18920bac2585b7e6263 /www/php4/patches | |
parent | e679716552cf26039bdf086d7965251e47d42ff0 (diff) | |
download | pkgsrc-d568fc72dcd4adc883992d24b04567cf7091c7ce.tar.gz |
Make modules use automake.mk. Bump PKGREVISION for phpize change.
Diffstat (limited to 'www/php4/patches')
-rw-r--r-- | www/php4/patches/patch-ab | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/php4/patches/patch-ab b/www/php4/patches/patch-ab new file mode 100644 index 00000000000..f35e73b538d --- /dev/null +++ b/www/php4/patches/patch-ab @@ -0,0 +1,19 @@ +$NetBSD: patch-ab,v 1.10 2002/10/02 23:48:07 wiz Exp $ + +--- pear/scripts/phpize.in.orig Wed Jan 10 02:01:59 2001 ++++ pear/scripts/phpize.in +@@ -25,7 +25,11 @@ sed \ + + touch install-sh mkinstalldirs missing + +-aclocal +-autoconf +-autoheader ++if [ -z "$ACLOCAL" ]; then ACLOCAL=aclocal; fi ++if [ -z "$AUTOCONF" ]; then AUTOCONF=autoconf; fi ++if [ -z "$AUTOHEADER" ]; then AUTOHEADER=autoheader; fi ++ ++$ACLOCAL ++$AUTOCONF ++$AUTOHEADER + libtoolize -f -c |