mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
41976c7ab6
- use MESSAGE in mysql* - use correct CFLAGS for ext/libxml headers
19 lines
472 B
JavaScript
19 lines
472 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_WITH("simplexml", "Simple XML support", "yes");
|
|
|
|
if (PHP_SIMPLEXML == "yes" && PHP_LIBXML == "yes"
|
|
&& ADD_EXTENSION_DEP('simplexml', 'libxml')) {
|
|
EXTENSION("simplexml", "simplexml.c");
|
|
AC_DEFINE("HAVE_SIMPLEXML", 1, "Simple XML support");
|
|
if (!PHP_SIMPLEXML_SHARED) {
|
|
ADD_FLAG("CFLAGS_SIMPLEXML", "/D LIBXML_STATIC");
|
|
}
|
|
if (!ADD_EXTENSION_DEP('simplexml', 'spl', true)) {
|
|
MESSAGE("\tSPL support in simplexml disabled");
|
|
}
|
|
}
|
|
|
|
|