summaryrefslogtreecommitdiff
path: root/textproc/php70-wddx/files/patch-config.m4
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2016-02-15 14:34:26 +0000
committerMartin Wilke <miwi@FreeBSD.org>2016-02-15 14:34:26 +0000
commite630e52bb5f688a26b92533f2f2b0e17e3b85f33 (patch)
tree921070ae859847e6ad2f11168de4014a9c3571e8 /textproc/php70-wddx/files/patch-config.m4
parentUpdate 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 'textproc/php70-wddx/files/patch-config.m4')
-rw-r--r--textproc/php70-wddx/files/patch-config.m422
1 files changed, 22 insertions, 0 deletions
diff --git a/textproc/php70-wddx/files/patch-config.m4 b/textproc/php70-wddx/files/patch-config.m4
new file mode 100644
index 000000000000..08787003b8f9
--- /dev/null
+++ b/textproc/php70-wddx/files/patch-config.m4
@@ -0,0 +1,22 @@
+--- config.m4.orig Mon Jul 26 09:05:10 2004
++++ config.m4 Mon Jul 26 09:07:46 2004
+@@ -5,6 +5,9 @@
+ PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
+ [ --enable-wddx Enable WDDX support.])
+
++PHP_ARG_WITH(libxml-dir, libxml2 install dir,
++[ --with-libxml-dir=<DIR> WDDX: libxml2 install prefix], no, no)
++
+ if test "$PHP_WDDX" != "no"; then
+ if test "$ext_shared" != "yes" && test "$enable_xml" = "no"; then
+ AC_MSG_WARN(Activating XML)
+@@ -12,4 +15,9 @@
+ fi
+ AC_DEFINE(HAVE_WDDX, 1, [ ])
+ PHP_NEW_EXTENSION(wddx, wddx.c, $ext_shared)
++
++ PHP_SETUP_LIBXML(WDDX_SHARED_LIBADD, [
++ ], [
++ AC_MSG_ERROR([xml2-config not found. Please check your libxml2 installation.])
++ ])
+ fi