[Commit] nickle ChangeLog, 1.32, 1.33 autogen.sh, 1.7, 1.8 configure.in, 1.31, 1.32 version.m4, 1.10, 1.11

Keith Packard commit at keithp.com
Thu Apr 15 23:02:10 PDT 2004


Committed by: keithp

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv11666

Modified Files:
	ChangeLog autogen.sh configure.in version.m4 
Log Message:
2004-04-15  Keith Packard  <keithp at keithp.com>

	* autogen.sh:
	Always regenerate configure in case version.m4 changes
	* configure.in:
	Update to autoconf 2.59 syntax
	* debian/changelog:
	* version.m4:
	Update to version 2.31


Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/nickle/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- a/ChangeLog	16 Apr 2004 05:26:44 -0000	1.32
+++ b/ChangeLog	16 Apr 2004 06:02:07 -0000	1.33
@@ -1,5 +1,15 @@
 2004-04-15  Keith Packard  <keithp at keithp.com>
 
+	* autogen.sh:
+	Always regenerate configure in case version.m4 changes
+	* configure.in:
+	Update to autoconf 2.59 syntax
+	* debian/changelog:
+	* version.m4:
+	Update to version 2.31
+
+2004-04-15  Keith Packard  <keithp at keithp.com>
+
 	* array.c: (ArrayEqual), (ArrayPrint), (ArrayHash), (ArrayMark),
 	(BoxVectorMark), (NewBoxVector), (FillBoxVector), (NewArray),
 	(ArrayResize):

Index: autogen.sh
===================================================================
RCS file: /local/src/CVS/nickle/autogen.sh,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/autogen.sh	25 Oct 2003 19:00:33 -0000	1.7
+++ b/autogen.sh	16 Apr 2004 06:02:07 -0000	1.8
@@ -4,5 +4,7 @@
 #
 # runs autotools to create ./configure and friends
 #
-autoreconf -v --install || exit 1
+# configure depends on version.m4, but autoreconf does not realize this
+rm configure
+autoreconf -Wall -v --install || exit 1
 ./configure --enable-maintainer-mode "$@"

Index: configure.in
===================================================================
RCS file: /local/src/CVS/nickle/configure.in,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- a/configure.in	11 Apr 2004 07:02:11 -0000	1.31
+++ b/configure.in	16 Apr 2004 06:02:07 -0000	1.32
@@ -4,15 +4,16 @@
 dnl All Rights Reserved.  See the file COPYING in this directory
 dnl for licensing information.
 
-AC_PREREQ(2.50)
+AC_PREREQ(2.59)
 
 sinclude([version.m4])
 ifdef([VERSION_NUMBER],,[define([VERSION_NUMBER],[0.00])])
 
-AC_INIT(nickle.h)
+AC_INIT
+AC_CONFIG_SRCDIR([nickle.h])
 AM_INIT_AUTOMAKE(nickle,VERSION_NUMBER)
 AM_MAINTAINER_MODE
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR(.)
 
 dnl Checks for programs.

Index: version.m4
===================================================================
RCS file: /local/src/CVS/nickle/version.m4,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- a/version.m4	11 Apr 2004 07:02:11 -0000	1.10
+++ b/version.m4	16 Apr 2004 06:02:07 -0000	1.11
@@ -1,7 +1,7 @@
 dnl This file is maintained automatically by update-version.sh
 dnl The file format is finicky, so do not hand-edit lightly.
-dnl Last updated Sat Apr 10 23:43:43 PDT 2004
+dnl Last updated Thu Apr 15 22:28:55 PDT 2004
 dnl CURHEADER $Header$
-dnl OLDHEADER <Header: /local/src/CVS/nickle/version.m4,v 1.9 2004/04/01 19:49:56 keithp Exp >
-dnl CURVERSION 2.30
-define([VERSION_NUMBER],[2.30])
+dnl OLDHEADER <Header: /local/src/CVS/nickle/version.m4,v 1.10 2004/04/11 07:02:11 keithp Exp >
+dnl CURVERSION 2.31
+define([VERSION_NUMBER],[2.31])




More information about the Commit mailing list