diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-08 16:26:15 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-08 16:26:15 -0800 |
commit | fd11fcecfae987e1a53ec3ae0c2c1021bcbbb82e (patch) | |
tree | b8682ec45f173cc97c71c0cbcfdae91645bf8207 | |
parent | cc41171d0f6cb2d964520941a510f285fa613eb7 (diff) |
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:14: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
configure.ac:14: You should run autoupdate.
aclocal.m4:3465: AC_PROG_LIBTOOL is expanded from...
configure.ac:14: the top level
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f7bba6b..3185a26 100644 --- a/configure.ac +++ b/configure.ac @@ -6,12 +6,13 @@ AC_INIT([libXxf86dga], [1.1.6], [libXxf86dga]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS(src/config.h) +AC_CONFIG_MACRO_DIRS([m4]) # Initialize Automake AM_INIT_AUTOMAKE([foreign dist-xz]) # Initialize libtool -AC_PROG_LIBTOOL +LT_INIT # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS m4_ifndef([XORG_MACROS_VERSION], |