configure: create typedefs for fixed-sized integers if needed

If not defined in stdint.h or inttypes.h

See https://www.gnu.org/software/autoconf/manual/autoconf-2.62/html_node/Particular-Types.html
This commit is contained in:
Christian Göttsche 2020-11-26 20:28:38 +01:00
parent 748f3eb7d8
commit 15fe8717b1
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_UID_T
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
# Checks for library functions and compiler features.
# ----------------------------------------------------------------------