Changelog 20 KB

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