diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2010-03-21 17:10:01 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2010-03-21 17:10:01 +0000 |
commit | 971e52925fc3880b864f642325c6a07a796ac7d9 (patch) | |
tree | 871b762258313bb0fb1a637e27f3b165a80d00a1 /lang/php53 | |
parent | b2e566b08ba383a271484f0aa38974e952a157f1 (diff) | |
download | pkgsrc-971e52925fc3880b864f642325c6a07a796ac7d9.tar.gz |
explicitly disable sqlite3 and intl, we don't want to compile them into main PHP executable;
the extensions were not actually built since necessary libraries were not found due to pkgsrc
framework, but better be explicit
fix MESSAGE_SRC to use lang/php53 locations
bump PKGREVISION
Diffstat (limited to 'lang/php53')
-rw-r--r-- | lang/php53/Makefile | 3 | ||||
-rw-r--r-- | lang/php53/Makefile.php | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lang/php53/Makefile b/lang/php53/Makefile index 448331b1ffd..7946d52a2c5 100644 --- a/lang/php53/Makefile +++ b/lang/php53/Makefile @@ -1,5 +1,6 @@ -# $NetBSD: Makefile,v 1.1.1.1 2010/03/16 15:31:58 taca Exp $ +# $NetBSD: Makefile,v 1.2 2010/03/21 17:10:01 jdolecek Exp $ +PKGREVISION= 1 CATEGORIES= lang HOMEPAGE= http://www.php.net/ COMMENT= PHP Hypertext Preprocessor version 5 diff --git a/lang/php53/Makefile.php b/lang/php53/Makefile.php index a334616f002..7a7f31ef41e 100644 --- a/lang/php53/Makefile.php +++ b/lang/php53/Makefile.php @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.php,v 1.1.1.1 2010/03/16 15:31:58 taca Exp $ +# $NetBSD: Makefile.php,v 1.2 2010/03/21 17:10:01 jdolecek Exp $ # used by lang/php53/Makefile # used by www/ap-php/Makefile @@ -29,8 +29,10 @@ CONFIGURE_ARGS+= --with-regex=system CONFIGURE_ARGS+= --without-mysql CONFIGURE_ARGS+= --without-sqlite +#CONFIGURE_ARGS+= --without-sqlite3 CONFIGURE_ARGS+= --without-iconv CONFIGURE_ARGS+= --without-pear +#CONFIGURE_ARGS+= --without-intl CONFIGURE_ARGS+= --disable-posix CONFIGURE_ARGS+= --disable-dom @@ -68,8 +70,8 @@ PATCH_SITES= http://download.suhosin.org/ PATCHFILES+= suhosin-patch-${SUHOSIN_PHPVER}-0.9.9.1.patch.gz PATCH_DIST_STRIP= -p1 PLIST.suhosin= yes -MESSAGE_SRC= ${.CURDIR}/../../lang/php5/MESSAGE -MESSAGE_SRC+= ${.CURDIR}/../../lang/php5/MESSAGE.suhosin +MESSAGE_SRC= ${.CURDIR}/../../lang/php53/MESSAGE +MESSAGE_SRC+= ${.CURDIR}/../../lang/php53/MESSAGE.suhosin . endif .endif |