From 710ccb7e7c2a466f97bba166e00e17d5a418d9a2 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 15 Jun 2021 13:31:44 +0800 Subject: [PATCH] build: remove call to AC_PROG_GCC_TRADITIONAL libevent requires Autoconf 2.67+, and from atleast this version onwards, if not earlier, this macro is obsolescent. > This macro is obsolescent, since current versions of the GNU > C compiler fix the header files automatically when installed. See: https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.67/autoconf.html#AC_005fPROG_005fGCC_005fTRADITIONAL. --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6166884f..5cb02147 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,6 @@ AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_SED -AC_PROG_GCC_TRADITIONAL AC_ARG_ENABLE(gcc-warnings, AS_HELP_STRING(--disable-gcc-warnings, disable verbose warnings with GCC)) -- 2.40.0