diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2013-03-21 23:02:37 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2013-03-22 03:16:00 +0000 |
commit | 2e0fb52187504fad6657c9462ce650a540d5e387 (patch) | |
tree | d7486ae2821d23ed6991d8da7e74c85542a4df28 | |
parent | b5784d95bb94eda59b08aca735406908e209f638 (diff) | |
download | glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar.gz glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar.bz2 glibc-2e0fb52187504fad6657c9462ce650a540d5e387.zip |
BZ#11120: fix x86_64/strcmp.S NOT_IN_libc safeguards
Due to a typo repeated several times, this bug hasn't been fixed yet,
despite being marked as resolved in glibc 2.12.
* sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
with NOT_IN_libc.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | sysdeps/x86_64/strcmp.S | 6 |
3 files changed, 17 insertions, 11 deletions
@@ -1,3 +1,9 @@ +2013-03-21 Dmitry V. Levin <ldv@altlinux.org> + + [BZ #11120] + * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib + with NOT_IN_libc. + 2013-03-21 Adhemerval Zanella <azanella@linux.vnet.ibm.com> * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat @@ -9,10 +9,10 @@ Version 2.18 * The following bugs are resolved with this release: - 11561, 12723, 13550, 13951, 14142, 14176, 14200, 14317, 14327, 14496, - 14812, 14920, 14964, 14981, 14982, 14985, 14994, 14996, 15003, 15006, - 15020, 15023, 15036, 15054, 15055, 15062, 15078, 15160, 15232, 15234, - 15283, 15285, 15287. + 11120, 11561, 12723, 13550, 13951, 14142, 14176, 14200, 14317, 14327, + 14496, 14812, 14920, 14964, 14981, 14982, 14985, 14994, 14996, 15003, + 15006, 15020, 15023, 15036, 15054, 15055, 15062, 15078, 15160, 15232, + 15234, 15283, 15285, 15287. * Add support for calling C++11 thread_local object destructors on thread and program exit. This needs compiler support for offloading C++11 @@ -372,10 +372,10 @@ Version 2.12 * The following bugs are resolved with this release: - 3662, 4457, 5553, 10162, 10401, 10414, 10554, 10824, 10864, 10915, 10918, - 10936, 10939, 10958, 10968, 10969, 10972, 10992, 11000, 11001, 11007, - 11010, 11027, 11039, 11040, 11041, 11043, 11046, 11056, 11070, 11093, - 11115, 11120, 11125, 11126, 11127, 11134, 11141, 11149, 11183, 11184, + 3662, 4457, 5553, 10162, 10401, 10414, 10554, 10824, 10864, 10915, + 10918, 10936, 10939, 10958, 10968, 10969, 10972, 10992, 11000, 11001, + 11007, 11010, 11027, 11039, 11040, 11041, 11043, 11046, 11056, 11070, + 11093, 11115, 11125, 11126, 11127, 11134, 11141, 11149, 11183, 11184, 11185, 11186, 11187, 11188, 11189, 11190, 11191, 11192, 11193, 11194, 11200, 11230, 11235, 11242, 11254, 11258, 11271, 11272, 11276, 11279, 11287, 11292, 11319, 11332, 11333, 11387, 11389, 11390, 11394, 11397, diff --git a/sysdeps/x86_64/strcmp.S b/sysdeps/x86_64/strcmp.S index de9ecc909e..76809373e8 100644 --- a/sysdeps/x86_64/strcmp.S +++ b/sysdeps/x86_64/strcmp.S @@ -32,7 +32,7 @@ /* The simplified code below is not set up to handle strncmp() so far. Should this become necessary it has to be implemented. For now just report the problem. */ -# ifdef NOT_IN_lib +# ifdef NOT_IN_libc # error "strncmp not implemented so far" # endif @@ -51,7 +51,7 @@ # include "locale-defines.h" /* No support for strcasecmp outside libc so far since it is not needed. */ -# ifdef NOT_IN_lib +# ifdef NOT_IN_libc # error "strcasecmp_l not implemented so far" # endif @@ -60,7 +60,7 @@ # include "locale-defines.h" /* No support for strncasecmp outside libc so far since it is not needed. */ -# ifdef NOT_IN_lib +# ifdef NOT_IN_libc # error "strncasecmp_l not implemented so far" # endif |