From: Uwe Hermann Date: Thu, 20 Mar 2014 13:01:22 +0000 (+0100) Subject: configure.ac: Only check for things we actually use. X-Git-Tag: sigrok-cli-0.5.0~21 X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=commitdiff_plain;h=8e301dd26c1ff7703918e0ece7f3530f4ae76f24 configure.ac: Only check for things we actually use. Drop checks where we don't use the result (yet). We might bring back some of those once we start actually using the result in the code. --- diff --git a/configure.ac b/configure.ac index 72442a1..03865ab 100644 --- a/configure.ac +++ b/configure.ac @@ -78,22 +78,6 @@ fi # Checks for header files. # These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h. -AC_CHECK_HEADERS([sys/time.h termios.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_C_INLINE -AC_TYPE_INT8_T -AC_TYPE_INT16_T -AC_TYPE_INT32_T -AC_TYPE_INT64_T -AC_TYPE_UINT8_T -AC_TYPE_UINT16_T -AC_TYPE_UINT32_T -AC_TYPE_UINT64_T -AC_TYPE_SIZE_T - -# Checks for library functions. -AC_CHECK_FUNCS([strcasecmp strchr strerror strstr strtol]) AC_SUBST(MAKEFLAGS, '--no-print-directory') AC_SUBST(AM_LIBTOOLFLAGS, '--silent')