Skip to content

Commit 42c9963

Browse files
committed
Autotools: Quote PHP_CXX_COMPILE_STDCXX macro arguments
[skip ci]
1 parent 36f6a20 commit 42c9963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/intl/config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ if test "$PHP_INTL" != "no"; then
8989
AC_MSG_CHECKING([if intl requires -std=gnu++17])
9090
AS_IF([$PKG_CONFIG icu-uc --atleast-version=74],[
9191
AC_MSG_RESULT([yes])
92-
PHP_CXX_COMPILE_STDCXX(17, mandatory, PHP_INTL_STDCXX)
92+
PHP_CXX_COMPILE_STDCXX([17], [mandatory], [PHP_INTL_STDCXX])
9393
],[
9494
AC_MSG_RESULT([no])
95-
PHP_CXX_COMPILE_STDCXX(11, mandatory, PHP_INTL_STDCXX)
95+
PHP_CXX_COMPILE_STDCXX([11], [mandatory], [PHP_INTL_STDCXX])
9696
])
9797

9898
PHP_INTL_CXX_FLAGS="$INTL_COMMON_FLAGS $PHP_INTL_STDCXX $ICU_CXXFLAGS"

0 commit comments

Comments
 (0)