mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_WITH("simplexml", "Simple XML support", "yes");
|
|
|
|
if (PHP_SIMPLEXML == "yes" && PHP_LIBXML == "yes") {
|
|
EXTENSION("simplexml", "simplexml.c");
|
|
AC_DEFINE("HAVE_SIMPLEXML", 1, "Simple XML support");
|
|
}
|
|
|
|
|