1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

Use autoconf-2.52.

This commit is contained in:
Bruno Haible
2003-01-20 14:15:41 +00:00
parent 6eb5640c0d
commit 6bc6a5c4e0
3 changed files with 18 additions and 6 deletions

View File

@@ -1,3 +1,10 @@
2002-11-10 Bruno Haible <bruno@clisp.org>
Upgrade to autoconf-2.52.
* configure.in: Use AC_CONFIG_SUBDIRS instead of AC_OUTPUT_SUBDIRS.
* Makefile.devel (configure, lib/configure, src/configure,
tests/configure, doc/configure): Use autoconf-2.52.
2002-11-09 Bruno Haible <bruno@clisp.org>
* doc/gperf.texi: Talk about "bytes" instead of "characters". Talk

View File

@@ -11,19 +11,19 @@ CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
configures : $(CONFIGURES)
configure : configure.in aclocal.m4
autoconf -l .
autoconf-2.52 -l .
lib/configure : lib/configure.in aclocal.m4
cd lib && autoconf -l ..
cd lib && autoconf-2.52 -l ..
src/configure : src/configure.in aclocal.m4
cd src && autoconf -l ..
cd src && autoconf-2.52 -l ..
tests/configure : tests/configure.in aclocal.m4
cd tests && autoconf -l ..
cd tests && autoconf-2.52 -l ..
doc/configure : doc/configure.in aclocal.m4
cd doc && autoconf -l ..
cd doc && autoconf-2.52 -l ..
check-configures : $(CONFIGURES)
set -e; for f in $(CONFIGURES); do bash -x -n $$f; done

View File

@@ -23,6 +23,12 @@ dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
AC_INIT(doc/gperf.1)
AC_PROG_MAKE_SET
dnl An autoconf-2.52 bug: AC_CONFIG_SUBDIRS requires AC_CONFIG_AUX_DIR_DEFAULT.
ac_aux_dir=$srcdir
AC_PROVIDE([AC_CONFIG_AUX_DIR_DEFAULT])
AC_CONFIG_SUBDIRS(lib src tests doc)
dnl This piece of sed script replaces every line containing '@subdir@'
dnl by several consecutive lines, each referencing one subdir.
extrasub="$extrasub"'
@@ -44,4 +50,3 @@ d
}
'
AC_OUTPUT(Makefile)
AC_OUTPUT_SUBDIRS(lib src tests doc)