summaryrefslogtreecommitdiff
path: root/ext/soap/config.m4
diff options
context:
space:
mode:
authorShane Caraveo <shane@php.net>2002-07-07 23:03:43 +0000
committerShane Caraveo <shane@php.net>2002-07-07 23:03:43 +0000
commitf8875adaab9fe973ab798ead093e21972ed43a13 (patch)
treed5495bb982d966a5bb42afb20fb80338cccce1f4 /ext/soap/config.m4
parenta6d815fb7c98c32a4180e30dfaca316cbeae8912 (diff)
downloadphp-git-f8875adaab9fe973ab798ead093e21972ed43a13.tar.gz
import php-soap library from sourceforge
Diffstat (limited to 'ext/soap/config.m4')
-rw-r--r--ext/soap/config.m416
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/soap/config.m4 b/ext/soap/config.m4
new file mode 100644
index 0000000000..44c12cb037
--- /dev/null
+++ b/ext/soap/config.m4
@@ -0,0 +1,16 @@
+dnl $Id$
+dnl config.m4 for extension soap
+
+dnl Comments in this file start with the string 'dnl'.
+dnl Remove where necessary. This file will not work
+dnl without editing.
+
+PHP_ARG_ENABLE(soap, whether to enable soap support,
+Make sure that the comment is aligned:
+[ --enable-soap Enable soap support])
+
+if test "$PHP_SOAP" != "no"; then
+ PHP_ADD_INCLUDE(/usr/local/include/libxml2)
+ PHP_ADD_LIBRARY_WITH_PATH(xml2,/usr/local/lib,SOAP_SHARED_LIBADD)
+ PHP_EXTENSION(soap, $ext_shared)
+fi