diff options
author | jlam <jlam@pkgsrc.org> | 2001-10-18 17:16:43 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-10-18 17:16:43 +0000 |
commit | 6a3d2fa2cc9c0a604439b1608f6e2b5e9522d2cc (patch) | |
tree | 04977867070f67c79f40dd413e90d6a2105e9efa /www | |
parent | 7f7ccb1970bb94bc093c10ad35c321ec56477126 (diff) | |
download | pkgsrc-6a3d2fa2cc9c0a604439b1608f6e2b5e9522d2cc.tar.gz |
Support for linking some PHP4 extensions statically into the php CGI and
into the apache mod_php.so DSO.
PHP4_CONFIGURE_ARGS should contain GNU configure options, a complete
list of which may be found at:
http://www.php.net/manual/en/install.configure.php
Note that this is generally not needed as many of the extensions (session,
mysql, pgsql, pcre) may be dynamically loaded, and are separately packaged
in pkgsrc.
Diffstat (limited to 'www')
-rw-r--r-- | www/php4/Makefile.php | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/www/php4/Makefile.php b/www/php4/Makefile.php index 0f5bf3dbb02..38d2d065a45 100644 --- a/www/php4/Makefile.php +++ b/www/php4/Makefile.php @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.php,v 1.2 2001/10/16 12:44:17 tron Exp $ +# $NetBSD: Makefile.php,v 1.3 2001/10/18 17:16:43 jlam Exp $ .include "../../www/php4/Makefile.common" @@ -26,6 +26,21 @@ CONFIGURE_ARGS+= --enable-force-cgi-redirect CONFIGURE_ARGS+= --enable-memory-limit CONFIGURE_ARGS+= --enable-track-vars +# Support for linking some PHP4 extensions statically into the php CGI and +# into the apache mod_php.so DSO. +# +# PHP4_CONFIGURE_ARGS should contain GNU configure options, a complete +# list of which may be found at: +# +# http://www.php.net/manual/en/install.configure.php +# +# Note that this is generally not needed as many of the extensions (session, +# mysql, pgsql, pcre) may be dynamically loaded, and are separately packaged +# in pkgsrc. +# +PHP4_CONFIGURE_ARGS?= # empty +CONFIGURE_ARGS+= ${PHP4_CONFIGURE_ARGS} + CONFIGURE_ENV+= ac_cv_lib_pam_pam_start=no post-configure: create-shlibtool |