File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / dom / config.w32
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:37 2012 UTC (12 years, 10 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

    1: // $Id: config.w32,v 1.1.1.2 2012/05/29 12:34:37 misho Exp $
    2: // vim:ft=javascript
    3: 
    4: ARG_WITH("dom", "DOM support", "yes");
    5: 
    6: if (PHP_DOM == "yes") {
    7: 	if (PHP_LIBXML == "yes" && ADD_EXTENSION_DEP('dom', 'libxml')) {
    8: 		EXTENSION("dom", "php_dom.c attr.c document.c domerrorhandler.c \
    9: 			domstringlist.c domexception.c namelist.c processinginstruction.c \
   10: 			cdatasection.c documentfragment.c domimplementation.c element.c \
   11: 			node.c string_extend.c characterdata.c documenttype.c \
   12: 			domimplementationlist.c entity.c nodelist.c text.c comment.c \
   13: 			domconfiguration.c domimplementationsource.c entityreference.c \
   14: 			notation.c xpath.c dom_iterators.c typeinfo.c domerror.c \
   15: 			domlocator.c namednodemap.c userdatahandler.c");
   16: 
   17: 		AC_DEFINE("HAVE_DOM", 1, "DOM support");
   18: 
   19: 		if (!PHP_DOM_SHARED) {
   20: 			ADD_FLAG("CFLAGS_DOM", "/D LIBXML_STATIC ");
   21: 		}
   22: 		PHP_INSTALL_HEADERS("ext/dom", "xml_common.h");
   23: 	} else {
   24: 		WARNING("dom support can't be enabled, libxml is not enabled")
   25: 		PHP_DOM = "no"
   26: 	}
   27: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>