diff options
author | tz <tz@FreeBSD.org> | 2017-11-16 18:48:48 +0800 |
---|---|---|
committer | tz <tz@FreeBSD.org> | 2017-11-16 18:48:48 +0800 |
commit | 9c489fdd6e8643dedbe20c8b8fbcfc2d73c2109c (patch) | |
tree | a2ff3d816b255016827738be132f8fc8bff8f5d9 /Mk/Uses | |
parent | 27bd51e10cb05bed8f12f0c893e867200727f95c (diff) | |
download | freebsd-ports-gnome-9c489fdd6e8643dedbe20c8b8fbcfc2d73c2109c.tar.gz freebsd-ports-gnome-9c489fdd6e8643dedbe20c8b8fbcfc2d73c2109c.tar.zst freebsd-ports-gnome-9c489fdd6e8643dedbe20c8b8fbcfc2d73c2109c.zip |
Add PHP 7.2 RC6
Notable changes:
- mcrypt module was removed
- sodium module was added
- sybase_ct artifacts removed
Also many PECL ports will not work with this version
since some files got renamed.
Reviewed by: mat, ale, Rainer Duffner <rainer@ultra-secure.de>
Differential Revision: https://reviews.freebsd.org/D12980
Diffstat (limited to 'Mk/Uses')
-rw-r--r-- | Mk/Uses/php.mk | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Mk/Uses/php.mk b/Mk/Uses/php.mk index ce01a49b6a01..87a4233708f9 100644 --- a/Mk/Uses/php.mk +++ b/Mk/Uses/php.mk @@ -114,7 +114,10 @@ DEFAULT_PHP_VER?= ${PHP_DEFAULT:S/.//} # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. PHP_VER?= ${DEFAULT_PHP_VER} -. if ${PHP_VER} == 71 +. if ${PHP_VER} == 72 +PHP_EXT_DIR= 20170718 +PHP_EXT_INC= pcre spl +. elif ${PHP_VER} == 71 PHP_EXT_DIR= 20160303 PHP_EXT_INC= pcre spl . elif ${PHP_VER} == 70 @@ -301,9 +304,10 @@ _USE_PHP_ALL= bcmath bitset bz2 calendar ctype curl dba dom \ _USE_PHP_VER56= ${_USE_PHP_ALL} mssql mysql sybase_ct _USE_PHP_VER70= ${_USE_PHP_ALL} _USE_PHP_VER71= ${_USE_PHP_ALL} +_USE_PHP_VER72= ${_USE_PHP_ALL} sodium bcmath_DEPENDS= math/php${PHP_VER}-bcmath -. if ${PHP_VER} == 70 || ${PHP_VER} == 71 +. if ${PHP_VER} == 70 || ${PHP_VER} == 71 || ${PHP_VER} == 72 bitset_DEPENDS= math/pecl-bitset . else bitset_DEPENDS= math/pecl-bitset2 @@ -328,7 +332,7 @@ iconv_DEPENDS= converters/php${PHP_VER}-iconv igbinary_DEPENDS= converters/pecl-igbinary imap_DEPENDS= mail/php${PHP_VER}-imap interbase_DEPENDS= databases/php${PHP_VER}-interbase -. if ${PHP_VER} == 70 || ${PHP_VER} == 71 +. if ${PHP_VER} == 70 || ${PHP_VER} == 71 || ${PHP_VER} == 72 intl_DEPENDS= devel/php${PHP_VER}-intl . else intl_DEPENDS= devel/pecl-intl |