From d6b97f7f2f2d68bf03d127b0bdd0b2e5f1a7d2be Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 4 Apr 2007 10:35:58 +0000 Subject: Renamed configure.in to configure.ac. --- ChangeLog | 10 ++++++++++ INSTALL | 4 ++-- Makefile.devel | 12 ++++++------ 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2b1393c..7059f2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2007-04-04 Bruno Haible + + * configure.ac: Renamed from configure.in. + * doc/configure.ac: Renamed from doc/configure.in. + * lib/configure.ac: Renamed from lib/configure.in. + * src/configure.ac: Renamed from src/configure.in. + * tests/configure.ac: Renamed from tests/configure.in. + * Makefile.devel: Update. + * INSTALL: Update. + 2007-03-31 Brendan Kehoe * gperf-3.0.3 released. diff --git a/INSTALL b/INSTALL index 350b32f..ab676eb 100644 --- a/INSTALL +++ b/INSTALL @@ -19,8 +19,8 @@ diffs or instructions to the address given in the `README' so they can be considered for the next release. If at some point `config.cache' contains results you don't want to keep, you may remove or edit it. - The file `configure.in' is used to create `configure' by a program -called `autoconf'. You only need `configure.in' if you want to change + The file `configure.ac' is used to create `configure' by a program +called `autoconf'. You only need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: diff --git a/Makefile.devel b/Makefile.devel index c47e26a..566c868 100644 --- a/Makefile.devel +++ b/Makefile.devel @@ -10,25 +10,25 @@ CONFIGURES = configure lib/configure src/configure tests/configure doc/configure configures : $(CONFIGURES) -configure : configure.in aclocal.m4 +configure : configure.ac aclocal.m4 autoconf -I . -lib/configure : lib/configure.in aclocal.m4 +lib/configure : lib/configure.ac aclocal.m4 cd lib && autoconf -I .. -src/configure : src/configure.in aclocal.m4 +src/configure : src/configure.ac aclocal.m4 cd src && autoconf -I .. -tests/configure : tests/configure.in aclocal.m4 +tests/configure : tests/configure.ac aclocal.m4 cd tests && autoconf -I .. -doc/configure : doc/configure.in aclocal.m4 +doc/configure : doc/configure.ac aclocal.m4 cd doc && autoconf -I .. check-configures : $(CONFIGURES) set -e; for f in $(CONFIGURES); do bash -x -n $$f; done -src/config.h.in : src/configure.in aclocal.m4 +src/config.h.in : src/configure.ac aclocal.m4 cd src && autoheader -I .. src/config.h.msvc : src/config.h.in -- cgit v1.2.1