mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
11 lines
200 B
JavaScript
11 lines
200 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");
|
|
}
|
|
|
|
|