From 2bb1cc4ba9861642800ae30deeabfa33bbb3835c Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Tue, 12 May 2020 22:24:01 +0200 Subject: [PATCH] Fix [-Wundef] warning in BCMath extension --- ext/bcmath/bcmath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.50.1