Date: Mon, 9 Dec 2002 08:19:50 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp-workers AT delorie DOT com Subject: Re: 2.04 CVS Build plan In-Reply-To: <3DF3F576.F481AF3@yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 8 Dec 2002, CBFalconer wrote: > I have finally been able to get some sort of documentation by > extracting a section from a diff file for malloc.txh, stripping > the left columns, and passing the result through makeinfo --html > (with many errors reported, listed below as quote). > > > malloc.txh:465: Unknown command `portability'. > > ./malloc.txh:1: Next reference to nonexistent node `memory'. You cannot run a sole .txh file through `makeinfo', it won't work. TRhese files are fragments of the manual, and only make sense to `makeinfo' when presented to it concatenated together (and with some preprocessing that takes care of the likes of @portability). You must either read the Texinfo sources (the *.txh files themselves)--which is not too hard, since it's almost plain text--or download the whole CVS source tree and type "make" in its top-level src/ directory, which will generate a new libc.info file for you.