From a04ddc0b83a618495603522134ecbb335c3d2e58 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Sat, 9 Oct 2021 12:38:37 +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(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1723426..1dc9bc7 100644 --- a/configure.ac +++ b/configure.ac @@ -14,8 +14,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_PROG_CC AM_PROG_CC_C_O -AC_DISABLE_STATIC -AM_PROG_LIBTOOL +LT_INIT([disable_static]) AC_PROG_INSTALL AC_PROG_LN_S -- cgit v1.2.3