summaryrefslogtreecommitdiff
path: root/ext/xml/config.w32
blob: 08d25ffe570420368986477748b8bb3980ee43f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// $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');
}