-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathChangeLog.eglibc
2102 lines (1698 loc) · 82.6 KB
/
ChangeLog.eglibc
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
2013-05-17 Joseph Myers <[email protected]>
* configure.in, math/Makefile, math/gen-libm-test.pl,
math/libm-test.inc, option-groups.def, option-groups.defaults,
sysdeps/ieee754/ldbl-128/s_erfl.c,
sysdeps/ieee754/ldbl-128/s_log1pl.c,
sysdeps/ieee754/ldbl-128ibm/s_erfl.c,
sysdeps/ieee754/ldbl-128ibm/s_log1pl.c,
sysdeps/ieee754/ldbl-96/s_erfl.c,
sysdeps/ieee754/ldbl-opt/s_atan.c,
sysdeps/ieee754/ldbl-opt/s_sin.c,
sysdeps/ieee754/ldbl-opt/s_tan.c: Revert OPTION_EGLIBC_LIBM_BIG
support.
* configure: Regenerated.
* math/test-dbl-wrap.c, sysdeps/ieee754/dbl-wrap,
sysdeps/ieee754/ldbl-wrap: Remove.
2013-05-17 Joseph Myers <[email protected]>
* math/complex.h, math/math.h: Revert differences from glibc.
2012-11-17 Joseph Myers <[email protected]>
* sunrpc/proto.h [IS_in_build] (REPORT_BUGS_TO): Remove.
[IS_in_build] (PKGVERSION): Likewise.
2012-11-17 Joseph Myers <[email protected]>
* configure.in: Resync pkgversion/bugurl code closer with glibc.
* configure: Regenerated.
2012-11-17 Joseph Myers <[email protected]>
* elf/dl-reloc.c, include/features.h, io/sys/stat.h,
ports/sysdeps/mips/dl-machine.h: Revert unnecessary differences
from glibc.
2012-02-20 Paul Pluzhnikov <[email protected]>
* debug/tst-backtrace5.c (handle_signal): Adjust for VDSO.
2012-10-25 Joseph Myers <[email protected]>
* aclocal.m4, configure.in, crypt/sha512c-test.c, string/Makefile,
sysdeps/unix/sysv/linux/i386/sysdep.h, timezone/Makefile: Revert
unnecessary differences from glibc.
* configure: Regenerated.
2012-10-10 Joseph Myers <[email protected]>
* elf/Makefile ($(objpfx)tst-rtld-load-self.out): Pass
$(cross-test-wrapper) and $(..)scripts/run-with-env.sh to script.
* elf/tst-rtld-load-self.sh: Use wrappers to run dynamic linker.
2012-09-27 Joseph Myers <[email protected]>
* bits/predefs.h, ports/sysdeps/arm/bits/predefs.h: Put
multiple-inclusion guards around the whole file.
2012-08-31 Maxim Kuvyrkov <[email protected]>
* ports/sysdeps/powerpc/powerpc32/e500/fpu/fraiseexcept.c
(__feraiseexcept): Define internal alias.
2012-08-30 Maxim Kuvyrkov <[email protected]>
* ports/sysdeps/powerpc/powerpc32/e500/fpu/math_private.h: Update path
after file was moved.
2012-05-26 Joseph Myers <[email protected]>
* nss/nsswitch.c (__nss_database_lookup): Update for last merge.
2012-03-28 Joseph Myers <[email protected]>
* posix/cross-getconf.c (cross_getconf): Update after last merge.
2012-03-21 Thomas Schwinge <[email protected]>
* elf/Makefile ($(objpfx)tst-unused-dep.out): Run through the
cross-test-wrapper.
* scripts/run-with-env.sh: Handle EGLIBC_TEST_LD_TRACE_LOADED_OBJECTS
and EGLIBC_TEST_LD_DEBUG.
2012-03-08 Joseph Myers <[email protected]>
* bits/predefs.h: Test _STDC_PREDEF_H, not _FEATURES_H.
2012-02-10 Paul Pluzhnikov <[email protected]>
* timezone/Makefile: Use BUILD_CC instead of 'gcc'.
* sunrpc/Makefile: Likewise.
2012-02-08 Joseph Myers <[email protected]>
* locale/localeinfo.h: Condition <tls.h> include and
NL_CURRENT_INDIRECT define on !defined IN_GLIBC_LOCALEDEF.
2012-01-03 Tom de Vries <[email protected]>
* elf/Makefile ($(objpfx)tst-initorder2.out): Add
cross-test-wrapper.
2011-12-07 Joseph Myers <[email protected]>
* debug/tst-backtrace6.c: New test.
* debug/Makefile (LDFLAGS-tst-backtrace6): Define.
(tests-$(OPTION_EGLIBC_BACKTRACE)): Add new tst-backtrace6.
* sysdeps/sh/Makefile (CFLAGS-tst-backtrace6.c): Define.
2011-12-02 Joseph Myers <[email protected]>
* sysdeps/sh/Makefile (CFLAGS-backtrace.c)
(CFLAGS-tst-backtrace2.c, CFLAGS-tst-backtrace3.c)
(CFLAGS-tst-backtrace4.c, CFLAGS-tst-backtrace5.c): Define.
2011-12-01 Joseph Myers <[email protected]>
Tom de Vries <[email protected]>
* debug/tst-backtrace3.c, debug/tst-backtrace4.c,
debug/tst-backtrace5.c: New tests.
* debug/Makefile (LDFLAGS-tst-backtrace3, LDFLAGS-tst-backtrace4)
(LDFLAGS-tst-backtrace5): Define.
2011-10-26 Joseph Myers <[email protected]>
* argp/argp-fmtstream.c, argp/argp-help.c: Condition uses of
libc-internal interfaces on _LIBC.
2011-10-25 Michael Hope <[email protected]>
* aclocal.m4 (PKGVERSION_TEXI): Define.
* config.make.in (PKGVERSION_TEXI, REPORT_BUGS_TEXI): Define.
* manual/Makefile (stamp-pkgvers): Use PKGVERSION_TEXI and
REPORT_BUGS_TEXI.
* configure: Regenerate.
2011-10-07 Michael Hope <[email protected]>
* manual/Makefile (stamp-pkgvers): Escape PKGVERSION. Fix the
escaping of REPORT_BUGS_TO.
2011-09-06 Dr. David Alan Gilbert <[email protected]>
* elf/Makefile: Push tst-initorder through cross-test-wrapper.
2011-08-11 Khem Raj <[email protected]>
* sysdeps/generic/initfini.c: Re-define __i686.
2011-07-25 Joseph Myers <[email protected]>
* configure.in (whether to use .ctors/.dtors header and trailer):
Avoid use of AC_TRY_LINK.
* configure: Regenerate.
2011-07-22 Denis Zaitceff <[email protected]>
* elf/dl-support.c, elf/rtld.c: Include <gnu/option-groups.h>.
2011-07-22 Denis Zaitceff <[email protected]>
* Makerules (others-pie): Involve this new variable into EGLIBC's
build system.
* nscd/Makefile: Ditto.
* option-groups.mak (others-pie-y): Add the variable.
2011-07-06 Sebastan Andrzej Siewior <[email protected]>
* sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__
around floating point opcodes.
2011-06-23 Paul Pluzhnikov <[email protected]>
* resolv/res_libc.c (__res_initstamp): Declare unconditionally.
(__res_maybe_init): Avoid double-checked locking.
2011-06-21 Joseph Myers <[email protected]>
* elf/pldd.c (argp_program_bug_address): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
2011-06-21 Joseph Myers <[email protected]>
* elf/sotruss.ksh: Use PKGVERSION and REPORT_BUGS_TO.
* elf/Makefile ($(objpfx)sotruss): Substitute them in sotruss.
2011-05-11 Nathan Sidwell <[email protected]>
* malloc/Makefile (libmemusage.so): Add libc_nonshared.a dependency.
2011-02-28 Pierre Ynard <[email protected]>
[BZ #12492]
* elf/dl-load.c (_dl_map_object_from_fd): Add gracious error path for
the case when mprotect() fails.
2011-02-28 Denis Zaitceff <[email protected]>
* elf/dl-lookup.c (GLRO_dl_debug_mask): Apply the forgotten one.
2010-12-19 Gordon Schumacher <[email protected]>
* locale/xlocale.x (DEFINE_CATEGORY): Fix merge issue.
* wcsmbs/wcsmbsload.c (wcsmbs_load_conv): Same.
2010-10-21 Joseph Myers <[email protected]>
* sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA, FP_FAST_FMAF): Do
not define if __NO_FPRS__.
2010-09-29 Nobuhiro Iwamatsu <[email protected]>
Andrew Stubbs <[email protected]>
Resolve SH's __fpscr_values to symbol in libc.so.
* sysdeps/sh/sh4/fpu/fpu_control.h: Add C++ __set_fpscr prototype.
* sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.2): Add __fpscr_values.
* sysdeps/unix/sysv/linux/sh/sysdep.S (___fpscr_values): New constant.
2010-09-19 Aurelien Jarno <[email protected]>
* resolv/res_libc (__res_maybe_init): Ask other threads to
to re-initialize their resolver states when _PATH_RESCONF
changes.
2010-06-24 Mark Heily <[email protected]>
* crypt/crypt.h, posix/unistd.h: Use __libc_block instead of
__block.
2010-03-31 Joseph Myers <[email protected]>
* manual/Makefile (stamp-pkgvers): Substitute @@ for @ in
REPORT_BUGS_TO.
2010-03-28 Joseph Myers <[email protected]>
* csu/Makefile: Include option-groups.mak.
2010-03-22 Joseph Myers <[email protected]>
* elf/Makefile (tst-audit3-ENV, tst-audit4-ENV, tst-audit5-ENV,
tst-audit6-ENV, tst-audit7-ENV): Use EGLIBC_TEST_LD_AUDIT instead
of LD_AUDIT.
(tst-audit3-WRAPPER, tst-audit4-WRAPPER, tst-audit5-WRAPPER,
tst-audit6-WRAPPER, tst-audit7-WRAPPER): Define.
2010-03-15 Joseph Myers <[email protected]>
* configure.in: Don't prepend $srcdir to absolute path to elf
sysdeps directory from add-ons. Issue reported by c1de0x
* configure: Regenerate.
2010-02-04 Maxim Kuvyrkov <[email protected]>
EGLIBC_RTLD_DEBUG option group
* option-groups.def (OPTION_EGLIBC_RTLD_DEBUG): Define new option
group.
* option-groups.defaults: Set the default.
* sysdeps/generic/ldsodefs.h (GLRO_dl_debug_mask): Define to either
`GLRO(dl_debug_mask)' or to `0' depending on RTLD_DEBUG option group.
(_dl_debug_mask): Declare only if RTLD_DEBUG is enabled.
* elf/dl-support.c (_dl_debug_mask): Define only if RTLD_DEBUG is
enabled.
* elf/rtld.c: Replace GLRO(dl_debug_mask) with GLRO_dl_debug_mask
throughout the file.
(process_dl_debug): Compile only if RTLD_DEBUG is enabled.
(process_envvars): Update.
* csu/libc-start.c, elf/dl-cache.c, elf/dl-close.c, elf/dl-conflict.c,
* elf/dl-deps.c, elf/dl-error.c, elf/dl-fini.c, elf/dl-init.c,
* elf/dl-load.c, elf/dl-lookup.c, elf/dl-object.c, elf/dl-open.c,
* elf/dl-reloc.c, elf/dl-version.c: Replace GLRO(dl_debug_mask) with
GLRO_dl_debug_mask throughout the file.
2009-11-20 Jakub Jelinek <[email protected]>
PR libc/10103
* math/math.h: Provide *l long double prototypes redirecting
to double functions even when __NO_LONG_DOUBLE_MATH and not
__LDBL_COMPAT.
* math/complex.h: Likewise.
2009-11-19 Maxim Kuvyrkov <[email protected]>
* option-groups.def (OPTION_EGLIBC_LIBM_BIG): New option group.
* option-groups.defaults (OPTION_EGLIBC_LIBM_BIG): Set.
* configure.in: Handle OPTION_EGLIBC_LIBM_BIG.
* configure: Regenerate.
* math/Makefile (tests: atest-*): Condition on OPTION_EGLIBC_LIBM_BIG.
(libm-test.stmt): Override default result checking precision.
* math/gen-libm-test.pl (default_ulp): New variable. Use it to
override default precision with which test results are checked.
* math/libm-test.inc (MANT_DIG): Handle [l]dbl-wrap math.
* math/test-dbl-wrap: New test.
* sysdeps/ieee754/ldbl-128/s_erfl.c,
* sysdeps/ieee754/ldbl-128/s_log1pl.c,
* sysdeps/ieee754/ldbl-128ibm/s_erfl.c,
* sysdeps/ieee754/ldbl-128ibm/s_log1pl.c,
* sysdeps/ieee754/ldbl-96/s_erfl.c,
* sysdeps/ieee754/ldbl-opt/s_atan.c,
* sysdeps/ieee754/ldbl-opt/s_sin.c,
* sysdeps/ieee754/ldbl-opt/s_tan.c: Handle !OPTION_EGLIBC_LIBM_BIG.
* sysdeps/ieee754/dbl-wrap/dbl-wrap.h,
* sysdeps/ieee754/dbl-wrap/dosincos.c,
* sysdeps/ieee754/dbl-wrap/e_asin.c,
* sysdeps/ieee754/dbl-wrap/e_atan2.c,
* sysdeps/ieee754/dbl-wrap/e_exp.c,
* sysdeps/ieee754/dbl-wrap/e_exp2.c,
* sysdeps/ieee754/dbl-wrap/e_log.c,
* sysdeps/ieee754/dbl-wrap/e_pow.c,
* sysdeps/ieee754/dbl-wrap/s_atan.c,
* sysdeps/ieee754/dbl-wrap/s_sin.c,
* sysdeps/ieee754/dbl-wrap/s_tan.c,
* sysdeps/ieee754/ldbl-wrap/e_acosl.c,
* sysdeps/ieee754/ldbl-wrap/e_asinl.c,
* sysdeps/ieee754/ldbl-wrap/e_expl.c,
* sysdeps/ieee754/ldbl-wrap/e_j0l.c,
* sysdeps/ieee754/ldbl-wrap/e_j1l.c,
* sysdeps/ieee754/ldbl-wrap/e_lgammal_r.c,
* sysdeps/ieee754/ldbl-wrap/e_powl.c,
* sysdeps/ieee754/ldbl-wrap/ldbl-wrap.h,
* sysdeps/ieee754/ldbl-wrap/s_erfl.c,
* sysdeps/ieee754/ldbl-wrap/s_log1pl.c: New files.
2009-11-16 Maxim Kuvyrkov <[email protected]>
OPTION_EGLIBC_CRYPT and OPTION_EGLIBC_CRYPT_UFC.
* option-groups.def: Describe new option groups.
* option-groups.defaults: Set defaults.
* crypt/Makefile: Don't build libcrypt if OPTION_EGLIBC_CRYPT is not
selected, don't compile UFC implementation if OPTION_EGLIBC_CRYPT_UFC
is not selected; adjust tests accordingly.
* crypt/crypt-entry.c: Include <gnu/option-groups.h> and <errno.h>.
(__crypt_r, crypt): Handle OPTION_EGLIBC_CRYPT_UFC, fail if DES
is not available.
2009-11-16 Maxim Kuvyrkov <[email protected]>
OPTION_EGLIBC_INET_ANL
* option-groups.def (OPTION_EGLIBC_INET_ANL): New option group.
* option-groups.default (OPTION_EGLIBC_INET_ANL): Set the default.
* libidn/Makefile (libanl): Handle OPTION_EGLIBC_INET_ANL.
(ga_test): Don't run without OPTION_EGLIBC_INET_ANL.
2009-11-16 Maxim Kuvyrkov <[email protected]>
OPTION_EGLIBC_IDN
* option-groups.def (OPTION_EGLIBC_IDN): New option group.
* option-groups.default (OPTION_EGLIBC_IDN): Set the default.
* libidn/Makefile (libcidn): Handle OPTION_EGLIBC_IDN.
2009-11-11 Thomas Schwinge <[email protected]>
* configure.in (libc_cv_ssp): Make this a compile-time check. Avoid
creating temporary files.
* configure: Regenerate.
2009-11-11 Maxim Kuvyrkov <[email protected]>
Add OPTION_EGLIBC_MEMUSAGE option group and
OPTION_EGLIBC_MEMUSAGE_DEFAULT_BUFFER_SIZE option.
* option-groups.def (OPTION_EGLIBC_MEMUSAGE): Define new option group.
(OPTION_EGLIBC_MEMUSAGE_DEFAULT_BUFFER_SIZE): Document option.
* option-groups.defaults (OPTION_EGLIBC_MEMUSAGE): Add.
* malloc/Makefile (libmemusage): Build if option group is selected.
(memusage): Update CPPFLAGS.
(memusagestat): Don't build without OPTION_EGLIBC_MEMUSAGE.
* malloc/memusage.c (DEFAULT_BUFFER_SIZE): Allow overriding the default.
2009-11-09 Maxim Kuvyrkov <[email protected]>
Peter Seebach <[email protected]>
* configure.in (AC_PROG_AWK): Require GNU `awk'.
* configure: Regenerate.
2009-11-09 Maxim Kuvyrkov <[email protected]>
* libio/fileops.c, libio/iosetbuffer.c,
* nptl/sysdeps/pthread/small-macros-fns.c, posix/fnmatch_loop.c,
* posix/regcomp.c, posix/regexec.c, stdio-common/tst-sprintf.c,
* stdio-common/tstdiomisc.c, sysdeps/ieee754/ldbl-opt/nldbl-compat.c,
* sysdeps/ieee754/ldbl-opt/nldbl-compat.h: Explicitly include
<gnu/option-groups.h>.
2009-10-18 Michael Schroeder <[email protected]>
* resolv/res_libc.c (__res_maybe_init): Re-initialize if
_PATH_RESCONF has been modified since last init.
2009-09-03 Peter Seebach <[email protected]>
* manual/Makefile (texis): Change to $(objpfx)texis. Use
$(make-target-directory).
2009-08-20 Maxim Kuvyrkov <[email protected]>
Carlos O'Donell <[email protected]>
Allow ports to define the version of the libgcc_s.so library.
* shlib-versions: Add line for libgcc_s, set version to 1.
* sysdeps/generic/framestate.c: Include gnu/lib-names.h,
use LIBGCC_S_SO instead of hardcoded string.
* nptl/sysdeps/pthread/unwind-resume.c: Same.
* nptl/sysdeps/pthread/unwind-forceunwind.c: Same.
2009-08-03 Joseph Myers <[email protected]>
* locale/programs/ld-ctype.c (ctype_output): Correct merge error.
2009-07-27 Maxim Kuvyrkov <[email protected]>
Add BIG_MACROS option group.
* option-groups.def (OPTION_EGLIBC_BIG_MACROS): Define new option
group.
* option-groups.defaults (OPTION_EGLIBC_BIG_MACROS): Define default.
* nptl/sysdeps/pthread/small-macros-fns.c: New file. Define wrappers.
* nptl/sysdeps/pthread/Makefile (nptl/sysdep_routines): Add
small-macros-fns.
* nptl/sysdeps/pthread/bits/libc-lock.h (gnu/option-groups.h): Include.
(errno.h): Include, make implicit dependency explicit.
(__libc_lock_lock, __libc_lock_lock_recursive),
(__libc_lock_trylock, __libc_lock_trylock_recursive),
(__libc_lock_unlock, __libc_lock_unlock_recursive):
If OPTION_EGLIBC_BIG_MACROS, define to macro;
define to function call otherwise.
2009-06-26 Maxim Kuvyrkov <[email protected]>
Make --disable-versioning work.
* scripts/versions.awk (versioning): New parameter, don't output
version information if it is defined to 'no'.
* include/shlib-compat.h (IS_IN_libc, versioned_symbol),
(versioned_symbol_1): Define when !DO_VERSIONING.
(invisible_compat_symbol): Define, instead of compat_symbol when
appropriate.
* include/libc-symbols.h (default_symbol_version): Define when
!DO_VERSIONING.
(versioned_weak): Define.
* Makerules: Generate version maps when !DO_VERSIONING to properly
set symbol binding.
(abi_versions_file): Define, use instead of abi-versions.h.
(libc_gcclibs): Define, link against libgcc_eh when !DO_VERSIONING.
* extra-lib.mk, elf/Makefile: Update, handle --disable-versioning.
* elf/do-rel.h: Handle !DO_VERSIONING.
* sysdeps/powerpc/powerpc32/dl-machine.c: Don't error when
!DO_VERSIONING.
* sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Define stuff when
!DO_VERSIONING.
* nptl/pthread_kill_other_threads.c (compat_symbol): Surround with
ifdef DO_VERSIONING.
* sysdeps/wordsize-32/divdi3.c: Use invisible_compat_symbol.
* nptl/Makefile (tst-_res1): Disable test when !DO_VERSIONING.
* sysdeps/powerpc/longjmp.c (_longjmp, longjmp, siglongjmp): Update.
* sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h (ldbl_weak_alias): Update.
* sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (__isinfl): Update.
* sysdeps/ieee754/ldbl-128ibm/s_finitel.c (finitel): Update.
* sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (__isnanl): Update.
* sysdeps/ieee754/ldbl-128ibm/strtold_l.c (wcstold_l, strtold_l):
Update.
2009-06-25 Kazu Hirata <[email protected]>
* sysdeps/i386/Makefile (CFLAGS-initfini.s): Add
-fno-asynchronous-unwind-tables and -fno-unwind-tables.
(CFLAGS-pt-initfini.s): New.
2009-06-24 Mark Mitchell <[email protected]>
* debug/Makefile (LDFLAGS-tst-backtrace2): Define.
(tests-$(OPTION_EGLIBC_BACKTRACE)): Add tst-backtrace2.
* debug/tst-backtrace2.c: New test.
2009-06-23 Joseph Myers <[email protected]>
* nptl/nptl-init.c (sighandler_setxid): Remove duplicate decrement
of __xidcmd->cntr.
2009-06-01 Joseph Myers <[email protected]>
* nptl/nptl-init.c: Restore local changes lost in upstream rename.
2009-05-06 Aurelien Jarno <[email protected]>
* nss/nsswitch.c (lock_nsswitch, unlock_nsswitch): Remove brackets.
2009-05-06 Aurelien Jarno <[email protected]>
* Makerules (install-map): Don't install libhurduser.map and
libmachuser.map.
2009-04-23 Maxim Kuvyrkov <[email protected]>
* stdio-common/_i18n_number.h (_i18n_number_rewrite): Update stub.
2009-03-03 Aurelien Jarno <[email protected]>
* timezone/Makefile: Call cross-zic directly instead of using
the target ld.so while generating testdata.
2009-03-02 Aurelien Jarno <[email protected]>
* nptl/Makefile: Use exec shell command in tst-cancel7 to prevent
the shell forking. Fix a bashism in the call to tst-cleanup0.
2009-02-14 Joseph Myers <[email protected]>
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_runtime_setup):
Adjust rela->r_offset by l->l_addr when rewriting PLT.
2009-01-26 Julian Brown <[email protected]>
* elf/Makefile ($(objpfx)ld.so): Add sed pattern to recognize text
segment defined with SEGMENT_START.
2009-04-20 Maxim Kuvyrkov <[email protected]>
* option-groups.def (OPTION_EGLIBC_FCVT, OPTION_EGLIBC_FMTMSG):
Define new option groups.
(OPTION_EGLIBC_FTRAVERSE): Define new option group.
* option-groups.defaults: Set defaults for new option groups.
* misc/Makefile: Handle OPTION_EGLIBC_FCVT option group.
* stdlib/Makefile: Handle OPTION_EGLIBC_FMTMSG option group.
* io/Makefile: Handle OPTION_EGLIBC_FTRAVERSE option group.
2009-01-23 Joseph Myers <[email protected]>
[BZ #7094]
* nptl/sysdeps/unix/sysv/linux/timer_create.c (timer_create): Set
newp->sigev_notify = SIGEV_THREAD for SIGEV_THREAD timers.
2009-01-22 Maxim Kuvyrkov <[email protected]>
Cross-getconf.
* posix/confstr.c (confstr): Move code for case
_CS_V6_WIDTH_RESTRICTED_ENVS to ...
* posix/confstr.inc: New file.
* posix/cross-getconf.c: New utility to mimic getconf for the
purposes of cross-compiling EGLIBC.
* posix/Makefile: Build cross-getconf and use it when cross-building
EGLIBC.
2009-01-22 Maxim Kuvyrkov <[email protected]>
* sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Handle
WIDE_CHAR_DEVICE_IO option group.
* sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl_vfwscanf)
(__nldbl_vswscanf, __nldbl_vfwprintf, __nldbl_vswprintf)
(__nldbl___vfwprintf_chk, __nldbl___vswprintf_chk): Condition
declarations and defitions on WIDE_CHAR_DEVICE_IO option group.
* sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_vfwscanf)
(__nldbl_vfwprintf, __nldbl_vswprintf, __nldbl_vswscanf)
(__nldbl___vfwprintf_chk, __nldbl___vswprintf_chk):
Condition declarations on WIDE_CHAR_DEVICE_IO option group.
2008-12-24 Maxim Kuvyrkov <[email protected]>
* posix/xregex.c: Handle absence of wide char support.
2008-12-15 Josh Boyer <[email protected]>
Maxim Kuvyrkov <[email protected]>
* intl/dcigettext.c: Condition use of libc_setlocale_lock on
OPTION_EGLIBC_LOCALE_CODE.
* debug/Makefile (tests): Condition affected tests on
OPTION_EGLIBC_LOCALE_CODE.
* iconvdata/Makefile (tests): Same.
2008-12-09 Maxim Kuvyrkov <[email protected]>
Support smaller regex implementation.
* option-groups.def (OPTION_POSIX_REGEXP_GLIBC): New option group.
* option-groups.defaults (OPTION_POSIX_REGEXP_GLIBC): Set default.
* posix/regexec.c: Move a piece of code to ...
* posix/regexec-compat.c: New file.
* posix/Makefile (tests): Same for runptests, bug-regex11,
bug-regex13, bug-regex16, tst-regex2, tst-rxspencer, tst-pcre,
tst-boost, tst-regex, bug-regex17, bug-regex18, bug-regex19,
bug-regex20, bug-regex22, bug-regex14-mem,
tst-rxspence-mem, tst-pcre-mem and tst-boost-mem.
* posix/xregex.c: New file ported from libiberty.
2008-11-19 Nathan Sidwell <[email protected]>
* sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
Add _tid slot to maintain consistency with kernel.
2008-09-26 Joseph Myers <[email protected]>
* aclocal.m4 (ACX_PKGVERSION, ACX_BUGURL): Define.
* configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
* configure: Regenerate.
* config.h.in (PKGVERSION, REPORT_BUGS_TO): Undefine.
* config.make.in (PKGVERSION, REPORT_BUGS_TO): Define.
* catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
* debug/Makefile ($(objpfx)catchsegv, $(objpfx)xtrace): Also
substitute PKGVERSION and REPORT_BUGS_TO.
* debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
* debug/pcprofiledump.c (print_version,
argp_program_version_hook): New.
(more_help): Use REPORT_BUGS_TO.
* debug/xtrace.sh: Use PKGVERSION and REPORT_BUGS_TO.
* elf/Makefile (common-ldd-rewrite): Also substitute PKGVERSION
and REPORT_BUGS_TO.
* elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
* elf/ldconfig.c (doc): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
* elf/sln.c (usage): New.
(main): Support --help and --version.
* elf/sprof.c (doc): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* locale/programs/locale.c (doc): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* login/programs/pt_chown.c
* malloc/Makefile ($(objpfx)mtrace, $(objpfx)memusage): Also
substitute PKGVERSION and REPORT_BUGS_TO.
* malloc/memusage.sh: Use PKGVERSION and REPORT_BUGS_TO.
* malloc/memusagestat.c (print_version,
argp_program_version_hook): New.
(more_help): Use REPORT_BUGS_TO.
* malloc/mtrace.pl: Use PKGVERSION and REPORT_BUGS_TO.
* manual/Makefile (libc.dvi, libc.pdf, libc.info,
libc/index.html): Depend on pkgvers.texi.
(pkgvers.texi, stamp-pkgvers): New.
* manual/install.texi: Adjust bug database description. Use
REPORT_BUGS_TO.
* manual/libc.texinfo: Include pkgvers.texi. Use PKGVERSION.
* nscd/nscd.c (doc): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* nss/getent.c (doc): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* nss/makedb.c (more_help): Use REPORT_BUGS_TO.
(print_version): Use PKGVERSION.
* posix/getconf.c (main): Send --version output to stdout. Use
PKGVERSION. Support --help.
* sunrpc/proto.h (REPORT_BUGS_TO, PKGVERSION): Define for
cross-rpcgen.
* sunrpc/rpc_main.c (usage, options_usage): Take STREAM and STATUS
arguments. All callers changed. Use REPORT_BUGS_TO
(print_version): New.
(parseargs): Support --help and --version.
* sunrpc/rpcinfo.c (usage): Take STREAM argument. All callers
changed. Use REPORT_BUGS_TO.
(print_version): New.
(main): Use getopt_long. Support --help and --version.
* sysdeps/unix/sysv/linux/lddlibc4.c (main): Support --help and
--version.
* timezone/Makefile: Use -DCROSS_ZIC for cross-zic.
($(objpfx)tzselect): Also substitute PKGVERSION and
REPORT_BUGS_TO.
* timezone/tzselect.ksh: Support --help and --version.
* timezone/zdump.c (usage): New.
(main): Use it. Support --help. Print program name and
PKGVERSION in --version output.
* timezone/zic.c (usage): Take STREAM and STATUS arguments. All
callers changed. Use REPORT_BUGS_TO.
(main): Support --help. Print program name and PKGVERSION in
--version output.
2008-09-24 Joseph Myers <[email protected]>
* csu/Makefile ($(objpfx)crti.S, $(objpfx)crtn.S): Remove .file
lines from generated .S file.
* nptl/Makefile ($(objpfx)crti.S, $(objpfx)crtn.S): Remove .file
lines from generated .S file.
2008-09-08 Pete Eberlein <[email protected]>
* elf/ldd.bash.in: Make pipefail check more robust when using
non-bash shells.
2008-09-08 Aurelien Jarno <[email protected]>
* nscd/Makefile (CFLAGS-nis_hash.c): Set to $(nscd-cflags).
2008-06-17 Joseph Myers <[email protected]>
* stdlib/tst-setcontext.c: Set back_in_main before exit if
getcontext returns ENOSYS.
2008-05-15 Joseph Myers <[email protected]>
* posix/globtest.sh: Set HOME with env on test target system.
2008-05-14 Joseph Myers <[email protected]>
* iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define.
* localedata/Makefile (LOCALES): Add en_US.UTF-8.
2008-05-14 Maxim Kuvyrkov <[email protected]>
Generate zoneinfo when cross-building EGLIBC.
* timezone/Makefile: When cross-compiling, build cross-zic, then
use it to generate zoneinfo files.
2008-04-25 Vladimir Prus <[email protected]>
* sysdeps/sparc/sparc64/elf/configure.in: Hard-code result of TLS
link test.
* sysdeps/sparc/sparc64/elf/configure: Regenerate.
2008-04-25 Maxim Kuvyrkov <[email protected]>
Cross-rpcgen.
* sunrpc/Makefile: Make librpcsvc.a built when cross-building.
Build cross-rpcgen for $build when cross-building.
* sunrpc/proto.h: Define stuff for cross-building.
2008-04-15 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/configure: Regenerate.
2008-04-12 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/powerpc/bits/mathinline.h: Also test
__NO_FPRS__.
2008-04-01 Maxim Kuvyrkov <[email protected]>
* Makerules (install-lib): Don't install libpthread_pic.a.
(install-map): Don't install libpthread_pic.map.
2008-02-23 Daniel Jacobowitz <[email protected]>
PR nptl/3270
nptl/
* allocatestack.c (setxid_mark_thread, setxid_unmark_thread): New.
(setxid_signal_thread): Return a successful signal indicator. Just
skip threads without SETXID_BITMASK.
(__nptl_setxid): Use separate marking and unmarking loops. Repeat
signalling if necessary.
* init.c (sighandler_setxid): Use atomic operations for
cancelhandling. Wake __nptl_setxid last.
2008-02-17 Joseph Myers <[email protected]>
Backport:
2008-01-12 H.J. Lu <[email protected]>
* sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Use short for fnstsw.
2008-02-11 Joseph Myers <[email protected]>
[BZ #3406]
* sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Correct value.
* math/libm-test.inc (exp_test): Test 88.72269439697265625.
2008-02-07 Joseph Myers <[email protected]>
* Makerules (install-extras, install-map): New variables.
(installed-libcs): Add libc_pic.a.
(install-lib): Include _pic.a files for versioned shared
libraries.
(install-map-nosubdir, install-extras-nosubdir): Add rules for
installing extra files.
(install-no-libc.a-nosubdir): Depend on install-map-nosubdir and
install-extras-nosubdir.
2008-01-09 Daniel Jacobowitz <[email protected]>
* scripts/cross-test-ssh.sh (env_blacklist): Add TERM, TERMCAP, PWD.
(remove_newlines): New.
(blacklist_exports): Unset blacklisted variables and use export.
(Top level): Use remove_newlines.
2007-12-13 Sandra Loosemore <[email protected]>
* sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Make strfmon
and strfmon_l conditional on OPTION_EGLIBC_LOCALE_CODE.
* sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vstrfmon,
__nldbl___vstrfmon_l, __nldbl___strfmon, __nldbl___strfmon_l):
Make conditional on __OPTION_EGLIBC_LOCALE_CODE.
2007-12-13 Jim Blandy <[email protected]>
Sandra Loosemore <[email protected]>
Implement the OPTION_POSIX_C_LANG_WIDE_CHAR option group.
* option-groups.def (OPTION_POSIX_C_LANG_WIDE_CHAR): New entry.
(OPTION_EGLIBC_LOCALE_CODE, OPTION_POSIX_WIDE_CHAR_DEVICE_IO):
Note dependence on OPTION_POSIX_C_LANG_WIDE_CHAR.
(OPTION_POSIX_WIDE_CHAR_DEVICE_IO): Doc fix; note effect on
support for 'ccs=CHARSET' strings in fopen and friends.
* option-groups.mak (option-disabled): New function.
* scripts/option-groups.awk: Generate preprocessor conditionals to
protect gnu/option-groups.h from multiple #inclusion.
* stdlib/Makefile (routines): Put in group: mblen mbstowcs mbtowc
wcstombs wctomb wcstoimax wcstoumax.
(tests): Put in group: testmb.
* debug/Makefile (routines): Put in group: wctomb_chk wcscpy_chk
wmemcpy_chk wmemmove_chk wmempcpy_chk wcpcpy_chk wcsncpy_chk
wcscat_chk wcsncat_chk wmemset_chk wcpncpy_chk swprintf_chk
vswprintf_chk wcrtomb_chk mbsnrtowcs_chk wcsnrtombs_chk
mbsrtowcs_chk wcsrtombs_chk mbstowcs_chk wcstombs_chk.
* debug/tst-chk1.c (do_test): Make wide character parts conditional
on __OPTION_POSIX_WIDE_CHAR_DEVICE_IO.
* wcsmbs/Makefile (routines): Put in group: wcscat wcschr wcscmp
wcscpy wcscspn wcsdup wcslen wcsncat wcsncmp wcsncpy wcspbrk
wcsrchr wcsspn wcstok wcsstr wmemchr wmemcmp wmemmove wcpcpy
wcpncpy wmempcpy btowc wctob mbsinit mbrlen mbrtowc wcrtomb
mbsrtowcs wcsrtombs mbsnrtowcs wcsnrtombs wcsnlen wcschrnul wcstol
wcstoul wcstoll wcstoull wcstod wcstold wcstof wcstol_l wcstoul_l
wcstoll_l wcstoull_l wcstod_l wcstold_l wcstof_l wcscoll wcsxfrm
wcwidth wcswidth wcscoll_l wcsxfrm_l wcscasecmp wcsncase
wcscasecmp_l wcsncase_l wcsmbsload mbsrtowcs_l isoc99_swscanf
isoc99_vswscanf.
(tests): Put in group: tst-wcstof wcsmbs-tst1 tst-wcsnlen tst-wcpncpy
tst-mbsrtowcs wcsatcliff.
* time/Makefile (routines): Put in group: wcsftime wcsftime_l
* libio/Makefile (routines): When group is disabled, add
wdummyfileops. Put in group: wfiledoalloc iowpadn swprintf
vswprintf iovswscanf swscanf wgenops wstrops wfileops wmemstream.
(tests): Put in group: tst_swprintf tst_swscanf tst-sscanf
tst-wmemstream1 tst-wmemstream2.
* libio/wdummyfileops.c: New file. Provide a dummy definition for
the _IO_FILE functions that prints an error message and dies.
* libio/libioP.h: #include <gnu/option-groups.h>.
(_IO_is_wide): New macro. Used as necessary to excise references
to wide character code.
* libio/iosetbuffer.c (_IO_setbuffer): Don't call _IO_WSETBUF if
wide characters are not supported.
* libio/ioseekoff.c (_IO_seekoff_unlocked): Use _IO_is_wide.
* libio/iofwide.c: #include <gnu/option-groups.h>.
(_IO_fwide): When the group is disabled, provide a simplified
definition that aborts if the caller attempts to make a stream
wide-oriented.
* libio/fileops.c (_IO_new_file_close_it): Use _IO_is_wide.
(_IO_new_file_fopen): Conditionalize for
__OPTION_POSIX_WIDE_CHAR_DEVICE_IO.
* libio/ioseekpos.c (_IO_seekpos_unlocked): Use _IO_is_wide.
* libio/__fpurge.c (__fpurge): Likewise.
* wctype/Makefile (routines): Put in group: wcfuncs wctype
iswctype wcfuncs_l wctype_l iswctype_l wctrans_l.
(tests): Put in group: test_wctype test_wcfuncs.
* posix/fnmatch_loop.c (FCT) (either internal_fnmatch or
internal_fnwmatch): Handle character categories accessed via
'wctype' only if the group is enabled.
* stdio-common/Makefile (routines): Put in group: vfwprintf
vfwscanf printf-parsewc.
(tests): Put in group: bug18a tst-swscanf tst-wc-printf.
* stdio-common/printf_fp.c (__printf_fp): When the group is
disabled, fix 'wide' at zero.
* stdio-common/printf_fphex.c (__printf_fphex): Same.
* stdio-common/printf_size.c (__printf_size): Same.
* stdio-common/vfprintf.c (MULTIBYTE_SUPPORT): New macro.
(process_string_arg): If the format contains wide characters or
strings, assert that we have multibyte support.
* stdio-common/vfscanf.c (MULTIBYTE_SUPPORT): New macro.
(_IO_vfscanf_internal): If we see wide string or character format
directives, assert that we have multibyte support.
* stdio-common/scanf14.c (main): Make conditional on
__OPTION_EGLIBC_LOCALE_CODE.
* stdio-common/tst-sprintf.c (main): Make wide character test
conditional on __OPTION_POSIX_C_LANG_WIDE_CHAR.
* stdio-common/tstdiomisc.c (F): Likewise.
2007-12-11 Jim Blandy <[email protected]>
Clean up test results with OPTION_EGLIBC_LOCALE_CODE disabled.
* debug/tst-chk1.c: Omit locale tests when group is disabled.
* intl/Makefile (tests): Put tst-translit, tst-gettext2,
tst-codeset, and tst-gettext3 in the group.
* libio/Makefile (tests): Put tst-fgetws, tst-fopenloc,
tst-setvbuf1, tst-ungetwc1, tst-ungetwc2, bug-ftell, bug-ungetwc2,
tst-widetext, and tst-fopenloc in the group; some were formerly in
OPTION_POSIX_WIDE_CHAR_DEVICE_IO.
* nptl/Makefile (tests): Put tst-locale1 in the group.
* posix/Makefile (tests): Put bug-regex17, bug-regex18,
bug-regex20, bug-regex23, and bug-regex26 in the group.
(tst-rxspencer): Pass --utf8 only when the group is enabled.
* posix/bug-regex6.c: Omit non-C locale tests when group is disabled.
* stdio-common/Makefile (tests): Put bug14 and scanf13 in the group.
* stdlib/Makefile (tests): Put tst-strtod4, tst-strtod5, and
testmb2 in the group.
* stdlib/tst-strtod.c: Omit locale tests when group is disabled.
* string/tst-strxfrm.c, string/tst-strxfrm2.c: Same.
* time/Makefile (tests): Put tst-ftime_l in the group.
Fix code broken by OPTION_EGLIBC_LOCALE_CODE.
* posix/regex_internal.h: #include <gnu/option-groups.h>.
(string_mb_cur_max, dfa_mb_cur_max): New macros for accessing the
'mb_cur_max' fields of re_string_t and re_dfa_t, whose values can
be constant when the group is disabled. Use them throughout.
* posix/regex_internal.c: Use string_mb_cur_max and dfa_mb_cur_max
as appropriate.
* posix/regcomp.c: Same.
(re_compile_fastmap_iter): Process COMPLEX_BRACKET nodes only when
the group is enabled.
(init_dfa): When the group is disabled, clear map_notascii.
(parse_bracket_exp): Process MB_CHAR elements only when the group
is enabled. Otherwise, fix 'nrules' at zero, for the compiler's
benefit, and assume the collation sequence is the identity.
(parse_bracket_element): Create MB_CHAR elements only when the
group is enabled.
(build_equiv_class): When the group is disabled, we know there
will be no collation rules.
(build_charclass): When the group is disabled, do not try to
process references to wide character categories accessed via
'wctype'.
* posix/regexec.c: Use string_mb_cur_max and dfa_mb_cur_max
as appropriate.
(find_collation_sequence_value): Define function only when the
group is enabled.
(check_node_accept_bytes): Check character against 'wctype' style
classes only if group is enabled. When the group is disabled,
Skip collation-rule-based matching.
* posix/fnmatch.c: #include <gnu/option-groups.h>.
Define HANDLE_MULTIBYTE only if when OPTION_EGLIBC_LOCALE_CODE is
enabled.
* posix/fnmatch_loop.c (FCT (internal_fnmatch or internal_fnwmatch)):
If the group is disabled, assume that the collation sequence is
the identity.
* stdio-common/_i18n_number.h (_i18n_number_rewrite): Provide only
a trivial definition when the group is disabled.
* stdio-common/vfprintf.c: #include <gnu/option-groups.h>.
(LOCALE_SUPPORT): Define.
(vfprintf): Consult it as appropriate.
* stdio-common/vfscanf.c: #include <gnu/option-groups.h>.
(_IO_vfwscanf): If the group is disabled, don't try to consult the
locale for decimal point and thousands separator characters, or
for custom digits.
* stdlib/strtod_l.c (__STRTOF_INTERNAL): Don't try to consult the
locale's numeric settings.
* string/strxfrm_l.c, string/strcoll_l.c: Don't try to consult the
locale's collation settings.
Fix testing with OPTION_EGLIBC_CATGETS disabled.
* catgets/Makefile (tests): Put de/libc.cat, test1.cat,
test2.cat, and test-gencat.out in the option group.
2007-11-29 Sandra Loosemore <[email protected]>
Allow building EGLIBC with -Os.
* include/features.h (__USE_EXTERN_INLINES_IN_LIBC): New.
* io/sys/stat.h: Use it instead of __USE_EXTERN_INLINES.
2007-11-09 Sandra Loosemore <[email protected]>
* nss/gen-fixed-nsswitch.c (internal_function): Provide a fallback
definition.
2007-10-29 Jim Blandy <[email protected]>
* Makeconfig ($(common-objpfx)gnu/option-groups.h): New generated
header.
* scripts/option-groups.awk: New script, to generate it.
* debug/Makefile (CFLAGS-segfault.c): Don't define option group
symbols here.
* wcsmbs/Makefile (CFLAGS-wcsmbsload.c): Same.
* time/Makefile (CFLAGS-strftime_l.c, CFLAGS-strptime_l.c): Same.
* intl/Makefile (CFLAGS-dcigettext.c): Same.
* sysdeps/unix/sysv/linux/Makefile (CFLAGS-gethostid.c)
(CFLAGS-libc_fatal.c): Same.
* misc/Makefile (CFLAGS-error.c, CFLAGS-err.c): Same.
* nss/Makefile (CFLAGS-nsswitch.c, CFLAGS-getnssent_r.c)
(CFLAGS-getent.c): Same.
* string/Makefile (CFLAGS-strerror_l.c): Same.
* iconv/Makefile (CFLAGS-gconv_db.c, CFLAGS-gconv_trans.c)
(CFLAGS-iconv_prog.c): Same.
* locale/Makefile (CFLAGS-C-ctype.c, CFLAGS-xlocale.c)
(CFLAGS-ld-messages.c): Same.
* argp/Makefile (CFLAGS-argp-help.c, CFLAGS-argp-fmtstream.c): Same.
* nptl/Makefile (CFLAGS-pthread_create.c): Same.
* posix/Makefile (CFLAGS-glob.c, CFLAGS-bug-regex1.c): Same.
* stdio-common/Makefile (CFLAGS-printf_fp.c)
(CFLAGS-printf_fphex.c, CFLAGS-fxprintf.c, CFLAGS-tst-popen.c): Same.
* libidn/Makefile (CFLAGS-toutf8.c): Same.
* debug/segfault.c, wcsmbs/wcsmbsload.c, time/strftime_l.c:
* time/strptime_l.c, intl/dcigettext.c:
* sysdeps/unix/sysv/linux/libc_fatal.c:
* sysdeps/unix/sysv/linux/gethostid.c, misc/err.c, misc/error.c:
* nss/getnssent_r.c, nss/nsswitch.c, nss/getent.c:
* string/strerror_l.c, iconv/gconv_db.c, iconv/iconv_prog.c:
* iconv/gconv_trans.c, locale/xlocale.c, locale/C-ctype.c: