From e3fba5f2e80a4c72cc4ef0c193a0b6569e1d8cbf Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 2 Mar 2010 13:32:46 +0000 Subject: [PATCH] build: Require libtool >= 2.2.6 Update the configure.ac to use the LT_INIT() instead of the deprecated AC_PROG_LIBTOOL. This also allows us to depend on a specific libtool version, namely one that doesn't thoroughly suck. --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 969c8ae6f..7c80d429c 100644 --- a/configure.ac +++ b/configure.ac @@ -89,8 +89,10 @@ dnl ======================================================================== # Checks for programs. AM_PROG_CC_C_O -AC_DISABLE_STATIC -AC_PROG_LIBTOOL + +# require libtool >= 2.2 +LT_PREREQ([2.2.6]) +LT_INIT([disable-static]) # Disable dolt; we should depend on libtool 2.2 #DOLT