From 42c99631334c1c8fe61e1094a2a08705a40ae83e Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Fri, 9 Aug 2024 10:39:16 +0200 Subject: [PATCH] Autotools: Quote PHP_CXX_COMPILE_STDCXX macro arguments [skip ci] --- ext/intl/config.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/intl/config.m4 b/ext/intl/config.m4 index 5773a2879e6..97e93d11e72 100644 --- a/ext/intl/config.m4 +++ b/ext/intl/config.m4 @@ -89,10 +89,10 @@ if test "$PHP_INTL" != "no"; then AC_MSG_CHECKING([if intl requires -std=gnu++17]) AS_IF([$PKG_CONFIG icu-uc --atleast-version=74],[ AC_MSG_RESULT([yes]) - PHP_CXX_COMPILE_STDCXX(17, mandatory, PHP_INTL_STDCXX) + PHP_CXX_COMPILE_STDCXX([17], [mandatory], [PHP_INTL_STDCXX]) ],[ AC_MSG_RESULT([no]) - PHP_CXX_COMPILE_STDCXX(11, mandatory, PHP_INTL_STDCXX) + PHP_CXX_COMPILE_STDCXX([11], [mandatory], [PHP_INTL_STDCXX]) ]) PHP_INTL_CXX_FLAGS="$INTL_COMMON_FLAGS $PHP_INTL_STDCXX $ICU_CXXFLAGS"