summaryrefslogtreecommitdiff
blob: 27ff700540272ef082aec32eb06c8dd1ba4bda76 (plain)
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
# ChangeLog for sys-libs/glibc
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.172 2004/06/05 01:47:46 iluxa Exp $

  04 Jun 2004; Ilya A. Volynets-Evenbach <iluxa@gentoo.org>
  +files/2.3.4/mips-sysdep-cancel.diff, glibc-2.3.4.20040602.ebuild:
  Finalize n32 fixes (n64 is yet to be tested, but should be
  piece of cake now)
  Add ALT_HEADERS variable, which will allows us to point glibc
  to something other then /usr/lib. This will be needed for
  x-compilation support.

  04 Jun 2004; Travis Tilley <lv@gentoo.org> glibc-2.3.3_pre20040529.ebuild:
  stable on amd64

  04 Jun 2004; Ilya A. Volynets-Evenbach <iluxa@gentoo.org>
  glibc-2.3.3_pre20040420-r1.ebuild, glibc-2.3.4.20040602.ebuild:
  glibc is not using n32/n64 use flags (yet)

  04 Jun 2004; Ilya A. Volynets-Evenbach <iluxa@gentoo.org>
  glibc-2.3.4.20040602.ebuild:
  Mark glibc-2.3.4 as ~mips

  03 Jun 2004; Ilya A. Volynets-Evenbach <iluxa@gentoo.org>
  +files/2.3.3/mips-addabi.diff, +files/2.3.3/mips-syscall.h.diff,
  +files/2.3.3/mips-sysify.diff, +files/2.3.3/semtimedop.diff,
  glibc-2.3.3_pre20040420-r1.ebuild, glibc-2.3.3_pre20040529.ebuild,
  glibc-2.3.4.20040602.ebuild:
  Add n32/n64 patches. Some of them are not quite ready, but it
  shouldn't make any matters worse - o32 should not be affected
  in any way.
  Also add ${CHOST} and ${CCHOST} to configure (--build/--host)

  03 Jun 2004; Tom Gall <tgall@gentoo.org> glibc-2.3.3_pre20040529.ebuild:
  stable on ppc64

  03 Jun 2004; Travis Tilley <lv@gentoo.org> glibc-2.3.4.20040602.ebuild:
  fixed the ebuild to install all locales if doing a make check and repaired the
  tarball so that the info pages arent broken

  03 Jun 2004; Jason Eric Huebel <jhuebel@gentoo.org>
  glibc-2.3.3_pre20040529.ebuild:
  fixed header dependency based on NPTL use flag

*glibc-2.3.4.20040602 (03 Jun 2004)

  03 Jun 2004; Travis Tilley <lv@gentoo.org> -glibc-2.3.3.20040602.ebuild,
  +glibc-2.3.4.20040602.ebuild:
  added an ebuild with a proper version number. new features in this ebuild
  include the makecheck USE flag for having glibc run tests on itself and the
  ability to install only the locales that you want. a new configuration file
  has been added for controlling this feature: /etc/locales.build. a default
  should be installed when you emerge this version of glibc, please read the
  comments for a description of this file's format.

  02 Jun 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> glibc-2.3.3_pre20040420-r1.ebuild:
  Mased stable on ppc

*glibc-2.3.3.20040602 (02 Jun 2004)

  02 Jun 2004; Travis Tilley <lv@gentoo.org> +glibc-2.3.3.20040602.ebuild:
  new cvs snapshot. this ebuild marks a move from using branch updates against
  2.3.2 to using actual cvs snapshot tarballs. it also marks a move in the
  versioning scheme for glibc... since upstream has decided to let distributions
  choose what they want to release instead of making releases themselves, the
  pre has been dropped from the version.

  02 Jun 2004; Joshua Kinard <kumba@gentoo.org>
  glibc-2.3.3_pre20040529.ebuild:
  Added ~mips to KEYWORDS.

  30 May 2004; Travis Tilley <lv@gentoo.org> glibc-2.3.3_pre20040529.ebuild:
  adding ~amd64 and ~ppc64 to keywords

  30 May 2004; Travis Tilley <lv@gentoo.org> glibc-2.3.3_pre20040529.ebuild:
  misc pax/grsec fixes from peter mazinger

*glibc-2.3.3_pre20040529 (29 May 2004)

  29 May 2004; Travis Tilley <lv@gentoo.org> -glibc-2.3.3_pre20040527.ebuild,
  +glibc-2.3.3_pre20040529.ebuild:
  new snapshot. this one should build on ppc64

*glibc-2.3.3_pre20040527 (27 May 2004)

  27 May 2004; Travis Tilley <lv@gentoo.org> +glibc-2.3.3_pre20040527.ebuild:
  update snapshot

  27 May 2004; Travis Tilley <lv@gentoo.org>
  glibc-2.3.3_pre20040420-r1.ebuild:
  adding ~amd64 keyword to satisfy gcc 3.4 dep

  17 May 2004; Travis Tilley <lv@gentoo.org>
  +files/2.3.3/glibc-2.3.3-ssp-gcc34-after-frandom.patch,
  glibc-2.3.3_pre20040420-r1.ebuild:
  added fix for compiling SSP with gcc 3.4

