22 Nov 2012, PHP 5.4.9 - Core: . Fixed bug #63305 (zend_mm_heap corrupted with traits). (Dmitry, Laruence) . Fixed bug #63369 ((un)serialize() leaves dangling pointers, causes crashes). (Tony, Andrew Sitnikov) . Fixed bug #63241 (PHP fails to open Windows deduplicated files). (daniel dot stelter-gliese at innogames dot de) . Fixed bug #62444 (Handle leak in is_readable on windows). (krazyest at seznam dot cz) - Curl: . Fixed bug #63363 (Curl silently accepts boolean true for SSL_VERIFYHOST). Patch by John Jawed GitHub PR #221 (Anthony) - Fileinfo: . Fixed bug #63248 (Load multiple magic files from a directory under Windows). (Anatoliy) - Libxml . Fixed bug #63389 (Missing context check on libxml_set_streams_context() causes memleak). (Laruence) - Mbstring: . Fixed bug #63447 (max_input_vars doesn't filter variables when mbstring.encoding_translation = On). (Laruence) - OCI8: . Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro) (Chris Jones) - PCRE: . Fixed bug #63180 (Corruption of hash tables). (Dmitry) . Fixed bug #63055 (Segfault in zend_gc with SF2 testsuite). (Dmitry, Laruence) . Fixed bug #63284 (Upgrade PCRE to 8.31). (Anatoliy) - PDO: . Fixed bug #63235 (buffer overflow in use of SQLGetDiagRec). (Martin Osvald, Remi) - PDO_pgsql: . Fixed bug #62593 (Emulate prepares behave strangely with PARAM_BOOL). (Will Fitch) - Phar: . Fixed bug #63297 (Phar fails to write an openssl based signature). (Anatoliy) - Streams: . Fixed bug #63240 (stream_get_line() return contains delimiter string). (Tjerk, Gustavo) - Reflection: . Fixed bug #63399 (ReflectionClass::getTraitAliases() incorrectly resolves traitnames). (Laruence)
51 lines
1.4 KiB
Text
51 lines
1.4 KiB
Text
# $NetBSD: Makefile.common,v 1.6 2012/11/23 13:20:49 taca Exp $
|
|
# used by lang/php54/Makefile.php
|
|
# used by lang/php/ext.mk
|
|
# used by meta-pkgs/php54-extensions/Makefile
|
|
|
|
#
|
|
# NOTE:
|
|
# The suhosin option includes a patch from http://www.hardened-php.net/
|
|
# Which tracks with the exact version number of PHP. There may be a delay
|
|
# in the patch which can leave the option broken until an updated patch
|
|
# is released. When updating PHP please don't forget to update the
|
|
# distnfo with the details of the suhosin patch as well.
|
|
#
|
|
# Check these packages when update to new release of PHP and consider to
|
|
# reset PKG_REVISION:
|
|
#
|
|
# databases/php-mysqlnd (not yet packaged)
|
|
# misc/php-intl
|
|
# textproc/php-enchant
|
|
#
|
|
# Since other PHP extensions are shared between www/php5, we can't reset
|
|
# PKGREVSION.
|
|
#
|
|
|
|
.if !defined(DISTNAME)
|
|
DISTNAME= php-${PHP_BASE_VERS}
|
|
.endif
|
|
CATEGORIES+= www
|
|
|
|
.if !defined(PECL_VERSION)
|
|
MASTER_SITES?= http://www.php.net/distributions/ \
|
|
http://uk.php.net/distributions/ \
|
|
http://de.php.net/distributions/ \
|
|
http://us.php.net/distributions/
|
|
EXTRACT_SUFX?= .tar.bz2
|
|
.endif
|
|
|
|
MAINTAINER?= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE?= http://www.php.net/
|
|
|
|
PHP_BASE_VERS= 5.4.9
|
|
|
|
PHP_EXTENSION_DIR= lib/php/20120301
|
|
PLIST_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
|
|
|
|
PKG_SYSCONFVAR?= php
|
|
|
|
# needed due to (broken?) configure checks in php-xmlrpc and php5-dom
|
|
CONFIGURE_ENV+= PHP_LIBXML_SHARED="1"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|