diff options
author | tz <tz@FreeBSD.org> | 2017-07-10 19:40:48 +0800 |
---|---|---|
committer | tz <tz@FreeBSD.org> | 2017-07-10 19:40:48 +0800 |
commit | 82a1457e250772b93f3e63ce6c44e9a21f0077d6 (patch) | |
tree | 4c49d32431fc968ee6004c49a45728d8fb16bd0f | |
parent | 4b7db7c0ab89e4253c256155a6fd56f78d86299b (diff) | |
download | freebsd-ports-gnome-82a1457e250772b93f3e63ce6c44e9a21f0077d6.tar.gz freebsd-ports-gnome-82a1457e250772b93f3e63ce6c44e9a21f0077d6.tar.zst freebsd-ports-gnome-82a1457e250772b93f3e63ce6c44e9a21f0077d6.zip |
PHP 7.0 and 7.1: switch to devel/oniguruma6
For mbstring extensions switch from devel/oniguruma5
to devel/oniguruma6 to fix security issues covert in
Oniguruma 6.4.
PHP bundles oniguruma 6.3 but i did some more tests,
to make sure nothing breaks.
Also add $FreeBSD$ header to Makefile.ext
PR: 220598
Submitted by: Trond.Endrestol@ximalas.info
MFH: 2017Q3
-rw-r--r-- | converters/php70-mbstring/Makefile | 2 | ||||
-rw-r--r-- | converters/php71-mbstring/Makefile | 2 | ||||
-rw-r--r-- | lang/php70/Makefile.ext | 2 | ||||
-rw-r--r-- | lang/php71/Makefile.ext | 4 |
4 files changed, 9 insertions, 1 deletions
diff --git a/converters/php70-mbstring/Makefile b/converters/php70-mbstring/Makefile index 634120319c67..7e099e5ffc22 100644 --- a/converters/php70-mbstring/Makefile +++ b/converters/php70-mbstring/Makefile @@ -3,6 +3,8 @@ CATEGORIES= converters +PORTREVISION= 1 + MASTERDIR= ${.CURDIR}/../../lang/php70 PKGNAMESUFFIX= -mbstring diff --git a/converters/php71-mbstring/Makefile b/converters/php71-mbstring/Makefile index 4674db771e06..d9901c3faa2a 100644 --- a/converters/php71-mbstring/Makefile +++ b/converters/php71-mbstring/Makefile @@ -2,6 +2,8 @@ CATEGORIES= converters +PORTREVISION= 1 + MASTERDIR= ${.CURDIR}/../../lang/php71 PKGNAMESUFFIX= -mbstring diff --git a/lang/php70/Makefile.ext b/lang/php70/Makefile.ext index 16b7504c903b..bf8d57699a64 100644 --- a/lang/php70/Makefile.ext +++ b/lang/php70/Makefile.ext @@ -1,3 +1,5 @@ +# $FreeBSD$ + COMMENT= The ${PHP_MODNAME} shared extension for php USES+= php:ext diff --git a/lang/php71/Makefile.ext b/lang/php71/Makefile.ext index 39c9ab4c0c4d..17323f4ec79a 100644 --- a/lang/php71/Makefile.ext +++ b/lang/php71/Makefile.ext @@ -1,3 +1,5 @@ +# $FreeBSD$ + COMMENT= The ${PHP_MODNAME} shared extension for php USES+= php:ext @@ -532,7 +534,7 @@ LIB_DEPENDS+= libc-client4.so.9:mail/cclient .if ${PHP_MODNAME} == "mbstring" . if ${PORT_OPTIONS:MREGEX} -LIB_DEPENDS+= libonig.so:devel/oniguruma5 +LIB_DEPENDS+= libonig.so:devel/oniguruma6 CONFIGURE_ARGS+=--with-onig=${LOCALBASE} . else CONFIGURE_ARGS+=--disable-mbregex |