1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-19 01:36:33 -04:00

[configure.ac] SIZEOF_INTPTR_T

This commit is contained in:
Witold Filipczyk 2024-08-23 22:42:45 +02:00
parent 1ab0dab2fc
commit 0c28f1b7cc

View File

@ -296,6 +296,8 @@ AC_CHECK_SIZEOF(long, 4)
test "x$HAVE_LONG_LONG" = xyes && AC_CHECK_SIZEOF(long long, 8) test "x$HAVE_LONG_LONG" = xyes && AC_CHECK_SIZEOF(long long, 8)
test "x$HAVE_OFF_T" = xyes && AC_CHECK_SIZEOF(off_t, 4) test "x$HAVE_OFF_T" = xyes && AC_CHECK_SIZEOF(off_t, 4)
AC_CHECK_SIZEOF(intptr_t, 8, [#include <stdint.h> ])
# Check for variadic macros # Check for variadic macros
EL_CHECK_CODE([variadic macros], HAVE_VARIADIC_MACROS, EL_CHECK_CODE([variadic macros], HAVE_VARIADIC_MACROS,
[#include <stdio.h> [#include <stdio.h>