aboutsummaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)AuthorFilesLines
2012-05-10Fix for logb/logbf/logbl (bugs 13954/13955/13956)Adhemerval Zanella1-2/+3
POSIX 2008 states that if the input for 'logb[f|l]' is a subnormal number it should be treated as if it were normalized. This means the implementation should calculate the log2 of the mantissa and add it to the subnormal exponent (-126 for float and -1022 for double and IBM long double). This patch takes care of that.
2012-05-10Make sunrpc code usable againAndreas Jaeger1-0/+6
New configure option --enable-obsolete-rpc makes the deprecated RPC headers and functions available at compile time as they were before version 2.14. This option will be removed at some time in the future after the TI-RPC library becomes fully sufficient for the needs of existing applications.
2012-05-10[PATCH] [BZ #3440] Make LC_ALL etc. useful in #if expressions.Paul Eggert1-15/+15
2012-05-09Add volatiles for x86-64 bits/mathinline.hAndreas Jaeger1-1/+1
[BZ #14053] GCC 4.7 might remove consecutive calls to e.g. lrintf since the assembler instructions are the same and GCC does not know that the result is different depending on the rounding mode. For SSE instructions, the control register is not available so there is no way to inform GCC about this. Therefore the asms are marked as volatile.
2012-05-09Fix strspn warning with -WconversionAndreas Jaeger1-1/+1
[BZ #14083] Fix warning when using strspn with -Wconversion: $ gcc -Wconversion -O t.c t.c: In function ‘main’: t.c:8:7: warning: conversion to ‘long unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion]
2012-05-09Fix daylight time change for the USIan Wienand1-1/+1
[BZ #14080] * time/tzset.c (__tzset_parse_tz): Update default rules for daylight time changes in the Energy Policy Act of 2005.
2012-05-09Make ldconfig message clearerAndreas Jaeger1-2/+2
[BZ #13983] Let not confuse the user and think there's an error instead of a warning.
2012-05-08Warn if user requests __FORTIFY_SOURCE but it is disabledRoland Mc Grath1-2/+2
[BZ #13979] * include/features.h: Warn if user requests __FORTIFY_SOURCE checking but the checks are disabled for any reason.
2012-05-07Fix x86/x86_64 expm1l inaccuracy and exceptions (bugs 13885, 13923).Joseph Myers1-5/+5
2012-05-06Fix exp10 inaccuracy and exceptions (bugs 13884, 13914).Joseph Myers1-4/+5
2012-05-06Fix libm-test.inc ulps calculation for subnormals (bug 14064).Joseph Myers1-1/+1
2012-05-06Patch 31dc8730af585d8e13021484752fb20decae0661 fixes BZ#13563Andreas Jaeger1-8/+8
Update NEWS and ChangeLog with BZ #13563
2012-05-05Fix missing exceptions from exp (bugs 13787, 13922, 14036).Joseph Myers1-6/+6
2012-05-04Revert "Do not build manual in the source directory"Andreas Jaeger1-6/+6
This reverts commit e3945c47bdac1149a1fec5d46bd567a248cd17b9. reverting since it breaks building.
2012-05-04Do not build manual in the source directoryAndreas Jaeger1-6/+6
[BZ #13750] Build the manual in the build directory and not anymore in the source directory.
2012-05-04Fix strtod rounding of hex values (bug 14049).Joseph Myers1-1/+1
2012-05-03Fix conditions on checking versions of dprintf (bug 13775).Joseph Myers1-6/+6
2012-05-02For PR 14055, add bounds check to _dl_show_auxv().Paul Pluzhnikov1-1/+1
2012-05-01Note bug 6959 also fixed for 2.16.Joseph Myers1-11/+11
2012-05-01Fix nexttoward bugs (bugs 2550, 2570).Joseph Myers1-14/+15
2012-05-01Fix missing nearbyintl@GLIBC_2.1 on powerpcAndreas Schwab1-1/+1
2012-04-30Fix x86 acos near 1 (bug 13942).Joseph Myers1-1/+1
2012-04-30Fix acos (-1) in round-downwards mode on x86 (bug 14034).Joseph Myers1-1/+1
2012-04-30Fix exp10 spurious overflows (bug 13924).Joseph Myers1-2/+2
2012-04-30Fix February month name in de_AT localeAurelien Jarno1-5/+5
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 Myers1-1/+1
2012-04-28Fix formatting of denormal IBM long double numbersAndreas Schwab1-9/+9
2012-04-27Correct incorrect bug number ordering in resolved bug list.Ryan S. Arnold1-1/+1
2012-04-27New test to expose erroneous negative sign on logb(1) (bug 887).Ryan S. Arnold1-14/+14
2012-04-27Fix fenv.h fallback returns (bug 14027).Joseph Myers1-1/+1
2012-04-24Correct powerpc64 s_floorl edge cases (bug 13886).Adhemerval Zanella1-4/+4
[BZ #13886] Remove powerpc64/fpu/s_floorl. Use fully correct ldbl-128bim/s_floorl.c.
2012-04-23* NEWS: Add bug 13970.Paul Eggert1-1/+2
2012-04-23Add BZ numberAndreas Jaeger1-4/+4
2012-04-21Update sysdeps/x86_64/fpu/libm-test-ulpsMarkus Trippelsdorf1-1/+1
[BZ #13927] * sysdeps/x86_64/fpu/libm-test-ulps: Update.
2012-04-21Put vm86 into libc.aNix1-10/+10
[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 Zanella1-10/+10
[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 Leonard1-1/+1
[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 Frysinger1-12/+12
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 Jaeger1-13/+13
2012-04-11Remove __wur from fwrite, fwrite_unlockedJim Meyering1-8/+8
[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 Jaeger1-3/+3
[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. Miller1-1/+1
[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 Myers1-3/+4
2012-04-09Fix ctan, ctanh overflow (bug 11521).Joseph Myers1-7/+7
2012-04-09Enhance d_namlen descriptionAndreas Jaeger1-9/+9
[BZ #6894] * manual/filesys.texi (Directory Entries): Mention that d_namlen is an optional BSD extension.
2012-04-09Document additional fopen optionsAndreas Jaeger1-8/+8
[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'Donell1-1/+1
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 Myers1-3/+3
2012-04-09Fix x86 pow inaccuracy for large integer exponents (bug 706).Joseph Myers1-12/+12
2012-04-08Use __kernel_standard instead of __kernel_standard_f in exp wrapper (bug 13705).Aurelien Jarno1-5/+5