]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Update.
authorAkim Demaille <akim@epita.fr>
Tue, 30 Jan 2001 16:21:21 +0000 (16:21 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 30 Jan 2001 16:21:21 +0000 (16:21 +0000)
BUGS
ChangeLog
tests/base.at

diff --git a/BUGS b/BUGS
index 9be3a5c2953d879a3c32f9557194bdc910b54031..6f3bc0131ec9e3a803f527e2cd0f5b7798f32791 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -15,6 +15,26 @@ address them.
 
 * Status
 
-       /*----------------------------------.
-       | No known bug, release candidate.  |
-       `----------------------------------*/
+       /*------------.
+       | Don't use.  |
+       `------------*/
+
+* Serious Problems
+
+** Broken compilers
+
+configure does not properly diagnose broken compilers (because it
+finds the failure before the code that checks whether the compiler
+works).  It is not to serious a bug, but most notably the test suite
+will fail to handle gracefully missing compilers (typically the
+Fortran compiler).
+
+** Special characters and config.hin
+
+The handling of special characters, most notable backslashes, of
+course, might be nonportable in addition of being of clearly
+specified.
+
+** AC_TRY_EVAL of multi line commands
+
+Is broken.
index 5c4f6b058e162a29df0db77ae69f0d27adf940f5..ebfdee3b5a80d8d29e445dcdb53a102f45ebea41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-30  Akim Demaille  <akim@epita.fr>
+
+       * tests/base.at (AC_CACHE_CHECK): Typo and clea nup.
+
 2001-01-30  Paul Eggert  <eggert@twinsun.com>
 
        * autoheader.sh: Don't pass a string to 'echo' that might
index 71bc3bb6f3732501cc33a9e8729d7751ea9a557d..bc4402f647d26bb8e674b983caeffab0e7b0b000 100644 (file)
@@ -196,11 +196,11 @@ AT_CHECK_CONFIGURE
 AT_CLEANUP
 
 
-## -------------- ##
-## AC_CACHE_CHECK ##
-## -------------- ##
+## ---------------- ##
+## AC_CACHE_CHECK ##
+## ---------------- ##
 
-# make sure AC_CACH_CHECK is silent with -q
+# Make sure AC_CACHE_CHECK is silent with -q.
 
 AT_SETUP([AC_CACHE_CHECK])
 
@@ -210,7 +210,7 @@ AC_CACHE_CHECK([for nothing],[ac_nothing],[ac_nothing=found])
 ]])
 
 AT_CHECK_AUTOCONF
-AT_CHECK([./configure -q], 0)
+AT_CHECK_CONFIGURE([-q])
 AT_CHECK_CONFIGURE([], 0, [checking for nothing... found
 ])