forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
12296 lines (9908 loc) · 441 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-04-28 Andreas Schwab <[email protected]>
* math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
double functions to double *_finite functions.
[BZ #13941]
* sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
(__mpn_extract_long_double): Use DBL_MIN_EXP instead of
LDBL_MIN_EXP.
* stdio-common/Makefile (tests): Add tst-sprintf3.
* stdio-common/tst-sprintf3.c: New file.
* elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
2012-04-28 Joseph Myers <[email protected]>
* conform/conformtest.pl: Remove duplicate typed-constant
handling.
2012-04-28 David S. Miller <[email protected]>
* Makerules (%.abilist): Add vpath on sysdep_dirs.
(check-abi-%): Remove AWK script prerequisite and explicit
abilist directory.
(check-abi): Rewrite to just diff the symlist with the abilist.
(config-tls, config-abi-config): Delete, no longer used.
(update-abi-%): Remove AWK script and explicit abilist directory.
(update-abi): Rewrite to simply compare and conditionally copy the
symlist and the sysdep abilist file. Remove update-abi-config
checks.
* abilist/ld.abilist: Remove.
* abilist/libBrokenLocale.abilist: Remove.
* abilist/libanl.abilist: Remove.
* abilist/libcrypt.abilist: Remove.
* abilist/libdl.abilist: Remove.
* abilist/librt.abilist: Remove.
* abilist/libthread_db.abilist: Remove.
* abilist/libutil.abilist: Remove.
* scripts/extract-abilist.awk: Remove.
* scripts/merge-abilist.awk: Remove.
* sysdeps/generic/libcidn.abilist: New file.
* sysdeps/generic/libnss_compat.abilist: New file.
* sysdeps/generic/libnss_db.abilist: New file.
* sysdeps/generic/libnss_dns.abilist: New file.
* sysdeps/generic/libnss_files.abilist: New file.
* sysdeps/generic/libnss_hesiod.abilist: New file.
* sysdeps/generic/libnss_nis.abilist: New file.
* sysdeps/generic/libnss_nisplus.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
file.
* sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
* sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
file.
* sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
file.
* sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
file.
* sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
file.
* sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
* sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
file.
2012-04-28 Joseph Myers <[email protected]>
* conform/conformtest.pl: Fix typo in handling typed-constant from
allow-header.
2012-04-27 Joseph Myers <[email protected]>
* README: Cut down references to pre-2.6 Linux kernels and
Linuxthreads. Update lists of configurations in libc and ports
and sort alphabetically. Say "or newer" with Linux kernel version
requirements.
* config.h.in [IS_IN_build]: Allow compiling without optimization.
2012-04-27 Ryan S. Arnold <[email protected]>
[BZ #887]
* math/libm-test.inc (logb_test_downward): New test to expose
erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
rounding mode.
2012-04-27 Joseph Myers <[email protected]>
[BZ #14027]
* math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
to be done.
* math/fraiseexcpt.c (__feraiseexcept): Likewise.
* math/fsetexcptflg.c (__fesetexceptflag): Likewise.
2012-04-26 Joseph Myers <[email protected]>
* sysdeps/unix/i386/brk.S: Remove file.
* sysdeps/unix/i386/dl-brk.S: Likewise.
* sysdeps/unix/i386/pipe.S: Likewise.
* sysdeps/unix/i386/sigreturn.S: Likewise.
* sysdeps/unix/i386/syscall.S: Likewise.
* sysdeps/unix/i386/vfork.S: Likewise.
* sysdeps/unix/i386/wait.S: Likewise.
* sysdeps/unix/common/tcsendbrk.c: Move to ...
* sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
* configure.in (arm*-none*): Do not allow without
--enable-hacker-mode.
(netbsd*): Remove case setting base_os.
(386bsd*): Likewise.
(freebsd*): Likewise.
(bsdi*): Likewise.
(osf*): Likewise.
(sunos*): Likewise.
(ultrix*): Likewise.
(newsos*): Likewise.
(dynix*): Likewise.
(*bsd*): Likewise.
(sysv*): Likewise.
(isc*): Likewise.
(esix*): Likewise.
(sco*): Likewise.
(minix*): Likewise.
(irix4*): Likewise.
(irix6*): Likewise.
(solaris[2-9]*): Likewise.
(none): Likewise.
* configure: Regenerated.
2012-04-26 Adhemerval Zanella <[email protected]>
[BZ #11521]
* sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
overflow or cancellation in calculating denominator.
* sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
down expression to avoid unexpected rounding in newer GCCs.
* sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
2012-04-26 David S. Miller <[email protected]>
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
long-double compat symbols.
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
* sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
2012-04-25 David S. Miller <[email protected]>
* sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
HWCAP_* values only after the memory barriers have been defined.
(atomic_full_barrier): Define.
(atomic_read_barrier): Define.
(atomic_write_barrier): Define.
2012-04-26 Siddhesh Poyarekar <[email protected]>
* shlib-versions: Add libgcc_s version information.
* sysdeps/generic/libgcc_s.h: Remove.
* sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
libgcc_s.h.
* sysdeps/gnu/unwind-resume.c: Likewise.
* scripts/test-installation.pl: Remove libgcc_s from link_libs.
2012-04-25 David S. Miller <[email protected]>
* sysdeps/unix/sparc/brk.S: Delete.
* sysdeps/unix/sparc/dl-brk.S: Delete.
* sysdeps/unix/sparc/pipe.S: Delete.
* sysdeps/unix/sparc/sysdep.S: Delete.
* sysdeps/unix/sparc/sysdep.h: Delete.
* sysdeps/unix/sparc/vfork.S: Delete.
* sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG,
SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
* sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO,
ret_ERRVAL, r0, r1, MOVE): Define.
(JUMPTARGET): Remove.
* sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
sysdeps/unix/sparc/sysdep.h
(ENTRY, END): Remove.
* sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
2012-04-25 Joseph Myers <[email protected]>
* Makerules (native-compile): Use $(BUILD_LDFLAGS).
(ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
-DIS_IN_build.
* timezone/README: Update upstream location and email address for
tzcode and tzdata.
* timezone/zdump.c: Update from tzcode 2012b.
* timezone/zic.c: Likewise.
* configure.in (libc_cv_as_needed): Remove test.
* configure: Regenerated.
* Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
conditional definition.
[$(have-as-needed) != yes] (no-as-needed): Likewise.
[$(have-as-needed) != yes] (libgcc_eh): Likewise.
* config.make.in (have-as-needed): Remove variable.
2012-04-25 Siddhesh Poyarekar <[email protected]>
Paul Pluzhnikov <[email protected]>
* elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
strings correctly.
2012-04-25 Chung-Lin Tang <[email protected]>
* sysdeps/sh/memcpy.S: Remove include of endian.h, change
preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
* sysdeps/sh/strlen.S: Likewise.
2012-04-24 Joseph Myers <[email protected]>
* sysdeps/unix/fork.S: Remove file.
* sysdeps/unix/i386/fork.S: Likewise.
* sysdeps/unix/sparc/fork.S: Likewise.
* sysdeps/unix/system.c: Remove file.
* sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
* sysdeps/unix/getegid.S: Remove file.
* sysdeps/unix/geteuid.S: Likewise.
2012-04-24 Roland McGrath <[email protected]>
* scripts/check-localplt.awk: New file.
* elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
of diff.
* scripts/data/localplt-generic.data: Add a comment.
* sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
NODE when __dir_mkfile failed.
* sysdeps/mach/hurd/symlinkat.c: Likewise.
Reported by Ludovic Courtès <[email protected]>.
2012-04-24 Andreas Jaeger <[email protected]>
* Makerules (common-clean): Also remove gen-as-const-headers
files.
2012-04-24 Joseph Myers <[email protected]>
* Makerules (native-compile): Do not change working directory for
build. Use $(OUTPUT_OPTION) in command.
(ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
2012-04-24 Adhemerval Zanella <[email protected]>
[BZ #13886]
* sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
* math/libm-test.inc (floor_test): Add more tests.
* sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
2012-04-24 Joseph Myers <[email protected]>
* sysdeps/unix/getdents.c: Remove file.
* sysdeps/unix/sysv/getdents.c: Likewise.
* sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
* sysdeps/unix/syscalls.list (madvise): Add syscall from
sysdeps/unix/mman/syscalls.list.
(mmap): Likewise.
(mprotect): Likewise.
(msync): Likewise.
(munmap): Likewise.
* sysdeps/unix/bsd/bsd4.4/Implies: Remove.
* sysdeps/unix/mman/syscalls.list: Remove.
* sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
* configure.in (libc_cv_libgcc_s_suffix): Remove test.
(libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
* configure: Regenerated.
* Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
$(libgcc_s_suffix).
* config.make.in (libgcc_s_suffix): Remove variable.
2012-04-23 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/gethostname.c: Move to ...
* sysdeps/posix/gethostname.c: ... here.
* sysdeps/unix/execve.S: Remove file.
* sysdeps/unix/_exit.S: Remove file.
2012-04-23 Andreas Jaeger <[email protected]>
[BZ #13739]
* manual/Makefile: Remove make dist support, there's no
need for a stand-alone documentation tar ball.
(TEXI2DVI): Define always, it's not in Makeconfig.
(dist): Removed.
(tar-it): Removed.
(edition): Removed.
(glibc-doc-$(edition).tar): Removed
(%.Z): Removed.
(%.gz): Removed.
(%.uu): Removed.
(ETAGS): Remove, it's in Makeconfig.
(move-if-change): Remove, it's in Makeconfig.
2013-04-23 Paul Eggert <[email protected]>
[BZ #13970]
* stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
(strtod, strtof, strtold, strtol, strtoul, strtoq)
(strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
(strtod_l, strtof_l, strtold_l): Remove __wur.
It is not necessarily an error to ignore strtol's return value.
One can reliably look at the stored endptr to decide whether
the number had valid syntax.
2012-04-21 Andreas Jaeger <[email protected]>
[BZ #13739]
* sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
2012-04-21 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
* sysdeps/unix/sysv/Versions: Remove file.
2012-04-21 Markus Trippelsdorf <[email protected]>
[BZ #13927]
* sysdeps/x86_64/fpu/libm-test-ulps: Update.
2012-04-21 Nick Alcock <[email protected]>
[BZ #7064]
* sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
version from __vm86.
2012-04-20 Joseph Myers <[email protected]>
* sysdeps/unix/common/lxstat.c: Remove file.
* sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
* sysdeps/unix/sysv/Makefile: Remove file.
* sysdeps/unix/sysv/direct.h: Remove file.
* sysdeps/unix/sysv/bits/dirent.h: Remove file.
* sysdeps/unix/sysv/bits/fcntl.h: Likewise.
* sysdeps/unix/sysv/bits/local_lim.h: Likewise.
* sysdeps/unix/sysv/bits/signum.h: Likewise.
* sysdeps/unix/sysv/bits/stat.h: Likewise.
* sysdeps/unix/sysv/bits/utmp.h: Likewise.
* sysdeps/unix/sysv/bits/utsname.h: Likewise.
* sysdeps/unix/sysv/setrlimit.c: Remove file.
* sysdeps/unix/xmknod.c: Remove file.
* sysdeps/unix/syscalls.list (sys_mknod): Remove.
* sysdeps/unix/sysv/settimeofday.c: Remove file.
* sysdeps/unix/sysv/i386/time.S: Remove file.
* sysdeps/unix/fxstat.c: Remove file.
* sysdeps/unix/xstat.c: Likewise.
* sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
* sysdeps/unix/sysv/sigaction.c: Remove file.
* sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
(sysdep_headers): Remove variable.
[termio.h not in sysdep_headers] (generated): Likewise.
[termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
* sysdeps/unix/sysv/sysv_termio.h: Remove file.
* sysdeps/unix/sysv/tcdrain.c: Likewise.
* sysdeps/unix/sysv/tcflow.c: Likewise.
* sysdeps/unix/sysv/tcflush.c: Likewise.
* sysdeps/unix/sysv/tcgetattr.c: Likewise.
* sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
* sysdeps/unix/sysv/tcsendbrk.c: Likewise.
* sysdeps/unix/sysv/tcsetattr.c: Likewise.
* sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
* sysdeps/unix/siglist.c: Remove file.
* sysdeps/unix/getppid.S: Remove file.
* sysdeps/unix/mkdir.c: Remove file.
* sysdeps/unix/rmdir.c: Likewise.
2012-04-19 Andreas Schwab <[email protected]>
* sysdeps/gnu/errlist-compat.awk (END): Correct computation of
ERR_MAX value.
* sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
errlist-compat value.
2012-04-18 David S. Miller <[email protected]>
* sysdeps/generic/memcopy.h (reg_char): Delete.
* debug/strcat_chk.c: Use char, not reg_char.
* debug/strcpy_chk.c: Likewise.
* debug/strncat_chk.c: Likewise.
* debug/strncpy_chk.c: Likewise.
* string/memchr.c: Likewise.
* string/memrchr.c: Likewise.
* string/rawmemchr.c: Likewise.
* string/strcat.c: Likewise.
* string/strchr.c: Likewise.
* string/strchrnul.c: Likewise.
* string/strcmp.c: Likewise.
* string/strcpy.c: Likewise.
* string/strncat.c: Likewise.
* string/strncmp.c: Likewise.
* string/strncpy.c: Likewise.
2012-04-18 Will Schmidt <[email protected]>
* sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
__builtin_memcopy is called when src and dest ranges are known to not
overlap.
2012-04-18 Will Schmidt <[email protected]>
* sysdeps/powerpc/powerpc64/power6/wordcopy.c
(_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
fwd_align_merge macro call.
(_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
bwd_align_merge macro call.
* sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
2012-04-18 Will Schmidt <[email protected]>
* sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
bwd_align_merge macros.
(_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
(_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
* sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
2012-04-18 David S. Miller <[email protected]>
* sysdeps/sparc/sparc64/memcopy.h: Delete.
2012-04-18 Andreas Jaeger <[email protected]>
[BZ# 6794]
* sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
* sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
* sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
* sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
* sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
* sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
Adjust for changed ldbl-128 files.
* sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
* sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
2012-04-17 David S. Miller <[email protected]>
* sysdeps/sparc/sparc32/memcopy.h: Delete.
2012-04-17 Andreas Schwab <[email protected]>
* sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
* sysdeps/i386/fpu/e_ilogbf.S: Likewise.
* sysdeps/i386/fpu/e_ilogbl.S: Likewise.
* sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
* sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
* sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
2012-04-17 Adhemerval Zanella <[email protected]>
[BZ #6794]
* math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
* math/libm-test.inc: Add ilogb errno and exception tests.
* math/w_ilogb.c: New file: ilogb wrapper.
* math/w_ilogbf.c: New file: ilogbf wrapper.
* math/w_ilogbl.c: New file: ilogbl wrapper.
* sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
* sysdeps/i386/fpu/s_ilogb.S: Moved to ...
* sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
exception being thrown with 0.0 as argument.
* sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
* sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
exception being thrown with 0.0 as argument.
* sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
* sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
exception being thrown with 0.0 as argument.
* sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
* sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
exception being thrown with 0.0 as argument.
* sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
* sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
* sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
* sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
* sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
* sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
* sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
* sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
* sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
2012-04-17 Petr Baudis <[email protected]>
* include/sys/uio.h: Change __vector to __iovec to avoid clash
with altivec.
2012-04-16 Marek Polacek <[email protected]>
* elf/pldd-xx.c: Rename static_assert to pldd_assert.
2012-04-16 Marek Polacek <[email protected]>
* sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
operands of fdivp instruction.
2012-04-13 H.J. Lu <[email protected]>
* elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
* elf/tst-auditmod3b.c: Likewise.
* elf/tst-auditmod4b.c: Likewise.
* elf/tst-auditmod5b.c: Likewise.
* elf/tst-auditmod6b.c: Likewise.
* elf/tst-auditmod6c.c: Likewise.
* elf/tst-auditmod7b.c: Likewise.
* sysdeps/x86_64/ffsll.c (ffsl): Likewise.
* sysdeps/x86_64/preconfigure.in: Likewise.
* sysdeps/x86_64/preconfigure: Regenerated.
2012-04-13 H.J. Lu <[email protected]>
* sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
__ILP32__.
2012-04-13 Antoine Balestrat <[email protected]>
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
(__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
2012-04-13 Chris Leonard <[email protected]>
[BZ #13973]
* locale/iso-639.def: Fix gl language name. Spotted by
Yaron Shahrabani.
2012-04-12 Roland McGrath <[email protected]>
[BZ #2074]
* libio/libio.h (__io_write_fn): Update comment.
2012-04-12 Petr Baudis <[email protected]>
[BZ #2074]
* stdio.texi (Hook Functions): The user provided writer function
is not allowed to return -1.
2012-04-11 David S. Miller <[email protected]>
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-04-11 Mike Frysinger <[email protected]>
* .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
Add a leading slash to rtkaio.
2012-04-11 Jim Meyering <[email protected]>
[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-10 H.J. Lu <[email protected]>
* bits/types.h (__snseconds_t): New type.
* time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
* bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
* sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
(__SNSECONDS_T_TYPE): Likewise.
* sysdeps/unix/sysv/linux/s390/bits/typesizes.h
(__SNSECONDS_T_TYPE): Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
(__SNSECONDS_T_TYPE): Likewise.
2012-04-10 Andreas Jaeger <[email protected]>
[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-10 David S. Miller <[email protected]>
[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-10 H.J. Lu <[email protected]>
* sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
(__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
(__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
2012-04-10 Siddhesh Poyarekar <[email protected]>
* elf/dl-support.c (_dl_inhibit_cache): New variable.
* elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
(dl_main): Handle --inhibit-cache.
* sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
_dl_inhibit_cache.
* elf/dl-load.c (_dl_map_object): Use it.
* elf/Makefile: Define SYSCONFDIR when building rtld.c.
2012-04-09 Joseph Myers <[email protected]>
[BZ #13872]
* sysdeps/i386/fpu/e_powl.S (p78): New object.
(__ieee754_powl): Saturate large exponents rather than testing for
overflow of y*log2(x).
* sysdeps/x86_64/fpu/e_powl.S: Likewise.
* math/libm-test.inc (pow_test): Do not permit spurious overflow
exceptions.
[BZ #11521]
* math/s_ctan.c: Include <float.h>.
(__ctan): Avoid internal overflow or cancellation in calculating
denominator.
* math/s_ctanf.c: Likewise.
* math/s_ctanl.c: Likewise.
* math/s_ctanh.c: Likewise.
* math/s_ctanhf.c: Likewise.
* math/s_ctanhl.c: Likewise.
* math/libm-test.inc (ctan_test): Add more tests.
(ctanh_test): Likewise.
* sysdeps/i386/fpu/libm-test-ulps: Update.
* sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
2012-04-09 Andreas Jaeger <[email protected]>
[BZ #6894]
* manual/filesys.texi (Directory Entries): Mention that d_namlen
is an optional BSD extension.
[BZ #10254]
* manual/stdio.texi (Opening Streams): Document additional fopen
parameters.
2012-04-09 Roland McGrath <[email protected]>
* sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
%eax without telling the compiler.
2012-04-09 Carlos O'Donell <[email protected]>
[BZ # 13963]
* manual/install.texi: Use sourceware.org.
2012-04-09 Joseph Myers <[email protected]>
[BZ #13873]
* sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
(__ieee754_pow): Generate overflow and underflow using huge*huge
and tiny*tiny rather than just returning constant infinity or zero
for large exponents.
* math/libm-test.inc (pow_test): Require overflow exceptions for
applicable cases of large exponents.
[BZ #706]
* sysdeps/i386/fpu/e_pow.S (p10): New object.
(__ieee754_pow): Use iterative multiplication algorithm only for
integer exponents with absolute value below 1024. Check for odd
integer exponents when using algorithm for real exponents.
* math/libm-test.inc (pow_test): Add more tests.
* sysdeps/x86_64/fpu/libm-test-ulps: Update.
2012-04-08 Joseph Myers <[email protected]>
[BZ #13705]
* math/libm-test.inc (exp_test): Do not allow overflow exception
on underflow test.
2012-04-08 Aurelien Jarno <[email protected]>
[BZ #13705]
* sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
instead of __kernel_standard_f.
2012-04-08 Mike Frysinger <[email protected]>
* sysdeps/i386/i686/memset_chk.S: Update copyright year.
* sysdeps/x86_64/memset_chk.S: Likewise.
2012-04-08 Andreas Jaeger <[email protected]>
[BZ #10153]
* manual/startup.texi (Environment Access): Describe return value
for putenv and setenv.
[BZ #6895]
* manual/filesys.texi (Directory Entries): Add description for
DT_LNK.
[BZ #6890]
* manual/filesys.texi (Directory Entries): Clarify that it's file
system not operating system in the description of DT_UNKNOWN.
[BZ #6578]
* manual/syslog.texi (closelog): Fix reference, it's openlog.
2012-04-08 Stephen Compall <[email protected]>
[BZ #6649]
* manual/llio.texi (Opening and Closing Files): Add cross
reference to explain mode argument.
2012-04-07 Mike Frysinger <[email protected]>
* sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
* sysdeps/x86_64/memset_chk.S: Likewise.
2012-04-07 David S. Miller <[email protected]>
* elf/elf.h (R_SPARC_WDISP10): Define.
* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
R_SPARC_SIZE32.
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
R_SPARC_SIZE64 and R_SPARC_H34.
2012-04-07 Carlos O'Donell <[email protected]>
* elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
conditions and remove no longer applicable assertion.
2012-04-06 H.J. Lu <[email protected]>
* bits/byteswap.h: Include <features.h>.
(__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
(__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
2012-04-06 H.J. Lu <[email protected]>
* bits/byteswap.h (__bswap_16): Removed.
Include <bits/byteswap-16.h> to get __bswap_16.
* sysdeps/i386/bits/byteswap.h: Likewise.
* sysdeps/s390/bits/byteswap.h: Likewise.
* sysdeps/x86_64/bits/byteswap.h: Likewise.
* bits/byteswap-16.h: New file.
* sysdeps/i386/bits/byteswap-16.h: Likewise.
* sysdeps/s390/bits/byteswap-16.h: Likewise.
* sysdeps/x86_64/bits/byteswap-16.h: Likewise.
* string/Makefile (headers): Add bits/byteswap-16.h.
2012-04-06 Paul Pluzhnikov <[email protected]>
[BZ #13895]
* nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
extra indirection.
* nss/Makefile (tests-static, tests): Add tst-nss-static.
* nss/tst-nss-static.c: New.
2012-04-06 Robert Millan <[email protected]>
[BZ #6486]
* manual/llio.texi (File Position Primitive): lseek
refers to WHENCE when it really means OFFSET.
2012-04-06 Andreas Jaeger <[email protected]>
* nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
strncmp declarations.
* abilist/libc.abilist: Add __poll and __ppoll.
2012-04-05 David S. Miller <[email protected]>
* scripts/check-local-headers.sh: Accept a host triplet in the
path matched by the exclude regexp.
* elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
definition.
* sysdeps/powerpc/powerpc32/dl-machine.h
(ELF_MACHINE_PLTREL_OVERLAP): Delete.
* sysdeps/s390/s390-32/dl-machine.h
(ELF_MACHINE_PLTREL_OVERLAP): Likewise.
* sysdeps/sparc/sparc32/dl-machine.h
(ELF_MACHINE_PLTREL_OVERLAP): Likewise.
* sysdeps/sparc/sparc64/dl-machine.h
(ELF_MACHINE_PLTREL_OVERLAP): Likewise.
* elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
lazy binding.
* elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
undefined symbol errors.
* elf/rtld.c (dl_main): Skip VDSO when checking for unused
DT_NEEDED entries.
2012-04-05 Michael Matz <[email protected]>