summaryrefslogtreecommitdiff
path: root/ext/dom/domimplementation.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-08-22 15:04:29 +0000
committerWez Furlong <wez@php.net>2003-08-22 15:04:29 +0000
commit21329c5e0ca7040333daada9afa89712f553dc04 (patch)
tree0d3eda0faf269143a361eec23f45fe976664b273 /ext/dom/domimplementation.c
parentc29e30d3afd5670d8793de1dd52982a7f41c1e59 (diff)
downloadphp-git-21329c5e0ca7040333daada9afa89712f553dc04.tar.gz
allow building without libxml2 under win32
Diffstat (limited to 'ext/dom/domimplementation.c')
-rw-r--r--ext/dom/domimplementation.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dom/domimplementation.c b/ext/dom/domimplementation.c
index 6eb11863cb..c039f72eb0 100644
--- a/ext/dom/domimplementation.c
+++ b/ext/dom/domimplementation.c
@@ -24,6 +24,7 @@
#endif
#include "php.h"
+#if HAVE_LIBXML && HAVE_DOM
#include "php_dom.h"
/*
@@ -235,3 +236,4 @@ PHP_FUNCTION(dom_domimplementation_get_feature)
DOM_NOT_IMPLEMENTED();
}
/* }}} end dom_domimplementation_get_feature */
+#endif