mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 01:40:07 +00:00
7a68c94a5b
1998-07-10 18:14 -0400 Zack Weinberg <zack@rabi.phys.columbia.edu> * manual/Makefile: Overhauled. Generate libc.texinfo from the chapter files. Exorcise the chapters, chapters-incl mess. Support inserting doc chapters from add-on modules. (chapters): New variable. (add-chapters): New variable. (appendices): New variable. (libc.texinfo): New target. (clean): Fix bugs. (realclean): Fix bugs. * manual/texis.awk: New file. * manual/libc-texinfo.sh: New file. * manual/libc-texinfo.in: New file. * manual/conf.texi (top @node): Remove next pointer. * manual/lang.texi (top @node): Remove prev pointer. * manual/job.texi (top @node): Add explicit pointers. * manual/message.texi (top @node): Add explicit pointers. * manual/nss.texi (top @node): Add explicit pointers. * manual/process.texi (top @node): Add explicit pointers. * manual/startup.texi (top @node): Add explicit pointers. * manual/terminal.texi (top @node): Add explicit pointers. * manual/users.texi (top @node): Add explicit pointers. * manual/arith.texi: Add %MENU% tag. * manual/conf.texi: Add %MENU% tag. * manual/contrib.texi: Add %MENU% tag. * manual/ctype.texi: Add %MENU% tag. * manual/errno.texi: Add %MENU% tag. * manual/filesys.texi: Add %MENU% tag. * manual/header.texi: Add %MENU% tag. * manual/install.texi: Add %MENU% tag. * manual/intro.texi: Add %MENU% tag. * manual/io.texi: Add %MENU% tag. * manual/job.texi: Add %MENU% tag. * manual/lang.texi: Add %MENU% tag. * manual/llio.texi: Add %MENU% tag. * manual/locale.texi: Add %MENU% tag. * manual/maint.texi: Add %MENU% tag. * manual/math.texi: Add %MENU% tag. * manual/mbyte.texi: Add %MENU% tag. * manual/memory.texi: Add %MENU% tag. * manual/message.texi: Add %MENU% tag. * manual/nss.texi: Add %MENU% tag. * manual/pattern.texi: Add %MENU% tag. * manual/pipe.texi: Add %MENU% tag. * manual/process.texi: Add %MENU% tag. * manual/search.texi: Add %MENU% tag. * manual/setjmp.texi: Add %MENU% tag. * manual/signal.texi: Add %MENU% tag. * manual/socket.texi: Add %MENU% tag. * manual/startup.texi: Add %MENU% tag. * manual/stdio.texi: Add %MENU% tag. * manual/string.texi: Add %MENU% tag. * manual/sysinfo.texi: Add %MENU% tag. * manual/terminal.texi: Add %MENU% tag. * manual/time.texi: Add %MENU% tag. * manual/users.texi: Add %MENU% tag. 1998-07-13 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/i386/dl-procinfo.h (x86_cap_flags): Update. 1998-07-11 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sysdeps/unix/sysv/linux/recvmsg.c (__libc_recvmsg): Use ANSI style declaration to avoid warning. * sysdeps/unix/sysv/linux/sendmsg.c (__libc_sendmsg): Likewise. 1998-07-04 Mark Kettenis <kettenis@phys.uva.nl> * elf/rtld.c (process_dl_debug): Add missing continue. 1998-07-12 Mark Kettenis <kettenis@phys.uva.nl> * elf/rtld.c (_dl_skip_args): Make global because the Hurd startup code needs it. 1998-07-10 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makeconfig ($(common-objpfx)sysd-dirs): Write out definition of sysd-dirs-done. * Makerules: Don't generate version maps too early. ($(common-objpfx)sysd-versions): Force regeneration if the list of subdirs has changed. 1998-07-10 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dlfcn.h (DL_CALL_FCT): Use portable comma expression. 1998-07-11 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * iconv/gconv_db.c (gen_steps): Always set *handle and *nsteps. * iconv/gconv_dl.c (__gconv_find_shlib): Correct use of tfind return value. 1998-07-12 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/dl-open.c (dl_open_worker): New function. (_dl_open): Call it to do the actual work while catching errors. * elf/dl-close.c (_dl_close): Only call termination function if the initialisation function was called. 1998-07-13 Ulrich Drepper <drepper@cygnus.com> * libio/libioP.h (_IO_cleanup_registration_needed): Use __PMT. Reported by Felix von Leitner <leitner@amdiv.de>. 1998-07-13 10:28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/rtld.c (process_dl_debug): Add missing continue. 1998-06-23 Mark Kettenis <kettenis@phys.uva.nl>
116 lines
2.9 KiB
Bash
116 lines
2.9 KiB
Bash
#! /bin/sh
|
|
|
|
# Create libc.texinfo from the chapter files.
|
|
|
|
grep '^@node.*Top' $1 | cut -d, -f-2 |
|
|
sed 's/, /:/; s/:@node /:/; s/ /_/g; s/:/ /g' >cnodes.$$
|
|
|
|
$AWK '{ file[$2] = $1; nnode[$2] = $3 }
|
|
END { for(x in file)
|
|
if(file[x] != "")
|
|
print file[x] ":" x, file[nnode[x]] ":" nnode[x] }' \
|
|
cnodes.$$ | tsort | sed 's/_/ /g; $d' >corder.$$
|
|
|
|
[ -z "$2" ] || grep '^@node.*Top' `echo $2 /dev/null | tr ' ' '\n' | sort` |
|
|
cut -d, -f1 | sed 's/@node //' >xorder.$$
|
|
|
|
grep '^@node.*Top' $3 | cut -d, -f-2 |
|
|
sed 's/, /:/; s/:@node /:/; s/ /_/g; s/:/ /g' >anodes.$$
|
|
|
|
$AWK '{ file[$2] = $1; nnode[$2] = $3 }
|
|
END { for(x in file)
|
|
if(file[x] != "")
|
|
print file[x] ":" x, file[nnode[x]] ":" nnode[x] }' \
|
|
anodes.$$ | tsort | sed 's/_/ /g; $d' >aorder.$$
|
|
|
|
IFS=:
|
|
|
|
>incl.$$
|
|
>smenu.$$
|
|
>lmenu.$$
|
|
|
|
while read file node; do
|
|
echo "@include $file" >>incl.$$
|
|
echo "* $node:: `sed -n 's/^@c %MENU% //p' $file`" >>smenu.$$
|
|
lmenu=`sed -n '/^@menu/,/^@end menu/p; /^@end menu/q' $file |
|
|
sed '/^@menu/d; /^@end menu/d'`
|
|
[ -z "$lmenu" ] || (
|
|
echo; echo "$node"; echo
|
|
echo "$lmenu"
|
|
) >>lmenu.$$
|
|
done <corder.$$
|
|
|
|
if [ -f xorder.$$ ]; then
|
|
|
|
(echo; echo 'Add-ons'; echo) >>smenu.$$
|
|
|
|
while read file node; do
|
|
echo "@include $file" >>incl.$$
|
|
echo "* $node:: `sed -n 's/^@c %MENU% //p' $file`" >>smenu.$$
|
|
lmenu=`sed -n '/^@menu/,/^@end menu/p; /^@end menu/q' $file |
|
|
sed '/^@menu/d; /^@end menu/d'`
|
|
[ -z "$lmenu" ] || (
|
|
echo; echo "$node"; echo
|
|
echo "$lmenu"
|
|
) >>lmenu.$$
|
|
done <xorder.$$
|
|
fi
|
|
|
|
(echo; echo 'Appendices'; echo) >>smenu.$$
|
|
|
|
while read file node; do
|
|
echo "@include $file" >>incl.$$
|
|
echo "* $node:: `sed -n 's/^@c %MENU% //p' $file`" >>smenu.$$
|
|
lmenu=`sed -n '/^@menu/,/^@end menu/p; /^@end menu/q' $file |
|
|
sed '/^@menu/d; /^@end menu/d'`
|
|
[ -z "$lmenu" ] || (
|
|
echo; echo "$node"; echo
|
|
echo "$lmenu"
|
|
) >>lmenu.$$
|
|
done <aorder.$$
|
|
|
|
$AWK '
|
|
BEGIN { FS=":" }
|
|
|
|
/^\*/ {
|
|
printf("%-32s", $1 "::");
|
|
x = split($3, word, " ");
|
|
hpos = 34;
|
|
for(i = 1; i <= x; i++) {
|
|
hpos += length(word[i]) + 1;
|
|
if(hpos > 78) {
|
|
printf("\n%34s", "");
|
|
hpos = 35 + length(word[i]);
|
|
}
|
|
printf(" %s", word[i]);
|
|
}
|
|
print ".";
|
|
}
|
|
|
|
!/^\*/ { print; }
|
|
' smenu.$$ >smenux.$$
|
|
|
|
mv -f incl.$$ chapters.texi
|
|
|
|
(echo '@menu'
|
|
cat smenux.$$
|
|
cat <<EOF
|
|
* Copying:: The GNU Library General Public License says
|
|
how you can copy and share the GNU C Library.
|
|
|
|
Indices
|
|
|
|
* Concept Index:: Index of concepts and names.
|
|
* Type Index:: Index of types and type qualifiers.
|
|
* Function Index:: Index of functions and function-like macros.
|
|
* Variable Index:: Index of variables and variable-like macros.
|
|
* File Index:: Index of programs and files.
|
|
|
|
--- The Detailed Node Listing ---
|
|
EOF
|
|
cat lmenu.$$
|
|
echo '@end menu' ) >top-menu.texi.$$
|
|
mv -f top-menu.texi.$$ top-menu.texi
|
|
|
|
rm -f *.$$
|