Changelog 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. 0.9.20 30 June 2003
  2. See Changelog.full for the complete list of who did what.
  3. Note:
  4. This release remains binary compatible with 0.9.18 and 0.9.19.
  5. Release highlights:
  6. o Some ldd, profiling, and gcc wrapper updates
  7. o Updated to support and compile with gcc 3.3
  8. o Several needed mips updates
  9. o Building under cygwin should now work...
  10. o Prevent non-PIC code getting into PIC libs
  11. o Added mmap64 support
  12. o mmu-less systems now get a 16k default thread stack size
  13. which is much more sane than the old 2 MB default...
  14. o Implemented syscall() for powerpc
  15. o Optionally struct tm extension support
  16. o Lots of other sundry little fixes and cleanups.
  17. o Prevent buffer overflows in the passwd and group functions.
  18. -Erik
  19. 0.9.19 3 March 2003
  20. See Changelog.full for the complete list of who did what.
  21. Note:
  22. This release remains binary compatible with 0.9.18 (except
  23. for mips, but then mips was unusable in stock 0.9.18 anyways).
  24. Release highlights:
  25. Stefan Allius
  26. o Some Makefile and warning fixes
  27. David Airlie
  28. o Fixed gcc wrapper handling of ctor/dtor stuff when used in
  29. with and w/o the nostdinc and nostdlib options
  30. Erik Andersen
  31. o Fixed a number of system call kernel type/user type translation
  32. problems that scrambed a handful of system calls.
  33. o Fixup powerpc syscalls to eliminate warnings with gcc-3.2
  34. o Fixed several ioctl special cases for powerpc
  35. o Checked in forgotten mips kernel_types.h changes
  36. o Fixed mips shared library loader bug that caused segfaults
  37. o Major update to the pthreads library. Should improve performance.
  38. o Fixed uClibc's shared library loader so we can properly debug
  39. applications using pthreads (must use gdb 5.3 or newer which
  40. was compiled using uClibc).
  41. o Made uClibc's ldd act just the glibc provided one (i.e. relying
  42. on the shared lib loader to do the work) when it is possible to
  43. doi so, and only rummage about the ELF headers when we have no
  44. other choice (such as when using 'ldd' on cross compiled stuff).
  45. Miles Bader
  46. o header file updates for v850 architecture
  47. o Fixed v850 crt0.S __uClibc_main argument stack space
  48. Jeffrey Damick
  49. o Fixed res_init() so it properly reloads /etc/resolv.conf
  50. Vadim Lebedev
  51. o Fixed ARM setjmp when floating point was disabled
  52. David McCullough
  53. o Removed debug (-g) when building crti.o and crtn.o, as
  54. debug would mess up the build for SH4 and probably others.
  55. o Fixed SH setjmp when floating point was enabled
  56. -Erik
  57. 0.9.18 12 February 2003
  58. See Changelog.full for the complete list of who did what.
  59. Note:
  60. Once again, this release is _NOT_ binary compatible with earlier
  61. releases. I _think this will be the last time (with the possible
  62. exception of some future changes to our locale support...)
  63. Release highlights:
  64. Stefan Allius
  65. o fixed a compile problem when large file support was disabled
  66. o fixed dlib_pic.o to compile with proper flags
  67. o fixed a shared lib loader compile warning
  68. o Made adding libgcc functions to uClibc optional
  69. Erik Andersen
  70. o Fixed scandir64 to not free the wrong pieces of memory
  71. which caused segfaults
  72. o Fixed mismatches between kernel and libc dirent structures
  73. o Fixed mismatches between the size of uClibc's struct dirent
  74. and struct dirent64 so that when _FILE_OFFSET_BITS=64 we
  75. do not lose part of the filename
  76. o Fixed getdents64.c so the build will not break when compiling
  77. vs a 2.0.x Linux kernel when UCLIBC_HAS_LFS is enabled
  78. o Create stub crti.o and crtn.o files when UCLIBC_CTOR_DTOR is disabled
  79. o Fixed licenses for a few files that erroneously were listed as GPL
  80. but were really LGPL after discussing with authors
  81. o sigaction for x86 had an extra and unwanted sigaction syscall
  82. o Fixed debugging of arm binaries by adding a .note.ABI-tag section
  83. Miles Bader
  84. o header file updates for v850 architecture
  85. o Fixed v850 clone syscall
  86. Christian Krause
  87. o Fixed pthread_cond_timedwait to properly uses rt singals
  88. when available
  89. Christophe Massiot
  90. o Added mips _flush_cache syscall
  91. David McCullough
  92. o Added m68k brk syscall
  93. Marshall M. Midden
  94. o Fixed pipe implementation for mips
  95. -Erik
  96. 0.9.17 25 January 2003
  97. See Changelog.full for the complete list of who did what.
  98. Note:
  99. I have always reserved the right to make binary incompatible changes as
  100. needed prior to the "1.0" release. This release is a good example of
  101. that. A few bugs turned up that needed to be fixed and the only good way
  102. to fix them was to change some fundamental data structure sizes. So I did
  103. just that. As a result, this release is _NOT_ binary compatible with
  104. earlier releases -- you will need to recompile your applications.
  105. Release highlights:
  106. Stefan Allius
  107. o fixed a number of shared library loader bugs
  108. o setjmp, longjmp, clone, and vfork cleanups for the SH architecture
  109. o Don't build the config system with ncurses unless asked to
  110. Tobias Anderberg
  111. o cris architecture updates
  112. Erik Andersen
  113. o Changed 'struct stat' and 'struct stat64' so they use types that
  114. are consistant with use elsewhere in the library. Without this,
  115. subtle bugs would occur due to comparing signed and unsigned
  116. types (for example, GNU tar wouldn't work)
  117. o Fixed dlopen so it works with staticly linked apps
  118. o Fixed sigaction on arm architecture so sa_restorer works properly
  119. o Fixed sigaction on x86 architecture for (fixed debugging threads)
  120. o Fixed a wide char related segfault in the regular expression code
  121. o Powerpc pread and pwrite are now implemented correctly
  122. o Powerpc syscall mechanism reimplemented
  123. o Sparc architecture and syscall mechanism fixed up so things compile
  124. o usershell reimplemented
  125. o Fixed global destructors for staticly linked applications
  126. o Added dynamic atexit support (needed for full C++ ctor/dtor support)
  127. o The ldd utility now acts more like the GNU utility
  128. o Added a stub libnsl library to make stupid configure scripts bahave
  129. o Always build crt1.o as well as crt0.o to minimize the need to mess
  130. with the compiler
  131. o Rewrote powerpc crt0.S to properly handle ctors/dtors
  132. o Removed unimplemented and legacy stuff from our header files to
  133. make configure behave better
  134. o Made the lib loader also support libs in /usr/X11R6/lib by default
  135. o Config system updates
  136. o networking function updates
  137. o Large file support updates
  138. o Lots of other little bug fixes and cleanups
  139. Nick Fedchik
  140. o Support ether_aton
  141. Nathan Field
  142. o Fixed pthread_mutex_lock and pthread_mutex_unlock so they
  143. actually work as advertised on mips
  144. o Fixed several nasty pthread bugs fixing debugging
  145. Brett Hunt
  146. o Fixed potential segfaults during 'make menuconfig'
  147. Jay Kulpinski
  148. o Fixed a subtle problem in the DNS resolver that prevented
  149. uncompressed DNS lookup responses from working
  150. David McCullough
  151. o Fixed pclose error handling
  152. David Meggy
  153. o fixed the problem where arm binaries would crash on start
  154. that Erik stupidly caused right before the last release.
  155. Manuel Novoa III
  156. o Major locale support update!
  157. o Allow people to use pregenerated locale data instead of generating
  158. approx 40Mb of glibc locales to get the 300+ locales currently
  159. supported.
  160. o locale dependent collation support
  161. o Fixed locale support tools to work when cross-compiling
  162. o Added the *wprintf functions
  163. o Added the wcsto{inttype} functions
  164. o Added iconv() and a mini iconv utility
  165. o Added hsearch and hsearch_r
  166. o Fixed a silly bug allowing wprintf %s to work correctly.
  167. o Fixed fdopen when used with "a" (append).
  168. o Fixed stdio file position handing to be sure fell() always
  169. gives correct results
  170. Luc Van Oostenryck
  171. o Fixed a buffer overflow in getlogin_r
  172. Yoshinori Sato
  173. o Hitachi h8300 architecture update
  174. Ronald Wahl
  175. o Powerpc shared library relocation fixes
  176. -Erik
  177. 0.9.16 8 November 2002
  178. See Changelog.full for the complete list of who did what.
  179. Release highlights:
  180. o CRIS architecture and shared library support from Tobias Anderberg
  181. o New uClibc configuration system
  182. o shared library global constructors and destructors initialization
  183. ordering fixed by Stefan Allius
  184. o More SuperH architecture fixes from Stefan Allius
  185. o uClibc now compiles with newer versions of gcc (i.e. RedHat 8.0)
  186. o uClibc no longer requires perl to compile
  187. o mips dlopen was fixed by Steven J. Hill
  188. o pty and tty handling fixes
  189. o Manuel Novoa added support for a new /etc/TZ file for globally
  190. setting the system timezone.
  191. o Manuel also fixed up a number of remaining wide char issues.
  192. o Lots of other little bug fixes and cleanups
  193. -Erik
  194. 0.9.15 27 August 2002
  195. This is a minor bugfix release.
  196. See Changelog.full for the complete list of who did what.
  197. Release highlights:
  198. o Eliminated the HAS_LONG_LONG option. gcc always supports
  199. long long, and the option never excluded all long long anyways.
  200. o ctype.h no longer allows multiple argument evaluation in
  201. compliance with ANSI/ISO C99
  202. o Obscure printf fixes -- one involving %o and one involving %f.
  203. o Bugfixes for locking and reentrance in password/group functions
  204. o Directly use kernel types for most items, eliminating needless
  205. translation and fixing several bugs.
  206. o Directly use kernel struct stat -- no more translating
  207. o More superH (sh) architecture merging from Stefan Allius
  208. o Errno values and strerror are now correct on alpha, sparc, and mips
  209. o Fixed an obscure bug with fclose when custom streams are enabled.
  210. o Lots of other little bug fixes and cleanups
  211. -Erik
  212. 0.9.14 12 August 2002
  213. This is a minor bugfix release.
  214. See Changelog.full for the complete list of who did what.
  215. Release highlights:
  216. o Fix a compile error when RPC and Pthread support
  217. were both enabled.
  218. o Eliminate duplicate define warnings in wstring.c.
  219. o Fix potentially broken preprocessor comparisons.
  220. o Erik was an idiot and broke thread locking in exit(),
  221. atexit() and friends. Fix that.
  222. o Fix the gcc wrapper to use crtbeginS.o and crtendS.o when
  223. compiling PIC code (crtbegin.o and crtend.o) otherwise.
  224. -Erik
  225. 0.9.13 9 August 2002
  226. Security Fixes
  227. o There was an off-by-one buffer overflow in the group
  228. handling code, fix thanks to Joseph Chiu.
  229. o There was an integer overflow bug in calloc, per
  230. http://online.securityfocus.com/bid/5398
  231. o There was an integer overflow bug in the xdr_array
  232. RPC code, per http://online.securityfocus.com/bid/5356
  233. See Changelog.full for the complete list of who did what.
  234. Release highlights:
  235. o Add full shared library support for Hitachi SuperH (sh)
  236. thanks to Stefan Allius and Edie C. Dost
  237. o Lots of reentrance cleanups (we should now be fully
  238. reentrant when compiled with pthread support).
  239. o Miles Bader implemented a new mmap based malloc which is much
  240. smarter than the old "malloc-simple", and actually works, unlike
  241. the old "malloc". This is now the default for mmu-less systems
  242. and should greatly help reduce memory fragmentation and wastage.
  243. o Reworked syscall handling for i386 and ARM, smaller and cleaner.
  244. o Support for the syscall() function on i386 and ARM
  245. o The uClibc g++ wrapper now automagically adds the proper include
  246. search path and and libraries.
  247. o Lots of shared library loader updates
  248. o dlopen'd shred libraries not properly run destructors
  249. when ctor/dtor support is enabled
  250. o pread/pwrite/pread64/pwrite64 now all work as expected
  251. o Lots and lots of other bug fixes and cleanups.
  252. -Erik
  253. 0.9.12 20 June 2002
  254. See Changelog.full for the complete list of who did what.
  255. Release highlights:
  256. o Add full shared library support for mips (big and little
  257. endian), thanks to a lot of hard work from Steven J. Hill
  258. o i960 architecture support, thanks to Martin Proulx
  259. o An initial alpha port (works, but needs some cleanup)
  260. o Fixes shared library support for powerpc
  261. o Fixes for mmu-less systems
  262. o Much improved thread locking and reentrance.
  263. o More gcc wrapper updates. XFree86 really does link
  264. this time around. It still didn't last time.
  265. o Libcrypt now passes conformance tests
  266. o Nearly complete locale supporti thanks to a lot
  267. of hard work by Manuel Novoa III. This stuff is
  268. _way_ smaller than glibc's
  269. o Completely new time handling functions also by Manuel
  270. o Lots of other bug fixes and cleanups.
  271. -Erik
  272. Erik Andersen:
  273. 0.9.11 10 April 2002
  274. Release highlights:
  275. o Lots of bug fixes
  276. o Much better large file support
  277. o Several gcc wrapper bug fixes, so things like iproute2 and
  278. XFree86 should now link properly.
  279. o Fixes a stdio thread locking bug that could cause random
  280. deadlocks on s*printf calls when threading was enabled.
  281. Erik Andersen:
  282. o Added a generic implementation of truncate64.c and ftruncate64.c
  283. o Added missing creat64, glob64, mkstemp64, getrlimit64, setrlimit64
  284. o Removed internal erroneous use of __USE_FILE_OFFSET64
  285. o Made libpthread compile on sparc and powerpc
  286. o Made libpthread soname and symlinks match the other libraries.
  287. o Added finite() to the C89 math lib, since some math functions use it.
  288. o Added missing function pointer to error.c (some apps wanted it)
  289. o Fixed initfini build for arches where gcc tries to be sneaky
  290. o Fixed m68k/bits/setjmp.h which I has broken in the last release.
  291. o Fixed a buffer overflow in the dynamic library loader
  292. o Fixed a stdio thread locking bug that could cause random
  293. deadlocks on s*printf calls when threading was enabled.
  294. o Implemented sqrtf(), needed for libstdc++ on arm
  295. Miles Bader:
  296. o Make clean fixes to not blindly wipe all symlinks
  297. o Re-enabled clnt_perror()
  298. o Re-implemented swab()
  299. Dwayne Fontenot:
  300. o Many updates to the uClibc Working Application List
  301. Steven J. Hill:
  302. o Many updates to the mips dynamic loader. Not yet working but
  303. getting very close now.
  304. o Fixed locking bug in getttyent()
  305. o Support libpthread on mips
  306. Richard June:
  307. o Fixed several bugs in utmp code (pututline was only writing the
  308. first sizeof-a-pointer bytes to the utmpfile).
  309. o setutent() was only opening utmp readonly.
  310. m4@brecis.COM:
  311. o Fixed a silly typing problem with the getuid syscall.
  312. Manuel Novoa III:
  313. o Fixed stdio FILE read/write auto-transition bugs.
  314. o Better stdio errno handling
  315. o Changed setvbuf() to more closely match glibc's behavior
  316. o Fixed getpass() to not echo passwords to the console
  317. o Fixed locale ISblank flag.
  318. o Fixed an arg promotion handling bug in _do_one_spec for %c reported
  319. by Ilguiz Latypov.
  320. Kensuke Otake:
  321. o Implemented swab()
  322. Yoshinori Sato:
  323. o Fixed h8300 architecture support for pthreads and changes to
  324. the include files
  325. David Schleef:
  326. o Made powerpc assembly code PIC-compatible
  327. o Removed powerpc R_PPC_REL24 handling, since it was deceptively useless.
  328. John Traill:
  329. o Several types on powerpc, such as dev_t, are different than on other
  330. architectures. John spotted this, which fixed a _ton_ of problems since
  331. anything calling stat() was previously broken.
  332. Jim Treadway:
  333. o Eliminated use of alarm() from the DNS resolver by converting
  334. it to use select instead (much cleaner).
  335. 0.9.10 21 March 2002
  336. Major new features:
  337. o pthreads support (derived from glibc 2.1.3's linuxthreads library)
  338. by Stefan Soucek and Erik Andersen
  339. o pthreads support for MMU-less systems, by Stefan Soucek
  340. o Complete rewrite of all stdio functions for standards compliance,
  341. small size, pthreads support, wide/narrow stream support, large
  342. file support, unbuffered support, etc, etc by Manuel Novoa III
  343. o gcc wrapper reworked by Erik Andersen. Now operated correctly in
  344. all known cases, and now wraps g++ as well for C++ support.
  345. o constructor/destructor support, for C++ by Erik Andersen.
  346. o Eliminated duplicate include/bits header files, by Erik Andersen.
  347. Now all common include/bits headers are grouped together.
  348. Erik Andersen:
  349. o Lots of changes and improvements to the shared library loader
  350. o Cleaned up a piles of bugs
  351. o Fixed a segfault when scandir was called on empty directories.
  352. o Several syscalls added: pread/pwrite
  353. o Makefile/build system cleanups
  354. o Sighandling fixes
  355. o pthreads support (with Stefan Soucek)
  356. o Added ldexp to the C89 math library, per POSIX
  357. o fclose() EINTR handling is now correct per IEEE Std 1003.1-2001
  358. o Support isblank()
  359. o Reworked libcrypt to avoid leaking private symbols into the namespace
  360. o Added strtof(), strtold(), updwtmp(), strptime()
  361. o Fix ldso build for older arm cross compilers
  362. Miles Bader:
  363. o atexit cleanups
  364. o fixed gcc wrapper handling of -M* options
  365. o Fixed truncate64/ftruncate64 to restrict them to 64-bit systems,
  366. since we can't be sure that the _syscall macros can cope with 64
  367. bit args on 32 bit arches.
  368. o Large File support on the v850
  369. o Fixed v850 headers after Erik messed them up
  370. o Eliminate include/features.h namespace pollution
  371. M. R. Brown:
  372. o Fixed pthread support for SH, and fixed SH vfork as well
  373. o Fixed SH headers after Erik messed them up
  374. Geoffrey Espin:
  375. o Mips architecture cleanups. Now works perfectly
  376. with busybox, vi, ash, etc...
  377. o Merged in the random number support (rand, srand, etc) from glibc.
  378. Thomas Fritzsche:
  379. o Fixes DNS resolver bug from 0.9.9
  380. Steven J. Hill:
  381. o Fixed build to support both mips and mipsel
  382. o Beginnings of a mips ldso port
  383. Andrew Ip:
  384. o Support for gnu error() functions
  385. David McCullough:
  386. o Coldfire platform updates: clone, setjmp
  387. o Fixed simple malloc to work on systems with an MMU
  388. Manuel Novoa III:
  389. o Rewrote all stdio functions for standards compliance, small size,
  390. pthreads support, wide/narrow stream support, large file support,
  391. unbuffered support, etc, etc, etc.
  392. o Rewrote the various string to int functions to be smaller, more
  393. standards compilant, and reduce dependance on libgcc.a.
  394. Yoshinori Sato:
  395. o ptrace for the Hitachi h8300 fix
  396. David Schleef:
  397. o Debian packaging updates
  398. o Check for proper 16-byte aliged stack pointer on powerpc
  399. Stefan Soucek:
  400. o pthreads support for MMU-less systems
  401. o pthreads support (with Erik Andersen)
  402. Brian Stafford:
  403. o Rewrote strcasecmp() per SUSv2.
  404. Bart Visscher:
  405. o Added missing IPV6 support and reentrant networking function
  406. additions so iptables now runs with IPV6 support.
  407. 0.9.9 February 4, 2002
  408. Erik Andersen:
  409. o A bunch of doc updates. Major update to the working
  410. apps list.
  411. o Added a configurator script (extra/Configs/uClibc_config_fix.pl)
  412. which can simplify configuring uClibc.
  413. o Fixed setjmp/longjmp on x86,arm,powerpc,mips,and sparc.
  414. Hitting ^C in ash kills client apps now, not ash.
  415. o Reworked signal handling code so it now passes POSIX
  416. conformance tests.
  417. o Fixed sleep and usleep to work correctly when
  418. interrupted by signals.
  419. o Made getopt behave the same when staticly linking
  420. as when dynamicly linking. It was using different
  421. implementations depending on how apps were linked.
  422. o Added missing inttypes.h header file
  423. o Eliminate all C++ style comments from header files
  424. o Support statvfs and statfs
  425. o Support getmntent_r
  426. o Scandir and scandir64 were calling malloc without
  427. checking for ENOMEM
  428. o Fixed stpcpy function declaration
  429. o Many large file support improvements.
  430. o Fixed fcntl to work when DOLFS is enabled
  431. o Fixed termios code to do the Right Thing(tm)
  432. o Allow regex to be excluded at compile time
  433. o Implemented mempcpy
  434. o Build ldd and readelf for the target system and for the
  435. host system
  436. o Fix several cases where get-needed-libgcc-objects.sh
  437. could fail, breaking the shared uClibc library.
  438. o Include all shared library loader objects into a
  439. single C file, thereby reducing its size further.
  440. o Reworked the shared library linking process to be more
  441. flexible so that gcc and ld can more easily be built to
  442. target uClibc library.
  443. o Better error checking in the Makefiles. Be more pedantic
  444. about tar, chmod, etc to avoid system dependent failures.
  445. o We can now autodetect the target architecture
  446. o Hide references to wchar_t so GNU autoconf
  447. configure scripts won't get confused and try to
  448. enable wide char support.
  449. o Fixed stdio.h so apps can use varargs.h if they want to.
  450. o Added brk/sbrk support for ARM, powerpc, mips, and sparc
  451. and set them to default to the much faster brk using malloc
  452. o Added missing syscalls: get_kernel_syms, fcntl64,
  453. fdatasync, sched_setparam, sched_getparam,
  454. sched_setscheduler, sched_getscheduler,
  455. sched_get_priority_max, sched_get_priority_min,
  456. sched_rr_get_interval, sigaltstack, sendfile,
  457. pivot_root, sigsuspend, setfsuid, and setfsgid
  458. o Force DOPIC be true when HAVE_SHARED is true.
  459. o Fixed hstrerror()
  460. o Implemented gethostent(), sethostent(), and endhostent()
  461. o Added arch specific support so that sparc and mips actually
  462. compile and work
  463. Miles Bader:
  464. o Fixes for the v850 architecture: crt0, setjmp,
  465. arch autodetection, etc.
  466. o Fixed `make install' to not build ldso stuff on
  467. non-shared-library systems.
  468. Michael E Brown:
  469. o Allow the gcc wrapper to support setting DEVEL_PREFIX
  470. and BUILD_DIR at runtime (no more need to recompile).
  471. M. R. Brown and Erik Andersen:
  472. o Fixed the SH port so it now works. Tested and shown
  473. working on an SH4 Dreamcast system.
  474. Kim Heino:
  475. o Made 'make clean' remove generated bits/syscall.h
  476. David McCullough:
  477. o SH architecture updates. Added brk, sbrk,
  478. o Fixed simple malloc to work on systems with an MMU
  479. o Taught getutent to return NULL if utmp doesn't exist.
  480. o Added insque/remque support
  481. o Fixed DNS resolver version number so apps won't get
  482. confused and use the wrong API.
  483. o Added Config selectable shadow password support
  484. Yoshinori Sato
  485. o Contributed support for the Hitach H8/300H architecture
  486. Cédric Schieli:
  487. o Add support for inet_netof, inet_lnaof, inet_makeaddr
  488. and hstrerror.
  489. David Schleef:
  490. o Added libstrip, a nifty script to automagically
  491. strip unneeded content from the uClibc shared
  492. libraries.
  493. Martin Sieper
  494. o Added getw() and putw()
  495. o Added missing header files -- lastlog.h, sgtty.h,
  496. netipx/ipx.h, sys/perm.h
  497. Stefan Soucek:
  498. o Add rcmd support, i.e. rsh, rlogin, etc.
  499. o Fix rcmd to avoid alloca, which is dangerous
  500. on mmu-less systems
  501. spudmonkey@racsa.co.cr:
  502. o Eliminate a buffer overflow in the shared library loader
  503. Brian Stafford:
  504. o Enable support for Unix98 PTYs, and add option
  505. to disable old style PTYs.