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
main
Christian Göttsche 5 years ago
parent 748f3eb7d8
commit 15fe8717b1
  1. 4
      configure.ac

@ -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.
# ----------------------------------------------------------------------

Loading…
Cancel
Save