diff options
author | Pedro Magalhães <mail@pmmaga.net> | 2018-02-06 19:16:22 +0000 |
---|---|---|
committer | Joe <krakjoe@php.net> | 2018-02-08 10:50:22 +0100 |
commit | 5673c641dc30610e7e2fcca2e9b61761e4608ffc (patch) | |
tree | 7143149e280b885a3c5880883bb3da7dbc0fb6b6 /ext/soap | |
parent | 8000334538c53090067246fea9411701cae8c6d5 (diff) | |
download | php-git-5673c641dc30610e7e2fcca2e9b61761e4608ffc.tar.gz |
Fixes bug #75871 Use pkg-config for libxml2 if available
Diffstat (limited to 'ext/soap')
-rw-r--r-- | ext/soap/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/config.m4 b/ext/soap/config.m4 index 5fcb8bd447..ea39dd7894 100644 --- a/ext/soap/config.m4 +++ b/ext/soap/config.m4 @@ -20,6 +20,6 @@ if test "$PHP_SOAP" != "no"; then PHP_NEW_EXTENSION(soap, soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_xml.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1) PHP_SUBST(SOAP_SHARED_LIBADD) ], [ - AC_MSG_ERROR([xml2-config not found. Please check your libxml2 installation.]) + AC_MSG_ERROR([libxml2 not found. Please check your libxml2 installation.]) ]) fi |