diff options
author | taca <taca> | 2013-03-16 02:02:13 +0000 |
---|---|---|
committer | taca <taca> | 2013-03-16 02:02:13 +0000 |
commit | 140b0a759d50bb2d0d94ab18400a8aedb440ff32 (patch) | |
tree | d15e381bf908ec72f9bf59660cd36095ee5b880e /lang/php | |
parent | f0b79cf2da522a4038667c1c1c4475182157fd94 (diff) | |
download | pkgsrc-140b0a759d50bb2d0d94ab18400a8aedb440ff32.tar.gz |
* Make default version of PHP to 5.4: PHP_VERSION_DEFAULT's default is 54.
* Update PHP53_VERSION and PHP54_VERSION.
Diffstat (limited to 'lang/php')
-rw-r--r-- | lang/php/phpversion.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lang/php/phpversion.mk b/lang/php/phpversion.mk index 331e8811260..2926920277c 100644 --- a/lang/php/phpversion.mk +++ b/lang/php/phpversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.30 2013/02/22 03:08:22 taca Exp $ +# $NetBSD: phpversion.mk,v 1.31 2013/03/16 02:02:13 taca Exp $ # # This file selects a PHP version, based on the user's preferences and # the installed packages. It does not add a dependency on the PHP @@ -11,7 +11,7 @@ # the package. # # Possible: 53 54 -# Default: 53 +# Default: 54 # # === Infrastructure variables === # @@ -28,7 +28,7 @@ # The PHP versions that are accepted by the package. # # Possible: 53 54 -# Default: 53 54 +# Default: 54 53 # # === Variables defined by this file === # @@ -54,7 +54,7 @@ # The directory of the PHP implementation, relative to the # package directory. # -# Example: ../../lang/php5 +# Example: ../../lang/php54 # # PHP_PKG_PREFIX # The prefix that is prepended to the package name. @@ -75,11 +75,11 @@ _SYS_VARS.php= PKG_PHP_VERSION PKG_PHP PHPPKGSRCDIR PHP_PKG_PREFIX \ .include "../../mk/bsd.prefs.mk" -PHP53_VERSION= 5.3.22 -PHP54_VERSION= 5.4.12 +PHP53_VERSION= 5.3.23 +PHP54_VERSION= 5.4.13 -PHP_VERSION_DEFAULT?= 53 -PHP_VERSIONS_ACCEPTED?= 53 54 +PHP_VERSION_DEFAULT?= 54 +PHP_VERSIONS_ACCEPTED?= 54 53 # transform the list into individual variables .for pv in ${PHP_VERSIONS_ACCEPTED} |