Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 4807cb4

Browse files
committed
configure: address new warning from latest autoreconf
autoreconf from autoconf 2.70 warns that AC_PROG_CC_STDC is obsolete, recommending to use AC_PROG_CC instead. We already call the latter macro, and the behavior change appears to have been introduced in autoconf 2.54 (released 2002-09-13), which is older than our minimum supported version of 2.66. Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
1 parent dd93df7 commit 4807cb4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

configure.ac

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ AC_PREREQ([2.66])
22
AC_INIT([bsdiff], [1.0.4], [patrick.mccarty@intel.com])
33
AC_CONFIG_MACRO_DIR([m4])
44
AC_PROG_CC
5-
AC_PROG_CC_STDC
65
AC_LANG(C)
76
AC_CONFIG_HEADERS([config.h])
87
AC_PREFIX_DEFAULT(/usr/local)

0 commit comments

Comments
 (0)