From 3b50a89b2f25f669477a14272e61b15eda08904e Mon Sep 17 00:00:00 2001 From: John Safranek Date: Tue, 24 Oct 2023 15:23:01 -0700 Subject: [PATCH] Configure Type Checking Add checks to configure.ac for the types __uint128_t, size_t, uint8_t, and uintptr_t. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 3d29d3aa..ffb0378c 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,10 @@ AC_PROG_INSTALL AC_CHECK_SIZEOF([long long]) AC_CHECK_SIZEOF([long]) AC_CHECK_SIZEOF([off_t]) +AC_CHECK_TYPES([__uint128_t]) +AC_TYPE_SIZE_T +AC_TYPE_UINT8_T +AC_TYPE_UINTPTR_T # Check headers/libs AC_CHECK_HEADERS([sys/select.h sys/time.h sys/ioctl.h pty.h util.h termios.h])