[glom] Use deprecated libtool macros for Maemo's sake



commit 54c7f448436f7b9820567918e9b98e8f4c307133
Author: Daniel Elstner <danielk openismus com>
Date:   Tue Jul 28 21:04:12 2009 +0200

    Use deprecated libtool macros for Maemo's sake
    
    * configure.ac (LT_PREREQ), (LT_INIT): Comment-out.
    (AC_PROG_LIBTOOL): Use old-style and deprecated M4 macro to initialize
    libtool because the Maemo development environment still ships with the
    ancient libtool 1.4.
    (AC_DISABLE_STATIC), (AC_LIBTOOL_WIN32_DLL): Call old-style macros to
    set libtool options, instead of passing flag arguments to LT_INIT().

 ChangeLog    |   11 +++++++++++
 configure.ac |    8 ++++++--
 2 files changed, 17 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 8c899ef..102467a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2009-07-28  Daniel Elstner  <danielk openismus com>
+
+	Use deprecated libtool macros for Maemo's sake
+
+	* configure.ac (LT_PREREQ), (LT_INIT): Comment-out.
+	(AC_PROG_LIBTOOL): Use old-style and deprecated M4 macro to initialize
+	libtool because the Maemo development environment still ships with the
+	ancient libtool 1.4.
+	(AC_DISABLE_STATIC), (AC_LIBTOOL_WIN32_DLL): Call old-style macros to
+	set libtool options, instead of passing flag arguments to LT_INIT().
+
 2009-07-27  Murray Cumming  <murrayc murrayc com>
 
 	ldtp tests: Correct the English in the error messages.
diff --git a/configure.ac b/configure.ac
index 0df4299..c7a6a2a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,8 +29,12 @@ AC_PROG_CC
 AM_PROG_CC_C_O
 AC_PROG_CXX
 
-LT_PREREQ([2.2.0])
-LT_INIT([disable-static win32-dll])
+dnl Maemo still ships with the ancient libtool 1.4
+dnl LT_PREREQ([2.2.0])
+dnl LT_INIT([disable-static win32-dll])
+AC_DISABLE_STATIC
+AC_LIBTOOL_WIN32_DLL
+AC_PROG_LIBTOOL
 
 # Used for the install directories for headers.  The same number is used in
 # the library name, which must be kept in sync, but variables can't be used



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]