This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[fastjar] Rename configure.in to configure.ac


I also broke this hunk out from the general patch since it is slightly different from the rest of the otherwise straightforward patch.

Since automake needed to be run anyhow (otherwise --enable-maintainer-mode would have been broken), I used automake 1.7.9 which has the added benefit that all of current GCC 3.4 would be using either 1.7.9 or the special java 1.4 version.

The regenerated configure remained identical to before.

Bootstrapped i686-pc-cygwin (along with the other three patches, which are similar but separate).

OK for install?
Kelley Cook

fastjar/
2004-01-09  Kelley Cook  <kcook@gcc.gnu.org>

	* configure.in: Rename file to ...
	* configure.ac: ... this.  Add in AC_PREREQ(2.57)
	* config.h.in: Regenerate.
	* aclocal.m4: Regenerate.
	* Makefile.in: Regenerate.

contrib/
2004-01-09  Kelley Cook  <kcook@gcc.gnu.org>

	* gcc_update (files_and_dependencies): Update fastjar/configure.in
	to fastjar/configure.ac

--- /home/kcook34/gcc-orig/fastjar/configure.in	2002-12-16 13:18:45.000000000 -0500
+++ ./fastjar/configure.ac	2004-01-07 13:19:16.653664000 -0500
@@ -1,4 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
+AC_PREREQ(2.57)
 AC_INIT(jartool.h)
 AM_INIT_AUTOMAKE(fastjar, 0.92-gcc)
 AM_CONFIG_HEADER(config.h)
--- /home/kcook34/gcc-orig/contrib/gcc_update	2004-01-07 14:41:08.847051200 -0500
+++ contrib/gcc_update	2004-01-08 11:42:15.573587200 -0500
@@ -86,9 +86,9 @@ libf2c/libU77/configure: libf2c/libU77/c
 libf2c/libU77/stamp-h.in: libf2c/libU77/configure.in libf2c/libU77/acconfig.h
 libobjc/configure: libobjc/configure.in
 # fastjar
-fastjar/aclocal.m4: fastjar/configure.in
-fastjar/Makefile.in: fastjar/Makefile.am fastjar/configure.in fastjar/aclocal.m4
-fastjar/configure: fastjar/configure.in fastjar/aclocal.m4
+fastjar/aclocal.m4: fastjar/configure.ac
+fastjar/Makefile.in: fastjar/Makefile.am fastjar/configure.ac fastjar/aclocal.m4
+fastjar/configure: fastjar/configure.ac fastjar/aclocal.m4
 boehm-gc/aclocal.m4: boehm-gc/configure.in boehm-gc/acinclude.m4
 boehm-gc/Makefile.in: boehm-gc/Makefile.am boehm-gc/configure.in boehm-gc/aclocal.m4
 boehm-gc/configure: boehm-gc/configure.in boehm-gc/aclocal.m4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]