From eeac2728320ca8a492d4620523b9ba99236ea3c6 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> Date: Sat, 23 Dec 2023 11:38:50 +0100 Subject: [PATCH] Get rid of obsolescent AM_PROG_CC_C_O From the Automake manual: This is an obsolescent macro that checks that the C compiler supports the -c and -o options together. Note that, since Automake 1.14, the AC_PROG_CC is rewritten to implement such checks itself, and thus the explicit use of AM_PROG_CC_C_O should no longer be required. Signed-off-by: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5abbfd82..4d534b21 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,6 @@ AC_USE_SYSTEM_EXTENSIONS AC_PROG_CC AC_PROG_RANLIB AM_PROG_AR -AM_PROG_CC_C_O AC_PROG_SED if test "$GCC" = "yes" && ! expr "$CC" : clang >/dev/null 2>&1;then