diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/Makefile | 3 | ||||
-rw-r--r-- | manual/arith.texi | 2 | ||||
-rw-r--r-- | manual/maint.texi | 15 |
3 files changed, 14 insertions, 6 deletions
diff --git a/manual/Makefile b/manual/Makefile index cda84f7bec..3546841118 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -103,7 +103,8 @@ distribute = $(minimal-dist) \ $(minimal-dist))) \ libc.info* libc.?? libc.??s texinfo.tex summary.texi \ stamp-summary chapters chapters-incl1 chapters-incl2 \ - xtract-typefun.awk dir-add.texi dir-add.info dir + xtract-typefun.awk dir-add.texi dir-add.info dir \ + stdio-fp.c export distribute := $(distribute) tar-it = tar chovf $@ $^ diff --git a/manual/arith.texi b/manual/arith.texi index 07833931fd..3e153fcfa7 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -151,7 +151,6 @@ problem. @deftypevr Macro {const float imaginary} _Imaginary_I This macro is a representation of the value ``@math{1i}''. I.e., it is the value for which -@end deftypevr @smallexample _Imaginary_I * _Imaginary_I = -1 @@ -164,6 +163,7 @@ One can use it to easily construct complex number like in @smallexample 3.0 - _Imaginary_I * 4.0 @end smallexample +@end deftypevr @noindent which results in the complex number with a real part of 3.0 and a diff --git a/manual/maint.texi b/manual/maint.texi index e2a6b34ae2..7cb735534d 100644 --- a/manual/maint.texi +++ b/manual/maint.texi @@ -189,7 +189,7 @@ build the GNU C library: @itemize @bullet @item -@code{make} 3.75 +GNU @code{make} 3.75 You need the latest version of GNU @code{make}. Modifying the GNU C Library to work with other @code{make} programs would be so hard that we @@ -209,7 +209,7 @@ On PowerPC, GCC versions dated earlier than 970904 are known not to work (they crash), including 2.7.2. @item -@code{binutils} 2.8.1 +GNU @code{binutils} 2.8.1.0.17 Using the GNU @code{binutils} (assembler, linker, and related tools) is preferable when possible, and they are required to build an ELF shared C @@ -217,7 +217,7 @@ library. We recommend @code{binutils} version 2.8.1 or later; earlier versions are known to have problems or to not support all architectures. @item -@code{texinfo} 3.11 +GNU @code{texinfo} 3.11 To correctly translate and install the Texinfo documentation you need this version of the @code{texinfo} package. Former versions did not @@ -236,7 +236,7 @@ If you change any configuration file you will need also @itemize @bullet @item -@code{autoconf} 2.12 +GNU @code{autoconf} 2.12 @end itemize @noindent @@ -247,6 +247,13 @@ and if you change any of the message translation files you will also need @code{GNU gettext} 0.10 or later @end itemize +If any of the manual files changed you will need this + +@itemize @bullet +@item +GNU @code{awk} 3.0 +@end itemize + @noindent If you upgrade your source tree using the patches made available you probably will need those package above in any case. |