blob: bda90edb20f9b7390c8c4ced9db97d80d7604736 [file] [log] [blame]
Andrew Geisslerac970dd2021-02-12 15:32:45 -06001From 6b1cbe8b4dcc45103d69bc7337e5eb33d1fd21f3 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 3 Feb 2021 14:22:51 -0800
4Subject: [PATCH] Do not use AC_HEADER_STDC
5
6This macro is removed in autotools 2.70+ and it can be expected that C90
7headers are always available [1]
8
9Upstream-Status: Pending
10
11[1] https://www.gnu.org/software/autoconf/manual/autoconf-2.70/autoconf.html#index-AC_005fHEADER_005fSTDC
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 configure.ac | 6 ------
16 1 file changed, 6 deletions(-)
17
18diff --git a/configure.ac b/configure.ac
19index 01b61097..2823ecd7 100644
20--- a/configure.ac
21+++ b/configure.ac
22@@ -101,14 +101,8 @@ AM_WITH_DMALLOC
23 #
24 # Checks for header files.
25 #
26-AC_HEADER_STDC
27 AC_CHECK_HEADERS([strings.h libgen.h unistd.h direct.h sys/stat.h])
28
29-# REQUIRE standard C headers
30-if test "$ac_cv_header_stdc" != yes; then
31- AC_MSG_ERROR([Standard (ANSI/ISO C89) header files are required.])
32-fi
33-
34 #
35 # Checks for typedefs, structures, and compiler characteristics.
36 #
37--
382.30.0
39