Package: stools
Version: 0.0.1
Author: Guillem Jover <guillem@hadrons.org>
Status: not-sent
Description:
 Update autotools obsolete macro usage.

Index: configure.ac
===================================================================
RCS file: /cvsroot/stools/stools/configure.ac,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 configure.ac
--- configure.ac	1 Feb 2006 15:36:06 -0000	1.1.1.1
+++ configure.ac	2 Feb 2006 00:26:47 -0000
@@ -3,11 +3,11 @@
 
 dnl Please process this file with autoconf to get a configure script
 
+AC_INIT([stools], [0.0.1])
+AC_PREREQ([2.53])
+AC_CONFIG_SRCDIR([src/stools.h])
 
-AC_INIT(src/stools.h)
-AM_INIT_AUTOMAKE(stools, 0.0.1)
-AM_CONFIG_HEADER(src/config.h)
-
+AM_INIT_AUTOMAKE([1.5])
 
 dnl Compiler issues
 AC_PROG_CC
@@ -22,6 +22,14 @@
 dnl Search for the tile library: use it if available
 dnl AC_CHECK_LIB([tile],[CheckStateOption],,,)
 
-
 dnl Generate output files
-AC_OUTPUT(Makefile src/Makefile lib/Makefile lib/scripts/Makefile lib/contrib/Makefile lib/contrib/mkWidgets1.3/Makefile lib/images/Makefile) 
\ No newline at end of file
+AC_CONFIG_SUBDIRS([libsttime libstbase])
+AC_CONFIG_HEADERS([src/config.h])
+AC_CONFIG_FILES([Makefile
+		 src/Makefile
+		 lib/Makefile
+		 lib/scripts/Makefile
+		 lib/contrib/Makefile
+		 lib/contrib/mkWidgets1.3/Makefile
+		 lib/images/Makefile])
+AC_OUTPUT
Index: libstbase/configure.ac
===================================================================
RCS file: /cvsroot/stools/stools/libstbase/configure.ac,v
retrieving revision 1.2
diff -u -r1.2 configure.ac
--- libstbase/configure.ac	1 Feb 2006 22:48:33 -0000	1.2
+++ libstbase/configure.ac	2 Feb 2006 00:26:47 -0000
@@ -3,13 +3,17 @@
 
 dnl Please process this file with autoconf to get a configure script
 
-AC_INIT(src/st_base.h)
-AM_INIT_AUTOMAKE(stbase, 0.0.1)
-AM_CONFIG_HEADER(src/config.h)
-AC_PROG_LIBTOOL
+AC_INIT([stbase], [0.0.1])
+AC_PREREQ([2.53])
+AC_CONFIG_SRCDIR([src/st_base.h])
+
+AM_INIT_AUTOMAKE([1.5])
 
 dnl Compiler issues
 AC_PROG_CC
+AC_PROG_LIBTOOL
 
 dnl Generate output file
-AC_OUTPUT(Makefile src/Makefile)
\ No newline at end of file
+AC_CONFIG_HEADERS([src/config.h])
+AC_CONFIG_FILES([Makefile src/Makefile])
+AC_OUTPUT
Index: libsttime/configure.ac
===================================================================
RCS file: /cvsroot/stools/stools/libsttime/configure.ac,v
retrieving revision 1.1
diff -u -r1.1 configure.ac
--- libsttime/configure.ac	1 Feb 2006 23:32:26 -0000	1.1
+++ libsttime/configure.ac	2 Feb 2006 00:26:47 -0000
@@ -3,14 +3,18 @@
 
 dnl Please process this file with autoconf to get a configure script
 
-AC_INIT(src/st_time.h)
-AM_INIT_AUTOMAKE(sttime, 0.0.1)
-AM_CONFIG_HEADER(src/config.h)
-AC_PROG_LIBTOOL
+AC_INIT([sttime], [0.0.1])
+AC_PREREQ([2.53])
+AC_CONFIG_SRCDIR([src/st_time.h])
+
+AM_INIT_AUTOMAKE([1.5])
 
 dnl Compiler issues
 AC_PROG_CC
+AC_PROG_LIBTOOL
 
 dnl Generate output file
-AC_OUTPUT(Makefile src/Makefile)
+AC_CONFIG_HEADERS([src/config.h])
+AC_CONFIG_FILES([Makefile src/Makefile])
+AC_OUTPUT
 
