]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
tweaks; test release 2.10.3
authorDavid MacKenzie <djm@djmnet.org>
Wed, 13 Nov 1996 17:24:58 +0000 (17:24 +0000)
committerDavid MacKenzie <djm@djmnet.org>
Wed, 13 Nov 1996 17:24:58 +0000 (17:24 +0000)
12 files changed:
ChangeLog
NEWS
TODO
acgeneral.m4
autoconf.texi
autoheader.in
autoheader.sh
bin/autoheader.in
configure
doc/autoconf.texi
lib/autoconf/general.m4
testsuite/Makefile.in

index 6242aa373012d13073b09928926f9e22ee2c355b..2cbd5044c68b9ddaf15f6e231f3104a29c106858 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Nov 13 10:07:14 1996  David J MacKenzie  <djm@catapult.va.pubnix.com>
+
+       * Test release 2.10.3.
+
+       * testsuite/Makefile.in (dejacheck): New target, suggested by Tom
+       Tromey <tromey@creche.cygnus.com>.
+       (check): Depend on dejacheck.
+
 Tue Nov 12 00:06:14 1996  David J MacKenzie  <djm@catapult.va.pubnix.com>
 
        * acgeneral.m4 (AC_OUTPUT_FILES): Split the list of sed commands in
diff --git a/NEWS b/NEWS
index 658b2536cf6e8c5906384be8d78502770aba21dd..63a3b6e5e6503e69bbeccd249e77cd90452f40d0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,8 @@
 Issues to resolve before release:
 
-1.  autoreconf problem with finding subdirectory acconfig.h.
-2.  test the new features: AC_PROG_CC_WORKS on Solaris, AC_FUNC_MMAP
-on HP-UX, AC_CACHE_SAVE on HP-UX, AC_FUNC_SETPGRP, AC_PATH_XTRA on
-Solaris and BSDI 2.1, sed command splitting on HP-UX, AC_FUNC_FNMATCH.
+Test the new features: AC_PROG_CC_WORKS on Solaris, AC_CACHE_SAVE
+with spaces in var values on HP-UX, AC_FUNC_SETPGRP, AC_PATH_XTRA on
+Solaris, sed command splitting on HP-UX (many AC_SUBST's), AC_FUNC_FNMATCH.
 
 Major changes in release 2.11:
 
diff --git a/TODO b/TODO
index e913ffb656211cd239489e8154ecfb611012fd6d..16d4a0d3f4e9d9aad279cc32765624e69cb26ba7 100644 (file)
--- a/TODO
+++ b/TODO
@@ -449,3 +449,11 @@ check for c89 before cc if it can't find gcc?
 hpa@yggdrasil.com (H. Peter Anvin)
 
 ------------------------------------------------------------------------------
+
+Modify the meaning of autoheader --localdir to add an additional
+directory to look for acconfig.h instead of replacing the directory
+containing configure.in.
+
+Marc Horowitz <marc@MIT.EDU>
+
+------------------------------------------------------------------------------
index 73f088290be6975b7fd3c1f32c5c34e3014c0724..89a3b9fc6d9e2a5a5aa707ba577a3e6b5c7ee971 100644 (file)
@@ -52,7 +52,7 @@ dnl
 divert(-1)dnl Throw away output until AC_INIT is called.
 changequote([, ])
 
-define(AC_ACVERSION, 2.10.2)
+define(AC_ACVERSION, 2.10.3)
 
 dnl Some old m4's don't support m4exit.  But they provide
 dnl equivalent functionality by core dumping because of the
index 54ae10466c21ab91374053f0e77aa56c57c4779c..13db27f28fb8c920a031ebc580d9c8f2646dd136 100644 (file)
@@ -6,8 +6,8 @@
 @c @setchapternewpage odd
 @c %**end of header
 
-@set EDITION 2.10.2
-@set VERSION 2.10.2
+@set EDITION 2.10.3
+@set VERSION 2.10.3
 @set UPDATED November 1996
 
 @iftex
@@ -703,7 +703,8 @@ newer than their input files (@file{configure.in} and, if present,
 
 @item --localdir=@var{dir}
 @itemx -l @var{dir}
-Look for the package files @file{aclocal.m4} and @file{acconfig.h} (but
+Have @code{autoconf} and @code{autoheader} look for the package files
+@file{aclocal.m4} and (@code{autoheader} only) @file{acconfig.h} (but
 not @file{@var{file}.top} and @file{@var{file}.bot}) in directory
 @var{dir} instead of in the directory containing each @file{configure.in}.
 
index 07f495b010830492bb963d41c99d51c6bf8adc08..03ca1f2b9d0dba1b95237bca423f0f852020f070 100644 (file)
@@ -86,12 +86,6 @@ if test $show_version = yes; then
 fi
 
 TEMPLATES="${AC_MACRODIR}/acconfig.h"
-# Disabled until I figure out whether it's really right.
-#if test "$localdir" != .; then
-  # When running autoheader from autoreconf, this is how we get
-  # subdirectories' acconfig.h files.
-  #test -r ./acconfig.h && TEMPLATES="${TEMPLATES} ./acconfig.h"
-#fi
 test -r $localdir/acconfig.h && TEMPLATES="${TEMPLATES} $localdir/acconfig.h"
 
 case $# in
index 07f495b010830492bb963d41c99d51c6bf8adc08..03ca1f2b9d0dba1b95237bca423f0f852020f070 100644 (file)
@@ -86,12 +86,6 @@ if test $show_version = yes; then
 fi
 
 TEMPLATES="${AC_MACRODIR}/acconfig.h"
-# Disabled until I figure out whether it's really right.
-#if test "$localdir" != .; then
-  # When running autoheader from autoreconf, this is how we get
-  # subdirectories' acconfig.h files.
-  #test -r ./acconfig.h && TEMPLATES="${TEMPLATES} ./acconfig.h"
-#fi
 test -r $localdir/acconfig.h && TEMPLATES="${TEMPLATES} $localdir/acconfig.h"
 
 case $# in
index 07f495b010830492bb963d41c99d51c6bf8adc08..03ca1f2b9d0dba1b95237bca423f0f852020f070 100644 (file)
@@ -86,12 +86,6 @@ if test $show_version = yes; then
 fi
 
 TEMPLATES="${AC_MACRODIR}/acconfig.h"
-# Disabled until I figure out whether it's really right.
-#if test "$localdir" != .; then
-  # When running autoheader from autoreconf, this is how we get
-  # subdirectories' acconfig.h files.
-  #test -r ./acconfig.h && TEMPLATES="${TEMPLATES} ./acconfig.h"
-#fi
 test -r $localdir/acconfig.h && TEMPLATES="${TEMPLATES} $localdir/acconfig.h"
 
 case $# in
index b839f748fa84b6e1d067dedd2411e39e0716417e..60671a287e5def597412c7825defc8bb09830143 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 # Guess values for system-dependent variables and create Makefiles.
-# Generated automatically using autoconf version 2.10.2 
+# Generated automatically using autoconf version 2.10.3 
 # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
 #
 # This configure script is free software; the Free Software Foundation
@@ -330,7 +330,7 @@ EOF
     verbose=yes ;;
 
   -version | --version | --versio | --versi | --vers)
-    echo "configure generated by autoconf version 2.10.2"
+    echo "configure generated by autoconf version 2.10.3"
     exit 0 ;;
 
   -with-* | --with-*)
@@ -816,7 +816,7 @@ do
     echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
     exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
-    echo "$CONFIG_STATUS generated by autoconf version 2.10.2"
+    echo "$CONFIG_STATUS generated by autoconf version 2.10.3"
     exit 0 ;;
   -help | --help | --hel | --he | --h)
     echo "\$ac_cs_usage"; exit 0 ;;
