From caaac38112fa9066089099655866e0e9f5e3a647 Mon Sep 17 00:00:00 2001 From: Rhys Kidd Date: Mon, 21 Jan 2019 00:52:15 -0500 Subject: 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. xf86-video-nouveau does not do so, so this macro is obsolete and unused, so let's drop it. Signed-off-by: Rhys Kidd --- configure.ac | 3 --- 1 file changed, 3 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index f9e0e54..3a1e18e 100644 --- a/configure.ac +++ b/configure.ac @@ -94,9 +94,6 @@ AM_CONDITIONAL(LIBUDEV, [ test "x$LIBUDEV" = "xyes" ] ) AC_SUBST([LIBUDEV_CFLAGS]) AC_SUBST([LIBUDEV_LIBS]) -# Checks for header files. -AC_HEADER_STDC - # Use -Wall all the time CFLAGS="$CFLAGS -Wall" -- cgit v1.2.1