diff options
author | Alex Dupre <ale@FreeBSD.org> | 2007-02-07 15:55:18 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2007-02-07 15:55:18 +0000 |
commit | ed8d71621989050bd92b40cb8612ad437bf0015c (patch) | |
tree | b14139f0d6871e26aef73e64694465789e6b8bc8 | |
parent | update to 0.5.4 (diff) |
Really fix the objformat issue, the previous commit broke php compilation.
Notes
Notes:
svn path=/head/; revision=184505
-rw-r--r-- | lang/php4/Makefile | 3 | ||||
-rw-r--r-- | lang/php4/files/patch-build_libtool.m4 | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lang/php4/Makefile b/lang/php4/Makefile index e5c7f92e31d8..504f2787faee 100644 --- a/lang/php4/Makefile +++ b/lang/php4/Makefile @@ -22,9 +22,8 @@ COMMENT?= PHP Scripting Language (Apache Module and CLI) LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} USE_BZIP2= yes -USE_AUTOTOOLS= libtool:15 .if !defined(PKGNAMESUFFIX) -USE_AUTOTOOLS+= autoconf:259 +USE_AUTOTOOLS= autoconf:259 USE_GETOPT_LONG=yes CONFIGURE_ARGS= --enable-versioning \ diff --git a/lang/php4/files/patch-build_libtool.m4 b/lang/php4/files/patch-build_libtool.m4 new file mode 100644 index 000000000000..d55e8471178e --- /dev/null +++ b/lang/php4/files/patch-build_libtool.m4 @@ -0,0 +1,11 @@ +--- build/libtool.m4.orig Wed Feb 7 16:51:07 2007 ++++ build/libtool.m4 Wed Feb 7 16:51:49 2007 +@@ -2073,7 +2073,7 @@ + ;; + + freebsd*) +- objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo elf` + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) |