config.w32 739 B

123456789101112131415161718192021222324
  1. // $Id$
  2. // vim:ft=javascript
  3. ARG_WITH("simplexml", "Simple XML support", "yes");
  4. if (PHP_SIMPLEXML == "yes") {
  5. if(PHP_LIBXML == "yes"
  6. && ADD_EXTENSION_DEP('simplexml', 'libxml')) {
  7. EXTENSION("simplexml", "simplexml.c sxe.c");
  8. AC_DEFINE("HAVE_SIMPLEXML", 1, "Simple XML support");
  9. if (!PHP_SIMPLEXML_SHARED) {
  10. ADD_FLAG("CFLAGS_SIMPLEXML", "/D LIBXML_STATIC");
  11. }
  12. if (!ADD_EXTENSION_DEP('simplexml', 'spl', true)) {
  13. MESSAGE("\tSPL support in simplexml disabled");
  14. }
  15. ADD_FLAG("CFLAGS_SIMPLEXML", "/D PHP_SIMPLEXML_EXPORTS ");
  16. PHP_INSTALL_HEADERS("ext/simplexml/", "php_simplexml.h php_simplexml_exports.h");
  17. } else {
  18. PHP_SIMPLEXML = "no";
  19. WARNING("simplexml not enabled; libraries and headers not found");
  20. }
  21. }