@@ -885,7 +885,7 @@ while $ac_more_lines; do
   else
     sed "${ac_end}q" conftest.subs > conftest.s$ac_file
   fi
-  if ! test -s conftest.s$ac_file; then
+  if test ! -s conftest.s$ac_file; then
     ac_more_lines=false
     rm -f conftest.s$ac_file
   else
index 54ae10466c21ab91374053f0e77aa56c57c4779c..13db27f28fb8c920a031ebc580d9c8f2646dd136 100644 (file)
@@ -6,8 +6,8 @@
 @c @setchapternewpage odd
 @c %**end of header
 
-@set EDITION 2.10.2
-@set VERSION 2.10.2
+@set EDITION 2.10.3
+@set VERSION 2.10.3
 @set UPDATED November 1996
 
 @iftex
@@ -703,7 +703,8 @@ newer than their input files (@file{configure.in} and, if present,
 
 @item --localdir=@var{dir}
 @itemx -l @var{dir}
-Look for the package files @file{aclocal.m4} and @file{acconfig.h} (but
+Have @code{autoconf} and @code{autoheader} look for the package files
+@file{aclocal.m4} and (@code{autoheader} only) @file{acconfig.h} (but
 not @file{@var{file}.top} and @file{@var{file}.bot}) in directory
 @var{dir} instead of in the directory containing each @file{configure.in}.
 
index 73f088290be6975b7fd3c1f32c5c34e3014c0724..89a3b9fc6d9e2a5a5aa707ba577a3e6b5c7ee971 100644 (file)
@@ -52,7 +52,7 @@ dnl
 divert(-1)dnl Throw away output until AC_INIT is called.
 changequote([, ])
 
-define(AC_ACVERSION, 2.10.2)
+define(AC_ACVERSION, 2.10.3)
 
 dnl Some old m4's don't support m4exit.  But they provide
 dnl equivalent functionality by core dumping because of the
index b558f7eff56231c02c6a4e3b359c6c7e23a2d11e..7c9586013212c29ba17a2415d2c3fba446c7a4e7 100644 (file)
@@ -40,8 +40,13 @@ all:
 info:
 dvi:
 
-check: site.exp all
-       @echo NOTE: This only works if you have the DejaGNU runtest program installed...
+dejacheck:
+       @if $(SHELL) -c 'runtest --version' > /dev/null 2>&1; then :; else \
+         echo ERROR: the autoconf tests require the DejaGNU runtest program; \
+         exit 1; \
+       fi
+
+check: dejacheck site.exp all
        $(RUNTEST) $(RUNTESTFLAGS) --tool autoconf AUTOCONF=${AUTOCONF} \
        AUTOCONFFLAGS="${AUTOCONFFLAGS}" --srcdir $(srcdir)