From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25802 invoked by alias); 4 Aug 2003 16:11:53 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 25757 invoked from network); 4 Aug 2003 16:11:50 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.166.107) by sources.redhat.com with SMTP; 4 Aug 2003 16:11:50 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 18E092B7F for ; Mon, 4 Aug 2003 12:11:44 -0400 (EDT) Message-ID: <3F2E85C0.1020504@redhat.com> Date: Mon, 04 Aug 2003 16:11:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [rfa:doco, 6.0] (C) and other fixes Content-Type: multipart/mixed; boundary="------------070003080702050809060908" X-SW-Source: 2003-08/txt/msg00036.txt.bz2 This is a multi-part message in MIME format. --------------070003080702050809060908 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 352 Hello, This little audit fixes a number of problems in the current doco: - gdbint.texinfo and stabs.texinfo didn't have correct invariant statements - stabs.texinfo didn't include the FDL - a stray @bye in agentexpr.texi caused the main manual to loose several appendixes and the index :-( - s/annotate.html/annotate_toc.html/. ok, 6.0? Andrew --------------070003080702050809060908 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 6080 2003-08-04 Andrew Cagney * agentexpr.texi: Delete @bye. * Makefile.in (STABS_DOC_SOURCE_INCLUDES): Add "fdl.texi" (stabs.info): Add $(srcdir) to include search path. (html): Depend on "annotate_toc.html", and not "annotate.html". * stabs.texinfo: Ditto. Include "fdl.texi". * gdbint.texinfo: Update copyright statement's list of invariant sections. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/doc/Makefile.in,v retrieving revision 1.31 diff -u -r1.31 Makefile.in --- Makefile.in 30 Jul 2003 04:14:38 -0000 1.31 +++ Makefile.in 4 Aug 2003 16:07:09 -0000 @@ -124,7 +124,8 @@ $(GDBINT_DOC_BUILD_INCLUDES) # Stabs manual: All files -STABS_DOC_SOURCE_INCLUDES = +STABS_DOC_SOURCE_INCLUDES = \ + $(srcdir)/fdl.texi STABS_DOC_BUILD_INCLUDES = STABS_DOC_FILES = \ $(srcdir)/stabs.texinfo \ @@ -149,7 +150,7 @@ info: $(INFO_DEPS) dvi: gdb.dvi gdbint.dvi stabs.dvi refcard.dvi annotate.dvi ps: gdb.ps gdbint.ps stabs.ps refcard.ps annotate.ps -html: gdb_toc.html gdbint_toc.html stabs_toc.html annotate.html +html: gdb_toc.html gdbint_toc.html stabs_toc.html annotate_toc.html pdf: gdb.pdf gdbint.pdf stabs.pdf annotate.pdf all-doc: info dvi ps # pdf diststuff: info @@ -405,7 +406,7 @@ $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/gdbint.texinfo stabs.info: $(STABS_DOC_FILES) - $(MAKEINFO) -o stabs.info $(srcdir)/stabs.texinfo + $(MAKEINFO) -I $(srcdir) -o stabs.info $(srcdir)/stabs.texinfo # STABS DOCUMENTATION: HTML file Index: agentexpr.texi =================================================================== RCS file: /cvs/src/src/gdb/doc/agentexpr.texi,v retrieving revision 1.4 diff -u -r1.4 agentexpr.texi --- agentexpr.texi 22 Jun 2003 04:27:24 -0000 1.4 +++ agentexpr.texi 4 Aug 2003 16:07:10 -0000 @@ -835,5 +835,3 @@ it. @end table - -@bye Index: gdbint.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v retrieving revision 1.157 diff -u -r1.157 gdbint.texinfo --- gdbint.texinfo 24 Jul 2003 18:56:37 -0000 1.157 +++ gdbint.texinfo 4 Aug 2003 16:07:13 -0000 @@ -16,12 +16,9 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no -Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,'' -and with the Back-Cover Texts as in (a) below. - -(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify -this GNU Manual, like GNU software. Copies published by the Free -Software Foundation raise funds for GNU development.'' +Invariant Sections, with no Front-Cover Texts, and with no Back-Cover +Texts. A copy of the license is included in the section entitled ``GNU +Free Documentation License''. @end ifinfo @setchapternewpage off @@ -56,12 +53,9 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no -Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,'' -and with the Back-Cover Texts as in (a) below. - -(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify -this GNU Manual, like GNU software. Copies published by the Free -Software Foundation raise funds for GNU development.'' +Invariant Sections, with no Front-Cover Texts, and with no Back-Cover +Texts. A copy of the license is included in the section entitled ``GNU +Free Documentation License''. @end titlepage @contents Index: stabs.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/stabs.texinfo,v retrieving revision 1.10 diff -u -r1.10 stabs.texinfo --- stabs.texinfo 3 Mar 2003 23:16:27 -0000 1.10 +++ stabs.texinfo 4 Aug 2003 16:07:15 -0000 @@ -22,12 +22,9 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no -Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,'' -and with the Back-Cover Texts as in (a) below. - -(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify -this GNU Manual, like GNU software. Copies published by the Free -Software Foundation raise funds for GNU development.'' +Invariant Sections, with no Front-Cover Texts, and with no Back-Cover +Texts. A copy of the license is included in the section entitled ``GNU +Free Documentation License''. @end ifinfo @setchapternewpage odd @@ -54,13 +51,9 @@ Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no -Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,'' -and with the Back-Cover Texts as in (a) below. - -(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify -this GNU Manual, like GNU software. Copies published by the Free -Software Foundation raise funds for GNU development.'' - +Invariant Sections, with no Front-Cover Texts, and with no Back-Cover +Texts. A copy of the license is included in the section entitled ``GNU +Free Documentation License''. @end titlepage @ifinfo @@ -85,6 +78,7 @@ * Stab Sections:: In some object file formats, stabs are in sections. * Symbol Types Index:: Index of symbolic stab symbol type names. +* GNU Free Documentation License:: The license for this documentation @end menu @end ifinfo @@ -4032,6 +4026,8 @@ is no more work than having the linker relocate ELF symbols, and it solves the problem of having to associate the ELF and stab symbols. However, no one has yet designed or implemented such a scheme. + +@include fdl.texi @node Symbol Types Index @unnumbered Symbol Types Index --------------070003080702050809060908--