Okay, maybe I don't know how to use CVS, but I just did this:
$ cvs -z9 -d :pserver:[EMAIL PROTECTED]:/cvs update autoconf
cvs server: Updating autoconf
P autoconf/ChangeLog
P autoconf/NEWS
P autoconf/acgeneral.m4
P autoconf/aclang.m4
P autoconf/acspecific.m4
cvs server: Updating autoconf/doc
P autoconf/doc/autoconf.texi
cvs server: Updating autoconf/m4
cvs server: Updating autoconf/man
M autoconf/man/Makefile.in
cvs server: Updating autoconf/tests
cvs server: Updating autoconf/testsuite
cvs server: Updating autoconf/testsuite/autoconf.g
cvs server: Updating autoconf/testsuite/autoconf.s
cvs server: Updating autoconf/testsuite/autoconf.torture
cvs server: Updating autoconf/testsuite/config
cvs server: Updating autoconf/testsuite/lib
When I look at the ChangeLog, I see your change:
2000-06-08 Paul Eggert <[EMAIL PROTECTED]>
Import AC_SYS_LARGEFILE from largefile.m4 serial 12.
* acspecific.m4 (AC_SYS_LARGEFILE, _AC_SYS_LARGEFILE_MACRO_VALUE,
_AC_SYS_LARGEFILE_SOURCE): New.
* doc/autoconf.texi (System Services): Document AC_SYS_LARGEFILE.
2000-06-08 Steven G. Johnson <[EMAIL PROTECTED]>
* aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Don't override FLIBS if
specified by the user.
Fix a bug: use the cached value to set FLIBS.
But, after reconfiguring, rerunning, I got the same errors. So, I looked
in aclang.m4 about line 1334 and compared to your patch in the e-mail,
I don't see your changes showing up.
RCS file: /cvs/autoconf/aclang.m4,v
retrieving revision 1.32
diff -u -r1.32 aclang.m4
--- aclang.m4 2000/06/08 08:23:30 1.32
+++ aclang.m4 2000/06/08 17:57:31
@@ -1334,24 +1334,14 @@
end
EOF
-# Save the "compiler output file descriptor" to FD 8.
-exec 8>&AC_FD_LOG
-
-# Temporarily redirect compiler output to stdout, since this is what
-# we want to capture in AC_LINK_OUTPUT.
-exec AC_FD_LOG>&1
-
# Compile and link our simple test program by passing the "-v" flag
# to the Fortran 77 compiler in order to get "verbose" output that
# we can then parse for the Fortran 77 linker flags. I don't know
# what to do if your compiler doesn't have -v.
ac_save_FFLAGS=$FFLAGS
FFLAGS="$FFLAGS -v"
-ac_link_output=`eval $ac_link 2>&1 | grep -v 'Driving:'`
+ac_link_output=`eval $ac_link AC_FD_LOG>&1 2>&1 | grep -v 'Driving:'`
FFLAGS=$ac_save_FFLAGS
-
-# Restore the "compiler output file descriptor".
-exec AC_FD_LOG>&8
rm -f conftest.*
After applying the change myself, I get a working version! So, the patch works,
but is it in the CVS?
Paul