mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
19 lines
465 B
JavaScript
19 lines
465 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_WITH("xml", "XML support", "yes");
|
|
|
|
if (PHP_XML == "yes") {
|
|
if (PHP_LIBXML == "yes"
|
|
&& ADD_EXTENSION_DEP('xml', 'libxml')) {
|
|
EXTENSION("xml", "xml.c compat.c");
|
|
AC_DEFINE("HAVE_XML", 1, "XML support");
|
|
if (!PHP_XML_SHARED) {
|
|
ADD_FLAG("CFLAGS_XML", "/D LIBXML_STATIC ");
|
|
}
|
|
PHP_INSTALL_HEADERS("", "ext/xml");
|
|
} else {
|
|
WARNING("xml support can't be enabled, libraries or headers are missing")
|
|
PHP_ZLIB = "no"
|
|
}
|
|
} |