aboutsummaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)Author
2012-04-30Fix x86 acos near 1 (bug 13942).Joseph Myers
2012-04-30Fix acos (-1) in round-downwards mode on x86 (bug 14034).Joseph Myers
2012-04-30Fix exp10 spurious overflows (bug 13924).Joseph Myers
2012-04-30Fix February month name in de_AT localeAurelien Jarno
The current de_AT locale defines "Feber" for the month of February, which is correct in some parts of Austria, but is not the standards. This patch fixes the problem by changing it to the standards version "Februar". 2012-04-29 Aurelien Jarno <aurelien@aurel32.net> * locales/de_AT: Change month name from "Feber" to "Februar".
2012-04-29List bug 14033 as fixed on mainline.Joseph Myers
2012-04-28Fix formatting of denormal IBM long double numbersAndreas Schwab
2012-04-27Correct incorrect bug number ordering in resolved bug list.Ryan S. Arnold
2012-04-27New test to expose erroneous negative sign on logb(1) (bug 887).Ryan S. Arnold
2012-04-27Fix fenv.h fallback returns (bug 14027).Joseph Myers
2012-04-24Correct powerpc64 s_floorl edge cases (bug 13886).Adhemerval Zanella
[BZ #13886] Remove powerpc64/fpu/s_floorl. Use fully correct ldbl-128bim/s_floorl.c.
2012-04-23* NEWS: Add bug 13970.Paul Eggert
2012-04-23Add BZ numberAndreas Jaeger
2012-04-21Update sysdeps/x86_64/fpu/libm-test-ulpsMarkus Trippelsdorf
[BZ #13927] * sysdeps/x86_64/fpu/libm-test-ulps: Update.
2012-04-21Put vm86 into libc.aNix
[BZ #7064] vm86 was not included in libc.a at all due to the default symbol explicitely added to the weak symbol.
2012-04-17Fix ilogb exception and errno (bug 6794)Adhemerval Zanella
[BZ #6794] Following Joseph comments about bug 6794, here is a proposed fix. It turned out to be a large fix mainly because I had to move some file along to follow libm files/names conventions. Basically I have added wrappers (w_ilogb.c, w_ilogbf.c, w_ilogbl.c) that now calls the symbol '__ieee754_ilogb'. The wrappers checks for '__ieee754_ilogb' output and set the errno and raise exceptions as expected. The '__ieee754_ilogb' is implemented in sysdeps. I have moved the 's_ilogb[f|l]' files to e_ilogb[f|l] and renamed the '__ilogb[f|l]' to '__ieee754_ilogb[f|l]'. I also found out a bug in i386 and x86-64 assembly coded ilogb implementation where it raises a FE_DIVBYZERO when argument is '0.0'. I corrected this issue as well. Finally I added the errno and FE_INVALID tests for 0.0, NaN and +-InF argument. Tested on i386, x86-64, ppc32 and ppc64.
2012-04-13"Gallegan" should be "Galician"Chris Leonard
[BZ #13973] * locale/iso-639.def: Fix gl language name. Spotted by Yaron Shahrabani.
2012-04-13cy_GB/en_GB: set am/pm in timesMike Frysinger
The British people apparently use am/pm in time, so make it available to them. While we're here, sync the date_fmt field from en_GB to cy_GB. Fedora has been carrying this for the better part of a decade, and Debian has had it, and now that I've gotten a request from some British people to add it to Gentoo, I'd rather get it merged into mainline. Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2012-04-12 Mike Frysinger <vapier@gentoo.org> [BZ #3768] * locales/en_GB: Set am_pm and t_fmt_ampm fields. * locales/cy_GB: Likewise. Also copy date_fmt from en_GB.
2012-04-12Update for BZ # 2541Andreas Jaeger
2012-04-11Remove __wur from fwrite, fwrite_unlockedJim Meyering
[BZ #11959] * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur. It is not necessarily an error to ignore fwrite's return value. One can reliably use ferror to test for errors after the fact.
2012-04-11Fix times return value, CLK_TCK descriptionAndreas Jaeger
[BZ #2636] * manual/time.texi (Processor Time): Return type of times is elapsed real time since an arbitrary point in the past. (CPU Time): Move CLK_TCK from here... (Processor Time): ...to here. Correct description. * manual/conf.texi (Constants for Sysconf): Correct description of _SC_CLK_TCK.
2012-04-10Fix ld.so regression.David S. Miller
[BZ #13967] * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case where the is a gap between DT_REL(A) and DT_JMPREL.
2012-04-09Fix spurious overflow exceptions from x86/x86_64 powl (bug 13872).Joseph Myers
2012-04-09Fix ctan, ctanh overflow (bug 11521).Joseph Myers
2012-04-09Enhance d_namlen descriptionAndreas Jaeger
[BZ #6894] * manual/filesys.texi (Directory Entries): Mention that d_namlen is an optional BSD extension.
2012-04-09Document additional fopen optionsAndreas Jaeger
[BZ #10254] The manual failed to explain the new (the first were introduced with glibc 2.3 or so) parameters to fopen.
2012-04-09Use sourceware.org for email and web references.Carlos O'Donell
We use sourceware.org consistently to reference the server that RedHat provides for community services to open-source projects. [BZ # 13963] * manual/install.texi: Use sourceware.org.
2012-04-09Fix missing overflow exceptions from pow (bug 13873).Joseph Myers
2012-04-09Fix x86 pow inaccuracy for large integer exponents (bug 706).Joseph Myers
2012-04-08Use __kernel_standard instead of __kernel_standard_f in exp wrapper (bug 13705).Aurelien Jarno
2012-04-08Document return values of putenv and setenvAndreas Jaeger
[BZ #10153] * manual/startup.texi (Environment Access): Describe return value for putenv and setenv.
2012-04-08Describe DT_LNKAndreas Jaeger
[BZ #6895] * manual/filesys.texi (Directory Entries): Add description for DT_LNK.
2012-04-08Fix DT_UNKNOWN descriptionAndreas Jaeger
[BZ #6890] * manual/filesys.texi (Directory Entries): Clarify that it's file system not operating system in the description of DT_UNKNOWN.
2012-04-08Fix closelog descriptionAndreas Jaeger
[BZ #6578] The manual mentioned a non-existing function initlog, replace it with openlog.
2012-04-08Better describe open argumentsStephen Compall
[BZ #6649] * manual/llio.texi (Opening and Closing Files): Add cross reference to explain mode argument.
2012-04-06BZ#13895 fixed.Paul Pluzhnikov
2012-04-06Fix ascending ordering of bug numbers in NEWS.Joseph Myers
2012-04-06Fix typo in manualRobert Millan
lseek refers to WHENCE when it really means OFFSET
2012-04-05[BZ #6770] Add first_weekday and first_workday to ca_ES.Petr Baudis
Patch from Fedora by Jeff Law. Acknowledged by Jordi Mallach.
2012-04-05Fix size parameter comparisions.Michael Matz
[BZ #13592] There are several signed compares of the size argument, whereas it really is unsigned. Depending on situations e.g. a "memset(ptr, 0, -1)" segfault (but for the wrong reasons, because jumping into nirvana) or succeeds even. In normal use this is harmless, as a size with signbit set indicates more than half the address space which on x86_64 is impossible to allocate, but as the size is used to index some jump tables this potentially could have other unwanted side effects.
2012-04-05Don't warn about unused result of mktempAndreas Jaeger
[BZ #13908] mktemp always returns TEMPLATE, the caller should check TEMPLATE[0] instead of TEMPLATE, so do not warn about the unused result. Fix also the comment for mktemp
2012-04-05[BZ #12340] Fix return code of the Hurd's ttyname_r.Thomas Schwinge
2012-04-042012-04-04 Dmitry V. Levin <ldv@altlinux.org>Jeff Law
[BZ #10346] * locales/ru_UA (LC_TIME): Add first_weekday and first_workday.
2012-04-03Fix typo in manualAndreas Jaeger
[BZ # 13938] * manual/setjmp.texi (System V contexts): Fix sentence.
2012-04-03Add __bswap_64 definition for non GCC compilers.Andreas Jaeger
[BZ#13926] Currently __bswap_64 is not defined at all for non-GCC compilers. Define it but guard it with __GLIBC_HAVE_LONG_LONG. endian.h uses __bswap_64, make the functions only available if __GLIBC_HAVE_LONG_LONG is defined.
2012-03-30Consider TTL of CNAME record and return minimum TTL in the chainSiddhesh Poyarekar
[BZ #13928] A DNS request consists of multiple resources combined into a single hostent, including multiple CNAME records that may have been assigned different TTL values. In such a case, nscd should take the least TTL among all of the resources as the timeout for the hostent before it is reloaded in its cache so that the hostent remains stale in the database for the least amount of time.
2012-03-30Fix a bug when converting strings with 1 character using TCVN5712-1Tulio Magno Quites Machado Filho
It isn't necessary to buffer the last character of strings. This can cause a bug with strings that have 1 character between 0x0041 and 0x01b0. [BZ #13691] * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings with only 1 character between 0x0041 and 0x01b0. * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs. * wcsmbs/tst-mbsnrtowcs.c: New file.
2012-03-29 [BZ #13761]Jeff Law
* nis/nss_compat/compat-initgroups.c (getgrent_next_nss, _nss_compat_initgroups_dyn): Fall back to malloc/free for large group memberships.
2012-03-28 [BZ #13760]Jeff Law
* resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno in the right place. Discard and retry query if response is larger than input buffer size.
2012-03-28Fix pow of negative numbers to integer exponents (bugs 369, 2678, 3866).Joseph Myers
2012-03-28Bug 3868 also fixed by __kernel_standard_l changes.Joseph Myers