From 21384f4bc52b7f314700cebb832604ba74678c7f Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Sat, 25 Sep 2021 16:10:32 +0100 Subject: build: replace `AM_PROG_LIBTOOL` and `AC_DISABLE_STATIC` with `LT_INIT` `AM_PROG_LIBTOOL` is superseded by `LT_INIT`, which also accepts options to control the defaults for creating shared or static libraries. Signed-off-by: Jeremy Sowden Signed-off-by: Pablo Neira Ayuso --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index c690a92..3a3af45 100644 --- a/configure.ac +++ b/configure.ac @@ -13,9 +13,8 @@ AC_SEARCH_LIBS([dlopen], [dl], [libdl_LIBS="$LIBS"; LIBS=""]) AC_SUBST([libdl_LIBS]) AC_PROG_CC -AC_DISABLE_STATIC AM_PROG_AR -AM_PROG_LIBTOOL +LT_INIT([disable-static]) AC_PROG_INSTALL AC_PROG_LN_S AM_PROG_LEX -- cgit v1.2.3