5e5544ddbe
Changes since 4.3.8: * fixes to GPC input processing * bundled GD extension synced with 2.0.28, re-introducing write support for GIF (patent expiration worldwide) * Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory exhaustion * Fixed strip_tags() to correctly handle '\0' characters. * Rewritten UNIX and Windows install help files. * Fixed a file-descriptor leak with phpinfo() and other 'special' URLs. * Fixed possible crash inside php_shutdown_config(). * Fixed isset crashes on arrays. * Fixed imagecreatefromstring() crashes with external GD library. * Fixed fgetcsv() parsing of strings ending with escaped enclosures. * Fixed overflow in array_slice(), array_splice(), substr(), substr_replace(), strspn(), strcspn(). * Fixed '\0' in Authenticate header passed via safe_mode. * Allow bundled GD to compile against freetype 2.1.2. All in all this release fixes over 50 bugs that have been discovered and resolved since the 4.3.8 release.
34 lines
992 B
Text
34 lines
992 B
Text
# $NetBSD: Makefile.common,v 1.44 2004/09/28 12:41:13 jdolecek Exp $
|
|
|
|
DISTNAME?= php-${PHP_DIST_VERS}
|
|
CATEGORIES+= www php4
|
|
MASTER_SITES?= http://www.php.net/distributions/ \
|
|
http://php3.de/distributions/ \
|
|
ftp://ftp.php.net/pub/distributions/
|
|
EXTRACT_SUFX?= .tar.bz2
|
|
|
|
MAINTAINER?= tech-pkg@NetBSD.org
|
|
HOMEPAGE?= http://www.php.net/
|
|
|
|
# Version numbering scheme:
|
|
#
|
|
# PHP_DIST_VERS version number on the php distfile
|
|
# PHP_BASE_VERS pkgsrc-mangled version number (convert pl -> .)
|
|
#
|
|
PHP_DIST_VERS= 4.3.9
|
|
PHP_BASE_VERS= ${PHP_DIST_VERS}
|
|
|
|
DISTFILES?= ${PHP_DISTFILE}
|
|
PHP_DISTFILE= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
# Location of installed PHP4 loadable modules under ${PREFIX}.
|
|
# This is derived from the value of `php-config --extension-dir`.
|
|
# The number for the last part of the path represents a specific version
|
|
# of the Zend API.
|
|
#
|
|
PHP_EXTENSION_DIR= lib/php/20020429
|
|
PLIST_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
|
|
|
|
PKG_SYSCONFVAR?= php
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|