[conglomerate] Remove or replace deprecated Autoconf macros



commit 36f92eb92c752b7c1c26ef815995b36c7a161e65
Author: P. F. Chimento <philip chimento gmail com>
Date:   Mon Aug 8 22:38:33 2011 +0200

    Remove or replace deprecated Autoconf macros
    
    In configure.ac, I replaced deprecated Autoconf macros by their
    modern equivalents. Some were not necessary anymore.

 configure.ac |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 5a61fbe..0ea8ff1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,11 +6,10 @@ AC_PREREQ(2.52)
 
 AC_INIT(conglomerate, 0.9.2)
 AC_CONFIG_SRCDIR(src/main.c)
-AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
+AM_INIT_AUTOMAKE
 
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
 
-AM_SANITY_CHECK
 AM_MAINTAINER_MODE
 AC_CANONICAL_HOST
 
@@ -19,9 +18,8 @@ AC_ISC_POSIX
 AC_PROG_CC
 AC_PROG_CPP
 AC_PROG_INSTALL
-AM_DISABLE_STATIC
-AM_PROG_LIBTOOL
-AC_PROG_INTLTOOL([0.35.0])
+LT_INIT([disable-static])
+IT_PROG_INTLTOOL([0.35.0])
 
 GNOME_DOC_INIT
 



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