diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2012-02-29 18:23:44 -0500 |
---|---|---|
committer | Chase Douglas <chase.douglas@canonical.com> | 2012-02-29 16:07:23 -0800 |
commit | 3e9e3232638a75e21f3ef2ca12888aaade8792f4 (patch) | |
tree | 95eeaee114130b749e7e8b7e93800633df434544 | |
parent | e43cc450a17245f838dfacb44492cf10383bdbb6 (diff) |
config: do not initialize libtool twice
AC_PROG_LIBTOOL initializes libtool, contrary to what the name may suggest.
It has been renamed to LT_INIT in libtool v2. However X.Org has a requirement
to support libtool v1.5.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 696bf3e..715b667 100644 --- a/configure.ac +++ b/configure.ac @@ -18,8 +18,6 @@ AC_SUBST([LIB_VERSION]) # Initialize libtool AC_PROG_LIBTOOL -LT_INIT - # Require X.Org macros 1.16 or later for XORG_TESTSET_CFLAG m4_ifndef([XORG_MACROS_VERSION], [m4_fatal([must install xorg-macros 1.16 or later before running autoconf/autogen])]) |