From: Rhys Kidd Date: Thu, 31 Jan 2019 03:52:07 +0000 (-0500) Subject: config: remove unrequired AC_HEADER_STDC X-Git-Tag: VALGRIND_3_15_0~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b06c2c7e23fce0eeeec0ffbd4f54976fcfb8195d;p=thirdparty%2Fvalgrind.git config: remove unrequired AC_HEADER_STDC Autoconf says: "This macro is obsolescent, as current systems have conforming header files. New programs need not use this macro". Was previously required to ensure the system has C header files conforming to ANSI C89 (ISO C90). Specifically, this macro checks for stdlib.h, stdarg.h, string.h, and float.h. This autoconf option was used to provide conditional fallback support via defined STDC_HEADERS. valgrind does not utilize conditional fallback support so, so this macro is both obsolete and unused, so let's drop it. Signed-off-by: Rhys Kidd --- diff --git a/configure.ac b/configure.ac index b885bd91bf..b69935e9bf 100644 --- a/configure.ac +++ b/configure.ac @@ -4011,7 +4011,6 @@ fi # test "$VGCONF_OS" = "solaris" # Checks for C header files. #---------------------------------------------------------------------------- -AC_HEADER_STDC AC_CHECK_HEADERS([ \ asm/unistd.h \ endian.h \