mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
75fb74860d
Normalization include: - Use dnl for everything that can be ommitted when configure is built in favor of the shell comment character # which is visible in the output. - Line length normalized to 80 columns - Dots for most of the one line sentences - Macro definitions include similar pattern header comments now
18 lines
560 B
Plaintext
18 lines
560 B
Plaintext
PHP_ARG_ENABLE([soap],
|
|
[whether to enable SOAP support],
|
|
[AS_HELP_STRING([--enable-soap],
|
|
[Enable SOAP support])])
|
|
|
|
if test "$PHP_SOAP" != "no"; then
|
|
|
|
if test "$PHP_LIBXML" = "no"; then
|
|
AC_MSG_ERROR([SOAP extension requires LIBXML extension, add --with-libxml])
|
|
fi
|
|
|
|
PHP_SETUP_LIBXML(SOAP_SHARED_LIBADD, [
|
|
AC_DEFINE(HAVE_SOAP,1,[ ])
|
|
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)
|
|
])
|
|
fi
|