]> git.ipfire.org Git - thirdparty/valgrind.git/commit
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)
commitb06c2c7e23fce0eeeec0ffbd4f54976fcfb8195d
treeefc464bc3e2a204472d6aff205bcb91a888d2a9c
parentdffe3a2d1bd474265b0cca5360218b9ca6d53cf8
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 <rhyskidd@gmail.com>
configure.ac