summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorUwe Steinmann <steinm@php.net>2000-08-07 11:40:54 +0000
committerUwe Steinmann <steinm@php.net>2000-08-07 11:40:54 +0000
commit6de4e2e3825ab3de92e33468bc00ac58749af9c3 (patch)
treec2fb5560eb575f45df967b0c81e0a857a35c2958 /ext/domxml/php_domxml.c
parentb5d39b4820f6409b8ca4e305a8189caf1ad99efd (diff)
downloadphp-git-6de4e2e3825ab3de92e33468bc00ac58749af9c3.tar.gz
- made compilation as dynamic lib possible
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 02642d4a9b..6ceb696fde 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -107,6 +107,10 @@ zend_module_entry php_domxml_module_entry = {
"domxml", php_domxml_functions, PHP_MINIT(domxml), NULL, NULL, NULL, PHP_MINFO(domxml), STANDARD_MODULE_PROPERTIES
};
+#ifdef COMPILE_DL_DOMXML
+ZEND_GET_MODULE(php_domxml)
+#endif
+
void _free_node(xmlNode *tmp) {
/*fprintf(stderr, "Freeing node: %s\n", tmp->name);*/
}