[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
74-fyi-reverse-include.patch
From: |
Akim Demaille |
Subject: |
74-fyi-reverse-include.patch |
Date: |
Fri, 31 Aug 2001 15:31:29 +0200 |
Index: ChangeLog
from Akim Demaille <address@hidden>
* lib/Autom4te/General.pm (&find_file): Browse the includes in the
inverse order.
Index: BUGS
--- BUGS Thu, 30 Aug 2001 16:11:54 +0200 akim
+++ BUGS Fri, 31 Aug 2001 13:29:28 +0200 akim
@@ -35,21 +35,6 @@
* Status
-/*------------------------------------------------------------------.
-| Do not use without perfect knowledge of AC_CHECK_HEADER changes. |
-`------------------------------------------------------------------*/
-
-** AC_CHECK_HEADER
-
-The handling is being revamped, and has not been tested enough to be
-trusted. We are *extremely* interested in your comments and
-experience with this being-built new semantics. Nonetheless it is way
-too soon to use this version even for beta releases.
-
-** make distcheck
-Always fails. Don't even try. But once installed Autoconf is usable.
-
-** make check
-Might fail if you have an old version of 2.52c installed on your
-machine. Please, then run make install before. But once installed
-Autoconf is usable.
+ /*--------------------------.
+ | Sane for full scale use. |
+ `--------------------------*/
Index: doc/autoconf.texi
--- doc/autoconf.texi Fri, 31 Aug 2001 13:05:00 +0200 akim
+++ doc/autoconf.texi Fri, 31 Aug 2001 13:28:02 +0200 akim
@@ -1153,7 +1153,8 @@ @node autoconf Invocation
@item address@hidden
@itemx -I @var{dir}
-Also look for input files in @var{dir}. Multiple invocations accumulate.
+Also look for input files in @var{dir}. Multiple invocations
+accumulate. Latest directories are looking in first.
@item address@hidden
@itemx -o @var{file}
@@ -2510,6 +2511,7 @@ @node autoheader Invocation
@item address@hidden
@itemx -I @var{dir}
Also look for input files in @var{dir}. Multiple invocations accumulate.
+Latest directories are looking in first.
@item address@hidden
@itemx -W @var{category}
@@ -10073,6 +10075,7 @@ @node autoupdate Invocation
@item address@hidden
@itemx -I @var{dir}
Also look for input files in @var{dir}. Multiple invocations accumulate.
+Latest directories are looking in first.
@end table
@node Obsolete Macros
Index: lib/Autom4te/General.pm
--- lib/Autom4te/General.pm Fri, 31 Aug 2001 11:22:31 +0200 akim
+++ lib/Autom4te/General.pm Fri, 31 Aug 2001 13:26:19 +0200 akim
@@ -140,7 +140,7 @@ sub find_file ($@)
return undef;
}
- foreach my $path (@include)
+ foreach my $path (reverse @include)
{
return File::Spec->canonpath (File::Spec->catfile ($path, $filename))
if -e File::Spec->catfile ($path, $filename)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- 74-fyi-reverse-include.patch,
Akim Demaille <=