summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Sowden <jeremy@azazel.net>2021-10-09 12:38:37 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2021-10-12 00:59:20 +0200
commita04ddc0b83a618495603522134ecbb335c3d2e58 (patch)
treeb29374c2ab534c1341a94a591c28a4141fec45a4
parent5d0df4fe54757ddd20d13c010dc3966a6c7dd2e8 (diff)
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 <jeremy@azazel.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
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