Changelog 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. 0.9.15 27 August 2002
  2. This is a minor bugfix release.
  3. See Changelog.full for the complete list of who did what.
  4. Release highlights:
  5. o Eliminated the HAS_LONG_LONG option. gcc always supports
  6. long long, and the option never excluded all long long anyways.
  7. o ctype.h no longer allows multiple argument evaluation in
  8. compliance with ANSI/ISO C99
  9. o Obscure printf fixes -- one involving %o and one involving %f.
  10. o Bugfixes for locking and reentrance in password/group functions
  11. o Directly use kernel types for most items, eliminating needless
  12. translation and fixing several bugs.
  13. o Directly use kernel struct stat -- no more translating
  14. o More superH (sh) architecture merging from Stefan Allius
  15. o Errno values and strerror are now correct on alpha, sparc, and mips
  16. o Fixed an obscure bug with fclose when custom streams are enabled.
  17. o Lots of other little bug fixes and cleanups
  18. -Erik
  19. 0.9.14 12 August 2002
  20. This is a minor bugfix release.
  21. See Changelog.full for the complete list of who did what.
  22. Release highlights:
  23. o Fix a compile error when RPC and Pthread support
  24. were both enabled.
  25. o Eliminate duplicate define warnings in wstring.c.
  26. o Fix potentially broken preprocessor comparisons.
  27. o Erik was an idiot and broke thread locking in exit(),
  28. atexit() and friends. Fix that.
  29. o Fix the gcc wrapper to use crtbeginS.o and crtendS.o when
  30. compiling PIC code (crtbegin.o and crtend.o) otherwise.
  31. -Erik
  32. 0.9.13 9 August 2002
  33. Security Fixes
  34. o There was an off-by-one buffer overflow in the group
  35. handling code, fix thanks to Joseph Chiu.
  36. o There was an integer overflow bug in calloc, per
  37. http://online.securityfocus.com/bid/5398
  38. o There was an integer overflow bug in the xdr_array
  39. RPC code, per http://online.securityfocus.com/bid/5356
  40. See Changelog.full for the complete list of who did what.
  41. Release highlights:
  42. o Add full shared library support for Hitachi SuperH (sh)
  43. thanks to Stefan Allius and Edie C. Dost
  44. o Lots of reentrance cleanups (we should now be fully
  45. reentrant when compiled with pthread support).
  46. o Miles Bader implemented a new mmap based malloc which is much
  47. smarter than the old "malloc-simple", and actually works, unlike
  48. the old "malloc". This is now the default for mmu-less systems
  49. and should greatly help reduce memory fragmentation and wastage.
  50. o Reworked syscall handling for i386 and ARM, smaller and cleaner.
  51. o Support for the syscall() function on i386 and ARM
  52. o The uClibc g++ wrapper now automagically adds the proper include
  53. search path and and libraries.
  54. o Lots of shared library loader updates
  55. o dlopen'd shred libraries not properly run destructors
  56. when ctor/dtor support is enabled
  57. o pread/pwrite/pread64/pwrite64 now all work as expected
  58. o Lots and lots of other bug fixes and cleanups.
  59. -Erik
  60. 0.9.12 20 June 2002
  61. See Changelog.full for the complete list of who did what.
  62. Release highlights:
  63. o Add full shared library support for mips (big and little
  64. endian), thanks to a lot of hard work from Steven J. Hill
  65. o i960 architecture support, thanks to Martin Proulx
  66. o An initial alpha port (works, but needs some cleanup)
  67. o Fixes shared library support for powerpc
  68. o Fixes for mmu-less systems
  69. o Much improved thread locking and reentrance.
  70. o More gcc wrapper updates. XFree86 really does link
  71. this time around. It still didn't last time.
  72. o Libcrypt now passes conformance tests
  73. o Nearly complete locale supporti thanks to a lot
  74. of hard work by Manuel Novoa III. This stuff is
  75. _way_ smaller than glibc's
  76. o Completely new time handling functions also by Manuel
  77. o Lots of other bug fixes and cleanups.
  78. -Erik
  79. Erik Andersen:
  80. 0.9.11 10 April 2002
  81. Release highlights:
  82. o Lots of bug fixes
  83. o Much better large file support
  84. o Several gcc wrapper bug fixes, so things like iproute2 and
  85. XFree86 should now link properly.
  86. o Fixes a stdio thread locking bug that could cause random
  87. deadlocks on s*printf calls when threading was enabled.
  88. Erik Andersen:
  89. o Added a generic implementation of truncate64.c and ftruncate64.c
  90. o Added missing creat64, glob64, mkstemp64, getrlimit64, setrlimit64
  91. o Removed internal erroneous use of __USE_FILE_OFFSET64
  92. o Made libpthread compile on sparc and powerpc
  93. o Made libpthread soname and symlinks match the other libraries.
  94. o Added finite() to the C89 math lib, since some math functions use it.
  95. o Added missing function pointer to error.c (some apps wanted it)
  96. o Fixed initfini build for arches where gcc tries to be sneaky
  97. o Fixed m68k/bits/setjmp.h which I has broken in the last release.
  98. o Fixed a buffer overflow in the dynamic library loader
  99. o Fixed a stdio thread locking bug that could cause random
  100. deadlocks on s*printf calls when threading was enabled.
  101. o Implemented sqrtf(), needed for libstdc++ on arm
  102. Miles Bader:
  103. o Make clean fixes to not blindly wipe all symlinks
  104. o Re-enabled clnt_perror()
  105. o Re-implemented swab()
  106. Dwayne Fontenot:
  107. o Many updates to the uClibc Working Application List
  108. Steven J. Hill:
  109. o Many updates to the mips dynamic loader. Not yet working but
  110. getting very close now.
  111. o Fixed locking bug in getttyent()
  112. o Support libpthread on mips
  113. Richard June:
  114. o Fixed several bugs in utmp code (pututline was only writing the
  115. first sizeof-a-pointer bytes to the utmpfile).
  116. o setutent() was only opening utmp readonly.
  117. m4@brecis.COM:
  118. o Fixed a silly typing problem with the getuid syscall.
  119. Manuel Novoa III:
  120. o Fixed stdio FILE read/write auto-transition bugs.
  121. o Better stdio errno handling
  122. o Changed setvbuf() to more closely match glibc's behavior
  123. o Fixed getpass() to not echo passwords to the console
  124. o Fixed locale ISblank flag.
  125. o Fixed an arg promotion handling bug in _do_one_spec for %c reported
  126. by Ilguiz Latypov.
  127. Kensuke Otake:
  128. o Implemented swab()
  129. Yoshinori Sato:
  130. o Fixed h8300 architecture support for pthreads and changes to
  131. the include files
  132. David Schleef:
  133. o Made powerpc assembly code PIC-compatible
  134. o Removed powerpc R_PPC_REL24 handling, since it was deceptively useless.
  135. John Traill:
  136. o Several types on powerpc, such as dev_t, are different than on other
  137. architectures. John spotted this, which fixed a _ton_ of problems since
  138. anything calling stat() was previously broken.
  139. Jim Treadway:
  140. o Eliminated use of alarm() from the DNS resolver by converting
  141. it to use select instead (much cleaner).
  142. 0.9.10 21 March 2002
  143. Major new features:
  144. o pthreads support (derived from glibc 2.1.3's linuxthreads library)
  145. by Stefan Soucek and Erik Andersen
  146. o pthreads support for MMU-less systems, by Stefan Soucek
  147. o Complete rewrite of all stdio functions for standards compliance,
  148. small size, pthreads support, wide/narrow stream support, large
  149. file support, unbuffered support, etc, etc by Manuel Novoa III
  150. o gcc wrapper reworked by Erik Andersen. Now operated correctly in
  151. all known cases, and now wraps g++ as well for C++ support.
  152. o constructor/destructor support, for C++ by Erik Andersen.
  153. o Eliminated duplicate include/bits header files, by Erik Andersen.
  154. Now all common include/bits headers are grouped together.
  155. Erik Andersen:
  156. o Lots of changes and improvements to the shared library loader
  157. o Cleaned up a piles of bugs
  158. o Fixed a segfault when scandir was called on empty directories.
  159. o Several syscalls added: pread/pwrite
  160. o Makefile/build system cleanups
  161. o Sighandling fixes
  162. o pthreads support (with Stefan Soucek)
  163. o Added ldexp to the C89 math library, per POSIX
  164. o fclose() EINTR handling is now correct per IEEE Std 1003.1-2001
  165. o Support isblank()
  166. o Reworked libcrypt to avoid leaking private symbols into the namespace
  167. o Added strtof(), strtold(), updwtmp(), strptime()
  168. o Fix ldso build for older arm cross compilers
  169. Miles Bader:
  170. o atexit cleanups
  171. o fixed gcc wrapper handling of -M* options
  172. o Fixed truncate64/ftruncate64 to restrict them to 64-bit systems,
  173. since we can't be sure that the _syscall macros can cope with 64
  174. bit args on 32 bit arches.
  175. o Large File support on the v850
  176. o Fixed v850 headers after Erik messed them up
  177. o Eliminate include/features.h namespace pollution
  178. M. R. Brown:
  179. o Fixed pthread support for SH, and fixed SH vfork as well
  180. o Fixed SH headers after Erik messed them up
  181. Geoffrey Espin:
  182. o Mips architecture cleanups. Now works perfectly
  183. with busybox, vi, ash, etc...
  184. o Merged in the random number support (rand, srand, etc) from glibc.
  185. Thomas Fritzsche:
  186. o Fixes DNS resolver bug from 0.9.9
  187. Steven J. Hill:
  188. o Fixed build to support both mips and mipsel
  189. o Beginnings of a mips ldso port
  190. Andrew Ip:
  191. o Support for gnu error() functions
  192. David McCullough:
  193. o Coldfire platform updates: clone, setjmp
  194. o Fixed simple malloc to work on systems with an MMU
  195. Manuel Novoa III:
  196. o Rewrote all stdio functions for standards compliance, small size,
  197. pthreads support, wide/narrow stream support, large file support,
  198. unbuffered support, etc, etc, etc.
  199. o Rewrote the various string to int functions to be smaller, more
  200. standards compilant, and reduce dependance on libgcc.a.
  201. Yoshinori Sato:
  202. o ptrace for the Hitachi h8300 fix
  203. David Schleef:
  204. o Debian packaging updates
  205. o Check for proper 16-byte aliged stack pointer on powerpc
  206. Stefan Soucek:
  207. o pthreads support for MMU-less systems
  208. o pthreads support (with Erik Andersen)
  209. Brian Stafford:
  210. o Rewrote strcasecmp() per SUSv2.
  211. Bart Visscher:
  212. o Added missing IPV6 support and reentrant networking function
  213. additions so iptables now runs with IPV6 support.
  214. 0.9.9 February 4, 2002
  215. Erik Andersen:
  216. o A bunch of doc updates. Major update to the working
  217. apps list.
  218. o Added a configurator script (extra/Configs/uClibc_config_fix.pl)
  219. which can simplify configuring uClibc.
  220. o Fixed setjmp/longjmp on x86,arm,powerpc,mips,and sparc.
  221. Hitting ^C in ash kills client apps now, not ash.
  222. o Reworked signal handling code so it now passes POSIX
  223. conformance tests.
  224. o Fixed sleep and usleep to work correctly when
  225. interrupted by signals.
  226. o Made getopt behave the same when staticly linking
  227. as when dynamicly linking. It was using different
  228. implementations depending on how apps were linked.
  229. o Added missing inttypes.h header file
  230. o Eliminate all C++ style comments from header files
  231. o Support statvfs and statfs
  232. o Support getmntent_r
  233. o Scandir and scandir64 were calling malloc without
  234. checking for ENOMEM
  235. o Fixed stpcpy function declaration
  236. o Many large file support improvements.
  237. o Fixed fcntl to work when DOLFS is enabled
  238. o Fixed termios code to do the Right Thing(tm)
  239. o Allow regex to be excluded at compile time
  240. o Implemented mempcpy
  241. o Build ldd and readelf for the target system and for the
  242. host system
  243. o Fix several cases where get-needed-libgcc-objects.sh
  244. could fail, breaking the shared uClibc library.
  245. o Include all shared library loader objects into a
  246. single C file, thereby reducing its size further.
  247. o Reworked the shared library linking process to be more
  248. flexible so that gcc and ld can more easily be built to
  249. target uClibc library.
  250. o Better error checking in the Makefiles. Be more pedantic
  251. about tar, chmod, etc to avoid system dependent failures.
  252. o We can now autodetect the target architecture
  253. o Hide references to wchar_t so GNU autoconf
  254. configure scripts won't get confused and try to
  255. enable wide char support.
  256. o Fixed stdio.h so apps can use varargs.h if they want to.
  257. o Added brk/sbrk support for ARM, powerpc, mips, and sparc
  258. and set them to default to the much faster brk using malloc
  259. o Added missing syscalls: get_kernel_syms, fcntl64,
  260. fdatasync, sched_setparam, sched_getparam,
  261. sched_setscheduler, sched_getscheduler,
  262. sched_get_priority_max, sched_get_priority_min,
  263. sched_rr_get_interval, sigaltstack, sendfile,
  264. pivot_root, sigsuspend, setfsuid, and setfsgid
  265. o Force DOPIC be true when HAVE_SHARED is true.
  266. o Fixed hstrerror()
  267. o Implemented gethostent(), sethostent(), and endhostent()
  268. o Added arch specific support so that sparc and mips actually
  269. compile and work
  270. Miles Bader:
  271. o Fixes for the v850 architecture: crt0, setjmp,
  272. arch autodetection, etc.
  273. o Fixed `make install' to not build ldso stuff on
  274. non-shared-library systems.
  275. Michael E Brown:
  276. o Allow the gcc wrapper to support setting DEVEL_PREFIX
  277. and BUILD_DIR at runtime (no more need to recompile).
  278. M. R. Brown and Erik Andersen:
  279. o Fixed the SH port so it now works. Tested and shown
  280. working on an SH4 Dreamcast system.
  281. Kim Heino:
  282. o Made 'make clean' remove generated bits/syscall.h
  283. David McCullough:
  284. o SH architecture updates. Added brk, sbrk,
  285. o Fixed simple malloc to work on systems with an MMU
  286. o Taught getutent to return NULL if utmp doesn't exist.
  287. o Added insque/remque support
  288. o Fixed DNS resolver version number so apps won't get
  289. confused and use the wrong API.
  290. o Added Config selectable shadow password support
  291. Yoshinori Sato
  292. o Contributed support for the Hitach H8/300H architecture
  293. Cédric Schieli:
  294. o Add support for inet_netof, inet_lnaof, inet_makeaddr
  295. and hstrerror.
  296. David Schleef:
  297. o Added libstrip, a nifty script to automagically
  298. strip unneeded content from the uClibc shared
  299. libraries.
  300. Martin Sieper
  301. o Added getw() and putw()
  302. o Added missing header files -- lastlog.h, sgtty.h,
  303. netipx/ipx.h, sys/perm.h
  304. Stefan Soucek:
  305. o Add rcmd support, i.e. rsh, rlogin, etc.
  306. o Fix rcmd to avoid alloca, which is dangerous
  307. on mmu-less systems
  308. spudmonkey@racsa.co.cr:
  309. o Eliminate a buffer overflow in the shared library loader
  310. Brian Stafford:
  311. o Enable support for Unix98 PTYs, and add option
  312. to disable old style PTYs.