From f5a28e13eef9ee4e407ca76226128759f5e03886 Mon Sep 17 00:00:00 2001 From: Ian Goldberg Date: Sun, 3 Jan 2016 17:27:33 -0500 Subject: [PATCH] Update a couple of deprecated configure.ac macros AM_DISABLE_STATIC and AM_PROG_LIBTOOL become LT_INIT([disable-static]) --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2e76f28..204a5e8 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,7 @@ m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) AC_PROG_CC dnl We do not want to create a .a for the plugin, so disable by default. -AM_DISABLE_STATIC -AM_PROG_LIBTOOL +LT_INIT([disable-static]) AM_PATH_LIBGCRYPT(1:1.2.0,,AC_MSG_ERROR(libgcrypt 1.2.0 or newer is required.)) -- GitLab