efd71eb559
* Updated PCRE to version 7.7. * Fixed overflow in memnstr(). * Fixed crash in imageloadfont when an invalid font is given. * Fixed open_basedir handling issue in the curl extension. * Fixed mbstring.func_overload set in .htaccess becomes global. For a full list of changes in PHP 4.4.9, see the ChangeLog. (http://www.php.net/ChangeLog-4.php#4.4.9) This also adds ${PREFIX}/lib/php to the default include_path in php.ini which makes integration with PEAR a little simpler.
69 lines
2 KiB
PHP
69 lines
2 KiB
PHP
# $NetBSD: Makefile.php,v 1.40 2008/08/17 18:29:33 adrianp Exp $
|
|
|
|
.include "../../www/php4/Makefile.common"
|
|
|
|
# revision of the core PHP interpreter package
|
|
DISTINFO_FILE= ${.CURDIR}/../../www/php4/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../www/php4/patches
|
|
|
|
USE_LIBTOOL= YES
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --without-mysql
|
|
CONFIGURE_ARGS+= --without-iconv
|
|
CONFIGURE_ARGS+= --without-pear
|
|
|
|
CONFIGURE_ARGS+= --disable-posix
|
|
|
|
CONFIGURE_ARGS+= --with-config-file-path=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ARGS+= --with-exec-dir=${PREFIX}/libexec/php4
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-regex=system
|
|
|
|
# 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 (mysql,
|
|
# pgsql) 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
|
|
CONFIGURE_ENV+= EXTENSION_DIR="${PREFIX}/${PHP_EXTENSION_DIR}"
|
|
|
|
# Note: This expression is the same as ${PKGBASE}, but the latter is
|
|
# not defined yet, so we cannot use it here.
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.${PKGNAME:C/-[0-9].*//}
|
|
PKG_SUPPORTED_OPTIONS+= inet6 ssl
|
|
PKG_SUGGESTED_OPTIONS+= ssl
|
|
|
|
SUBST_CLASSES+= ini
|
|
SUBST_STAGE.ini= post-patch
|
|
SUBST_FILES.ini= php.ini-dist
|
|
SUBST_FILES.ini+= php.ini-recommended
|
|
SUBST_SED.ini= -e "s|\;include_path = \".:/php/includes\"|include_path = \".:${PREFIX}/lib/php\"|g"
|
|
SUBST_MESSAGE.ini= Fixing default ini files.
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|