Skip to content

Commit 74df99d

Browse files
committed
Remove obsolescent AC_C_INLINE Autoconf macro
This macro defines the inline keyword to be `__inline__`, `__inline`, or empty, based on the compiler inline support in main/php_config.h: ```c /* Define to '__inline__' or '__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ /* #undef inline */ ``` Since PHP requires C99, which has the inline keyword definition and all current compilers support it, this check is redundant and not needed anymore.
1 parent f332e53 commit 74df99d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Zend/Zend.m4

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,6 @@ if test "$ZEND_ZTS" = "yes"; then
225225
CFLAGS="$CFLAGS -DZTS"
226226
fi
227227
228-
AC_C_INLINE
229-
230228
dnl Test and set the alignment define for ZEND_MM. This also does the
231229
dnl logarithmic test for ZEND_MM.
232230
AC_MSG_CHECKING(for MM alignment and log values)

0 commit comments

Comments
 (0)