]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
config: remove unrequired AC_HEADER_STDC
authorRhys Kidd <rhyskidd@gmail.com>
Thu, 31 Jan 2019 03:52:07 +0000 (22:52 -0500)
committerRhys Kidd <rhyskidd@gmail.com>
Mon, 11 Mar 2019 11:49:37 +0000 (22:49 +1100)
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 <rhyskidd@gmail.com>
configure.ac

index b885bd91bf50082492badf0950fa1f0290a472f6..b69935e9bfacefaab4d64ce485a3a679a0096544 100644 (file)
@@ -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         \