diff options
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 3d31e6adeb..e58e1d3a81 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -41,6 +41,10 @@ #include <libxslt/xsltInternals.h> #include <libxslt/xsltutils.h> #include <libxslt/transform.h> +#if HAVE_DOMEXSLT +#include <libexslt/exslt.h> +#include <libexslt/exsltconfig.h> +#endif #endif extern zend_module_entry domxml_module_entry; @@ -74,7 +78,9 @@ PHP_FUNCTION(domxml_doc_create_entity_reference); PHP_FUNCTION(domxml_doc_imported_node); PHP_FUNCTION(domxml_add_root); PHP_FUNCTION(domxml_intdtd); -PHP_FUNCTION(domxml_dumpmem); +PHP_FUNCTION(domxml_dump_mem); +PHP_FUNCTION(domxml_dump_mem_file); + #if defined(LIBXML_HTML_ENABLED) PHP_FUNCTION(domxml_html_dump_mem); #endif |