Update autotools configuration
authorJavier Jardón <jjardon@gnome.org>
Fri, 26 Aug 2011 11:14:20 +0000 (12:14 +0100)
committerJavier Jardón <jjardon@gnome.org>
Fri, 26 Aug 2011 11:14:20 +0000 (12:14 +0100)
Replace deprecated autoconf macros
Use new libtool syntax

Makefile.am
configure.ac

index f32889f..7f81285 100644 (file)
@@ -23,7 +23,7 @@ include Makefile-gir.am
 include Makefile-tools.am
 
 ## Process this file with automake to produce Makefile.in
-ACLOCAL_AMFLAGS = -I m4
+ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
 
 SUBDIRS = . docs tests
 
index f112829..d6c1b39 100644 (file)
@@ -7,17 +7,20 @@ m4_define(gi_minor_version, 29)
 m4_define(gi_micro_version, 17)
 m4_define(gi_version, gi_major_version.gi_minor_version.gi_micro_version)
 
-AC_PREREQ(2.59)
-AC_INIT(gobject-introspection, gi_version,
-        [http://bugzilla.gnome.org/enter_bug.cgi?product=glib&component=introspection])
-AM_INIT_AUTOMAKE([1.7 tar-ustar dist-bzip2 no-dist-gzip foreign -Wno-portability])
-AM_MAINTAINER_MODE
-
-m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
+AC_PREREQ([2.63])
+AC_INIT([gobject-introspection],
+        [gi_version],
+        [http://bugzilla.gnome.org/enter_bug.cgi?product=glib&component=introspection],
+        [gobject-introspection])
 
 AC_CONFIG_HEADER([config.h])
-
 AC_CONFIG_MACRO_DIR([m4])
+AC_CONFIG_AUX_DIR([build-aux])
+
+AM_INIT_AUTOMAKE([1.7 tar-ustar dist-bzip2 no-dist-gzip foreign -Wno-portability])
+AM_MAINTAINER_MODE([enable])
+
+m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
 
 # Check for Win32
 AC_CANONICAL_HOST
@@ -36,7 +39,11 @@ AM_CONDITIONAL(OS_WIN32, [test "$os_win32" = "yes"])
 # Checks for programs.
 AC_PROG_CC
 AM_PROG_CC_C_O
-AC_PROG_LIBTOOL
+
+# Initialize libtool
+LT_PREREQ([2.2])
+LT_INIT
+
 PKG_PROG_PKG_CONFIG
 
 AC_PROG_LEX
@@ -176,7 +183,8 @@ if test x"$have_ffi_pkgconfig" = xyes ; then
 else
   AC_MSG_CHECKING(for ffi.h)
 
-  AC_TRY_CPP([#include <ffi.h>], have_ffi_h=yes, have_ffi_h=no)
+  AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <ffi.h>]])],
+                    [have_ffi_h=yes],[have_ffi_h=no])
   if test x"$have_ffi_h" = x"yes"; then
 
     save_LIBS=$LIBS