Skip to content

Commit

Permalink
Fix expat_compat.h path used in #include
Browse files Browse the repository at this point in the history
Using ext/xml/expat_compat.h does not work if the extension is
compiled out-of-tree.
  • Loading branch information
tvlooy authored and nikic committed Mar 23, 2018
1 parent 2842aa2 commit 7f4327b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/xml/php_xml.h
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit 7f4327b

Please sign in to comment.