mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This syncs all help texts of extension preprocessor macros to the same style "Define to 1 if the PHP extension '<ext>' is available.". [skip ci]
26 lines
685 B
Plaintext
26 lines
685 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
|
|
PHP_SETUP_LIBXML([SOAP_SHARED_LIBADD], [
|
|
AC_DEFINE([HAVE_SOAP], [1],
|
|
[Define to 1 if the PHP extension 'soap' is available.])
|
|
PHP_NEW_EXTENSION([soap], m4_normalize([
|
|
php_encoding.c
|
|
php_http.c
|
|
php_packet_soap.c
|
|
php_schema.c
|
|
php_sdl.c
|
|
php_xml.c
|
|
soap.c
|
|
]),
|
|
[$ext_shared],,
|
|
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
|
|
PHP_SUBST([SOAP_SHARED_LIBADD])
|
|
])
|
|
PHP_ADD_EXTENSION_DEP(soap, libxml)
|
|
PHP_ADD_EXTENSION_DEP(soap, session, true)
|
|
fi
|