summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRhys Kidd <rhyskidd@gmail.com>2019-01-21 00:52:15 -0500
committerIlia Mirkin <imirkin@alum.mit.edu>2019-01-21 21:29:55 -0500
commitcaaac38112fa9066089099655866e0e9f5e3a647 (patch)
tree881ecffe6e5966946ab401d4bd29b4bb9bfe5edb
parent4cf6d02ecbd5d2201d66324ba33f9fcbed67092f (diff)
downloadxorg-driver-xf86-video-nouveau-caaac38112fa9066089099655866e0e9f5e3a647.tar.gz
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 <rhyskidd@gmail.com>
-rw-r--r--configure.ac3
1 files changed, 0 insertions, 3 deletions
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"