mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
- don't enable xmlrpc when libxml is missing
This commit is contained in:
parent
504fe5eedb
commit
c02eff3995
@ -5,15 +5,13 @@ ARG_WITH("xmlrpc", "XMLRPC-EPI support", "no");
|
||||
|
||||
if (PHP_XMLRPC != "no") {
|
||||
if (CHECK_HEADER_ADD_INCLUDE("xmlrpc.h", "CFLAGS_XMLRPC", configure_module_dirname + "/libxmlrpc")
|
||||
&& CHECK_HEADER_ADD_INCLUDE("iconv.h", "CFLAGS")) {
|
||||
&& CHECK_HEADER_ADD_INCLUDE("iconv.h", "CFLAGS")
|
||||
&& ADD_EXTENSION_DEP('xmlrpc', 'libxml')) {
|
||||
EXTENSION('xmlrpc', 'xmlrpc-epi-php.c', PHP_XMLRPC_SHARED, "-DVERSION=\"0.50\"");
|
||||
ADD_SOURCES(configure_module_dirname + "/libxmlrpc", "base64.c simplestring.c xml_to_dandarpc.c \
|
||||
xmlrpc_introspection.c encodings.c system_methods.c xml_to_xmlrpc.c \
|
||||
queue.c xml_element.c xmlrpc.c xml_to_soap.c", "xmlrpc");
|
||||
|
||||
if (!ADD_EXTENSION_DEP('xmlrpc', 'libxml')) {
|
||||
PHP_XMLRPC = "no";
|
||||
}
|
||||
} else {
|
||||
WARNING("xmlrpc support can't be enabled, libraries or headers are missing")
|
||||
PHP_XMLRPC = "no";
|
||||
|
Loading…
Reference in New Issue
Block a user