diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-05 18:42:31 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-05 18:42:31 -0800 |
commit | 3262c6e82f3697ba9191c99000dd3a1303f42c70 (patch) | |
tree | 672224b04514190726cbab7eeb0c2a2419d1cb22 | |
parent | 6558ea686df764fe21e76eaf3a6c8bd398800283 (diff) |
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:44: warning: The macro 'AC_PROG_LIBTOOL' is obsolete.
configure.ac:44: You should run autoupdate.
aclocal.m4:3515: AC_PROG_LIBTOOL is expanded from...
configure.ac:44: the top level
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 43c9811..710e1ea 100644 --- a/configure.ac +++ b/configure.ac @@ -40,8 +40,7 @@ XORG_MACROS_VERSION(1.3) XORG_DEFAULT_OPTIONS # Initialize libtool -AC_DISABLE_STATIC -AC_PROG_LIBTOOL +LT_INIT([disable-static]) AH_TOP([#include "xorg-server.h"]) |