Changelog 25 KB

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