You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
311 B

// $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');
}