home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / RELEASE.LIB < prev   
Encoding:
Text File  |  1995-04-20  |  27.8 KB  |  949 lines

  1. Hi, Gals and Guys,
  2.  
  3. This is the public release of the Linux C library 4.6.27. You have to
  4. run the kernel and install the source code of the kernel 1.1.52 or
  5. above to use it. It may work with the older kernels. You need a
  6. kernel which supports the QMAGIC format. You also need gcc 2.6.2
  7. or above to use it.
  8.  
  9. You need <linux/elf.h> in the kernel 1.1.72 or above if you want to
  10. compile the ELF libraries yourself. Otherwise, please join the Linux
  11. gcc list.
  12.  
  13. You need to recompile the libraries with the kernel 1.1.65 or above
  14. to gain the support for 57600 and 115200 bps.
  15.  
  16. Thanks to Stephen L Moshier and Olaf Flebbe, the long double stdio
  17. support and the long double math lib are in,
  18.  
  19. The librx from the latest libg++ 2.6.2 beta replaced the old GNU regex
  20. library. The old DLL binaries should work fine. But all the new
  21. ELF binaries which uses the GNU regex directly need to be re-compiled
  22. if they are linked with the shared library. When you compile any
  23. packages which come with their own regex, you HAVE to check if they
  24. have the same functions names in regex. If they do, you HAVE to remove
  25. the one in the package and use the one in libc since ELF will binds
  26. all of them to the same symbol names at the runtime. You have to
  27. recompile the ELF version of those binaries. If it is not 100%
  28. compatible with the one in libc, you are screwed. The reason for that
  29. is the ELF dynamic linker will bind the regex symbols at the run-time
  30. if you are using the shared ELF library. The shared ELF Linux C library
  31. was compiled with librx. If you have a local regex which has the
  32. same symbol names as librx, the ELF dynamic linker will use your local
  33. ones instead of the one in the Linux C library for all references
  34. including the shared ELF Linux C library. If your local regex is not
  35. 100% compatible, I don't know what will happen. FYI, I just did that
  36. for gawk 2.15.5 as well as GNU m4 1.4 plus a patch. They work fine.
  37.  
  38. Due to the compatibility problem, libndbm is replaced by gdbm 1.7.3.
  39. The BSD libdb is still there. But I don't know what's the impact on
  40. it. The old nvi compiled/linked with libdb runs fine with the new
  41. libraries.
  42.  
  43. There is a new select () in libbsd which doesn't return the remaining
  44. time out for compatibility. Just add -lbsd to link with it.
  45.  
  46. To use this library, you HAVE to use binutils-2.5.2.6.bin.tar.gz for 
  47. a.out. You can find it on tsx-11 under pub/linux/packages/GCC.
  48.  
  49. You need ld.so 1.5.2 or above to manipulate the ELF/PIC libraries. It
  50. should be found on tsx-11 under pub/linux/packages/GCC. If it is not
  51. there, please try oldtwok.ods.com:/pub/linux. The IP address of
  52. oldtwok.ods.com is 192.94.73.2.
  53.  
  54. Please get tools 2.16 under pub/linux/packages/GCC/src from
  55. tsx-11.mit.edu and install it in order to compile this library
  56. from the source code yourself.
  57.  
  58. The primary ftp sites for the compiler/C library are tsx-11.mit.edu
  59. under pub/linux/packages/GCC and sunsite.unc.edu under pub/Linux/GCC.
  60. The file names are
  61.  
  62. 1. inc-4.6.27.tar.gz.
  63. 2. libc-4.6.27.tar.gz.
  64. 3. image-4.6.27.tar.gz.
  65. 4. extra-4.6.27.tar.gz.
  66. 5. inc-4.6.20-4.6.27.tar.gz.
  67. 6. libc-4.6.20-4.6.27.tar.gz.
  68.  
  69. This release is compressed with gzip 1.2.4. You also need gnu tar
  70. to unpack this package.
  71.  
  72. I have put the stub libraries for the shared math and termcap and back.
  73. The gdbm 1.7.3 is in and the shared stubs are restored. db 1.85 from
  74. BSD 4.4 is also in.
  75.  
  76. I updated to the BSD 4.4 curses and made a new separate libcurses.so.
  77. But the old curses binaries should still work fine with the libc 4.6.27.
  78. Please check it out. The newly compiled curses library will be linked
  79. with libcurses.so. BTW, the file name of libcurses.so is longer than
  80. 14 characters. You cannot put it on a minix filesystem.
  81.  
  82. Please read ChangeLog for details of the bug fixes and changes.
  83.  
  84. Since we go back to gdbm for dbm, please do
  85.  
  86.   cd /usr/lib
  87.   rm -f libdbm.*
  88.  
  89. If you decide to untar the image-4.6.27.tar.gz or extra-4.6.27.tar.gz,
  90. please first do
  91.  
  92.   cd /usr/lib
  93.   rm -f libg.a libc_p.a libc.a
  94.  
  95. With bind-4.9.3beta9, you may have to change /etc/resolv.conf. The
  96. resolver's default "search" list will be just the entire "domain" name
  97. rather than the sliding window it had before 4.9.2. This will make the
  98. default search list shorter, so folks who are saying "domain a.b.c"
  99. and relying on the implicit "search a.b.c b.c c" will miss "b.c" and
  100. "c". So what you have to do is add this line into your /etc/resolv.conf:
  101.  
  102. search  a.b.c b.c c
  103.  
  104. The file list:
  105.  
  106. 1. inc-4.6.27.tar.gz
  107.  
  108.   REQUIRED. It is the header files for 4.6.27.
  109.  
  110.   cd /
  111.   rm -f /usr/include/dbm.h
  112.   rm -f /usr/include/ndbm.h
  113.   rm -f /usr/include/gdbm.h
  114.   gzip -dc inc-4.6.27.tar.gz | tar xvvSof -
  115.   # Please be careful, I don't know what you have under /usr/include.
  116.   # If you have a problem with the header files, you may do 
  117.   #    rm -rf /usr/include
  118.   #    mkdir -p /usr/include
  119.   # before
  120.   #    gzip -dc inc-4.6.27.tar.gz | tar xSvvof -
  121.  
  122.   The header files in inc-4.6.27.tar.gz are not complete. You have to
  123.   install the kernel source for the rest of the header files. Please
  124.   get the version mentioned at the beginning of this release note.
  125.   Suppose you install the kernel source at "/foo/bar/src", you should
  126.   do as root
  127.  
  128.   cd /usr/include
  129.   ln -s /foo/bar/src/linux/include/asm .
  130.   ln -s /foo/bar/src/linux/include/linux .
  131.   
  132.   Since some programs need <linux/autoconf.h>, you may have to do
  133.               
  134.   cd /foo/bar/src/linux
  135.   make config
  136.                    
  137.   before you can compile them.
  138.  
  139. 2. libc-4.6.27.tar.gz
  140.  
  141.   Source code for 4.6.27.
  142.  
  143.   cd src
  144.   rm -rf libc-linux
  145.   gzip -dc libc-4.6.27.tar.gz | tar xSvvof -
  146.  
  147. 3. image-4.6.27.tar.gz
  148.  
  149.   REQUIRED. The stub/static libraries and the shared images. To
  150.   install it, as root do
  151.  
  152.   cd /
  153.   rm -f /usr/lib/libdbm.*
  154.   gzip -dc image-4.6.27.tar.gz | tar xSvvof -
  155.   ldconfig -v
  156.  
  157.   FYI, it seems tar -S doesn't work cross the platforms. You may want
  158.   to use cp -a to save some disk spaces.
  159.  
  160. 4. extra-4.6.27.tar.gz
  161.  
  162.   REQUIRED. libmcheck.a, libg.a, libc_p.a, libgmon.a and gcrt0.o. To
  163.   install
  164.  
  165.   cd /
  166.   gzip -dc extra-4.6.27.tar.gz | tar xSvvof -
  167.  
  168.   If you don't want a profiling and a debugging libc, please do
  169.  
  170.   cd /usr/lib
  171.   ln -sf libc.a libc_p.a
  172.   ln -sf libc.a libg.a
  173.  
  174. 5. inc-4.6.20-4.6.27.tar.gz
  175.  
  176.   Change of the header files from 4.6.20 to 4.6.27.
  177.  
  178.   cd /
  179.   gzip -dc inc-4.6.20-4.6.27.tar.gz | tar xSvvof -
  180.  
  181. 6. libc-4.6.20-4.6.27.tar.gz
  182.  
  183.   Change of the source code from 4.6.20 to 4.6.27. You have to use
  184.   ld.so 1.5.2 or newer to install the compiled ELF/PIC libraries.
  185.  
  186.   cd src
  187.   gzip -dc libc-4.6.20-4.6.27.tar.gz | tar xSvvof -
  188.  
  189. 7. ChangeLog
  190.  
  191.   Change log for the Linux C library.
  192.  
  193. Please fix the file permissions/ownership after you install it.
  194.  
  195.  
  196. H.J.
  197. hjl@nynexst.com
  198. 12/16/94
  199. ----
  200. Tue Dec 13 21:03:16 1994  H.J. Lu (hjl@fudan)
  201.  
  202.     * version 4.6.27 is released.
  203.  
  204.     * sysdeps/i386/__stpncpy.c:
  205.     * sysdeps/i386/stpcpy.c:
  206.     * sysdeps/i386/strcat.c:
  207.     * sysdeps/i386/strchr.c:
  208.     * sysdeps/i386/strcspn.c:
  209.     * sysdeps/i386/strlen.c:
  210.     * sysdeps/i386/strpbrk.c:
  211.     * sysdeps/i386/strrchr.c:
  212.     * sysdeps/i386/strspn.c:
  213.     * sysdeps/i386/strstr.c: undo change made on Sun Dec  4
  214.       03:25:21 1994 by Ulrich Drepper (drepper@ira.uka.de) for
  215.       the new public release.
  216.  
  217. Mon Dec 13 21:03:16 1994  H.J. Lu (hjl@fudan)
  218.  
  219.     * <rpc/types.h>: change "#ifndef linux" to
  220.       "#ifndef __linux__".
  221.  
  222.     * misc/hsearch.c (isprime): return number%div != 0.
  223.  
  224.     * Makefile (DEPEND_DIRS): new, include elf/d-link.
  225.       (depend): make depend in all of $(DEPEND_DIRS).
  226.  
  227.     * login/utmp2.c (Utname): change it to Utname [].
  228.  
  229.     * jump/libm/jump.params:
  230.     * jump/libc.lite/jump.params:
  231.     * jump/libc/jump.params: bump up to version 4.6.27.
  232.  
  233.     * <_G_config.h>: update from libg++ 2.6.2 beta and change
  234.       verion to 4.6.27.
  235.  
  236.     * sysdeps/i386/asm-ops.h: support ELF alignment.
  237.  
  238.     * elf/libdl/jump.params: bump up to version 1.0.14.
  239.  
  240.     * elf/d-link/readelflib1.c (_dl_load_elf_shared_library):
  241.     * elf/d-link/i386/boot1.c (_dl_boot):
  242.       (_dl_malloc): check return from _dl_open ().
  243.  
  244.     * libio/ChangeLog:
  245.     * libio/ChangeLog.new: update.
  246.  
  247.     * libio/fileops.c (_IO_file_underflow): fix comments.
  248.  
  249.     * <iostdio.h> (setbuffer):  #define as _IO_setbuffer.
  250.  
  251.     * <libio.h>:
  252.     * libio/ldouble/libio.h: Add comment. Update Copyright notice.
  253.       (__P): Change argument name spelling from `paramlist' to
  254.       `protos' for compatibility with BSDI 1.1.
  255.  
  256.     * libio/_G_config.h: update from libg++ 2.6.2 beta.
  257.  
  258.     * sysdeps/i386/strncmp.c: undo change made on Sun Dec  4
  259.       03:25:21 1994 by Ulrich Drepper (drepper@ira.uka.de).
  260.       There are two LL(1)s. Bad for ELF.
  261.  
  262.     * sysdeps/i386/strcmp.c: undo change made on Sun Dec  4
  263.       03:25:21 1994 by Ulrich Drepper (drepper@ira.uka.de).
  264.       It uses ____brk_addr. It is not portable and has an
  265.       extra _ prefix for ELF.
  266.  
  267. Sun Dec  4 19:50:32 1994  Per Bothner  <bothner@kalessin.cygnus.com>
  268.  
  269.     * libio/iostdio.h (setbuffer):  #define as _IO_setbuffer.
  270.  
  271. Tue Nov 29 23:38:57 1994  Per Bothner  (bothner@rtl.cygnus.com)
  272.  
  273.     * libio/floatconv.c (setword0, setword1):  Fix typo.
  274.  
  275. Tue Nov 29 15:37:29 1994  Per Bothner  <bothner@kalessin.cygnus.com>
  276.  
  277.     * libio/floatconv.c (word0, word1):  Re-place/re-implement
  278.       using unions instead of casts to avoid optimizer problems.
  279.  
  280. Fri Nov  4 17:19:11 1994  Per Bothner  <bothner@kalessin.cygnus.com>
  281.  
  282.     * libio/libio.h:  Add comment.  Update Copyright notice.
  283.  
  284. Fri Nov  4 21:46:30 1994  Paul Eggert  <eggert@twinsun.com>
  285.  
  286.     * libio/libio.h (__P): Change argument name spelling from
  287.       `paramlist' to `protos' for compatibility with BSDI 1.1.
  288.  
  289. Sun Dec  4 03:25:21 1994  Ulrich Drepper  (drepper@ira.uka.de)
  290.  
  291.     * sysdeps/i386/memchr.c: Use register contents when testing for
  292.       the byte in a dword.
  293.       add further optimization by testing for length of full inner
  294.       loop and dd code to process trailing chars upto 15 in number.
  295.       correct processing of last dwords: add $4 to %0 before
  296.       comparing.
  297.  
  298.     * sysdeps/i386/__stpncpy.c: improvement.
  299.  
  300.     * sysdeps/i386/strlen.c: Have a little bit shorter code by
  301.       using edi in the main loop and let ecx have the original
  302.       byte for testing.
  303.       use same technique as memchr to detect NULL char.
  304.     
  305.     * sysdeps/i386/stpcpy.c: improvement.
  306.  
  307.     * sysdeps/i386/strcat.c: Use fast scanning technique. But take
  308.       care of i386 on which the string functions are not that bad.
  309.  
  310.     * sysdeps/i386/strchr.c: correct case where char is found in
  311.       dword but before a NULL char is placed.
  312.       Use fast char match algorithm twice in a 4 x 4 bytes
  313.       processing loop.
  314.  
  315.     * sysdeps/i386/strcmp.c:
  316.     * sysdeps/i386/strncmp.c: make 8-bit clean.
  317.       Add secure comparison: only strings in user memory are
  318.       compared with the 32-bit version.
  319.  
  320.     * sysdeps/i386/strcmp.c: correct jump to chose between compare
  321.       functions.
  322.       correct code for alignment: test with testb on %edx is ok, but
  323.       not on %esi.
  324.       Name must not have __ prefix (was for testing).
  325.       Remove superflous saving of EDI.
  326.       Process 16 bytes per round by using fast NULL char test.
  327.  
  328.     * sysdeps/i386/strncmp.c: correct code for alignment: test with
  329.       testb on %edx is ok, but not on $esi.
  330.       old code for single byte processing assumed counter in %ecx.
  331.       initialize %al for single-byte code with 0 (= result for NUL
  332.       string).
  333.       use fast char match technique along with 16 byte loop.
  334.  
  335.     * sysdeps/i386/strcspn.c: Correct alignment of main loop.
  336.       Correct signed loading of index.  Use simple movb for all
  337.       loadings after clearing ecx at the beginning.
  338.  
  339.     * sysdeps/i386/strpbrk.c: Correct signed loading of index. Use
  340.       simple movb for all loadings after clearing ecx at the
  341.       beginning.
  342.  
  343.     * sysdeps/i386/strspn.c: Correct type in intial ecx clearing.
  344.       Correct signed loading of index. Use simple movb for all
  345.       loadings after clearing ecx at the beginning.
  346.  
  347.     * sysdeps/i386/strrchr.c: remove test for match-bits, add
  348.       ALIGNs, add test for case of set carry bit.
  349.       Use fast char matching algorithm and 16 byte loop.
  350.  
  351.     * sysdeps/i386/strstr.c: correct bugs introduced by last
  352.       optimization where %eax was used only for the result.
  353.       add PIC support for gcc 2.6.2 and comments.
  354.  
  355. Sun Dec 11 09:53:12 1994  H.J. Lu (hjl@fudan)
  356.  
  357.     * version 4.6.26 is released.
  358.  
  359.     * jump/libm/jump.params:
  360.     * jump/libc.lite/jump.params:
  361.     * jump/libc/jump.params: bump up to version 4.6.26.
  362.  
  363.     * <_G_config.h>: update verion to 4.6.26.
  364.  
  365.     * elf/libdl/jump.params: bump up to version 1.0.13.
  366.  
  367.     * misc/Makefile (SRC1S): add basename.c.
  368.  
  369.     * jump/libc/jump.funcs:
  370.     * jump/libc.lite/jump.funcs: add _basename.
  371.  
  372.     * <unistd.h>: added prototype for `basename ()'.
  373.  
  374.     * misc/basename.c: include <unistd.h>.
  375.  
  376. Mon Dec  5 01:46:06 1994  Ulrich Drepper  (drepper@ira.uka.de)
  377.  
  378.     * io/ftw.c (ftw_dir, ftw): don't panic if file cannot be
  379.       stat'ed because it does not exist (happens when unresolved
  380.       symlink is found). reported by <chatterj@maths.ox.ac.uk>.
  381.  
  382.     * malloc-930716/malloc.c: little cosmetic plus little speed
  383.       change.
  384.  
  385.     * misc/basename.c: new file.
  386.  
  387.     * nls/genlib.c: accept \" in substitue text.
  388.       be generous for prepending lines in message file (for GNU
  389.       locale)
  390.  
  391.     * nls/msgcat.c: include GNU locale directories in search path.
  392.  
  393. Wed Dec  7 20:05:33 1994  Eric Youngdale  (eric@andante)
  394.  
  395.     * elf/d-link/hash.c (_dl_find_hash): Allow STT_NOTYPE symbols
  396.       to be resolved.
  397.  
  398.     * elf/d-link/readelflib1.c (_dl_load_shared_library): Do not
  399.       search /lib for libraries in the iBCS2/ABI version of the
  400.       dynamic loader.
  401.  
  402. Wed Dec  7 19:34:41 1994  H.J. Lu (hjl@fudan)
  403.  
  404.     * version 4.6.25 is released.
  405.  
  406.     * regex/ChangeLog.new: update.
  407.  
  408. Wed Dec  7 04:44:28 1994  Martin Pirker (pirker@eiunix.tuwien.ac.at)
  409.  
  410.     * regex/rx.c: Fix RX_DEBUG.
  411.       the LETTER_P macro and modified the ..._fetch_char function
  412.       to use the offset even if it is not zero.
  413.  
  414. Tue Dec  6 19:38:39 1994  H.J. Lu (hjl@fudan)
  415.  
  416.     * <bsd/bsd.h>: include <limits.h>.
  417.       (NCARGS): defined as ARG_MAX.
  418.       (NBBY): defined as CHAR_BIT.
  419.  
  420. Fri Dec 02 15:37:28 1994  Robert Andrew Ryan (robr@cmu.edu)
  421.  
  422.     * elf/d-link/readelflib1.c (_dl_load_elf_shared_library):
  423.       fixed to reserve the entire vm area needed by the
  424.       library with one mmap before mapping the individual
  425.       sections.
  426.  
  427. Tue Dec  6 12:47:19 1994  Ulrich Drepper (drepper@ira.uka.de)
  428.  
  429.     * misc/hsearch.c: change copyright
  430.   
  431.     * <sys/param.h>: include definition of DEV_BSIZE
  432.  
  433. Tue Dec  6 09:38:59 1994  H.J. Lu (hjl@fudan)
  434.  
  435.     * sysdeps/linux/i386/math/Makefile: fix a typo.
  436.  
  437. Mon Dec  5 13:13:57 1994  H.J. Lu (hjl@fudan)
  438.  
  439.     * jump/libm/jump.params:
  440.     * jump/libc.lite/jump.params:
  441.     * jump/libc/jump.params: bump up to version 4.6.25.
  442.  
  443.     * <_G_config.h>: update verion to 4.6.25.
  444.  
  445.     * elf/libdl/jump.params: bump up to version 1.0.12.
  446.  
  447.     * elf/d-link/libdl/dlib.c (_dlclose): check if tpnt->next is
  448.       NULL before set tpnt->next->prev. do the same for
  449.       _dl_loaded_modules->prev.
  450.  
  451.     * libio/ChangeLog.new: update.
  452.  
  453. Sun Dec  4 23:11:37 1994  H.J. Lu (hjl@fudan)
  454.  
  455.     * version 4.6.24 is released.
  456.  
  457.     * libio/ChangeLog.new: update.
  458.  
  459. Sun Dec  4 19:50:32 1994  Per Bothner  <bothner@kalessin.cygnus.com>
  460.  
  461.     * libio/fileops.c (_IO_file_init, _IO_file_close_it, _IO_file_sync):
  462.       Set _offset to _IO_pos_BAD, to support applications that
  463.       follow POSIX.1 rules on mixing file handles.
  464.  
  465.     * libio/fileops.c (_IO_file_overflow): Handle case that buffer
  466.       was allocated (perhaps by setvbuf) but _IO_write_base is
  467.       still 0.
  468.  
  469. Sun Dec  4 12:13:47 1994  H.J. Lu (hjl@fudan)
  470.  
  471.     * libio/fileops.c (_IO_file_seekoff): undo the change of Tue Nov
  472.       8 00:36:53 1994 by H.J. Lu  (hjl@nynexst.com).
  473.  
  474.     * elf/d-link/hash.h: include <link.h>.
  475.  
  476.     * elf/d-link/linuxelf.h: don't re-define the structures defined
  477.       in <elf.h>.
  478.       
  479.     * elf/d-link/i386/boot1.c (_dl_boot): don't recheck mmap of
  480.       /dev/zero.
  481.       use
  482.  
  483.         debug_addr->r_map = _dl_loaded_modules;
  484.  
  485.       instead of
  486.  
  487.         debug_addr->link_map = _dl_loaded_modules;
  488.  
  489.     * <link.h>: new for the ELF dynamic linker. used by gdb. need
  490.       the new <linux/elf.h>.
  491.  
  492.     * elf/libdl/jump.params: bump up to version 1.0.11.
  493.  
  494. Sun Dec  4 01:46:01 1994  Eric Youngdale (eric@aib.com)
  495.  
  496.     * elf/d-link/i386/boot1.c:
  497.     * elf/d-link/linuxelf.h:
  498.     * elf/d-link/libdl/dlib.c:
  499.     * elf/d-link/hash.h:
  500.     * elf/d-link/hash.c:
  501.     * elf/d-link/readelflib1.c: Update dynamic loader for gdb
  502.       support of automatic shared library loading.  Add patches so
  503.       that the same source tree can be used for both native ELF and
  504.       iBCS2.
  505.  
  506. Sun Dec  4 01:16:31 1994  H.J. Lu (hjl@fudan)
  507.  
  508.     * libio/ldouble/libioP.h: don't include linux.h if
  509.       __cplusplus is defined.
  510.            
  511.     * libio/ChangeLog.new: update.
  512.  
  513. Sat Dec  3 07:07:00 1994  Ulrich Drepper (drepper@ira.uka.de)
  514.  
  515.     * io/ftw.c: check ENOENT when returns from stat ().
  516.  
  517. Fri Dec  2 17:27:04 1994  H.J. Lu (hjl@fudan)
  518.  
  519.     * sysdeps/i386/Makefile (SRC3S): new, add frexp.S.
  520.  
  521.     * sysdeps/i386/frexp.S: copied from
  522.       sysdeps/linux/i386/math/frexp.S.
  523.  
  524.     * sysdeps/generic/Makefile (SRC1S): add ldexp.c.
  525.  
  526.     * sysdeps/generic/ldexp.c: moved from misc/ldexp.c.
  527.  
  528.     * misc/Makefile (SRC1S): remove ldexp.c.
  529.  
  530.     * sysdeps/linux/i386/math/Makefile (SRC2S): don't include
  531.       frexp.S for ELF.
  532.  
  533.     * sysdeps/linux/i386/math/frexp.S: fix alignment for ELF.
  534.  
  535.     * jump/libc/jump.funcs:
  536.     * jump/libc.lite/jump.funcs: add _frexp.
  537.  
  538. Wed Nov 30 16:18:14 1994  H.J. Lu (hjl@fudan)
  539.  
  540.     * jump/libm/jump.params:
  541.     * jump/libc.lite/jump.params:
  542.     * jump/libc/jump.params: bump up to version 4.6.24.
  543.  
  544.     * <_G_config.h>: update verion to 4.6.24.
  545.  
  546.     * <math.h>: add more long double prototypes.
  547.  
  548.     * sysdeps/linux/i386/math/mathl.h: new for long double.
  549.  
  550. Sun Nov 27 17:58:03 1994  H.J. Lu (hjl@fudan)
  551.  
  552.     * version 4.6.23 is released.
  553.  
  554.     * jump/libc-nys/genfuncs: do
  555.  
  556.         chmod +x genfuncs
  557.  
  558.       need to remove the old one?
  559.  
  560.     * Makeconfig (BASE_CFLAGS): clean up.
  561.  
  562.     * elf/libdl/jump.params: bump up to version 1.0.10.
  563.  
  564.     * jump/libc/jump.funcs:
  565.     * jump/libc.lite/jump.funcs: add __IO_ldtoa and __IO_strtold.
  566.  
  567.     * <libio.h> (_IO_LDOUBLE): defined as 0400000.
  568.  
  569.     * <math.h> (acosl):
  570.       (acoshl):
  571.       (asinl):
  572.       (asinhl):
  573.       (atan2l):
  574.       (atanl):
  575.       (atanhl):
  576.       (ceill):
  577.       (coshl):
  578.       (cosl):
  579.       (expl):
  580.       (fabsl):
  581.       (floorl):
  582.       (fmodl):
  583.       (frexpl):
  584.       (hypotl):
  585.       (ldexpl):
  586.       (log10l):
  587.       (logl):
  588.       (modfl):
  589.       (powl):
  590.       (sinhl):
  591.       (sinl):
  592.       (sqrtl):
  593.       (tanhl):
  594.       (tanl): new for long double.
  595.  
  596.     * libio/Makefile (INC_CFLAGS): changed to
  597.  
  598.       INC_CFLAGS=-I./ldouble -I./ldouble -I./ldouble -I./ldouble
  599.  
  600.     * libio/ldouble/Makefile (INC_CFLAGS): changed to
  601.  
  602.       INC_CFLAGS=
  603.  
  604.       (NEWSTDIOFLAGS): new. set to
  605.  
  606.       NEWSTDIOFLAGS=
  607.  
  608.     * libio/stdio/Makefile (INC_CFLAGS): changed to
  609.  
  610.       INC_CFLAGS=-I../ldouble -I../ldouble -I../ldouble -I../ldouble
  611.  
  612.     * libio/ldouble/floatio.h:
  613.     * libio/ldouble/linux.h: linked from ../.
  614.  
  615.     * libio/ChangeLog.new:
  616.     * libio/stdio/ChangeLog.new: modified for long double.
  617.  
  618. Sat Nov 26 23:41:35 1994  Stephen L Moshier (moshier@world.std.com)
  619.  
  620.     * libio/Makefile (DIRS): add ldouble.
  621.       (SRC1S): remove iovfscanf.c, iovfprintf.c and outfloat.c.
  622.  
  623.     * libio/ldouble/libio.h (_IO_LDOUBLE): defined as 0400000.
  624.  
  625.     * libio/ldouble/libioP.h (_IO_outfloat): change double to
  626.       long double.
  627.       (_IO_strtold):
  628.       (_IO_ldtoa): new.
  629.  
  630.     * libio/ldouble/iovfprintf.c:
  631.     * libio/ldouble/iovfscanf.c:
  632.     * libio/ldouble/outfloat.c: modified for long double.
  633.  
  634.     * libio/ldouble/Makefile:
  635.     * libio/ldouble/README:
  636.     * libio/ldouble/ioldouble.c: new for long double
  637.  
  638.     * jump/libm/jump.funcs:
  639.     * jump/libm/jump.vars: add long double symbols.
  640.  
  641.     * <ieee854.h>: new for long double.
  642.  
  643.     * sysdeps/linux/i386/math/float.h: new for long double. work
  644.       around until gcc's <float.h> is correct.
  645.  
  646.     * sysdeps/linux/i386/math/fp.h: new for the NCEG.
  647.  
  648.     * sysdeps/linux/i386/math/Makefile (SRC1S): add __infnanl.c,
  649.       __polevll.c, acoshl.c, acosl.c, asinl.c, atanhl.c, cbrtl.c,
  650.       ceill.c, erfl.c, floorl.c, frexpl.c, j0l.c, j1l.c, jnl.c,
  651.       ldexpl.c, lgammal.c, log10l.c, log1pl.c, log2l.c, logl.c,
  652.       modfl.c, powl.c and sqrtl.c.
  653.       (SRC2S): add asinhl.S, atan2l.S, atanl.S, coshl.S, cosl.S,
  654.       expl.S, expm1l.S, fabsl.S, fmodl.S, hypotl.S, sinhl.S,
  655.       sinl.S, tanhl.S and tanl.S.
  656.  
  657.     * sysdeps/linux/i386/math/lgamma.c: minor changes.
  658.  
  659.     * sysdeps/linux/i386/math/README.ldouble:
  660.     * sysdeps/linux/i386/math/fpclassifyf.c:
  661.     * sysdeps/linux/i386/math/__infnanl.c:
  662.     * sysdeps/linux/i386/math/__polevll.c:
  663.     * sysdeps/linux/i386/math/acoshl.c:
  664.     * sysdeps/linux/i386/math/acosl.c:
  665.     * sysdeps/linux/i386/math/asinl.c:
  666.     * sysdeps/linux/i386/math/atanhl.c:
  667.     * sysdeps/linux/i386/math/cbrtl.c:
  668.     * sysdeps/linux/i386/math/ceill.c:
  669.     * sysdeps/linux/i386/math/erfl.c:
  670.     * sysdeps/linux/i386/math/floorl.c:
  671.     * sysdeps/linux/i386/math/frexpl.c:
  672.     * sysdeps/linux/i386/math/j0l.c:
  673.     * sysdeps/linux/i386/math/j1l.c:
  674.     * sysdeps/linux/i386/math/jnl.c:
  675.     * sysdeps/linux/i386/math/ldexpl.c:
  676.     * sysdeps/linux/i386/math/lgammal.c:
  677.     * sysdeps/linux/i386/math/log10l.c:
  678.     * sysdeps/linux/i386/math/log1pl.c:
  679.     * sysdeps/linux/i386/math/log2l.c:
  680.     * sysdeps/linux/i386/math/logl.c:
  681.     * sysdeps/linux/i386/math/modfl.c:
  682.     * sysdeps/linux/i386/math/powl.c:
  683.     * sysdeps/linux/i386/math/sqrtl.c:
  684.     * sysdeps/linux/i386/math/asinhl.S:
  685.     * sysdeps/linux/i386/math/atan2l.S:
  686.     * sysdeps/linux/i386/math/atanl.S:
  687.     * sysdeps/linux/i386/math/coshl.S:
  688.     * sysdeps/linux/i386/math/cosl.S:
  689.     * sysdeps/linux/i386/math/expl.S:
  690.     * sysdeps/linux/i386/math/expm1l.S:
  691.     * sysdeps/linux/i386/math/fabsl.S:
  692.     * sysdeps/linux/i386/math/fmodl.S:
  693.     * sysdeps/linux/i386/math/hypotl.S:
  694.     * sysdeps/linux/i386/math/sinhl.S:
  695.     * sysdeps/linux/i386/math/sinl.S:
  696.     * sysdeps/linux/i386/math/tanhl.S:
  697.     * sysdeps/linux/i386/math/tanl.S: new for long double.
  698.  
  699. Fri Nov 25 08:12:20 1994  Robert Andrew Ryan (rr2b+@andrew.cmu.edu)
  700.  
  701.     * elf/d-link/hash.c (_dl_find_hash): add a new parameter,
  702.       int copyrel. Symbol resolution has been fixed so that data
  703.       symbols from a shared object which get copied into the
  704.       executable will work properly. Previously dynamically loaded
  705.       code would see the definition in the shared object instead of
  706.       the copy.
  707.  
  708.     * elf/d-link/hash.h (_dl_find_hash): fix the prototype.
  709.  
  710.     * elf/d-link/readelflib1.c:
  711.     * elf/d-link/i386/boot1.c: All mmap calls are now properly
  712.       checked for failure. Previously some were unchecked and
  713.       others where checked only for 0xffffffff. The mmap system
  714.       call actually returns -errno.
  715.  
  716.     * elf/d-link/i386/boot1.c (_dl_boot): add 0 to _dl_find_hash ().
  717.       (_dl_malloc): _dl_malloc has been fixed to allocate additional
  718.       pages as needed.
  719.  
  720.     * elf/d-link/i386/elfinterp.c (_dl_linux_resolver):
  721.       (_dl_parse_relocation_information): add 0 to _dl_find_hash ().
  722.       (_dl_parse_copy_information): add 1 to _dl_find_hash ().
  723.  
  724.     * elf/d-link/i386/syscall.h (_dl_MAX_ERRNO): new. defined as
  725.       4096.
  726.       (_dl_mmap_check_error): new macro. defined as
  727.  
  728.       #define _dl_mmap_check_error(__res)   \
  729.         (((int)__res) < 0 && ((int)__res) >= -_dl_MAX_ERRNO)
  730.  
  731.     * elf/d-link/libdl/dlib.c (_dlsym): add 0 to _dl_find_hash ().
  732.       (_dlclose): Symbol resolution during fini execution was
  733.       causing a segfault. Now the fini sections are run before the
  734.       objects which might be needed for them are unloaded.
  735.  
  736. Wed Nov 23 22:06:13 1994  Delman Lee (delman@mipg.upenn.edu)
  737.  
  738.     * libbsd/cfsetspeed.c: add 57600/115200 baud support.
  739.       need kernel 1.1.65 or above.
  740.  
  741. Mon Nov  7 10:36:55 1994  Theodore Ts'o (tytso@MIT.EDU)
  742.  
  743.     * posix/cfsetget.c: add support for 57600 and 115200 bps.
  744.       need kernel 1.1.65 or above.
  745.  
  746. Sun Nov 20 23:28:21 1994  H.J. Lu (hjl@fudan)
  747.  
  748.     * <regexp.h> (compile): use
  749.  
  750.         RETURN((__preg->buffer + __preg->rx.allocated - __preg->rx.reserved));
  751.  
  752.       if _RX_H is defined. from Gerd Rausch <gerd@alf.oche.de>.
  753.  
  754.     * jump/libm/jump.params:
  755.     * jump/libc.lite/jump.params:
  756.     * jump/libc/jump.params: bump up to version 4.6.23.
  757.  
  758.     * <_G_config.h>: update verion to 4.6.23.
  759.  
  760. Sun Nov 20 20:28:20 1994  H.J. Lu (hjl@fudan)
  761.     
  762.     * elf/crt/config/i386/linuxelf.h (LIBGCC_SPEC): changed
  763.       from LIB_SPEC_2.
  764.  
  765. Sun Nov 20 13:22:28 1994  H.J. Lu (hjl@fudan)
  766.  
  767.     * version 4.6.22 is released.
  768.  
  769.     * jump/libm/jump.params:
  770.     * jump/libc.lite/jump.params:
  771.     * jump/libc-nys/jump.params:
  772.     * jump/libc/jump.params: bump up to version 4.6.22.
  773.  
  774.     * <_G_config.h>: update verion to 4.6.22.
  775.  
  776.         * sysdeps/i386/memchr.c: undo the change of Wed Nov 16
  777.       11:13:24 1994 by Ulrich Drepper (drepper@ira.uka.de).
  778.       make linked with libc.so couldn't take linux/kernel/Makefile
  779.       in the Linux kernel 1.1.64.
  780.                  
  781. Sat Nov 19 17:02:01 1994  H.J. Lu (hjl@fudan)
  782.  
  783.     * version 4.6.21 is released.
  784.  
  785.     * <regexp.h> (compile): use
  786.  
  787.         RETURN((__preg->buffer + __preg->allocated - __preg->reserved));
  788.  
  789.       if _RX_H is defined.
  790.  
  791.     * elf/crt/crtstuff.c (CRT_END): add dummy
  792.  
  793.         extern void *___brk_addr;
  794.         extern char **__environ;
  795.  
  796.         ___brk_addr = __environ;
  797.  
  798.       if __linux__ and __PIC__ are defined.
  799.  
  800.     * jump/libcurses/jump.params: bump up to version 0.1.2.
  801.  
  802.     * curses-bsd4.4/ChangeLog: new entry.
  803.  
  804.     * sysdeps/m68k/crypt.S: copied from ufc/crypt.sun3.S.
  805.       don't use it since it doesn't support PIC.
  806.  
  807.     * sysdeps/linux/i386/syscall.S: fix alignment for ELF.
  808.  
  809.     * time/strftime.c (SET_AMPM): change to
  810.  
  811.         ampm = _time_info->ampm[tp->tm_hour >= 12]
  812.  
  813.       from Mark_Weaver@brown.edu.
  814.  
  815. Fri Nov 18 20:11:55 1994  J. Alan Eldridge (alane@wozzle.linet.org)
  816.  
  817.     * curses-bsd4.4/newwin.c (__set_subwin): fix
  818.       "olp" and "lp->line". Please test it.
  819.  
  820. Fri Nov 18 04:53:28 1994   Andreas Schwab (schwab@issan.informatik.uni-dortmund.de)
  821.  
  822.     * <gnu-stabs.h>: fix typo.
  823.  
  824.     * <m68k/__math.h>:
  825.     * <m68k/syscall.h>:
  826.     * <math.h>:
  827.     * <values.h>: add m68k support. 
  828.  
  829.     * Makerules: use "$(@D)/" instead of "$(@D)".
  830.  
  831.     * Maketargets (depend): use ".*\.o\" instead of ".*.o".
  832.  
  833.     * compat/m68k/__old__uname.c: d1 may be clobbered.
  834.  
  835.     * cvt/gcvt.c: handle exponents >= 100.
  836.  
  837.     * grp/gshadow.c:
  838.     * pwd/shadow.c: clear "shadow" after fclose ().
  839.  
  840.     * libio/floatconv.c: check __mc68000__ for IEEE_MC68k.
  841.  
  842.     * libio/ChangeLog.new: new entry.
  843.  
  844.     * sysdeps/linux/__load.c (__load_shared_libraries): don't
  845.       write out the trailing '\0'.
  846.  
  847.     * sysdeps/linux/m68k/Makefile (DIRS): add gmon.
  848.  
  849.     * sysdeps/linux/m68k/__fcntl.c: 
  850.     * sysdeps/linux/m68k/__ioctl.c:
  851.     * sysdeps/linux/m68k/__open.c: d3 may be clobbered.
  852.  
  853.     * sysdeps/linux/m68k/__sbrk.c: add register.
  854.  
  855.     * sysdeps/linux/m68k/__select.c: d1 may be clobbered.
  856.  
  857.     * sysdeps/linux/m68k/getprio.c: d0 may be clobbered.
  858.  
  859.     * sysdeps/linux/m68k/math/Makefile (SRC1S): add cbrt.c.
  860.  
  861.     * sysdeps/linux/m68k/math/frexp.c (frexp): use inline version.
  862.       (ldexp): new. use inline version.
  863.  
  864.     * sysdeps/linux/m68k/syscall.c: d0 may be clobbered.
  865.  
  866.     * sysdeps/linux/m68k/sysdep.h:
  867.     * sysdeps/m68k/setjmp/__longjmp.c: modified.
  868.  
  869.     * ufc/crypt.sun3.S: modified. don't use it since
  870.       it doesn't support PIC.
  871.  
  872.     * sysdeps/linux/m68k/gmon/Makefile:
  873.     * sysdeps/linux/m68k/gmon/gmon.c:
  874.     * sysdeps/linux/m68k/gmon/gmon.h:
  875.     * sysdeps/linux/m68k/gmon/profil.c:
  876.     * sysdeps/linux/m68k/math/cbrt.c: new for m68k.
  877.  
  878. Thu Nov 17 11:40:02 1994  H.J. Lu (hjl@fudan)
  879.  
  880.     * jump/libm/jump.params:
  881.     * jump/libc.lite/jump.params:
  882.     * jump/libc-nys/jump.params:
  883.     * jump/libc/jump.params: bump up to version 4.6.21.
  884.  
  885.     * elf/libdl/jump.params: bump up to version 1.0.9.
  886.  
  887.     * <_G_config.h>: update verion to 4.6.21.
  888.  
  889. Thu Nov 17 09:34:53 1994  Swen Thuemmler (swen@uni-paderborn.de)
  890.  
  891.     * rpc/getrpcent.c: 
  892.     * pwd/getpwent.c:
  893.     * grp/getgrent.c: free a pointer if it is not NULL
  894.       and then set it to NULL.
  895.  
  896.     * grp/initgroups.c (ypmode): don't make it static. make
  897.       it on stack.
  898.  
  899. Thu Nov 17 01:42:12 1994  H.J. Lu (hjl@fudan)
  900.  
  901.     * elf/d-link/readelflib1.c (_dl_load_shared_library): try
  902.       "/lib/" before "/usr/lib/".
  903.  
  904.     * sysdeps/linux/__load.c (__load_shared_libraries): check
  905.       LDSO_IMAGE1 if it is defined.
  906.  
  907.     * sysdeps/linux/config.h (LDSO_IMAGE1): new. defined as
  908.  
  909.         "/usr/"TARGET_MACHINE"/lib/ld.so"
  910.  
  911.     * sysdeps/linux/Makefile (BASE_CFLAGS): add
  912.  
  913.         -DTARGET_MACHINE=\"$(TARGET_MACHINE)\"
  914.  
  915.     * sysdeps/i386/Makefile (SRC1S): add  __stpncpy.c stpcpy.c
  916.       strstr.c.
  917.  
  918.     * string/Makefile (SCR1S): remove __stpncpy.c stpcpy.c
  919.       strstr.c.
  920.  
  921.     * elf/libtermcap/jump.params: Version 1.2.3.
  922.  
  923.     * termcap/version.c: 1.2.3.
  924.  
  925. Wed Nov 16 11:13:24 1994  Ulrich Drepper (drepper@ira.uka.de)
  926.  
  927.     * sysdeps/i386/memchr.c:
  928.     * sysdeps/i386/strstr.c: add PIC support.
  929.  
  930. Sat Nov 12 08:41:59 1994  Ulrich Drepper (drepper@ira.uka.de)
  931.  
  932.     * <mntent.h>: support the new mount options for ext2
  933.       in 1.1.61.
  934.  
  935.     * nls/Makefile (GENCATOBJ): new. defined as
  936.  
  937.         gencat.o genlib.o mcprt.o mcprtlib.o msgcat.o msgcat-libc.o.
  938.  
  939. Sat Nov 12 04:15:27 1994  Alan Modra (alan@SPRI.Levels.UniSA.Edu.Au)
  940.  
  941.     * termcap/termcap.c: use the version and disallow greater than
  942.       length 2 lookup strings!.
  943.  
  944. Wed Nov  9 01:09:56 1994  Rick Sladkey  <jrs@world.std.com>
  945.  
  946.     * elf/Makefile: Build crt before ELF libraries. Ensure gcc
  947.       finds the newly built crt*.o files instead of the installed
  948.       ones when building the shared objects.
  949.