diff options
author | taca <taca@pkgsrc.org> | 2019-12-09 14:19:44 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2019-12-09 14:19:44 +0000 |
commit | 8abdcdca1b928378cbafee92e8767dbc8bf3dbba (patch) | |
tree | 105666b749c2cdd60c49dd6c1c39297a0c9500fe | |
parent | b959bf3fa0f1261d996fe2017f9e6718959d286b (diff) | |
download | pkgsrc-8abdcdca1b928378cbafee92e8767dbc8bf3dbba.tar.gz |
lang/php: change default version of php to 7.3.x
Change default version of php from 7.1.x to 7.3.x.
* PHP 7.1.x is now EOL after 1st Dec 2019.
* PHP 7.3.x is actively maintained release.
-rw-r--r-- | lang/php/phpversion.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/php/phpversion.mk b/lang/php/phpversion.mk index 543d94ff920..c61f6949647 100644 --- a/lang/php/phpversion.mk +++ b/lang/php/phpversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.275 2019/11/22 05:34:51 taca Exp $ +# $NetBSD: phpversion.mk,v 1.276 2019/12/09 14:19:44 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: 56 71 72 73 -# Default: 71 +# Default: 73 # # === Infrastructure variables === # @@ -28,7 +28,7 @@ # The PHP versions that are accepted by the package. # # Possible: 56 71 72 73 -# Default: 71 +# Default: 73 56 71 72 # # PHP_VERSIONS_INCOMPATIBLE # The PHP versions that are not supported by the package. @@ -106,8 +106,8 @@ _SYS_VARS.php= PKG_PHP_VERSION PKG_PHP PHPPKGSRCDIR PHP_PKG_PREFIX \ .include "../../mk/bsd.prefs.mk" -PHP_VERSION_DEFAULT?= 71 -PHP_VERSIONS_ACCEPTED?= 56 71 72 73 +PHP_VERSION_DEFAULT?= 73 +PHP_VERSIONS_ACCEPTED?= 73 56 71 72 .for pv in ${PHP_VERSIONS_ACCEPTED} . if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv}) _PHP_VERSIONS_ACCEPTED+= ${pv} |