From: George Peter Banyard Date: Wed, 20 May 2020 12:12:36 +0000 (+0200) Subject: Fix [-Wundef] warning in XML extension X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fa0d30014b1064b9d506f88eed4149b44856913;p=php Fix [-Wundef] warning in XML extension --- diff --git a/ext/xml/xml.c b/ext/xml/xml.c index 802f9a0caa..19d7238c46 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -28,7 +28,7 @@ #include "ext/standard/html.h" #include "zend_interfaces.h" -#if HAVE_XML +#ifdef HAVE_XML #include "php_xml.h" # include "ext/standard/head.h"