-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Karl Berry on 10/2/2009 4:57 PM: > This link: > > http://www.gnu.org/software/autoconf/manual/gcc/Standards.html#Standards > > Found on this page: > > http://www.gnu.org/software/autoconf/manual/html_node/Portable-C-and-C_002b_002b.html#Portable-C-and-C_002b_002b > > Appears Broken.
Yep. Since the gcc manual is not hosted on gnu.org, we can't just add a symlink to resolve it. I'm committing this instead, which should fix it for the next autoconf release (real soon now...). - -- Don't work too hard, make some time for fun as well! Eric Blake [email protected] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkrsNKsACgkQ84KuGfSFAYDIDACg1L16wJe3GcKy8xDxRPnCiDWp emQAnjvBMK9HX+9HaQ8ZMeKwTCB+Uivg =y9tj -----END PGP SIGNATURE-----
>From 8acd974e1a13b264fd0710fd23546369d54e7d41 Mon Sep 17 00:00:00 2001 From: Eric Blake <[email protected]> Date: Sat, 31 Oct 2009 06:57:46 -0600 Subject: [PATCH] Fix cross-manual link to gcc. * doc/autoconf.texi (Portable C and C++): Provide uref rather than xref when building for html. Reported via Karl Berry. Signed-off-by: Eric Blake <[email protected]> --- ChangeLog | 5 +++++ doc/autoconf.texi | 13 ++++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9dadf75..21fb77a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2009-10-31 Eric Blake <[email protected]> + Fix cross-manual link to gcc. + * doc/autoconf.texi (Portable C and C++): Provide uref rather than + xref when building for html. + Reported via Karl Berry. + Update authors. * AUTHORS: Document recent copyright assignments. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 8dae763..7ca8771 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -19331,10 +19331,17 @@ Portable C and C++ Several standards have been developed to help make your programs more portable. If you write programs with these standards in mind, you can have greater confidence that your programs work on a wide variety -of systems. @xref{Standards, , Language Standards Supported by +of systems. +...@ifhtml +...@uref{http://@/gcc.gnu.org/@/onlinedocs/@/gcc/@/Standards.html, Language +Standards Supported by @acronym{GCC}} +...@end ifhtml +...@ifnothtml +...@xref{standards, , Language Standards Supported by @acronym{GCC}, gcc, Using the @acronym{GNU} Compiler Collection -(@acronym{GCC})}, for a list of C-related -standards. Many programs also assume the +(@acronym{GCC})}, +...@end ifnothtml +for a list of C-related standards. Many programs also assume the @uref{http://@/www.opengroup.org/@/susv3, Posix standard}. Some old code is written to be portable to K&R C, which predates any C -- 1.6.5.rc1
