mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

This is at this point only meta-data information for extensions to depend also on date extension. This is a configure phase dependency for consistency.
27 lines
757 B
Text
27 lines
757 B
Text
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, date)
|
|
PHP_ADD_EXTENSION_DEP(soap, hash)
|
|
PHP_ADD_EXTENSION_DEP(soap, libxml)
|
|
PHP_ADD_EXTENSION_DEP(soap, session, true)
|
|
fi
|