This is a maintenance release that in addition to over 70 non-critical bug fixes addresses several security issues inside the exif and fbsql extensions as well as the unserialize(), swf_definepoly() and getimagesize() functions. All Users of PHP are strongly encouraged to upgrade to this release. Bugfix release * Crash in bzopen() if supplied path to non-existent file. * DOM crashing when attribute appended to Document. * unserialize() float problem on non-English locales. * Crash in msg_send() when non-string is stored without being serialized. * Possible infinite loop in imap_mail_compose(). * Fixed crash in chunk_split(), when chunklen > strlen. * session_set_save_handler crashes PHP when supplied non-existent object ref. * Memory leak in zend_language_scanner.c. * Compile failures of zend_strtod.c. * Fixed crash in overloaded objects & overload() function. * cURL functions bypass open_basedir. PHP4 also doesn't bundle PEAR Net_Socket and Net_SMTP anymore now.
34 lines
993 B
Text
34 lines
993 B
Text
# $NetBSD: Makefile.common,v 1.47 2005/04/11 20:02:57 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?= jdolecek@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.11
|
|
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"
|