From 83ed4ac706970323731c4e7c9b6670483852936a Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 8 Jun 2022 14:49:46 +0200 Subject: [PATCH] replace obsolete AC_PROG_LIBTOOL by LT_INIT It has been obsolete since libtool 2.2. Signed-off-by: Sven Verdoolaege --- configure.ac | 2 +- interface/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 23d05d92..386a7b5c 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AX_CXX_COMPILE_STDCXX_11_NO_OVERRIDE AX_CXX_COMPILE_STDCXX_17([], [optional]) AC_PROG_GREP -AC_PROG_LIBTOOL +LT_INIT AC_PROG_SED AM_PATH_PYTHON([3.6], [], [:]) AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :]) diff --git a/interface/configure.ac b/interface/configure.ac index 357eb60a..b61822ba 100644 --- a/interface/configure.ac +++ b/interface/configure.ac @@ -20,7 +20,7 @@ OBJEXT="$BUILD_OBJEXT" AX_CXX_COMPILE_STDCXX_11_NO_OVERRIDE AC_DISABLE_SHARED -AC_PROG_LIBTOOL +LT_INIT AX_DETECT_CLANG -- 2.11.4.GIT