diff options
author | Tom Van Looy <tom@ctors.net> | 2018-02-20 19:57:48 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-03-23 22:01:25 +0100 |
commit | 7f4327bc244263818bb12d4dc87f8a454e0392f2 (patch) | |
tree | 6e0cacd46018a1eb940f58271c93b917cac596ea /ext/xml/php_xml.h | |
parent | 2842aa2a078eb1cad55540b61e7edf111395150d (diff) | |
download | php-git-7f4327bc244263818bb12d4dc87f8a454e0392f2.tar.gz |
Fix expat_compat.h path used in #include
Using ext/xml/expat_compat.h does not work if the extension is
compiled out-of-tree.
Diffstat (limited to 'ext/xml/php_xml.h')
-rw-r--r-- | ext/xml/php_xml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xml/php_xml.h b/ext/xml/php_xml.h index a26d0927cc..498f471361 100644 --- a/ext/xml/php_xml.h +++ b/ext/xml/php_xml.h @@ -36,7 +36,7 @@ extern zend_module_entry xml_module_entry; #ifdef HAVE_XML -#include "ext/xml/expat_compat.h" +#include "expat_compat.h" #ifdef XML_UNICODE #error "UTF-16 Unicode support not implemented!" |