Skip to content

Commit

Permalink
configure.ac: diligently check for various integer types
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed Jan 18, 2025
1 parent 2dbb8b0 commit d1fb348
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,21 @@ CFLAGS=${CFLAGS-"-O"}
dnl # Not so far a legacy, added for consistency in 2024 :)
CXXFLAGS=${CXXFLAGS-"-O"}

dnl Check for various integer types
AC_TYPE_SSIZE_T
AC_TYPE_INTMAX_T
AC_TYPE_INT8_T
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT64_T

AC_TYPE_SIZE_T
AC_TYPE_UINTMAX_T
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T

dnl +-------------------------------------------------------------------

dnl Use "./configure --enable-maintainer-mode" to keep Makefile.in and Makefile
Expand Down

0 comments on commit d1fb348

Please sign in to comment.