*glibc-2.3.3_pre20040420-r1 (14 May 2004)

  14 May 2004; <solar@gentoo.org> glibc-2.3.3_pre20040420-r1.ebuild,
  files/2.3.3/glibc-2.3.2-propolice-guard-functions-v3.patch,
  files/2.3.3/glibc-2.3.3-frandom-detect.patch:
  frandom/SSP implementation for glibc. Adds new 'erandom' flag to IUSE. (-*
  masked for testing now) bug #50864

  12 May 2004; Alexander Gabert <pappy@gentoo.org> :
  removing hardened-gcc vintage from some ebuilds

  08 May 2004; Bryan �stergaard <kloeri@gentoo.org>
  glibc-2.3.3_pre20040420.ebuild:
  Removed ~alpha, see bug #50301.

  04 May 2004; Ilya A. Volynets-Evenbaks <iluxa@gentoo.org>
  +files/2.3.3/glibc-2.3.3_pre20040420-mips-dl-machine-calls.diff,
  +files/2.3.3/glibc-2.3.3_pre20040420-mips-incl-sgidefs.diff,
  glibc-2.3.3_pre20040420.ebuild:
  - Remove unneeded patches
  - Add patch by Thiemo Seufer to include <sgidefs.h> into all
    files that use _MIPS_SIM. This is required for use with
    gcc-3.4. Original can be found at
    http://lists.debian.org/debian-glibc/2003/debian-glibc-200312/msg00201.html
  - Add compile fix to sysdeps/mips/dl-machine.h
  - mark as ~mips

  29 Apr 2004; Joshua Kinard <kumba@gentoo.org>
  glibc-2.3.3_pre20040420.ebuild:
  Masked on mips until some patches can be dug/cooked/found to fix some issues.

  28 Apr 2004; <solar@gentoo.org> glibc-2.3.3_pre20040420.ebuild,
  files/2.3.3/glibc-2.3.3-localedef-fix-trampoline.patch:
  localedef contains nested function trampolines, which trigger segfaults under
  PaX while building. Adding patch that inlines functions in order to avoid
  this. Debian Bug (#231438, #198099)

  27 Apr 2004; Mike Frysinger <vapier@gentoo.org> 
  +files/2.3.2/glibc-2.3.2-arm-bus-defines.patch,
  +files/2.3.2/glibc-2.3.2-armformat.patch,
  +files/2.3.2/glibc-2.3.2-arm-doargs.patch,
  +files/2.3.2/glibc-2.3.2-framestate-USING_SJLJ_EXCEPTIONS.patch,
  glibc-2.3.2-r10.ebuild:
  Add a few patches to make glibc compile cleanly on arm.

*glibc-2.3.3_pre20040420 (25 Apr 2004)

  25 Apr 2004; Martin Schlemmer <azarah@gentoo.org>
  +glibc-2.3.3_pre20040420.ebuild:
  Update snapshot.

  24 Apr 2004; Joshua Kinard <kumba@gentoo.org>
  +files/2.3.2/glibc-2.3.2-mips-fix-nested-entend-pairs.patch,
  glibc-2.3.2-r10.ebuild, glibc-2.3.2-r3.ebuild:
  Added a patch for mips which fixes a compile bug with newer binutils. Also
  removed an RDEPEND for portage-1.9.0 which seems to be triggering a bug in
  repoman. If this change affects anyone, yell at me.

  24 Apr 2004; Joshua Kinard <kumba@gentoo.org>
  +files/2.3.2/glibc-2.3.2-mips-fix-nested-entend-pairs.patch,
  glibc-2.3.2-r10.ebuild, glibc-2.3.2-r3.ebuild:
  Added a patch for mips which fixes a compile bug with newer binutils. Also
  removed an RDEPEND for portage-1.9.0 which seems to be triggering a bug in
  repoman. If this change affects anyone, yell at me.

*glibc-2.3.2-r10 (18 Apr 2004)

  18 Apr 2004; Michael McCabe <randy@gentoo.org>
  +files/2.3.2/glibc-2.3.2-s390-deprecated-ustat-fixup.patch,
  +glibc-2.3.2-r10.ebuild:
  Added s390 specific fixes to close bug #47415

*glibc-2.3.2-r10 18 Apr 2004

  18 Apr 2004;  <> 
  # INSERT ENTRY HERE

  24 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> glibc-2.3.2-r2.ebuild,
  glibc-2.3.2-r3.ebuild, glibc-2.3.3_pre20031210.ebuild:
  don't use deprecated ? : use syntax

  18 Mar 2004; <solar@gentoo.org> glibc-2.3.2-r9.ebuild:
  adding filter-ldflags -pie to stable glibc

  16 Mar 2004; <solar@gentoo.org> glibc-2.3.3_pre20040207.ebuild:
  glibc fails to link properly with global LDFLAGS=-pie so we filter it with new
  flag-o-matic function called filter-ldflags

  15 Mar 2004; Joshua Kinard <kumba@gentoo.org> glibc-2.3.2-r9.ebuild:
  Marked stable on mips (it had ~mips, but someone removed the keyword and
  didn't leave a Changelog entry on why).

  09 Mar 2004; <agriffis@gentoo.org> glibc-2.3.2-r9.ebuild:
  stable on alpha and ia64

  02 Mar 2004; Brian Jackson <iggy@gentoo.org> glibc-2.3.2-r9.ebuild:
  s390 keywords

  01 Mar 2004; Tom Gall <tgall@gentoo.org> glibc-2.3.3_pre20031210.ebuild:
  added in dependancy for ppc64 headers

  26 Feb 2004; Sven Blumenstein <bazik@gentoo.org> glibc-2.3.2-r9.ebuild:
  Stable on sparc (was about time).

  25 Feb 2004; Luca Barbato <lu_zero@gentoo.org>
  glibc-2.3.3_pre20040207.ebuild:
  Marked ~ppc

  24 Feb 2004; Alexander Gabert <pappy@gentoo.org>
  glibc-2.3.3_pre20040207.ebuild:
  added GOTOFF fix from previous glibc release

  24 Feb 2004; Mike Frysinger <vapier@gentoo.org> :
  Make the only headers info virtual/os-headers since hppa-headers PROVIDEs that.

  23 Feb 2004; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r9.ebuild,
  files/2.3.2/glibc-2.3.2-ipv6-bytestring-fix.patch:
  Fix broken reverse resolving for IPv6 addresses, bug #42492. Research done by
  Bernhard Schmidt <berni@birkenwald.de>.

  12 Feb 2004; <solar@gentoo.org> glibc-2.3.3_pre20040117-r1.ebuild,
  files/2.3.3/glibc-2.3.3_pre20040117-got-fix.diff:
  GOTOFF during linking seems to fail to recognize where main() is because it is
  not visible in the object linked which might not be really legal C but it
  apparently works anyway. This can be seen when trying to build bind9 as a
  Position Independent Executable. ie CFLAGS=-fPIC,LDFLAGS=-pie. This patch
  fixes that. Submitted by the PaX Team

*glibc-2.3.3_pre20040207 (09 Feb 2004)
*glibc-2.3.3_pre20031210 (09 Feb 2004)

  09 Feb 2004; Brad House <brad_mssw@gentoo.org>
  glibc-2.3.3_pre20031210.ebuild, glibc-2.3.3_pre20031222.ebuild,
  glibc-2.3.3_pre20040117.ebuild, glibc-2.3.3_pre20040207.ebuild:
  glibc 2.3.3_pre release for PPC64. This is the only version that works for
  ppc64. Current VMX commits have caused later pulls to not work

*glibc-2.3.3_pre20040207 (08 Feb 2004)

  08 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
  glibc-2.3.3_pre20040207.ebuild,
  files/2.3.2/glibc-2.3.2-rtld-assert-fix.patch:
  Update snapshot to 20040207. Fix an assert when running libc.so from
  commandline, bug #34733.  Add ia64 to nptl arches.

  19 Jan 2004; Mike Frysinger <vapier@gentoo.org> glibc-2.3.2-r9.ebuild :
  Add back in nptl support since gcc-3.3.2-r5 is now stable.

*glibc-2.3.3_pre20040117-r1 (26 Jan 2004)

  26 Jan 2004; <solar@gentoo.org> glibc-2.3.3_pre20040117-r1.ebuild,
  files/2.3.3/glibc-2.3.3-owl-malloc-unlink-sanity-check.diff,
  files/2.3.3/glibc-2.3.3_pre20040117-pt_pax.diff,
  files/2.3.3/glibc-2.3.3_pre20040117-signal-ssp.diff:
  added ptpax flags. cosmetic ssp patch and owl unlink sanity to testing

  19 Jan 2004; Mike Frysinger <vapier@gentoo.org> glibc-2.3.2-r9.ebuild :
  Remove nptl support since people dont understand nptl and this is now x86 stable.
  See Bug #38622 for some good examples.  This is OK because 2.3.3_preXXX has
  nptl support and it's unstable and it covers all the archs 2.3.2-r9 does.

*glibc-2.3.3_pre20040117 (18 Jan 2004)

  18 Jan 2004; Martin Schlemmer <azarah@gentoo.org>
  glibc-2.3.3_pre20040117.ebuild:
  Update snapshot to 20040117.

  18 Jan 2004; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r9.ebuild:
  Mark stable for x86.

  18 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> glibc-2.3.2-r9.ebuild:
  PDEPEND on new linux-headers version on ppc

  16 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> glibc-2.3.2-r9.ebuild:
  set ppc in keywords

  10 Jan 2004; Aron Griffis <agriffis@gentoo.org> glibc-2.3.2-r9.ebuild:
  stable on alpha for bug 37595... alpha really needs execstack-PaX-support.patch

  09 Jan 2004; Luca Barbato <lu_zero@gentoo.org> glibc-2.3.2-r9.ebuild:
  Marked ~ppc

*glibc-2.3.3_pre20031222 (27 Dec 2003)

  16 Jan 2004; Guy Martin <gmsoft@gentoo.org> glibc-2.3.3_pre20031222.ebuild :
  Removed some patches which did not apply for hppa.

  27 Dec 2003; Martin Schlemmer <azarah@gentoo.org>
  glibc-2.3.3_pre20031222.ebuild:
  Update snapshot to 20031222. Change code that searches for proper headers to
  look first in /usr/include again.

*glibc-2.3.3_pre20031212 (14 Dec 2003)

  14 Dec 2003; Martin Schlemmer <azarah@gentoo.org>
  glibc-2.3.3_pre20031212.ebuild,
  files/2.3.3/glibc-2.3.3-dl_execstack-PaX-support.patch:
  Update snapshot to 20031212, pre-release of 2.3.3.

  29 Nov 2003; Brad House <brad_mssw@gentoo.org> glibc-2.3.2-r9.ebuild:
  mark stable on amd64

  23 Nov 2003; Tavis Ormandy <taviso@gentoo.org> glibc-2.3.2-r3.ebuild,
  glibc-2.3.2-r8.ebuild, glibc-2.3.2-r9.ebuild:
  glibc refuses to build with --relax in LDFLAGS.

  20 Nov 2003; Aron Griffis <agriffis@gentoo.org> glibc-2.3.2-r8.ebuild:
  Mark stable on alpha

*glibc-2.3.2-r9 (18 Nov 2003)

  08 Dec 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r9.ebuild :
  Marked stable on hppa.

  19 Nov 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r9.ebuild :
  Added clean hppa patches. Seems not to suffer of the -r8 problems.

  18 Nov 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r9.ebuild :
  Removed hppa stuff. New patching method should come shortly.

  18 Nov 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r9.ebuild:
  - Update CVS branch to 20031115.
  - With latest versions of glibc, a lot of apps failed on a PaX enabled
  system with "cannot enable executable stack as shared object requires:
  Permission denied".  This is due to PaX 'exec-protecting' the stack, and
  ld.so then trying to make the stack executable due to some libraries not
  containing the PT_GNU_STACK section.  Add dl_execstack-PaX-support.patch,
  bug #32960.
  - We do not want name_insert() in iconvconfig.c to be defined inside
  write_output() as it causes issues with PaX.

*glibc-2.3.1-r5 (16 Nov 2003)

  16 Nov 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r9.ebuild,
  glibc-2.3.1-r5.ebuild, glibc-2.3.2-r2.ebuild, glibc-2.3.2-r3.ebuild,
  files/2.2.5/glibc-2.2.5-getgrouplist.patch,
  files/2.3.1/glibc-2.3.1-ftw.patch,
  files/2.3.1/glibc-2.3.1-getgrouplist.patch,
  files/2.3.2/glibc-2.3.2-dl_execstack-PaX-support.patch,
  files/2.3.2/glibc-2.3.2-iconvconfig-name_insert.patch,
  files/2.3.2/glibc-2.3.2-propolice-guard-functions-v2.patch,
  files/2.3.2/glibc-2.3.2-propolice-guard-functions.patch:
  - A bug in the getgrouplist function can cause a buffer overflow if the size
  of the group list is too small to hold all the user's groups.  More info can
  be found at:  https://rhn.redhat.com/errata/RHSA-2003-325.html
  - Fix a memory leak in ftw_dir
  - To circumvent problems with propolice when linking binaries statically among
  things, __guard and __guard_setup__stack_smash_handler is now in libc.so. More
  info at: http://www.gentoo.org/proj/en/hardened/etdyn-ssp.xml
  Thanks for helping in developing these patchsets goes to "moid" from the
  Openbsd team.
  - We do not want name_insert() in iconvconfig.c to be defined inside
  write_output() as it causes issues with PaX.

  09 Nov 2003; Mike Frysinger <vapier@gentoo.org> :
  Fix sscanf.c compilation.  This tiny patch can be found in 2.3.2 already.

  01 Nov 2003; Aron Griffis <agriffis@gentoo.org> glibc-2.3.2-r8.ebuild,
  files/2.3.2/glibc-2.3.2-alpha-crti.patch,
  files/2.3.2/glibc-2.3.2-alpha-pwrite.patch:
  Add crti and pwrite patches for alpha

  28 Oct 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r8.ebuild :
  Added depend to >=hppa-headers-2.4.21_p13 for succefull compilation.

  27 Oct 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r8.ebuild :
  Added patches for hppa. This glibc correct many bugs like the -static flag one.

  27 Oct 2003; Martin Schlemmer <azarah@gentoo.org> files/nscd:
  We need to pass '--pidfile' and not '--pid' to start-stop-daemon, thanks to
  Markus Rippl <markus.rippl@iconparc.de> for reporting.

  26 Oct 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r8.ebuild:
  Remove the sysmacros.h hack, as it is no longer needed.

  26 Oct 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r3.ebuild,
  glibc-2.3.2-r4.ebuild, glibc-2.3.2-r5.ebuild, glibc-2.3.2-r8.ebuild:
  Add sparch to NPTL archs; Cleanup.

*glibc-2.3.2-r8 (26 Oct 2003)

  18 Nov 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r8.ebuild :
  Marked -hppa and removed hppa stuff from it.

  26 Oct 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r8.ebuild:
  Update snapshot.

  18 Oct 2003; Brad House <brad_mssw@gentoo.org> glibc-2.3.2-r6.ebuild:
  add ~amd64 flag to glibc-2.3.2-r6, works with and without nptl enabled in use
  flags

  15 Oct 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r1.ebuild,
  glibc-2.3.2-r7.ebuild:
  Sparc updates from Kumba <kumba@gentoo.org>:
  
    glibc-2.3.2-r1:  Change ~sparc -> sparc in keywords
    glibc-2.3.2-r7:  Add ~sparc to keywords
                     Remove the following patch for mips to let
		     glibc compile:
		     ${P}-mips-fix-n32-n64-sysdep-headers.patch

  15 Oct 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r6.ebuild:
  Mark as unstable for x86 - we should start wider testing sooner or later, and
  except for an occasional break, current CVS snapshots looks good.

*glibc-2.3.2-r7 (14 Oct 2003)

  19 Nov 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r7.ebuild :
  Added missing atomicity patch for hppa.

  18 Nov 2003; Guy Martin <gmsoft@gentoo.org> glibc-2.3.2-r7.ebuild :
  Readded for hppa only. Added hppa patches and depend to correct
  hppa-headers.

  14 Oct 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r7.ebuild:
  Update CVS snapshot.  NPTL is now in official CVS.

  13 Oct 2003; Tavis Ormandy <taviso@gentoo.org> glibc-2.3.2-r1.ebuild:
  Downgrading glibc had some unintentional side effects, stable again.

  10 Oct 2003; Alexander Gabert <pappy@gentoo.org> glibc-2.3.1-r4.ebuild,
  glibc-2.3.2-r1.ebuild:
  changed hardened-gcc build behaviour with CC

  09 Oct 2003; Alexander Gabert <pappy@gentoo.org> glibc-2.3.1-r4.ebuild,
  glibc-2.3.2-r1.ebuild:
  added new hardened-gcc flags for hppa

  09 Oct 2003; Alexander Gabert <pappy@gentoo.org> glibc-2.3.1-r4.ebuild,
  glibc-2.3.2-r1.ebuild:
  added new hardened-gcc building logic for ppc and sparc

  07 Oct 2003; Aron Griffis <agriffis@gentoo.org> glibc-2.3.2-r1.ebuild:
  Demote 2.3.2-r1 from alpha to ~alpha since it doesn't build on alpha with
  recent gcc. We really need the more recent glibc to become available for
  alpha.

  30 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r6.ebuild,
  files/2.3.2/sysmacros.h:
  Quick fix for last changes to sysmacros.h that breaks a few things like
  sys-libs/pwdb and xfree among others.

*glibc-2.3.2-r6 (28 Sep 2003)

  28 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r5.ebuild,
  glibc-2.3.2-r6.ebuild, files/2.3.2/glibc-2.3.2-ia64-LOAD_ARGS-fixup.patch,
  files/2.3.2/glibc-2.3.2-mips-add-n32-n64-sysdep-cancel.patch,
  files/2.3.2/glibc-2.3.2-mips-configure-for-n64-symver.patch,
  files/2.3.2/glibc-2.3.2-mips-fix-n32-n64-sysdep-headers.patch,
  files/2.3.2/glibc-2.3.2-mips-pread-linux2.5.patch:
  Update snapshot to 20030927 and NPTL to 0.60. Add a few patches from Kumba
  <kumba@gentoo.org> for mips.

*glibc-2.3.2-r5 (20 Sep 2003)

  20 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r5.ebuild:
  Update CVS snapshot to 20030919. Update NPTL to 0.59.

  17 Sep 2003; Jon Portnoy <avenj@gentoo.org> glibc-2.3.2-r1.ebuild :
  ia64 keywords.

  14 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r4.ebuild,
  files/2.3.2/glibc-2.3.2-cispeed-cospeed-fix.patch:
  Fix sparc build issues, patch from glibc-alpha, thanks to <kumba@gentoo.org>.

  13 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r1.ebuild,
  glibc-2.3.2-r2.ebuild, glibc-2.3.2-r3.ebuild:
  Add glibc-2.3.2-fix-omitted-operand-in-mathinline_h.patch to resolve bug
  #28537.

  08 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r1.ebuild:
  Fix gcc DEPEND to be '>=sys-devel/gcc-3.2', and not '=sys-devel/gcc-3.2*'.

*glibc-2.3.2-r4 (07 Sep 2003)

  07 Sep 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r4.ebuild,
  files/2.3.2/glibc-2.3.2-fix-omitted-operand-in-mathinline_h.patch:
  Update cvs snapshot to 20030906.  Update nptl to version 0.57.  Add patch
  for bug #27142.

  12 Aug 2003; Alexander Gabert <pappy@gentoo.org> glibc-2.3.2-r1.ebuild:
  hppa building fails, linuxthreads/sysdeps/hppa/pt-machine.h is missing proper
  setup of pthread_descr

  10 Aug 2003; Joshua Kinard <kumba@gentoo.org> glibc-2.3.2-r1.ebuild:
  Moved to stable on mips.  Been using it for ages w/ no problems.

  10 Aug 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r2.ebuild,
  glibc-2.3.2-r3.ebuild, files/fix-sysctl_h.patch, files/test-sysctl_h.c:
  Add test to detect broken headers in (user land) in 2.5.68 and later.

  31 Jul 2003; <matt@gentoo.org> glibc-2.3.2-r1.ebuild, glibc-2.3.2-r2.ebuild,
  glibc-2.3.2-r3.ebuild:
  Removed warning from 2.3.2 ebuilds regarding
  sandbox and -fstack-protector.  This was only
  a problem with 2.3.1.

  29 Jul 2003; Alex Veber <coronalvr@gentoo.org> glibc-2.3.2-r1.ebuild:
  removed the winex block

  28 Jul 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r3.ebuild:
  Do not install librt.so linker script anymore, as librt.so.1 breaks things
  with librt.so as a script.

*glibc-2.3.2-r3 (23 Jul 2003)

  23 Jul 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r3.ebuild:
  Update CVS snapshot, as well as NPTL version to 0.55.  Note that this
  needs gcc-3.3-r1 and latest binutils (2.14.90.4+) to build with NPTL
  support.

  23 Jul 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r1.ebuild,
  glibc-2.3.2-r2.ebuild:
  From Kumba <kumba@gentoo.org>:

    This is the patch to glibc-2.3.2-r1.ebuild which allows it to build
    on sparc64.  I modified it so sparc and sparc64 can use the -fcall-used-g6
    flag, while sparc64-only gets a few more checks added in.

  18 Jul 2003; Olivier Crete <tester@gentoo.org> glibc-2.3.2-r2.ebuild:
  Removed all traces of multilib, 64bit libs are installed in lib/

  18 Jul 2003; Will Woods <wwoods@gentoo.org> glibc-2.3.2-r1.ebuild:
  Marked stable for alpha

  17 Jul 2003; Alex Veber <coronalvr@gentoo.org> glibc-2.3.2-r1.ebuild:
  set !app-emulation/winex-cvs

  16 Jul 2003; Jay Pfeifer <pfeifer@gentoo.org> glibc-2.3.2-r1.ebuild:
  set stable on x86
  set !app-emulation/winex

  01 Jul 2003; Luca Barbato <lu_zero@gentoo.org> glibc-2.3.2-r1.ebuild:
  set stable on ppc

  14 Jun 2003; Tavis Ormandy <taviso@gentoo.org> glibc-2.3.2-r1.ebuild,
  glibc-2.3.2-r2.ebuild, files/2.3.2/glibc-2.3.2-decc-compaq.patch:
  fixing ccc compatability, minor patch only applied on alpha.

  05 Jun 2003; Christian Birchinger <joker@gentoo.org> glibc-2.3.1-r4.ebuild:
  Replaced sparc64 CFLAGS hack with replace-sparc64-flags from flag-o-matic

  02 Jun 2003; Joshua Kinard <kumba@gentoo.org> glibc-2.3.2-r1.ebuild:
  Added ~mips to KEYWORDS

  18 May 2003; Martin Schlemmer <azarah@gentoo.org> :
  Fix LICENSE to be LGPL-2, bug #19074.  Fix glibc-2.3* < 2.3.2-r2 to depend
  on <gcc-3.3.

  18 May 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r1.ebuild,
  glibc-2.3.2-gcc33-sscanf.patch :
  Downgrade nptl to version 0.28 and add glibc-2.3.2-gcc33-sscanf.patch to
  fix compile errors with gcc-3.3:

    http://sources.redhat.com/ml/libc-alpha/2003-03/msg00052.html

*glibc-2.3.2-r2 (18 May 2003)

  18 May 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r2.ebuild :
  New version.  Update to cvs 20030517 to fix problems with gcc-3.3.  Also
  closes bug #18744 as it adds the en_US.utf8 locale.  Also enable NPTL
  support for i[45]86, ppc and mips, as it should in theory work now.

  14 May 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r{0,1}.ebuild :

  Some MIPS updates from Kumba <kumba@gentoo.org>:
    A few patches only for the MIPS platform.  Descriptions of what they
    do can be found in the patch headers.
    <tuxus@gentoo.org> thx <dragon@gentoo.org> (11 Jan 2003)
    <kumba@gentoo.org> remove tst-rndseek-mips & ulps-mips patches

  06 Apr 2003; Martin Schlemmer <azarah@gentoo.org> :
  Fix all 2.3 ebuild to install timezone data if 'build' in USE, bug #16530.

*glibc-2.3.2-r1 (06 Apr 2003)

  19 Apr 2003; Joshua Brindle <method@gentoo.org> glibc-2.3.1-r4.ebuild:
  give error and die if both sandbox and -fstack-protector are enabled

  06 Apr 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2-r1.ebuild :
  Fix calculation problems in allocate_static_tls that caused a TLS
  enabled app that loads libGL.so to segfault.  Thanks to Gareth Hughes
  from NVidia for pointing me in the right direction.  This patch is
  from glibc CVS.

  30 Mar 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2.ebuild :
  Update NPTL version to 0.29.  As it is not used by many (or I cannot
  imagine it), and with the errno problems, I will rather not bump the
  revision.  Note that latest version is 0.32, but that (as well as 0.30
  and up) needs glibc-2.3.3 snapshot.

*glibc-2.3.1-r4 (21 Mar 2003)

  14 Apr 2003; Joshua Brindle <method@gentoo.org> glibc-2.3.1-r4.ebuild:
  give error and die if both sandbox and -fstack-protector are enabled

  06 Apr 2003; Zach Welch <zwelch@gentoo.org> glibc-2.3.1-r4.ebuild:
  add arm keyword

  06 Apr 2003; Christian Birchinger <joker@gentoo.org> glibc-2.3.1-r4.ebuild:
  Changed replace-flags for sparc

  21 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> glibc-2.3.1-r4.ebuild :
  Security update.

*glibc-2.2.5-r8 (21 Mar 2003)

  06 Apr 2003; Christian Birchinger <joker@gentoo.org> glibc-2.2.5-r8.ebuild:
  Added replace-flags for sparc

  21 Mar 2003; Daniel Ahlberg <aliz@gentoo.org> glibc-2.2.5-r8.ebuild :
  Security update.

  11 Mar 2003; Zach Welch <zwelch@gentoo.org>
  files/2.2.5/glibc-2.2.5-arm-sysdeps-fix.diff:
  fix arm sysdep patch to not require autoconf

  09 March 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1*.ebuild :
  Add patch glibc-2.3.1-typeo_dl-runtime_c.patch to fix issues with Oracle,
  bug #16504, thanks to Tri D. Hoang <tdhoang@ultramain.com> for reporting.

*glibc-2.3.2 (05 March 2003)

  06 Apr 2003; Christian Birchinger <joker@gentoo.org> glibc-2.3.2.ebuild:
  Changed replace-flags for sparc

  11 Mar 2003; Zach Welch <zwelch@gentoo.org> glibc-2.2.5-r7.ebuild,
  glibc-2.3.1-r2.ebuild, glibc-2.3.1-r3.ebuild, glibc-2.3.2.ebuild:
  change sys-kernel/linux-headers to new virtual/os-headers

  05 March 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2.ebuild :
  Update version.  Thanks to Georg M�ller <georgmueller@gmx.net> for notifying
  me.

*glibc-2.3.2_pre1 (24 Feb 2003)

  24 Feb 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.2_pre1.ebuild :
  Update version to official pre1 of 2.3.2.  Add NPTL support .. note that
  this is extremely experimental and does not work with the nvidia drivers
  among things.  Many other tweak and updates.

  20 Feb 2003; Zach Welch <zwelch@gentoo.org> glibc-2.2.5-r7.ebuild :
  Added patches for arm. See patches for description of each.
  Added arm keyword.

  09 Feb 2003; Guy Martin <gmsoft@gentoo.org> :
  Added patches for hppa. See patches for description of each.
  Added hppa to keywords.

  29 Jan 2003; Jack Morganan <jmorgan@gentoo.org> glibc-2.3.1-r3.ebuild :
  Changed ~sparc to sparc

  23 Jan 2003; Jan Seidel <tuxus@gentoo.org> glibc-2.3.1-r3.ebuild :
  Add MIPS inline-syscall-mips patch

  16 Jan 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r3.ebuild :

  Sync patches.

  15 Jan 2003; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r2.ebuild :

  Fix 'locale -a' not listing all locales.  This to Stefan Jones
  <cretin@gentoo.org> for this fix, bug #13240.

  Add MIPS patches, thanks to <tuxus@gentoo.org> and <dragon@gentoo.org>.

  Reload init to fix fsck on reboot ...

  28 Dec 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r3.ebuild :

  Always add --with-headers=${ROOT}usr/include as option to ./configure, as
  linux-headers are usually well tested, and in some cases we get weird
  problems ...

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r2.ebuild :

  Add -freorder-blocks for x86 (commented).  Add Method's replace-flags for
  sparc support.

  13 Dec 2002; Mark Guertin <gerk@gentoo.org> glibc-2.3.1-r2.ebuild :
  
  Marked stable for ppc

  10 Dec 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r2.ebuild :
  
  Mark as stable for x86.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> :

  Changed sparc ~sparc keywords
 
*glibc-2.3.1-r2 (7 Nov 2002)

  17 Nov 2002; Stefan Jones <cretin@gentoo.org> glibc-2.3.1-r2.ebuild :

  Small patch "prelinkfix" which fixes rare error with prelinking and
  preloading some executables. Patch taken from glibc CVS.
  http://sources.redhat.com/ml/libc-alpha/2002-11/msg00151.html

  16 Nov 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r2.ebuild :

  Fix type-o that caused manpages not installing (bug #10645).
  Update to use epatch.

  16 Nov 2002: Stefan Jones <cretin@gentoo.org> glibc-2.3.1-r2.ebuild :
  Changed --with-header to --with-headers to fix fake configure option.

  10 Nov 2002: Stefan Jones <cretin@gentoo.org> glibc-2.3.1-r2.ebuild :

  Made sparc64's always use the system linux headers instead of the kernel 
  headers. This fixes the 64bit sparc compile errors, see bug #10470.
  
  7 Nov 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r2.ebuild :

  Second try at ctype-compat.patch.  Add stack_end-compat patch for missing
  libc_stack_end symbold in linker.

  30 Oct 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r1.ebuild :

  One more compat issue which breaks sun-jdk-1.3.1.  See bug #8766 for more
  info, and also:

    http://sources.redhat.com/ml/libc-alpha/2002-04/msg00143.html

  Thanks to Jan Gutter <jangutter@tuks.co.za> for reporting it.  Added
  libc_wait-compat.patch as fix.

*glibc-2.3.1-r1 (26 Oct 2002)

  16 Nov 2002: Stefan Jones <cretin@gentoo.org> glibc-2.3.1-r1.ebuild :
  Changed --with-header to --with-headers to fix fake configure option.
  
  26 Oct 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r1.ebuild :

  Add the ctype-compat.patch to fix unresolved symbols in old static binaries
  and libraries.  See bug #8766, #9586 and:

    http://lists.debian.org/debian-glibc/2002/debian-glibc-200210/msg00093.html

  We should think about remoing it in the future after things have settled.

*glibc-2.2.5-r7 (13 Oct 2002)

  16 Nov 2002: Stefan Jones <cretin@gentoo.org> glibc-2.2.5-r7.ebuild :
  Changed --with-header to --with-headers to fix fake configure option.
  
  14 Nov 2002; Mark Guertin <gerk@gentoo.org> glibc-2.2.5-r7.ebuild :
  backed out semctl patches for ppc, they cause problems with mozilla builds

  29 Oct 2002; Jon Nall <nall@gentoo.org> glibc-2.2.5-r7.ebuild :

  Added sqrtl patch for ppc. This closes bug #9796. Also added semctl
  patch for ppc.

  29 Oct 2002; Seemant Kulleen <seemant@gentoo.org> glibc-2.2.5-r7.ebuild :

  Added semctl patch for sparc.  Thanks to nall <nall@gentoo.org> for
  finding this at:
  http://sources.redhat.com/ml/libc-hacker/2002-04/msg00071.html

  13 Oct 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r7.ebuild :

  Some cleanups.  Tidy ebuild.  Move all patches to ${FILESDIR}/${PV/.
  Remove old patches.

  Add patches to fix warnings with gcc-3.2:

    http://archive.linuxfromscratch.org/mail-archives/lfs-dev/2002/08/0228.html

  13 Oct 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r7.ebuild :

  Fix stupid depend screwup I made when I merged in fixes from glibc-2.3.

  11 Oct 2002; Seemant Kulleen <seemant@gentoo.org> glibc-2.2.5-r7.ebuild
  files/glibc-2.2.5-sparc-misc.diff files/glibc-2.2.5-sparc64-fixups.diff :

  Added patches from debian's patch set to fix miscellaneous issues on sparc
  and sparc64.  One indication of the hassle with sparc64 was the mozilla
  compile failure.  That _should_ be sorted out now.

  09 Oct 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r7.ebuild,
                                                    glibc-2.2.5-divdi3.diff :

  Add divdi3 patches for PPC, thanks to nall <nall@themountaingoats.net>.

*glibc-2.2.5-r8 (27 Sep 2002)
  
  27 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> :
  Moved -r7 to -r8 to give room for updated -r6 release.

*glibc-2.2.5-r7 (03 Aug 2002)

  27 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> :
  Bumped -r6 to -r7 to include fix for sunrpc overflow.  

  03 Aug 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r7.ebuild :

  Add the patch for fixing the segfaults in mutt, etc while sandbox is
  running back in.  Seems the relocation problems was also a cause of
  the atexit() bug, and fixed in gcc-2.95.3-r7 and later.

   http://sources.redhat.com/ml/bug-glibc/2002-04/msg00025.html
   http://bugs.gentoo.org/show_bug.cgi?id=501

*glibc-2.2.5-r6 (02 Aug 2002)

  22 Sep 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r6.ebuild :

  Fix pic support, thanks to Christopher Horler <chris@horler.demon.co.uk>.
  This closes bug #8178.

  08 Sep 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r6.ebuild :

  Add alpha related patches thanks to Bjoern Brauel <bjoern@tuxnetwork.de>.

  02 Aug 2002; Daniel Ahlberg <aliz@gentoo.org>
  Added patch for sunrpc overflow.

*glibc-2.2.5-r5 (14 Jul 2002)

  15 Jul 2002; Mark Guertin <gerk@gentoo.org>
  Added ppc to keywords

  14 Jul 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.2.5-r5.ebuild :

  A buffer overflow vulnerability exists in multiple implementations of DNS
  resolver libraries.  This affects glibc-2.2.5 and earlier.   See bug #4923
  and:

    http://www.cert.org/advisories/CA-2002-19.html

  for details.

  Seems gcc-3.1.1 is even more strict than 3.1 .. patch glibc for gcc-3.1.1.
  This is also correct for previous gcc versions.

*glibc-2.2.5-r4 (5 June 2002)

  5 June 2002; Bart Verwilst <verwilst@gentoo.org> glibc-2.2.5-r4.ebuild :

  Added gcc3.1/binutils 2.12 patch, wich solves the nvidia-glx package, 
  amongst others... (__divdi3 stuff)
  Update: Filtered -malign-double out of the ebuild as well now, because 
  it b0rks glibc.
  

  13 Apr 2002; M.Schlemmer <azarah@gentoo.org> glibc-2.2.5-r2.ebuild :

  Try to fix the pkg_postinst() and /etc/localtime issue sanely.  It just
  newking my /etc/localtime with a symlink was starting to get irritating.

*glibc-2.2.5-r3 (03 Apr 2002)

  03 Apr 2002; Geert Bevin <gbevin@gentoo.org> glibc-2.2.5-r3.ebuild,
  files/digest-glibc-2.2.5-r3, files/glibc-2.2.5-sandbox.diff :
  
  Added patch that fixes an ld.so.preload bug which made calls after freopen()
  segfault. This now works correctly. This closes bug #501
   
*glibc-2.2.5-r1 (15 Feb 2002)

  15 Feb 2002; Daniel Robbins <drobbins@gentoo.org>: Added tweaked version of
  Brandon Low's patch that ensures that library symlinks are installed *after*
  (not before) the actual libraries are installed.  This should fix glibc merge
  deaths, but we need a generic solution to solve this problem.  This should
  close bug #695.  Filing a new bug for adding this functionality to Portage.

*glibc-2.2.5 (10 Feb 2002)

  10 Feb 2002; Daniel Robbins <drobbins@gentoo.org>:  New glibc release for testing
  only.  Masked.

*glibc-2.2.4-r9 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.