blob: 35a29c02efb3ea9bdfccbb3c018128e50d8a91fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// $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");
}
|