diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2014-01-07 14:00:42 -0500 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2014-01-30 12:09:35 +0900 |
commit | 942eabaae3600e7277aa09a179ef10c9a06de62f (patch) | |
tree | 55216fac810b04456174e55e6cda28546cdb2332 | |
parent | 517cb0e888eca4030b4bd00c316619db925032ea (diff) |
autoconf: require libtool minimum level 2.2
This is the updated minimum level as referenced in:
http://www.x.org/wiki/Building_the_X_Window_System/#index2h3
Libtool version 2 has been used for several years now. There should be
no surprises.
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index cba8ade..eeb76a3 100644 --- a/configure.ac +++ b/configure.ac @@ -20,8 +20,8 @@ AM_PATH_PYTHON([2.6]) AC_USE_SYSTEM_EXTENSIONS # Initialize libtool -AC_LIBTOOL_WIN32_DLL -AC_PROG_LIBTOOL +LT_PREREQ([2.2]) +LT_INIT([win32-dll]) # Require xorg-macros minimum of 1.18 - Initial version m4_ifndef([XORG_MACROS_VERSION], |