diff options
author | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2018-10-08 08:52:51 +0000 |
---|---|---|
committer | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2018-10-08 08:52:51 +0000 |
commit | 3a5533b48d284380e9a3a97b953e1a555242caf2 (patch) | |
tree | adfd6b20496941d7ab22cbbb81aacdf0db2ffbe3 /net/php73-xmlrpc/files/patch-config.m4 | |
parent | Update to 0.19.0 release. (diff) |
Add PHP 7.3 RC2 to the ports-tree.
Notable changes:
- Switch from PCRE to PCRE2
- Many modules now require PCRE2 for building
- graphics/php73-gd: X11 option is no longer default
Changes to Mk/Uses/php.mk approved by ale
Notes
Notes:
svn path=/head/; revision=481525
Diffstat (limited to 'net/php73-xmlrpc/files/patch-config.m4')
-rw-r--r-- | net/php73-xmlrpc/files/patch-config.m4 | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/php73-xmlrpc/files/patch-config.m4 b/net/php73-xmlrpc/files/patch-config.m4 new file mode 100644 index 000000000000..d2dc85f26a48 --- /dev/null +++ b/net/php73-xmlrpc/files/patch-config.m4 @@ -0,0 +1,23 @@ +--- config.m4.orig 2014-04-29 08:04:30.000000000 +0000 ++++ config.m4 2014-05-15 08:04:00.883004682 +0000 +@@ -61,11 +61,9 @@ if test "$PHP_XMLRPC" != "no"; then + fi + fi + +- dnl if iconv is shared or missing then we should build iconv ourselves +- if test "$PHP_ICONV_SHARED" = "yes" || test "$PHP_ICONV" = "no"; then +- + if test "$PHP_ICONV_DIR" != "no"; then + PHP_ICONV=$PHP_ICONV_DIR ++ PHP_ADD_INCLUDE($PHP_ICONV_DIR/include) + fi + + if test -z "$PHP_ICONV" || test "$PHP_ICONV" = "no"; then +@@ -75,7 +73,6 @@ if test "$PHP_XMLRPC" != "no"; then + PHP_SETUP_ICONV(XMLRPC_SHARED_LIBADD, [], [ + AC_MSG_ERROR([iconv not found, in order to build xmlrpc you need the iconv library]) + ]) +- fi + fi + + if test "$PHP_XMLRPC" = "yes"; then |