Skip to content

Commit 06234e5

Browse files
committed
Replace AC_LANG_SAVE, AC_LANG_CPLUSPLUS and AC_LANG_RESTORE
Autoconf 2.50 in 2001 made several macros obsolete. These include also macros for temporary changing the language. Instead of these the AC_LANG_PUSH and AC_LANG_POP macros should be used with later Autoconf versions. Since PHP 5.4 to 7.1 require to have Autoconf 2.59+ and PHP 7.2 and later require Autoconf 2.64+ the upgrade is fairly safe and most systems should already be supported. Refs: - http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS - https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Language-Choice.html
1 parent 18b79d9 commit 06234e5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

config.m4

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ if test "$PHP_V8JS" != "no"; then
8383
old_LDFLAGS=$LDFLAGS
8484
old_CPPFLAGS=$CPPFLAGS
8585

86-
AC_LANG_SAVE
87-
AC_LANG_CPLUSPLUS
86+
AC_LANG_PUSH([C++])
8887

8988
CPPFLAGS="$CPPFLAGS -I$V8_DIR/include -std=$ac_cv_v8_cstd"
9089
LDFLAGS="$LDFLAGS -L$V8_DIR/$PHP_LIBDIR"
@@ -197,7 +196,7 @@ int main ()
197196
[Define unless v8::ArrayBuffer::Allocator::NewDefaultAllocator is usable.])
198197
fi
199198

200-
AC_LANG_RESTORE
199+
AC_LANG_POP([C++])
201200
LIBS=$old_LIBS
202201
LDFLAGS="$old_LDFLAGS"
203202
CPPFLAGS=$old_CPPFLAGS

0 commit comments

Comments
 (0)