mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
16 lines
311 B
JavaScript
16 lines
311 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_WITH("xml", "XML support", "yes");
|
|
|
|
if (PHP_XML == "yes" && PHP_LIBXML == "yes") {
|
|
EXTENSION("xml", "xml.c compat.c");
|
|
AC_DEFINE("HAVE_XML", 1, "XML support");
|
|
if (!PHP_XML_SHARED) {
|
|
ADD_FLAG("CFLAGS_XML", "/D LIBXML_STATIC ");
|
|
}
|
|
ADD_EXTENSION_DEP('xml', 'libxml');
|
|
}
|
|
|
|
|