-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes5.8.2
1307 lines (1228 loc) · 52.6 KB
/
Changes5.8.2
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
Please note: This file provides a complete, temporally ordered log of
changes that went into every version of Perl. If you'd like more
detailed information, please consult the comments in the individual
patches posted to the perl5-porters mailing list. Patches for each
individual change may also be obtained through ftp and rsync--see
pod/perlhack.pod for the details.
For information on what's new in this release, see pod/perldelta.pod.
[The "CAST AND CREW" list has been moved to AUTHORS.]
NOTE: Each change entry shows the change number; who checked it into the
repository; when; description of the change; which branch the change
happened in; and the affected files. The file lists have a short symbolic
indicator:
! modified
+ added
- deleted
+> branched (from elsewhere)
!> merged changes (from elsewhere)
The Message-Ids in the change entries refer to the email messages sent
to the perl5-porters mailing list. You can retrieve the messages for
example from http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/
--------------
Version v5.8.2 Maintenance release working toward v5.8.2
--------------
____________________________________________________________________________
____________________________________________________________________________
[ 21670] By: nicholas on 2003/11/05 19:58:51
Log: Break a leg.
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21669] By: nicholas on 2003/11/05 19:28:41
Log: Update changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21668] By: nicholas on 2003/11/05 19:26:49
Log: Integrate:
[ 21667]
From: Craig Berry <[email protected]>
Subject: Opcode.xs/RC2 compile nit on VMS
Date: Wed, 05 Nov 2003 12:16:34 -0600
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> ext/Opcode/Opcode.xs
____________________________________________________________________________
[ 21666] By: nicholas on 2003/11/05 19:01:16
Log: Note planned release date.
Branch: maint-5.8/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 21665] By: nicholas on 2003/11/05 19:00:29
Log: Integrate:
[ 21661]
Subject: [PATCH pod/perlhist.pod] Mention 5.8.2-RC2
From: Abigail <[email protected]>
Date: Tue, 4 Nov 2003 10:40:57 +0100
Message-Id: <[email protected]>
Branch: maint-5.8/perl
!> pod/perlhist.pod
____________________________________________________________________________
[ 21659] By: nicholas on 2003/11/05 08:18:49
Log: Integrate:
[ 21656]
Subject: Re: [[email protected]: your CPAN page on EBCDIC]
From: [email protected]
Date: Tue, 4 Nov 2003 10:00:07 -0500
Message-ID: <OF9A22A404.A32A5C26-ON85256DD4.00522E92-85256DD4.005268A4@factset.com>
Branch: maint-5.8/perl
!> pod/perlebcdic.pod
____________________________________________________________________________
[ 21658] By: nicholas on 2003/11/05 08:12:08
Log: Subject: [PATCH 5.8.2] reentr.pl is not defining _srandom_struct
From: Jan Dubois <[email protected]>
Date: Tue, 04 Nov 2003 17:16:00 -0800
Message-ID: <[email protected]>
Branch: maint-5.8/perl
! reentr.h reentr.pl
____________________________________________________________________________
[ 21654] By: nicholas on 2003/11/04 22:10:35
Log: Subject: Re: [PATCH 5.8.1] make reentr.[ch] compatible with 5.8.0 again
From: Jan Dubois <[email protected]>
Date: Mon, 03 Nov 2003 00:58:21 -0800
Message-ID: <[email protected]>
Branch: maint-5.8/perl
! reentr.inc reentr.pl
____________________________________________________________________________
[ 21653] By: nicholas on 2003/11/04 21:54:48
Log: Integrate:
[ 21651]
Subject: Re: [PATCH 5.8.2 @21574] OS/2 build
From: Ilya Zakharevich <[email protected]>
Date: Mon, 3 Nov 2003 20:20:44 -0800
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> os2/Makefile.SHs
____________________________________________________________________________
[ 21649] By: nicholas on 2003/11/03 20:43:47
Log: Integrate:
[ 21646]
Subject: Cwd.xs: off-by-one buffer overflow in realpath()
From: Casey West <[email protected]>
Date: Mon, 3 Nov 2003 10:11:43 -0500
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> ext/Cwd/Cwd.xs
____________________________________________________________________________
[ 21648] By: nicholas on 2003/11/03 20:26:54
Log: Disarm RC2
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21643] By: nicholas on 2003/11/03 07:18:47
Log: I bet yes
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21642] By: nicholas on 2003/11/03 07:18:04
Log: space should be tab for lib/I18N/LangTags/t/02decency.t
Branch: maint-5.8/perl
! MANIFEST
____________________________________________________________________________
[ 21641] By: nicholas on 2003/11/03 07:13:20
Log: Update changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21640] By: nicholas on 2003/11/03 07:11:34
Log: Integrate:
[ 21638]
s/new_hash/rehash/g (Stas suggested a better name)
[ 21639]
Stas would prefer not to have MOD_PERL defines in perl.
Branch: maint-5.8/perl
! embedvar.h
!> hv.c hv.h intrpvar.h lib/Hash/Util.pm perl.c perlapi.h sv.c
!> universal.c util.c
____________________________________________________________________________
[ 21637] By: nicholas on 2003/11/02 23:07:41
Log: Update our sample config with one generated for 5.8.2
Branch: maint-5.8/perl
! Porting/config.sh Porting/config_H
____________________________________________________________________________
[ 21636] By: nicholas on 2003/11/02 22:47:37
Log: Update changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21635] By: nicholas on 2003/11/02 22:45:22
Log: Integrate:
[ 21634]
Provide Internals::new_hash_seed to return PL_new_hash_seed, and
make Hash::Util::hash_seed use this.
Branch: maint-5.8/perl
!> lib/Hash/Util.pm universal.c
____________________________________________________________________________
[ 21633] By: nicholas on 2003/11/02 22:22:34
Log: Integrate:
[ 21588]
Subject: [PATCH] Devel::PPPort and scan_bin
From: "Marcus Holland-Moritz" <[email protected]>
Date: Wed, 29 Oct 2003 22:53:43 +0100
Message-ID: <037201c39e67$1faa9940$0c2f1fac@R2D2>
Branch: maint-5.8/perl
!> ext/Devel/PPPort/PPPort.pm
____________________________________________________________________________
[ 21632] By: nicholas on 2003/11/02 21:56:48
Log: Integrate:
[ 21587]
Subject: [PATCH] change p4d2p to deal with new style diff2 output
From: Jan Dubois <[email protected]>
Date: Thu, 30 Oct 2003 18:43:08 -0800
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> Porting/p4d2p
____________________________________________________________________________
[ 21631] By: nicholas on 2003/11/02 21:55:32
Log: Integrate:
[ 21614]
Subject: Re: [PATCH bleadperl] (was Re: Is this brokenness in $< $( $> & $) ?)
From: Rick Delaney <[email protected]>
Date: Mon, 27 Oct 2003 16:24:16 -0500
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> pp_hot.c
____________________________________________________________________________
[ 21630] By: nicholas on 2003/11/02 21:28:01
Log:
Fix for [perl #24347] segfault with Safe
The empty %INC created for safe compartements was freed
too early.
Branch: maint-5.8/perl
!> ext/Opcode/Opcode.xs
____________________________________________________________________________
[ 21629] By: nicholas on 2003/11/02 21:13:40
Log: Integrate:
[ 21599]
whoops, typo
[ 21616]
Subject: DOCPATCH: does STORE need to return anything and if so what?
From: david nicol <[email protected]>
Date: 26 Oct 2003 22:34:04 -0600
Message-Id: <[email protected]>
[ 21625]
Mention perl 5.8.2-RC1 in perlhist, as spotted by Abigail.
[ 21627]
Subject: [PATCH pod/perlguts.pod] update embed.pl description
From: "Marcus Holland-Moritz" <[email protected]>
Date: Sun, 2 Nov 2003 22:24:28 +0100
Message-ID: <007b01c3a187$b34c6110$0c2f1fac@R2D2>
Branch: maint-5.8/perl
!> ext/threads/shared/shared.xs pod/perlguts.pod pod/perlhist.pod
!> pod/perltie.pod
____________________________________________________________________________
[ 21626] By: nicholas on 2003/11/02 20:27:25
Log: Integrate:
[ 21615]
Subject: [PATCH] DB_File 1.807
From: "Paul Marquess" <[email protected]>
Date: Sat, 1 Nov 2003 13:50:12 -0000
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> ext/DB_File/Changes ext/DB_File/DB_File.pm
!> ext/DB_File/DB_File.xs ext/DB_File/dbinfo
!> ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
____________________________________________________________________________
[ 21624] By: nicholas on 2003/11/02 20:16:07
Log: Tweaks (from Jan Dubois, Petras Kudaras and Slaven Rezic)
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21623] By: nicholas on 2003/11/02 19:52:04
Log: Integrate:
[ 21617]
Portability nit for MinGW 3.
Subject: MinGW-3.1.0-1 _CRTIMP definition preempting win32.h's
From: Greg Matheson <[email protected]>
Date: Thu, 30 Oct 2003 14:11:58 +0800
Message-ID: <20031030141158.A11772@ms>
(actual patch by Abe Timmerman)
[ 21619]
Quoted-printable is evil.
Branch: maint-5.8/perl
!> win32/win32.h
____________________________________________________________________________
[ 21622] By: nicholas on 2003/11/02 18:50:41
Log: Integrate:
[ 21620]
Subject: [PATCH 5.8.2 @21574] OS/2 build
From: Ilya Zakharevich <[email protected]>
Date: Wed, 29 Oct 2003 14:00:18 -0800
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> ext/DynaLoader/DynaLoader_pm.PL makedef.pl os2/Makefile.SHs
!> os2/OS2/REXX/REXX.xs os2/os2.c os2/os2_base.t os2/os2ish.h
!> os2/perl2cmd.pl perlio.c
____________________________________________________________________________
[ 21621] By: nicholas on 2003/11/02 18:29:05
Log: Integrate:
[ 21618]
Stas spotted a missed s//new_/ for the hash seed renaming games
Branch: maint-5.8/perl
!> perl.c
____________________________________________________________________________
[ 21613] By: nicholas on 2003/11/01 16:52:03
Log: @INC caching of failures was backed out
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21612] By: nicholas on 2003/11/01 16:32:46
Log: Integrate:
[ 21611]
D'oh! t/op/hash.t wasn't in the MANIFEST. Rafael spotted this
Branch: maint-5.8/perl
!> MANIFEST
____________________________________________________________________________
[ 21610] By: nicholas on 2003/11/01 16:30:14
Log: Integrate:
[ 21589]
Subject: [5.8.x segfault + patch] chicken&egg segfault in -Dm -Mthreads
From: Stas Bekman <[email protected]>
Date: Wed, 29 Oct 2003 15:15:15 -0800
Message-ID: <[email protected]>
(enclosed in a #ifdef DEBUGGING)
Branch: maint-5.8/perl
!> sv.c
____________________________________________________________________________
[ 21609] By: nicholas on 2003/11/01 16:14:51
Log: Integrate:
[ 21595]
Prevent the installation of makefiles that can be found
under lib/.
Branch: maint-5.8/perl
!> installperl
____________________________________________________________________________
[ 21608] By: nicholas on 2003/11/01 15:35:16
Log: Integrate:
[ 21607]
mod_perl2 will require access to the Plan C hashing function.
Branch: maint-5.8/perl
!> hv.h
____________________________________________________________________________
[ 21606] By: nicholas on 2003/11/01 14:58:31
Log: Integrate:
[ 21591]
Subject: [PATCH] Off-by-one error in regcomp.c
From: Slaven Rezic <[email protected]>
Date: Fri, 31 Oct 2003 12:16:11 +0000
Message-Id: <[email protected]>
[ 21593]
Test nit ; goes with change 21591
Branch: maint-5.8/perl
!> regcomp.c t/lib/warnings/regcomp t/op/regmesg.t
____________________________________________________________________________
[ 21605] By: nicholas on 2003/11/01 14:38:22
Log: Integrate:
[ 21604]
Add Internals::HvREHASH to expose the rehashing flag
t/op/hash.t tests that pathological data triggers rehashing
Branch: maint-5.8/perl
+> t/op/hash.t
!> universal.c
____________________________________________________________________________
[ 21603] By: nicholas on 2003/11/01 13:03:55
Log: Integrate:
[ 21598]
[perl #24368] seg faults when deleting keys of shared hash refs
Ensure that the shared_sv get magic of the element being deleted
is called. Also, avoid posible memory leaks by wrapping all shared
context sections with ENTER/SAVETMPS
Branch: maint-5.8/perl
!> ext/threads/shared/shared.xs
____________________________________________________________________________
[ 21602] By: nicholas on 2003/11/01 12:45:20
Log: Forgot to manually merge in the diffs rejected from 21601
due to LF/CRLF differences.
Branch: maint-5.8/perl
! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 21601] By: nicholas on 2003/11/01 12:34:09
Log: Subject: [PATCH 5.8.1] make reentr.[ch] compatible with 5.8.0 again
From: Jan Dubois <[email protected]>
Date: Thu, 30 Oct 2003 16:58:05 -0800
Message-ID: <[email protected]>
Branch: maint-5.8/perl
+ reentr.inc
! MANIFEST installperl perl.h reentr.c reentr.h reentr.pl
! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 21600] By: nicholas on 2003/11/01 11:00:46
Log: Integrate:
[ 21590]
Subject: [patch pod/perlfunc.pod] separate two unrelated notes in require
From: Stas Bekman <[email protected]>
Date: Wed, 29 Oct 2003 16:47:24 -0800
Message-ID: <[email protected]>
[ 21592]
Subject: [PATCH] Document PERL_DL_NONLAZY
From: Gisle Aas <[email protected]>
Date: 31 Oct 2003 03:13:03 -0800
Message-ID: <[email protected]>
[ 21596]
Subject: Re: [perl #24367] [PATCH] configure flag -Dextras="HTML::Parser" doesn't seem to do anything
From: Andy Dougherty <[email protected]>
Date: Fri, 31 Oct 2003 15:32:35 -0500 (EST)
Message-ID: <[email protected]>
(plus POD link fixes)
Branch: maint-5.8/perl
!> INSTALL pod/perlfunc.pod pod/perlrun.pod
____________________________________________________________________________
[ 21597] By: nicholas on 2003/10/31 21:03:47
Log: Back out 21449 (MakeMaker SIGN)
Schwern will integrate and make a CPAN release first
Branch: maint-5.8/perl
! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
! lib/ExtUtils/MakeMaker.pm pod/perldelta.pod
____________________________________________________________________________
[ 21594] By: nicholas on 2003/10/31 20:28:11
Log: Integrate (as TODO test):
[ 21565]
Subject: [PATCH t/comp/proto.t] Test (5.9.x)
From: Abigail <[email protected]>
Date: Mon, 27 Oct 2003 14:50:24 +0100
Message-ID: <[email protected]>
Branch: maint-5.8/perl
! t/comp/proto.t
____________________________________________________________________________
[ 21585] By: nicholas on 2003/10/30 22:54:30
Log: Integrate:
[ 21583]
Rewrite to correctly use test.pl
Date: Thu, 30 Oct 2003 15:51:03 -0800
From: Michael G Schwern <[email protected]>
Subject: Re: Fix for the orange lion bug - aka empty sub bug
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> t/op/sub.t
____________________________________________________________________________
[ 21584] By: nicholas on 2003/10/30 22:40:29
Log: Integrate:
[ 21582]
Date: Thu, 30 Oct 2003 22:01:35 +0000
Subject: Fix for the orange lion bug - aka empty sub bug
From: Arthur Bergman <[email protected]>
Message-Id: <[email protected]>
Branch: maint-5.8/perl
+> t/op/sub.t
!> MANIFEST op.c
____________________________________________________________________________
[ 21581] By: nicholas on 2003/10/30 20:16:52
Log: Integrate:
[ 21580]
14 is the chain length for attack. From
Message-ID: <[email protected]>
Subject: Re: 5.8.2-RC1 and mp2
Date: Thu, 30 Oct 2003 15:41:17 -0500
From: Mark Jason Dominus <[email protected]>
and
From: Scott A Crosby <[email protected]>
Subject: Re: 5.8.2-RC1 and mp2
Date: 30 Oct 2003 14:08:06 -0600
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> hv.c
____________________________________________________________________________
[ 21579] By: nicholas on 2003/10/30 19:24:06
Log: Revert part of 21497 (integration of 21418:
Subject: [PATCH] Fixing UNIVERSAL.pm's bit of unpleasantness)
and 21496 (caching of require failures in %INC)
Reconsider these for 5.8.3
Branch: maint-5.8/perl
! lib/UNIVERSAL.pm pp_ctl.c t/comp/require.t t/op/universal.t
____________________________________________________________________________
[ 21578] By: nicholas on 2003/10/29 21:44:55
Log: Suggested changes from Chip
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21577] By: nicholas on 2003/10/29 18:42:35
Log: Integrate:
[ 21575]
Move a fcntl() example in perlfunc at a more proper place,
as suggested by :
Subject: [perl #24334] ioctl/fcntl doc confusion
From: "[email protected] (via RT)" <[email protected]>
Date: 28 Oct 2003 13:37:49 -0000
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> pod/perlfunc.pod
____________________________________________________________________________
[ 21576] By: nicholas on 2003/10/29 18:02:31
Log: Date: Wed, 29 Oct 2003 07:39:30 +0800
From: Autrijus Tang <[email protected]>
Subject: Re: 5.8.2 perldelta
Message-ID: <[email protected]>
Date: Tue, 28 Oct 2003 21:35:23 -0800
From: Yitzchak Scott-Thoennes <[email protected]>
Subject: Re: 5.8.2 perldelta
Message-ID: <[email protected]>
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21574] By: nicholas on 2003/10/28 22:19:10
Log: Ronald J Kimball correctly spotted that I forgot the timezone.
GMT. What else?
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21573] By: nicholas on 2003/10/28 21:43:07
Log: Improvements from Dave Mitchell, Tom Christiansen and
Rafael Garcia-Suarez
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21572] By: nicholas on 2003/10/28 21:15:11
Log: At last! A perldelta
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21571] By: nicholas on 2003/10/28 19:38:08
Log: Integrate:
[ 21567]
Upgrade to Time::HiRes 1.52.
Branch: maint-5.8/perl
!> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
!> ext/Time/HiRes/Makefile.PL ext/Time/HiRes/t/HiRes.t
____________________________________________________________________________
[ 21570] By: nicholas on 2003/10/28 19:37:44
Log: Changes was in a mess, with some entries in triplicate.
("This is your receipt for your husband...
and this is my receipt for your receipt")
Branch: maint-5.8/perl
! Changes
____________________________________________________________________________
[ 21569] By: nicholas on 2003/10/28 18:36:05
Log: Integrate:
[ 21564]
Fix more shared threads leaks: add SAVETMPS to the second branch
of sharedsv_scalar_store().
Branch: maint-5.8/perl
!> ext/threads/shared/shared.xs
____________________________________________________________________________
[ 21568] By: nicholas on 2003/10/28 18:20:54
Log: Drop the "RC1"
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21562] By: nicholas on 2003/10/27 18:06:15
Log: Watch the wheels fall off, the springs fly out and the cogs jam...
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21561] By: nicholas on 2003/10/27 18:02:11
Log: Integrate:
[ 21560]
Record the escape^Wrelease of 5.9.0
Branch: maint-5.8/perl
!> pod/perlhist.pod
____________________________________________________________________________
[ 21559] By: nicholas on 2003/10/27 17:35:53
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21558] By: nicholas on 2003/10/27 17:29:16
Log: Forgot to submit the updated table of contents
Branch: maint-5.8/perl
! pod/perltoc.pod
____________________________________________________________________________
[ 21557] By: nicholas on 2003/10/27 17:24:06
Log: run pod/buildtoc
Branch: maint-5.8/perl
! MANIFEST win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 21556] By: nicholas on 2003/10/27 17:16:57
Log: Cargo cult change of 5.8.1 to 5.8.2
Branch: maint-5.8/perl
! Cross/README NetWare/Makefile Porting/config.sh
! Porting/config_H cygwin/perlld.in epoc/createpkg.pl
! patchlevel.h plan9/config.plan9 vos/build.cm
! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
! vos/config.ga.h vos/install_perl.cm win32/Makefile
! win32/config_H.bc win32/config_H.gc win32/config_H.vc
! win32/config_H.vc64 win32/makefile.mk wince/Makefile.ce
____________________________________________________________________________
[ 21555] By: nicholas on 2003/10/27 16:28:54
Log: Integrate:
[ 21554]
Subject: Re: DBD::Sybase and Sybase::CTlib build problems w/ 5.8.1, Solaris, gcc
From: Alan Burlison <[email protected]>
Date: Tue, 21 Oct 2003 15:00:58 +0100
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> hints/solaris_2.sh
____________________________________________________________________________
[ 21553] By: nicholas on 2003/10/27 14:09:05
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21552] By: nicholas on 2003/10/27 14:07:08
Log: Changes file was in the wrong order (as noticed by Chip)
Branch: maint-5.8/perl
! Changes
____________________________________________________________________________
[ 21551] By: nicholas on 2003/10/27 14:05:44
Log: Integrate:
[ 21549]
Sync with Unicode::Collate 0.30
[ 21550]
Sync with Unicode::Normalize 0.25
Branch: maint-5.8/perl
+> ext/Unicode/Normalize/t/fcdc.t ext/Unicode/Normalize/t/form.t
+> ext/Unicode/Normalize/t/proto.t
+> ext/Unicode/Normalize/t/split.t
+> lib/Unicode/Collate/t/hangtype.t
+> lib/Unicode/Collate/t/normal.t lib/Unicode/Collate/t/trailwt.t
+> lib/Unicode/Collate/t/variable.t
+> lib/Unicode/Collate/t/version.t
!> MANIFEST ext/Unicode/Normalize/Changes
!> ext/Unicode/Normalize/Makefile.PL
!> ext/Unicode/Normalize/Normalize.pm
!> ext/Unicode/Normalize/Normalize.xs
!> ext/Unicode/Normalize/README lib/Unicode/Collate.pm
!> lib/Unicode/Collate/Changes lib/Unicode/Collate/README
!> lib/Unicode/Collate/t/contract.t
!> lib/Unicode/Collate/t/hangul.t lib/Unicode/Collate/t/index.t
!> lib/Unicode/Collate/t/test.t
____________________________________________________________________________
[ 21547] By: nicholas on 2003/10/27 10:04:34
Log: Integrate:
[ 21544]
don't complain of podless .pm files that have a separate .pod file
Branch: maint-5.8/perl
!> pod/buildtoc
____________________________________________________________________________
[ 21541] By: nicholas on 2003/10/26 20:51:55
Log: Integrate:
[ 21535]
Return 21533 (with modifications) having found the problem
(where 21533 is
Plan C rough edge smoothing. Criteria for a hash split is now
the earlier of "more keys than buckets" (the old test) or
linked list too long. Rehash is triggered after a split if the
longest linked list is too long.)
Branch: maint-5.8/perl
! hv.c
!> hv.h
____________________________________________________________________________
[ 21537] By: nicholas on 2003/10/25 23:05:21
Log: Integrate:
[ 21536]
show the rehash flags in dumps
Branch: maint-5.8/perl
!> dump.c
____________________________________________________________________________
[ 21531] By: nicholas on 2003/10/24 19:15:02
Log: Integrate:
[ 21530]
(The typo corrrection in blead)
Branch: maint-5.8/perl
!> ext/threads/shared/shared.xs
____________________________________________________________________________
[ 21529] By: nicholas on 2003/10/23 19:39:41
Log: Integrate:
[ 21526]
From: Jan Dubois <[email protected]>
Subject: [PATCH] Update Pod::Perldoc from 3.10 to 3.11
Date: Wed, 22 Oct 2003 20:17:07 -0700
Message-ID: <[email protected]>
From: Jan Dubois <[email protected]>
Subject: [PATCH] Update I18N::LangTags from 0.28 to 0.29
Date: Wed, 22 Oct 2003 20:26:56 -0700
Message-ID: <[email protected]>
[ 21528]
When it says "add", then, like, you have to p4 add it. D'oh!
(missed the new file in "Update I18N::LangTags from 0.28 to 0.29")
Branch: maint-5.8/perl
+> lib/I18N/LangTags/t/02decency.t
!> MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
!> lib/I18N/LangTags/List.pm lib/I18N/LangTags/README
!> lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm pod/perldoc.pod
!> utils/perldoc.PL
____________________________________________________________________________
[ 21525] By: nicholas on 2003/10/23 18:51:56
Log: Integrate:
[ 21523]
Subject: [PATCH] utime documentation
From: Gisle Aas <[email protected]>
Date: 23 Oct 2003 05:33:43 -0700
Message-Id: <[email protected]>
Branch: maint-5.8/perl
!> pod/perlfunc.pod
____________________________________________________________________________
[ 21524] By: nicholas on 2003/10/23 18:38:02
Log: Integrate:
[ 21522]
Subject: [PATCH] dup2() not going through PerlLIO abstraction layer
From: Jan Dubois <[email protected]>
Date: Wed, 22 Oct 2003 20:33:54 -0700
Message-Id: <[email protected]>
Branch: maint-5.8/perl
!> doio.c
____________________________________________________________________________
[ 21521] By: nicholas on 2003/10/22 20:30:05
Log: Integrate:
[ 21520]
patch created by Casey West from:
Subject: CPAN module problems
From: Edward Moy <[email protected]>
Date: Fri, 10 Oct 2003 17:42:06 -0700
Message-Id: <[email protected]>
(change ld value in hints file)
Branch: maint-5.8/perl
!> hints/darwin.sh
____________________________________________________________________________
[ 21519] By: nicholas on 2003/10/22 19:11:43
Log: Integrate:
[ 21514]
Subject: [PATCH @20458] embedding perl
From: Radu Greab <[email protected]>
Date: Tue, 05 Aug 2003 20:57:15 +0300 (EEST)
Message-Id: <[email protected]>
Branch: maint-5.8/perl
! perl.c
!> hv.c intrpvar.h pod/perlembed.pod pod/perlintern.pod sv.c
____________________________________________________________________________
[ 21518] By: nicholas on 2003/10/22 18:32:17
Log: Integrate:
[ 21515]
Add a test.taintwarn makefile target,
to run the whole test suite with the -t switch.
Branch: maint-5.8/perl
!> Makefile.SH pod/perlhack.pod t/TEST
____________________________________________________________________________
[ 21517] By: nicholas on 2003/10/22 17:53:48
Log: Integrate:
[ 21513]
Fix doc bug #23890, as suggested by Himanshu Garg :
in perltoot, $him->fullname should be $him->fullname->as_string
when passed to printf.
[ 21516]
Small email update in AUTHORS.
Branch: maint-5.8/perl
!> AUTHORS pod/perltoot.pod
____________________________________________________________________________
[ 21512] By: nicholas on 2003/10/21 18:58:30
Log: Integrate:
[ 21372]
Sync with libnet 1.17
Branch: maint-5.8/perl
!> lib/Net/ChangeLog.libnet lib/Net/Domain.pm lib/Net/FTP.pm
____________________________________________________________________________
[ 21511] By: nicholas on 2003/10/21 18:31:19
Log:
Two OS/2 portability patches from Ilya.
Subject: [PATCH 5.8.1 @21211] sockets broken on OS/2
From: Ilya Zakharevich <[email protected]>
Date: Thu, 25 Sep 2003 12:09:11 -0700
Message-ID: <[email protected]>
Subject: Re: [PATCH 5.8.1 @21379] tmpfile() broken on OS/2
From: Ilya Zakharevich <[email protected]>
Date: Thu, 25 Sep 2003 19:50:45 -0700
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> doio.c os2/os2ish.h perl.h perlio.c pp_sys.c
____________________________________________________________________________
[ 21508] By: nicholas on 2003/10/20 22:06:05
Log: Integrate:
[ 21506]
Subject: [PATCH] add some missing defines to Devel::PPPort
From: "Marcus Holland-Moritz" <[email protected]>
Date: Mon, 20 Oct 2003 20:14:19 +0200
Message-ID: <03a301c39735$fb7cb220$0c2f1fac@R2D2>
Branch: maint-5.8/perl
!> ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
____________________________________________________________________________
[ 21507] By: nicholas on 2003/10/20 20:14:57
Log: Integrate:
[ 21505]
Subject: Re: [perl #24225] [5.8.1] segfault in binmode STDOUT, ':stdio'; print 1
From: Slaven Rezic <[email protected]>
Date: 19 Oct 2003 17:54:59 +0200
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> perlio.c
____________________________________________________________________________
[ 21504] By: nicholas on 2003/10/20 17:31:11
Log: Integrate:
[ 21503]
Skip the chflags tests in filetest.t on Darwin.
Branch: maint-5.8/perl
!> lib/filetest.t
____________________________________________________________________________
[ 21502] By: nicholas on 2003/10/19 19:49:25
Log: Forgot to run regen.pl when I merged Plan C (already fixed in
the snapshot)
Branch: maint-5.8/perl
! embedvar.h
____________________________________________________________________________
[ 21501] By: nicholas on 2003/10/19 19:37:27
Log: update MAINT level
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21500] By: nicholas on 2003/10/19 19:35:55
Log: Update Changes (submit by hand) - not sure if they're quite in the
tidiest order yet
Branch: maint-5.8/perl
! Changes
____________________________________________________________________________
[ 21499] By: nicholas on 2003/10/19 19:14:43
Log: If you add files you must add them to the MANIFEST
Branch: maint-5.8/perl
! MANIFEST
____________________________________________________________________________
[ 21498] By: nicholas on 2003/10/19 19:08:39
Log: Place the changes for 5.8.1 into their own file; start Changes afresh
for 5.8.2. For reference, 5.8.1 release was change 21377
Branch: maint-5.8/perl
+ Changes5.8.1
! Changes
____________________________________________________________________________
[ 21497] By: nicholas on 2003/10/19 18:50:07
Log: Integrate:
[ 21418]
Subject: [PATCH] Fixing UNIVERSAL.pm's bit of unpleasantness
From: [email protected]
Date: Mon, 6 Oct 2003 13:14:36 -0700
Message-Id: <[email protected]>
[ 21449]
Subject: [PATCH] SIGN => 1 support for MakeMaker
From: Autrijus Tang <[email protected]>
Date: Tue, 14 Oct 2003 18:32:28 +0800
Message-Id: <1066127547.65845.35.camel@localhost>
Branch: maint-5.8/perl
!> lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
!> lib/ExtUtils/MakeMaker.pm lib/UNIVERSAL.pm t/op/universal.t
____________________________________________________________________________
[ 21496] By: nicholas on 2003/10/19 18:31:14
Log: Integrate:
[ 21415]
Subject: [PATCH bleadperl] (was Re: require() does not behave aas documented)
From: Rick Delaney <[email protected]>
Date: Tue, 23 Sep 2003 12:14:52 -0400
Message-ID: <[email protected]>
[ 21427]
Subject: Re: require patch breaks locale
From: Rick Delaney <[email protected]>
Date: Wed, 8 Oct 2003 22:41:55 -0400
Message-Id: <[email protected]>
Branch: maint-5.8/perl
!> pp_ctl.c t/comp/require.t
____________________________________________________________________________
[ 21495] By: nicholas on 2003/10/19 18:13:23
Log: Integrate:
[ 21407]
Subject: [PATCH]Re: The META.yml file in bleadperl
From: Fergal Daly <[email protected]>
Date: Mon, 6 Oct 2003 00:25:29 +0100
Message-Id: <[email protected]>
Plus regeneration of META.yml
Branch: maint-5.8/perl
+ META.yml
!> Porting/makemeta
____________________________________________________________________________
[ 21494] By: nicholas on 2003/10/19 17:55:17
Log: Integrate:
[ 21438]
Subject: Re: [perl #24122] setreuid and friends borked on darwin/osx
From: Slaven Rezic <[email protected]>
Date: 07 Oct 2003 00:04:34 +0200
Message-ID: <[email protected]>
[ 21440]
Subject: [perl #24122] setreuid and friends borked on darwin/osx
From: "[email protected] (via RT)" <[email protected]>
Date: 5 Oct 2003 20:55:56 -0000
Message-ID: <[email protected]>
Branch: maint-5.8/perl
!> hints/darwin.sh mg.c
____________________________________________________________________________
[ 21493] By: nicholas on 2003/10/19 17:35:10
Log: Integrate:
[ 21424]
Subject: Re: Simple @INC hook core dump [PATCH]
From: Gisle Aas <[email protected]>
Date: 08 Oct 2003 04:47:33 -0700
Message-ID: <[email protected]>
[ 21426]
Subject: Re: Simple @INC hook core dump [PATCH]
From: Gisle Aas <[email protected]>
Date: 08 Oct 2003 13:35:28 -0700
Message-Id: <[email protected]>
[ 21452]
Fix bug [perl #24212] : improper error recovery in the
tokenizer after an unknown filetest operator.
Branch: maint-5.8/perl
!> pp_ctl.c t/comp/parser.t t/op/inccode.t toke.c
____________________________________________________________________________
[ 21492] By: nicholas on 2003/10/19 17:17:40
Log: Integrate:
[ 21436]
Subject: [PATCH] threads::async + some cleanup
From: Elizabeth Mattijsen <[email protected]>
Date: Fri, 10 Oct 2003 16:37:55 +0200
Message-Id: <p05111b07bbac713a0aaf@[192.168.56.2]>
[ 21470]
Ensure PL_comppad/curpad point to PL_main_cv's padlist when
PL_main_root is freed; this may not have been be the case if a
thread other than the main one is the last to be destroyed
Branch: maint-5.8/perl
! ext/threads/threads.pm
!> ext/threads/t/thread.t pad.h perl.c
____________________________________________________________________________
[ 21491] By: nicholas on 2003/10/19 16:54:46
Log: Integrate:
[ 21451]
Update MIME::Base64 and Digest::MD5 from the CPAN version.
Branch: maint-5.8/perl
!> ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
!> ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/align.t
!> ext/Digest/MD5/t/files.t ext/Digest/MD5/t/utf8.t
!> ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
!> ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
!> ext/MIME/Base64/QuotedPrint.pm ext/MIME/Base64/t/unicode.t
____________________________________________________________________________
[ 21490] By: nicholas on 2003/10/19 16:19:58
Log: Integrate:
[ 21402]
Subject: [PATCH] pp_sys.c: pp_waitpid and EINTR
From: Steve Grazzini <[email protected]>
Date: Sat, 4 Oct 2003 18:15:23 -0400
Message-Id: <[email protected]>
[ 21425]
Fix bug #24108: Goto +foo broken
the fix having been suggested by xmath via Juerd.
[ 21428]
Subject: [PATCH] Devel::PPPort is missing an aTHX when calling
grok_numeric_radix()
From: Jan Dubois <[email protected]>
Date: Wed, 08 Oct 2003 20:37:42 -0700
Message-Id: <[email protected]>
[ 21429]
Patch based on:
Subject: [perl #24157] -MModule=} is broken
From: "Lukas Mai" (via RT) <[email protected]>
Date: 7 Oct 2003 21:47:43 -0000
Message-Id: <[email protected]>
(Includes a fix for a similar problem in -A, but not -d.)
[ 21430]
Subject: [PATCH 5.8.1 CORE] Internal fixes to source-code coordinate
calculations in regcomp.c
From: Eric Promislow <[email protected]>
Date: Wed, 8 Oct 2003 17:42:42 -0700
Message-Id: <[email protected]>
[ 21441]
Subject: [PATCH] Internals::hash_seed() returns wrong value
From: Jan Dubois <[email protected]>
Date: Sun, 12 Oct 2003 22:09:39 -0700
Message-ID: <[email protected]>
[ 21445]
Subject: [PATCH ext/Devel/PPPort/PPPort.pm] Changes #20819 and #20996 break compatibility with perl 5.6.0
From: "Marcus Holland-Moritz" <[email protected]>
Date: Tue, 30 Sep 2003 19:23:34 +0200
Message-ID: <021e01c38777$93ea4e10$0c2f1fac@R2D2>
Branch: maint-5.8/perl
! perl.c
!> ext/Devel/PPPort/PPPort.pm op.c pp_sys.c regcomp.c t/op/goto.t
!> universal.c
____________________________________________________________________________
[ 21489] By: nicholas on 2003/10/19 11:14:32
Log: Integrate:
[ 21397]
Subject: Re: 5.8.1 and srand
From: Brendan O'Dea <[email protected]>
Date: Thu, 2 Oct 2003 10:30:36 +1000
Message-Id: <[email protected]>
[ 21401]
Subject: Re: 5.8.1 and srand
From: Slaven Rezic <[email protected]>
Date: Thu, 2 Oct 2003 15:51:11 +0000
Message-Id: <[email protected]>
Branch: maint-5.8/perl
!> t/op/fork.t util.c
____________________________________________________________________________
[ 21488] By: nicholas on 2003/10/19 10:47:57
Log: Integrate:
[ 21419]
Why should -3**$x be more precisely determined than 3**$x?
[ 21420]
Minor tweaks to t/op/pow.t (John P. Linderman).
Branch: maint-5.8/perl
!> t/op/pow.t
____________________________________________________________________________