summaryrefslogtreecommitdiff
path: root/www/php4/Makefile.common
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-12-31 23:54:24 +0000
committerjlam <jlam@pkgsrc.org>2001-12-31 23:54:24 +0000
commita407f5cb9e7a4bf92d4c36ab8c524c9c62d34717 (patch)
tree8d83a284ca661bc104fdea1da349fd01bc000de6 /www/php4/Makefile.common
parentc7df6d2d7bbd6b08875f0c50121d74fa7ebe8ccc (diff)
downloadpkgsrc-a407f5cb9e7a4bf92d4c36ab8c524c9c62d34717.tar.gz
Update www/php4 to 4.1.0. Major changes from version 4.0.6 include:
- Introduced a new $_REQUEST array, which includes any GET, POST or COOKIE variables. Like the other new variables, this variable is also available regardless of the context. - Introduced $_GET, $_POST, $_COOKIE, $_SERVER and $_ENV variables, which deprecate the old $HTTP_*_VARS arrays. In addition to be much shorter to type - these variables are also available regardless of the scope, and there's no need to import them using the 'global' statement. Other relevant changes include: - Bug fixes to prevent crashes on unexpected input. - Huge performance improvements, especially in thread-safe code. - Introduced extension version numbers. - Added support for single dimensional SafeArrays and Enumerations. Added an is_enum() function to check if a component implements an enumeration. - Improved speed of the serializer/deserializer. - Floating point numbers are better detected when converting from strings. - Added import_request_variables(), to allow users to safely import form variables to the global scope - Add config option (always_populate_raw_post_data) which when enabled will always populate $HTTP_RAW_POST_DATA regardless of the post mime type - Added getmygid() and safe_mode_gid ini directive to allow safe mode to do a gid check instead of a uid check. - Assigning to a string offset beyond the end of the string now automatically increases the string length by padding it with spaces, and performs the assignment.
Diffstat (limited to 'www/php4/Makefile.common')
-rw-r--r--www/php4/Makefile.common6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/php4/Makefile.common b/www/php4/Makefile.common
index ab4414f2542..cd82a5daa04 100644
--- a/www/php4/Makefile.common
+++ b/www/php4/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.20 2001/12/03 08:31:05 jlam Exp $
+# $NetBSD: Makefile.common,v 1.21 2001/12/31 23:54:24 jlam Exp $
DISTNAME= php-${PHP_DIST_VERS}
CATEGORIES+= www php4
@@ -14,7 +14,7 @@ HOMEPAGE= http://www.php.net/
# PHP_DIST_VERS version number on the php distfile
# PHP_BASE_VERS pkgsrc-mangled version number (convert pl -> .)
#
-PHP_DIST_VERS= 4.0.6
+PHP_DIST_VERS= 4.1.0
PHP_BASE_VERS= ${PHP_DIST_VERS}
# Location of installed PHP4 loadable modules under ${PREFIX}.
@@ -22,7 +22,7 @@ PHP_BASE_VERS= ${PHP_DIST_VERS}
# The number for the last part of the path represents a specific version
# of the Zend API.
#
-PHP_EXTENSION_DIR= lib/php/20001222
+PHP_EXTENSION_DIR= lib/php/20010901
PLIST_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
.include "../../mk/bsd.prefs.mk"