212f71c61d
Security Enhancements and Fixes in PHP 5.2.10: * Fixed bug #48378 (exif_read_data() segfaults on certain corrupted .jpeg files). (Pierre) Key enhancements in PHP 5.2.10 include: * Added "ignore_errors" option to http fopen wrapper. (David Zulke, Sara) * Fixed memory corruptions while reading properties of zip files. (Ilia) * Fixed memory leak in ob_get_clean/ob_get_flush. (Christian) * Fixed segfault on invalid session.save_path. (Hannes) * Fixed leaks in imap when a mail_criteria is used. (Pierre) * Changed default value of array_unique()'s optional sorting type parameter back to SORT_STRING to fix backwards compatibility breakage introduced in PHP 5.2.9. (Moriyoshi) * Fixed bug #47940 (memory leaks in imap_body). (Pierre, Jake Levitt) * Fixed bug #47903 ("@" operator does not work with string offsets). (Felipe) * Fixed bug #47644 (Valid integers are truncated with json_decode()). (Scott) * Fixed bug #47564 (unpacking unsigned long 32bit big endian returns wrong result). (Ilia) * Fixed bug #47365 (ip2long() may allow some invalid values on certain 64bit systems). * Over 100 bug fixes.
95 lines
2.8 KiB
PHP
95 lines
2.8 KiB
PHP
# $NetBSD: Makefile.php,v 1.35 2009/07/07 21:57:28 jdolecek Exp $
|
|
#
|
|
|
|
.include "../../lang/php5/Makefile.common"
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../lang/php5/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../lang/php5/patches
|
|
|
|
USE_LIBTOOL= YES
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= YES
|
|
BUILD_DEFS+= VARBASE
|
|
PLIST_VARS+= suhosin
|
|
|
|
CONFIGURE_ENV+= EXTENSION_DIR="${PREFIX}/${PHP_EXTENSION_DIR}"
|
|
|
|
PHP_EXTENSION_DIR= lib/php/20040412
|
|
PLIST_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-config-file-path=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ARGS+= --with-config-file-scan-dir=${PKG_SYSCONFDIR:Q}/php.d
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
|
|
CONFIGURE_ARGS+= --with-regex=system
|
|
|
|
CONFIGURE_ARGS+= --without-mysql
|
|
CONFIGURE_ARGS+= --without-sqlite
|
|
CONFIGURE_ARGS+= --without-iconv
|
|
CONFIGURE_ARGS+= --without-pear
|
|
|
|
CONFIGURE_ARGS+= --disable-posix
|
|
CONFIGURE_ARGS+= --disable-dom
|
|
CONFIGURE_ARGS+= --disable-pdo
|
|
CONFIGURE_ARGS+= --disable-json
|
|
|
|
CONFIGURE_ARGS+= --enable-xml
|
|
CONFIGURE_ARGS+= --with-libxml-dir=${PREFIX:Q}
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
|
|
# 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 maintainer-zts suhosin
|
|
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:Msuhosin)
|
|
SUHOSIN_PHPVER= 5.2.10
|
|
. if ${SUHOSIN_PHPVER} != ${PHP_BASE_VERS}
|
|
PKG_FAIL_REASON+= "The suhosin patch is currently not available for"
|
|
PKG_FAIL_REASON+= "this version of PHP. You may have to wait until"
|
|
PKG_FAIL_REASON+= "an updated patch is released or temporarily"
|
|
PKG_FAIL_REASON+= "build this package without the suhosin option."
|
|
. else
|
|
PATCH_SITES= http://download.suhosin.org/
|
|
PATCHFILES+= suhosin-patch-${SUHOSIN_PHPVER}-0.9.7.patch.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
PLIST.suhosin= yes
|
|
MESSAGE_SRC= ${.CURDIR}/../../lang/php5/MESSAGE
|
|
MESSAGE_SRC+= ${.CURDIR}/../../lang/php5/MESSAGE.suhosin
|
|
. endif
|
|
.endif
|
|
|
|
.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"
|
|
. if ${OPSYS} == "SunOS"
|
|
CONFIGURE_ARGS+= --with-openssl=yes
|
|
LIBS.SunOS+= -lcrypto
|
|
. else
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
. endif
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmaintainer-zts)
|
|
CONFIGURE_ARGS+= --enable-maintainer-zts
|
|
.endif
|