mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
Fix #76574: use of undeclared identifiers INT_MAX and LONG_MAX
As of Oniguruma 6.4.0 <limits.h> is required, so we have to add a check for this header file to set the respective macro.
This commit is contained in:
@@ -96,7 +96,7 @@ int main() { return foo(10, "", 3.14); }
|
||||
])
|
||||
])
|
||||
|
||||
AC_CHECK_HEADERS([stdlib.h string.h strings.h unistd.h sys/time.h sys/times.h stdarg.h])
|
||||
AC_CHECK_HEADERS([stdlib.h string.h strings.h unistd.h sys/time.h sys/times.h stdarg.h limits.h])
|
||||
AC_CHECK_SIZEOF(int, 4)
|
||||
AC_CHECK_SIZEOF(short, 2)
|
||||
AC_CHECK_SIZEOF(long, 4)
|
||||
|
||||
Reference in New Issue
Block a user