summaryrefslogtreecommitdiff
path: root/ext/simplexml/config.w32
diff options
context:
space:
mode:
Diffstat (limited to 'ext/simplexml/config.w32')
-rw-r--r--ext/simplexml/config.w3216
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/simplexml/config.w32 b/ext/simplexml/config.w32
deleted file mode 100644
index 26a87f1c14..0000000000
--- a/ext/simplexml/config.w32
+++ /dev/null
@@ -1,16 +0,0 @@
-// $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");
- if (!PHP_SIMPLEXML_SHARED) {
- ADD_FLAG("CFLAGS_SIMPLEXML", "/D LIBXML_STATIC");
- }
- ADD_EXTENSION_DEP('simplexml', 'libxml');
- ADD_EXTENSION_DEP('simplexml', 'spl', true);
-}
-
-