From a60d768271cef4ff622b1dd34652c74d0ffc3125 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Mon, 15 Jan 2024 13:18:15 -0800 Subject: configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008, so it's time to rely on it. Clears autoconf warnings: configure.ac:45: warning: The macro 'AC_PROG_LIBTOOL' is obsolete. configure.ac:45: You should run autoupdate. aclocal.m4:3571: AC_PROG_LIBTOOL is expanded from... configure.ac:45: the top level Signed-off-by: Alan Coopersmith --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bf0e442..30ed0eb 100644 --- a/configure.ac +++ b/configure.ac @@ -41,8 +41,8 @@ XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS # Initialize libtool -AC_DISABLE_STATIC -AC_PROG_LIBTOOL +LT_INIT([disable-static]) + case $host_cpu in sparc*) CCASFLAGS="-x assembler-with-cpp -Wa,-Av9a" -- cgit v1.2.3