1
0
mirror of https://github.com/xzeldon/htop.git synced 2025-04-11 04:57:07 +03:00

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

@ -83,6 +83,10 @@ AC_HEADER_STDBOOL
AC_C_CONST AC_C_CONST
AC_TYPE_PID_T AC_TYPE_PID_T
AC_TYPE_UID_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. # Checks for library functions and compiler features.
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------