From: George Peter Banyard Date: Tue, 12 May 2020 20:24:01 +0000 (+0200) Subject: Fix [-Wundef] warning in BCMath extension X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2bb1cc4ba9861642800ae30deeabfa33bbb3835c;p=php Fix [-Wundef] warning in BCMath extension --- diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index b7afaf04d3..1b91fba72f 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -20,7 +20,7 @@ #include "php.h" -#if HAVE_BCMATH +#ifdef HAVE_BCMATH #include "php_ini.h" #include "zend_exceptions.h"