From: Tom Van Looy Date: Tue, 20 Feb 2018 18:57:48 +0000 (+0100) Subject: Fix expat_compat.h path used in #include X-Git-Tag: php-7.2.5RC1~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f4327bc244263818bb12d4dc87f8a454e0392f2;p=php 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. --- 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!"