diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2016-02-15 14:34:26 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2016-02-15 14:34:26 +0000 |
commit | e630e52bb5f688a26b92533f2f2b0e17e3b85f33 (patch) | |
tree | 921070ae859847e6ad2f11168de4014a9c3571e8 /devel | |
parent | Update to 20160213. (diff) |
Welcome php 7.0.3
Changelog:
http://php.net/ChangeLog-7.php#7.0.0
http://php.net/ChangeLog-7.php#7.0.1
http://php.net/ChangeLog-7.php#7.0.2
http://php.net/ChangeLog-7.php#7.0.3
I'd like to thanks:
Kurt Jaeger
Matthias Breddin
Rainer Duffner
Victor van Vlaardingen
Torsten Zuehlsdorff
Franco Fichtner
and all helpers and testers from ports@.
Notes
Notes:
svn path=/head/; revision=408932
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-gettext/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-gettext/files/patch-config.m4 | 17 | ||||
-rw-r--r-- | devel/php70-intl/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-json/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-pcntl/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-readline/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-readline/files/patch-config.m4 | 38 | ||||
-rw-r--r-- | devel/php70-readline/files/patch-readline_cli.c | 13 | ||||
-rw-r--r-- | devel/php70-shmop/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-sysvmsg/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-sysvsem/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-sysvshm/Makefile | 10 | ||||
-rw-r--r-- | devel/php70-tokenizer/Makefile | 10 |
14 files changed, 178 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index d1a90a112638..726a36588ede 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3767,6 +3767,16 @@ SUBDIR += php56-sysvsem SUBDIR += php56-sysvshm SUBDIR += php56-tokenizer + SUBDIR += php70-gettext + SUBDIR += php70-intl + SUBDIR += php70-json + SUBDIR += php70-pcntl + SUBDIR += php70-readline + SUBDIR += php70-shmop + SUBDIR += php70-sysvmsg + SUBDIR += php70-sysvsem + SUBDIR += php70-sysvshm + SUBDIR += php70-tokenizer SUBDIR += phpbt SUBDIR += phpsh SUBDIR += phpunit diff --git a/devel/php70-gettext/Makefile b/devel/php70-gettext/Makefile new file mode 100644 index 000000000000..9d558beeaffd --- /dev/null +++ b/devel/php70-gettext/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -gettext + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-gettext/files/patch-config.m4 b/devel/php70-gettext/files/patch-config.m4 new file mode 100644 index 000000000000..2b497d366574 --- /dev/null +++ b/devel/php70-gettext/files/patch-config.m4 @@ -0,0 +1,17 @@ +--- config.m4.orig Tue Jul 27 23:58:02 2004 ++++ config.m4 Tue Jul 27 23:59:44 2004 +@@ -30,7 +30,6 @@ + AC_MSG_ERROR(Unable to find required gettext library) + ]) + ) +- LDFLAGS=$O_LDFLAGS + + AC_DEFINE(HAVE_LIBINTL,1,[ ]) + PHP_NEW_EXTENSION(gettext, gettext.c, $ext_shared) +@@ -46,5 +45,6 @@ + AC_CHECK_LIB($GETTEXT_CHECK_IN_LIB, dngettext, [AC_DEFINE(HAVE_DNGETTEXT, 1, [ ])]) + AC_CHECK_LIB($GETTEXT_CHECK_IN_LIB, dcngettext, [AC_DEFINE(HAVE_DCNGETTEXT, 1, [ ])]) + AC_CHECK_LIB($GETTEXT_CHECK_IN_LIB, bind_textdomain_codeset, [AC_DEFINE(HAVE_BIND_TEXTDOMAIN_CODESET, 1, [ ])]) ++ LDFLAGS=$O_LDFLAGS + + fi diff --git a/devel/php70-intl/Makefile b/devel/php70-intl/Makefile new file mode 100644 index 000000000000..7fbefd3675e5 --- /dev/null +++ b/devel/php70-intl/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -intl + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-json/Makefile b/devel/php70-json/Makefile new file mode 100644 index 000000000000..c796d6618727 --- /dev/null +++ b/devel/php70-json/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -json + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-pcntl/Makefile b/devel/php70-pcntl/Makefile new file mode 100644 index 000000000000..88849b57c2c5 --- /dev/null +++ b/devel/php70-pcntl/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -pcntl + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-readline/Makefile b/devel/php70-readline/Makefile new file mode 100644 index 000000000000..72efa2395e67 --- /dev/null +++ b/devel/php70-readline/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -readline + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-readline/files/patch-config.m4 b/devel/php70-readline/files/patch-config.m4 new file mode 100644 index 000000000000..5edf376bf0e2 --- /dev/null +++ b/devel/php70-readline/files/patch-config.m4 @@ -0,0 +1,38 @@ +--- config.m4.orig 2013-08-20 06:46:43.000000000 +0200 ++++ config.m4 2013-08-27 16:01:29.000000000 +0200 +@@ -5,13 +5,8 @@ + PHP_ARG_WITH(libedit,for libedit readline replacement, + [ --with-libedit[=DIR] Include libedit readline replacement (CLI/CGI only)]) + +-if test "$PHP_LIBEDIT" = "no"; then + PHP_ARG_WITH(readline,for readline support, + [ --with-readline[=DIR] Include readline support (CLI/CGI only)]) +-else +- dnl "register" the --with-readline option to preven invalid "unknown configure option" warning +- php_with_readline=no +-fi + + if test "$PHP_READLINE" && test "$PHP_READLINE" != "no"; then + for i in $PHP_READLINE /usr/local /usr; do +@@ -67,6 +62,13 @@ + -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS + ]) + ++ PHP_CHECK_LIBRARY(readline, rl_completion_matches, ++ [ ++ AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1, [ ]) ++ ],[],[ ++ -L$READLINE_DIR/$PHP_LIBDIR $PHP_READLINE_LIBS ++ ]) ++ + AC_DEFINE(HAVE_LIBREADLINE, 1, [ ]) + + elif test "$PHP_LIBEDIT" != "no"; then +@@ -118,7 +120,6 @@ + fi + + if test "$PHP_READLINE" != "no" || test "$PHP_LIBEDIT" != "no"; then +- AC_CHECK_FUNCS([rl_completion_matches]) + PHP_NEW_EXTENSION(readline, readline.c readline_cli.c, $ext_shared, cli) + PHP_SUBST(READLINE_SHARED_LIBADD) + fi diff --git a/devel/php70-readline/files/patch-readline_cli.c b/devel/php70-readline/files/patch-readline_cli.c new file mode 100644 index 000000000000..02f55974f9b0 --- /dev/null +++ b/devel/php70-readline/files/patch-readline_cli.c @@ -0,0 +1,13 @@ +--- readline_cli.c.orig 2012-03-02 16:40:26.000000000 +0100 ++++ readline_cli.c 2012-03-02 16:40:43.000000000 +0100 +@@ -19,6 +19,10 @@ + + /* $Id: readline_cli.c 321634 2012-01-01 13:15:04Z felipe $ */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include "php.h" + + #ifndef HAVE_RL_COMPLETION_MATCHES diff --git a/devel/php70-shmop/Makefile b/devel/php70-shmop/Makefile new file mode 100644 index 000000000000..b4039dc94582 --- /dev/null +++ b/devel/php70-shmop/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -shmop + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-sysvmsg/Makefile b/devel/php70-sysvmsg/Makefile new file mode 100644 index 000000000000..36a827cb48ed --- /dev/null +++ b/devel/php70-sysvmsg/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -sysvmsg + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-sysvsem/Makefile b/devel/php70-sysvsem/Makefile new file mode 100644 index 000000000000..92c9b46fe47c --- /dev/null +++ b/devel/php70-sysvsem/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -sysvsem + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-sysvshm/Makefile b/devel/php70-sysvshm/Makefile new file mode 100644 index 000000000000..b6ec845a8084 --- /dev/null +++ b/devel/php70-sysvshm/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -sysvshm + +.include "${MASTERDIR}/Makefile" diff --git a/devel/php70-tokenizer/Makefile b/devel/php70-tokenizer/Makefile new file mode 100644 index 000000000000..9a4351c978b3 --- /dev/null +++ b/devel/php70-tokenizer/Makefile @@ -0,0 +1,10 @@ +# Created by: Alex Dupre <ale@FreeBSD.org> +# $FreeBSD$ + +CATEGORIES= devel + +MASTERDIR= ${.CURDIR}/../../lang/php70 + +PKGNAMESUFFIX= -tokenizer + +.include "${MASTERDIR}/Makefile" |