From 7f4327bc244263818bb12d4dc87f8a454e0392f2 Mon Sep 17 00:00:00 2001 From: Tom Van Looy Date: Tue, 20 Feb 2018 19:57:48 +0100 Subject: 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. --- ext/xml/php_xml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/xml/php_xml.h') 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!" -- cgit v1.2.1