summaryrefslogtreecommitdiff
path: root/www/php4
diff options
context:
space:
mode:
authorjdolecek <jdolecek>2005-04-11 20:03:58 +0000
committerjdolecek <jdolecek>2005-04-11 20:03:58 +0000
commitc01d88aebd4734d2b2fdbc7b386e565922e9da94 (patch)
treef63cf1571a511451dfa51425b005e564879cd78a /www/php4
parentf8baa822ebebefa2fce9814ac551d448649ba8b4 (diff)
downloadpkgsrc-c01d88aebd4734d2b2fdbc7b386e565922e9da94.tar.gz
doesn't appear to be needed anymore
Diffstat (limited to 'www/php4')
-rw-r--r--www/php4/patches/patch-ab41
1 files changed, 0 insertions, 41 deletions
diff --git a/www/php4/patches/patch-ab b/www/php4/patches/patch-ab
deleted file mode 100644
index 749650d001c..00000000000
--- a/www/php4/patches/patch-ab
+++ /dev/null
@@ -1,41 +0,0 @@
-$NetBSD: patch-ab,v 1.16 2004/09/28 12:41:13 jdolecek Exp $
-
---- scripts/phpize.in.orig 2004-06-19 22:37:55.000000000 +0200
-+++ scripts/phpize.in 2004-09-28 11:35:45.000000000 +0200
-@@ -54,18 +54,25 @@
-
- touch install-sh mkinstalldirs missing
-
--aclocal || exit 1
--autoconf || exit 1
--autoheader || exit 1
--test -x "$builddir/build/shtool" || chmod +x "$builddir/build/shtool"
--if test ! -x "$builddir/build/shtool"; then
-- echo "shtool at '$builddir/build/shtool' not executable. "
-- echo "Make sure that the file exists and is executable and then rerun this script. "
-- echo
-- exit 1
-+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
-+ test -x "$builddir/build/shtool" || chmod +x "$builddir/build/shtool"
-+ if test ! -x "$builddir/build/shtool"; then
-+ echo "shtool at '$builddir/build/shtool' not executable. "
-+ echo "Make sure that the file exists and is executable and then rerun this script. "
-+ echo
-+ exit 1
-+ fi
-+
-+ LIBTOOLIZE=`$builddir/build/shtool path glibtoolize libtoolize`;
- fi
--libtoolize=`$builddir/build/shtool path glibtoolize libtoolize`
--$libtoolize -f -c || exit 1
-+
-+$ACLOCAL || exit 1
-+$AUTOCONF || exit 1
-+$AUTOHEADER || exit 1
-+$LIBTOOLIZE -f -c || exit 1
-
- # dumping API NOs:
- PHP_API_VERSION=`egrep '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'`