summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMartijn van Beurden <mvanb1@gmail.com>2021-12-31 20:58:15 +0100
committerMartijn van Beurden <mvanb1@gmail.com>2022-04-15 09:36:15 +0200
commit13149acddd09653ece65dd882c66879ae5084832 (patch)
treeeaf1d6aee05d829540c414ebdebeaf8a9196a25d /configure.ac
parentd94a43d5c3a6203f6adbbc937424a4d9549eaf05 (diff)
downloadflac-13149acddd09653ece65dd882c66879ae5084832.tar.gz
Remove more obsolete autoconf macro's
Autoconf 2.71 warns about obsolete macro's on running ./autogen.sh. AC_PROG_CC_STDC is replaced by AC_PROG_CC as recommended by autoupdate AC_HEADER_STDC has been removed. Autoupdate recommended the following: > The preprocessor macro `STDC_HEADERS' is obsolete. Except in unusual > embedded environments, you can safely include all ISO C90 headers > unconditionally.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e297b801..353637eb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,7 @@ AX_CHECK_ENABLE_DEBUG
user_cflags=$CFLAGS
#Prefer whatever the current ISO standard is.
-AC_PROG_CC_STDC
+AC_PROG_CC
AC_USE_SYSTEM_EXTENSIONS
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
LT_INIT([win32-dll disable-static pic-only])
@@ -63,7 +63,6 @@ fi
AC_LANG_POP([C++])
# c flavor
-AC_HEADER_STDC
AM_PROG_CC_C_O
AC_C_INLINE
AC_C_VARARRAYS