diff options
author | jdolecek <jdolecek> | 2007-09-04 22:12:23 +0000 |
---|---|---|
committer | jdolecek <jdolecek> | 2007-09-04 22:12:23 +0000 |
commit | f64d3d928656cd083b503cb1c503d9be7ddc8cc6 (patch) | |
tree | 9f7b052471f18749b8411c452dacf17d6ee34a7a /lang | |
parent | 1883d3af21ce04a8832a51363af41365075fe91e (diff) | |
download | pkgsrc-f64d3d928656cd083b503cb1c503d9be7ddc8cc6.tar.gz |
install PHP unstripped on Darwin/Mac OS X, so that modules load properly; bump
PKGREVISION
PR: 36869 by Louis Guillaume
Diffstat (limited to 'lang')
-rw-r--r-- | lang/php5/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lang/php5/Makefile b/lang/php5/Makefile index bb2a9d60029..d131c2c92e0 100644 --- a/lang/php5/Makefile +++ b/lang/php5/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.58 2007/09/03 11:48:44 tron Exp $ +# $NetBSD: Makefile,v 1.59 2007/09/04 22:12:23 jdolecek Exp $ PKGNAME= php-${PHP_BASE_VERS} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang HOMEPAGE= http://www.php.net/ @@ -43,6 +43,11 @@ SUBST_STAGE.cgi= pre-configure SUBST_FILES.cgi= configure SUBST_SED.cgi= -e 's,@CGIDIR@,${CGIDIR},g' +# Make sure modules can link correctly +.if ${OPSYS} == "Darwin" +INSTALL_UNSTRIPPED= yes +.endif + pre-install: ${INSTALL_DATA_DIR} ${DESTDIR:Q}${CGIDIR:Q} |