-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes5.8.6
2018 lines (1796 loc) · 79.1 KB
/
Changes5.8.6
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.6 Maintenance release working toward v5.8.6
--------------
____________________________________________________________________________
[ 23552] By: nicholas on 2004/11/27 15:14:36
Log: Entry for PERL_USE_SAFE_PUTENV, reworded slightly from an original
by Stas Bekman
Branch: maint-5.8/perl
! pod/perl586delta.pod
____________________________________________________________________________
[ 23551] By: nicholas on 2004/11/27 15:07:10
Log: Integrate:
[ 23546]
Doc nit for B::Lint
Subject: [PATCH] B::Lint
From: Andy Lester <andy@petdance.com>
Date: Fri, 26 Nov 2004 00:30:48 -0600
Message-ID: <20041126063048.GA10161@petdance.com>
[ 23549]
Document the interaction of PERL_USE_SAVE_PUTENV and
PL_use_safe_putenv, based on text by Stas Bekman
[ 23550]
Clarify the return values of pos, particularly 0 and undef, as
suggested by Stas Bekman
Branch: maint-5.8/perl
!> INSTALL ext/B/B/Lint.pm pod/perlfunc.pod
____________________________________________________________________________
[ 23540] By: nicholas on 2004/11/25 22:34:55
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 23539] By: nicholas on 2004/11/25 22:21:23
Log: Integrate:
[ 23532]
Subject: [perl #3242] [PATCH]No error on assignment to $>
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 21 Nov 2004 04:38:09 -0000
Message-ID: <rt-3.0.11-3242-100676.6.32723019025057@perl.org>
[ 23533]
Subject: [patch pod/perlipc] use POSIX; w/o () is a bad idea
From: Stas Bekman <stas@stason.org>
Date: Wed, 24 Nov 2004 11:25:14 -0500
Message-ID: <41A4B5EA.3020804@stason.org>
[ 23534]
Subject: RC1 pod fix #anchor
From: Stas Bekman <stas@stason.org>
Date: Wed, 24 Nov 2004 10:57:21 -0500
Message-ID: <41A4AF61.9080408@stason.org>
Branch: maint-5.8/perl
!> pod/perlipc.pod pod/perlrun.pod pod/perlvar.pod
____________________________________________________________________________
[ 23530] By: nicholas on 2004/11/23 22:49:13
Log: Integrate:
[ 23518]
Subject: [perl #32486] error in documentation for POSIX::pipe
From: chris@ex-parrot.com (via RT) <perlbug-followup@perl.org>
Date: 18 Nov 2004 18:09:54 -0000
Message-ID: <rt-3.0.11-32486-100537.1.04456486825399@perl.org>
[ 23527]
Subject: Re: [perl #32486] error in documentation for POSIX::pipe
From: Michael G Schwern <schwern@pobox.com>
Date: Fri, 19 Nov 2004 14:28:56 -0500
Message-ID: <20041119192856.GA4769@windhund.schwern.org>
Branch: maint-5.8/perl
!> ext/POSIX/POSIX.pod
____________________________________________________________________________
[ 23529] By: nicholas on 2004/11/23 15:17:07
Log: Integrate:
[ 23507]
Subject: SuSE's perl safe_putenf diff
From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
Date: Thu, 11 Nov 2004 15:54:43 +0100
Message-ID: <20041111145443.GA1854@immd4.informatik.uni-erlangen.de>
slightly reworked to make the PL_use_safe_putenv variable fit in
the current framework. This patch turns on the use of safe putenv
for any application that embeds a perl interpreter.
Branch: maint-5.8/perl
!> embedvar.h mg.c miniperlmain.c perl.c perlapi.h perlvars.h
!> util.c
____________________________________________________________________________
[ 23524] By: nicholas on 2004/11/22 15:20:18
Log: Back out 23348 from maint, pending a better way to upgrade DynaLoader's
version number without causing subtle breakages.
Branch: maint-5.8/perl
! ext/DynaLoader/DynaLoader_pm.PL
____________________________________________________________________________
[ 23522] By: nicholas on 2004/11/20 16:14:02
Log: Integrate:
[ 23495]
Subject: [PATCH] Small documentation fix to ExtUtils::Constant
Date: Fri, 12 Nov 2004 11:15:47 -0600
From: steve@fisharerojo.org
Message-ID: <20041112171547.GA8011@kirk.dsl-verizon.net>
[ 23517]
Bump version number
Branch: maint-5.8/perl
!> lib/ExtUtils/Constant.pm
____________________________________________________________________________
[ 23521] By: nicholas on 2004/11/20 15:20:12
Log: Integrate:
[ 23513]
Fix deparsing of reversed sort and descending sorts,
due to the recent optimisations on this part of the optree.
[ 23514]
Fix deparsing of reversed foreach loops,
plus a bug in the previous commit
[ 23516]
Remaining nit in the deparsing of reversed foreach loops
Branch: maint-5.8/perl
!> ext/B/B/Deparse.pm ext/B/t/deparse.t
____________________________________________________________________________
[ 23515] By: nicholas on 2004/11/18 21:15:15
Log: Subject: Re: Proposed patch for perldelta.pod for 5.8.6-RC1
From: Mike Guy <mjtg@cam.ac.uk>
Message-Id: <E1CUUFq-00006L-H7@virgo.cus.cam.ac.uk>
Date: Wed, 17 Nov 2004 18:10:06 +0000
Branch: maint-5.8/perl
! pod/perl586delta.pod
____________________________________________________________________________
[ 23512] By: nicholas on 2004/11/17 14:50:18
Log: Integrate:
[ 23465]
Reformulate an error
(so the error message given by "perl -M" is a bit more
meaningful, as Jarkko pointed out)
Branch: maint-5.8/perl
!> perl.c pod/perldiag.pod
____________________________________________________________________________
[ 23511] By: nicholas on 2004/11/17 13:45:34
Log: Integrate:
[ 23506]
Subject: [PATCH] perl5db.pl POD cleanup
From: Autrijus Tang <autrijus@autrijus.org>
Date: Fri, 12 Nov 2004 12:41:33 +0800
Message-ID: <20041112044133.GA92924@aut.dyndns.org>
[ 23508]
Fix a couple of typos.
[ 23509]
PerlFAQ sync.
Branch: maint-5.8/perl
!> hv.c lib/perl5db.pl pod/perlfaq3.pod pod/perlfaq4.pod
!> pod/perlfaq6.pod pod/perlfaq7.pod utf8.c
____________________________________________________________________________
[ 23504] By: nicholas on 2004/11/16 21:29:19
Log: Oops. They didn't want to get here. Pesky stowaways.
Branch: maint-5.8/perl
- pod/perl590delta.pod pod/perl591delta.pod pod/perl592delta.pod
____________________________________________________________________________
[ 23503] By: nicholas on 2004/11/16 21:28:30
Log: Integrate:
[ 23494]
Add some descriptive text from Larry to op.c on how optrees are built
[ 23496]
Subject: [perl #32419] Spelling fixes for perl@23492
Date: 12 Nov 2004 16:14:49 -0000
From: Richard Soderberg (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-32419-100173.13.0717895191322@perl.org>
[ 23500]
Subject: [PATCH] s/hierachy/hierarchy/
Date: Mon, 15 Nov 2004 15:59:14 -0700
From: "Larry Shatzer Jr." <larrysh@cpan.org>
Message-ID: <20041115225913.GA22373@zippy.zyx.net>
Branch: maint-5.8/perl
+> pod/perl590delta.pod pod/perl591delta.pod pod/perl592delta.pod
!> ext/B/B.pm ext/Time/HiRes/Makefile.PL op.c perlio.h
!> pod/perl573delta.pod pod/perl58delta.pod pod/perlapi.pod
!> pod/perlapio.pod pod/perldata.pod pod/perldebtut.pod
!> pod/perlipc.pod pod/perlport.pod pod/perlre.pod
!> pod/perlretut.pod pod/perlrun.pod pod/perlsub.pod
!> pod/perlthrtut.pod pod/perltodo.pod pod/perltooc.pod
____________________________________________________________________________
[ 23502] By: nicholas on 2004/11/16 14:20:15
Log: Disarm the maint branch
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 23493] By: nicholas on 2004/11/11 14:50:27
Log: This is RC1
Branch: maint-5.8/perl
! patchlevel.h pod/perlhist.pod
____________________________________________________________________________
[ 23488] By: nicholas on 2004/11/08 21:35:33
Log: Integrate:
[ 23487]
No more late changes, dammit
Branch: maint-5.8/perl
!> ext/B/t/optree_concise.t
____________________________________________________________________________
[ 23486] By: nicholas on 2004/11/08 13:35:28
Log: Integrate:
[ 23485]
Subject: Re: optree tests and VMS progress (no really)
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Sun, 7 Nov 2004 23:24:15 -0800
Message-ID: <20041108072415.GA3928@efn.org>
Branch: maint-5.8/perl
!> ext/B/t/OptreeCheck.pm
____________________________________________________________________________
[ 23484] By: nicholas on 2004/11/07 13:53:14
Log: Integrate:
[ 23481]
Subject: Re: optree tests and VMS progress (no really)
From: Jim Cromie <jim.cromie@gmail.com>
Message-ID: <cfe85dfa041105235723398fe2@mail.gmail.com>
Date: Sat, 6 Nov 2004 00:57:13 -0700
Branch: maint-5.8/perl
!> ext/B/t/OptreeCheck.pm ext/B/t/optree_check.t
!> ext/B/t/optree_concise.t
____________________________________________________________________________
[ 23483] By: nicholas on 2004/11/07 13:18:19
Log: Integrate:
[ 23482]
document regcomp.c/regexec.c's dual life under ext/re/
Branch: maint-5.8/perl
!> regcomp.c regexec.c
____________________________________________________________________________
[ 23480] By: nicholas on 2004/11/05 22:48:41
Log: Cargo cult 5.8.6 upgrade
Branch: maint-5.8/perl
! Cross/config.sh-arm-linux META.yml NetWare/Makefile README.os2
! README.vms epoc/createpkg.pl patchlevel.h plan9/config.plan9
! pod/perl585delta.pod 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
____________________________________________________________________________
[ 23479] By: nicholas on 2004/11/05 22:01:13
Log: Update perldelta
Branch: maint-5.8/perl
! pod/perl586delta.pod
____________________________________________________________________________
[ 23478] By: nicholas on 2004/11/05 21:24:11
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 23477] By: nicholas on 2004/11/05 21:03:42
Log: Integrate:
[ 23475]
Subject: Re: Buidling stable.tar.gz on Unix as non-root [PATCH]
Date: Fri, 5 Nov 2004 10:36:57 -0500 (EST)
From: Andy Dougherty <doughera@lafayette.edu>
Message-ID: <Pine.SOL.4.58.0411051035020.15217@maxwell.phys.lafayette.edu>
Branch: maint-5.8/perl
!> INSTALL
____________________________________________________________________________
[ 23476] By: nicholas on 2004/11/05 20:18:51
Log: Integrate:
[ 23423]
Small updates to the web addresses for Perl, noticed by Robert Spier
[ 23466]
FAQ sync
Branch: maint-5.8/perl
!> pod/perl.pod pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
!> pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
!> pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
!> pod/perlfaq9.pod
____________________________________________________________________________
[ 23464] By: nicholas on 2004/11/01 18:20:33
Log: Subject: Re: [patches] optree_* tests unexpectedly succeeding. + maint-only patch
From: Jim Cromie <jcromie@divsol.com>
Message-ID: <417EB697.9020301@divsol.com>
Date: Tue, 26 Oct 2004 14:41:59 -0600
Branch: maint-5.8/perl
! ext/B/t/optree_check.t
____________________________________________________________________________
[ 23463] By: nicholas on 2004/11/01 15:28:24
Log: Integrate:
[ 23444]
Skip tests if Devel::Peek not built
Branch: maint-5.8/perl
!> ext/threads/shared/t/sv_refs.t ext/threads/t/end.t
!> ext/threads/t/join.t lib/base/t/fields-base.t
____________________________________________________________________________
[ 23462] By: nicholas on 2004/11/01 14:51:33
Log: Integrate:
[ 23445]
Set the IV values for PL_sv_yes and PL_sv_no at initialisation time.
Branch: maint-5.8/perl
!> perl.c sv.c
____________________________________________________________________________
[ 23461] By: nicholas on 2004/11/01 14:36:03
Log: Integrate:
[ 23440]
Assimilate I18N::LangTags 0.35
[ 23442]
Oops. Forgot to add the new test in I18N::LangTags 0.35
[ 23443]
Assimilate PathTools 3.01 (File::Spec and Cwd)
Branch: maint-5.8/perl
+> lib/I18N/LangTags/t/20_locales.t
!> MANIFEST ext/Cwd/t/cwd.t lib/Cwd.pm lib/File/Spec.pm
!> lib/File/Spec/VMS.pm lib/I18N/LangTags.pm
!> lib/I18N/LangTags/ChangeLog lib/I18N/LangTags/List.pm
!> lib/I18N/LangTags/README
____________________________________________________________________________
[ 23460] By: nicholas on 2004/11/01 14:16:33
Log: Integrate:
[ 23439]
Subject: [PATCH] Temporary fix for usemallocwrap problems on IRIX (was Re: usemallocwrap problems on IRIX (was Re: Problem and question))
Date: Sun, 31 Oct 2004 04:01:42 -0500
From: Ed Allen Smith <easmith@beatrice.rutgers.edu>
Message-Id: <mid+200410310901.i9V91g1Y519894@dogberry.rutgers.edu>
Branch: maint-5.8/perl
!> hints/irix_6.sh
____________________________________________________________________________
[ 23459] By: nicholas on 2004/11/01 14:04:39
Log: Integrate:
[ 23431]
Subject: [PATCH] 36 additional tests for B
From: Steve Peters <steve@fisharerojo.org>
Date: Fri, 29 Oct 2004 00:53:22 -0500
Message-Id: <200410290053.22947.steve@fisharerojo.org>
[ 23446]
Subject: [patches] optree_* tests unexpectedly succeeding. + maint-only patch
From: Jim Cromie <jim.cromie@gmail.com>
Message-ID: <cfe85dfa04102515365f11ef10@mail.gmail.com>
Date: Mon, 25 Oct 2004 16:36:40 -0600
Branch: maint-5.8/perl
!> ext/B/t/b.t ext/B/t/optree_check.t ext/B/t/optree_varinit.t
____________________________________________________________________________
[ 23458] By: nicholas on 2004/11/01 13:39:35
Log: Integrate:
[ 23424]
Fix [perl #32130] Errno.pm must not pass references to "prototype"
Branch: maint-5.8/perl
!> ext/Errno/Errno_pm.PL ext/Errno/t/Errno.t
____________________________________________________________________________
[ 23456] By: nicholas on 2004/11/01 13:06:23
Log: Integrate:
[ 23438]
[perl #32033] Using foreach on threads::shared array crashes perl
The FETCH code for shared aggregate elements could leak a shared RV
address into a private SV. RVs are now handled specially, in the
same way that they already were for scalar shared magic.
Branch: maint-5.8/perl
!> ext/threads/shared/shared.xs
____________________________________________________________________________
[ 23454] By: nicholas on 2004/11/01 12:38:48
Log: Integrate:
[ 23419]
Subject: [PATCH] Re: Devel::Peek: hash quality 125%?
From: Tels <perl_dummy@bloodgate.com>
Date: Sat, 23 Oct 2004 16:56:31 +0200
Message-Id: <200410231656.40995@bloodgate.com>
[ 23420]
Subject: Re: [perl #31937] perlop: add basic =~ examples
From: Steve Peters <steve@fisharerojo.org>
Date: Sat, 23 Oct 2004 08:01:51 -0500
Message-Id: <200410230801.51649.steve@fisharerojo.org>
[ 23422]
Subject: [perl #30227] [PATCH]splain vs. -w
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Date: 23 Oct 2004 13:55:41 -0000
Message-ID: <rt-3.0.11-30227-98375.1.28465791111211@perl.org>
[ 23432]
Document sv_magic() changes brought about by sv_magicext()
Change 14335 made sv_magic() a wrapper to a new sv_magicext(),
but didn't update the documentation for sv_magic() to reflect
the changed handling of the name/namlen arguments.
Also correct a couple of typos, and mention sv_magicext() in
perlguts.
Branch: maint-5.8/perl
!> ext/Devel/Peek/Changes ext/Devel/Peek/Peek.pm
!> lib/diagnostics.pm pod/perlapi.pod pod/perlguts.pod
!> pod/perlop.pod sv.c
____________________________________________________________________________
[ 23453] By: nicholas on 2004/11/01 12:17:44
Log: Integrate:
[ 23266]
[perl #31078] Fields package bug
An intermediate class with no fields messes up private fields
in the base class.
[ 23267]
I somehow managed to omit the base.pm change from #23266
Branch: maint-5.8/perl
!> lib/base.pm lib/base/t/fields-base.t
____________________________________________________________________________
[ 23452] By: nicholas on 2004/11/01 10:24:35
Log: Improvements and corrections as suggested by Ed Allen Smith,
Glenn Linderman, Yitzchak Scott-Thoennes and Steve Hay
Branch: maint-5.8/perl
! pod/perl586delta.pod
____________________________________________________________________________
[ 23451] By: nicholas on 2004/10/31 18:46:53
Log: First draft of 5.8.6's perldelta
Branch: maint-5.8/perl
! pod/perl586delta.pod
____________________________________________________________________________
[ 23447] By: nicholas on 2004/10/31 14:25:17
Log: Integrate:
[ 23365]
Fix [perl #31971] local $^D gives noise
(ish. Actually a rewrite to give binary compatibility)
Branch: maint-5.8/perl
! embed.fnc embed.h mg.c perl.c proto.h
____________________________________________________________________________
[ 23430] By: nicholas on 2004/10/28 10:20:54
Log: Integrate:
[ 23425]
Subject: [PATCH] lib/Carp.t improvements
From: "Craig A. Berry" <craigberry@mac.com>
Date: Tue, 26 Oct 2004 23:32:25 -0500
Message-Id: <417F24D9.1000904@mac.com>
Branch: maint-5.8/perl
!> lib/Carp.t
____________________________________________________________________________
[ 23429] By: nicholas on 2004/10/28 10:07:49
Log: Integrate:
[ 23418]
[perl #32039] Chained goto &sub drops data too early.
Change 22373 to stop a memory leak in goto &foo intead caused
the elements of @_ to be freed too early. This revised fix
just transfers the reifiedness of the old @_ to the new @_
[ 23426]
include flags and refcount in the list of leaked scalars
Branch: maint-5.8/perl
!> perl.c pp_ctl.c t/op/goto.t
____________________________________________________________________________
[ 23428] By: nicholas on 2004/10/28 09:26:16
Log: Integrate:
[ 23416]
Subject: [PATCH] ext/IO/IO.xs: fix blocking on sparc linux
Message-ID: <20041022033033.GA12362@londo.c47.org>
From: Brendan O'Dea <bod@debian.org>
Date: Fri, 22 Oct 2004 13:30:33 +1000
Branch: maint-5.8/perl
!> ext/IO/IO.xs
____________________________________________________________________________
[ 23427] By: nicholas on 2004/10/28 09:10:57
Log: Integrate:
[ 23417]
Upgrade to Encode 2.07
[ 23421]
Upgrade to Encode 2.08.
Branch: maint-5.8/perl
!> ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
!> ext/Encode/Encode.xs ext/Encode/META.yml
!> ext/Encode/Unicode/Unicode.pm ext/Encode/Unicode/Unicode.xs
!> ext/Encode/encoding.pm ext/Encode/lib/Encode/Encoding.pm
!> ext/Encode/t/Encode.t ext/Encode/t/fallback.t
!> ext/Encode/ucm/macArabic.ucm ext/Encode/ucm/macCentEuro.ucm
!> ext/Encode/ucm/macChinsimp.ucm ext/Encode/ucm/macChintrad.ucm
!> ext/Encode/ucm/macDingbats.ucm ext/Encode/ucm/macGreek.ucm
!> ext/Encode/ucm/macKorean.ucm ext/Encode/ucm/macROMnn.ucm
!> ext/Encode/ucm/macSymbol.ucm ext/Encode/ucm/macThai.ucm
____________________________________________________________________________
[ 23415] By: nicholas on 2004/10/22 18:01:45
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 23414] By: nicholas on 2004/10/22 17:48:44
Log: Integrate:
[ 23410]
Subject: docpatch for perltie.pod
From: David Cantrell <david@cantrell.org.uk>
Date: Thu, 21 Oct 2004 12:21:52 +0100
Message-ID: <20041021112151.GA22862@bytemark.barnyard.co.uk>
Branch: maint-5.8/perl
!> pod/perltie.pod
____________________________________________________________________________
[ 23413] By: nicholas on 2004/10/22 17:47:25
Log: Integrate:
[ 23372]
Implement a new -dt command-line flag, to enable threads under the
debugger (bug #31666).
Subject: RE: [PATCH] debugger handles threads [perl #31666]
From: <richard.foley@ubs.com>
Date: Wed, 13 Oct 2004 13:01:18 +0200
Message-ID: <B374141B0A424D4F9CF143CC51B3ADD903FB9E12@NZURC900PEX1.ubsgs.ubsgroup.net>
Subject: Re: [PATCH] debugger handles threads [perl #31666]
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Wed, 13 Oct 2004 02:49:58 -0700
Message-ID: <20041013094957.GA17184@efn.org>
Branch: maint-5.8/perl
!> lib/perl5db.pl perl.c pod/perlrun.pod
____________________________________________________________________________
[ 23412] By: nicholas on 2004/10/22 15:51:06
Log: Back out changes 23347 and 23349 for now, as they cause URI to fail
regression tests. (Integrated with change 23391).
It's not clear to me whether the regression tests are buggy, or this
change, or something else which this change now exposes.
Branch: maint-5.8/perl
! lib/overload.pm lib/overload.t
____________________________________________________________________________
[ 23411] By: nicholas on 2004/10/22 15:26:39
Log: Ooops. I forgot to move Changes to Changes5.8.5. Split things properly
Branch: maint-5.8/perl
+> Changes5.8.5
! Changes MANIFEST
____________________________________________________________________________
[ 23409] By: nicholas on 2004/10/21 15:49:06
Log: Update Changes
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 23408] By: nicholas on 2004/10/21 15:42:32
Log: Rebuild table of contents and re-sort MANIFEST
Branch: maint-5.8/perl
! MANIFEST pod/perltoc.pod
____________________________________________________________________________
[ 23407] By: nicholas on 2004/10/21 15:37:52
Log: Re-run regen.pl
Branch: maint-5.8/perl
! pod/perlapi.pod pod/perlintern.pod
____________________________________________________________________________
[ 23406] By: nicholas on 2004/10/21 15:18:42
Log: Integrate:
[ 23393]
Ensure that PVA.pl returns a true value.
[ 23394]
Remove opmini.c when cleaning up.
Branch: maint-5.8/perl
!> Makefile.SH lib/unicore/mktables
____________________________________________________________________________
[ 23405] By: nicholas on 2004/10/21 15:08:19
Log: Integrate:
[ 22741]
Include variable names in "Use of uninitialized value" warnings
(just for lib/Math/BigInt/t/mbimbf.inc)
[ 23216]
Subject: [PATCH] pre Math::BigInt v1.72
From: Tels <perl_dummy@bloodgate.com>
Date: Fri, 13 Aug 2004 14:02:50 +0200
Message-Id: <200408131402.52270@bloodgate.com>
[ 23359]
Subject: Patch: BigInt v1.73 (pre-release)
From: Tels <perl_dummy@bloodgate.com>
Date: Sun, 10 Oct 2004 22:36:03 +0200
Message-Id: <200410102236.03637@bloodgate.com>
[ 23396]
Subject: [PATCH] Math::BigInt v1.73 final
From: Tels <perl_dummy@bloodgate.com>
Date: Wed, 20 Oct 2004 21:06:40 +0200
Message-Id: <200410202106.41840@bloodgate.com>
Subject: [PATCH] Math::BigRat v0.13 (pre-release)
From: Tels <tels@bloodgate.com>
Date: Wed, 20 Oct 2004 22:03:55 +0200
Message-Id: <200410202203.56063@bloodgate.com>
Branch: maint-5.8/perl
!> lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
!> lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
!> lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintpm.inc
!> lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/mbimbf.inc
!> lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
!> lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
!> lib/Math/BigInt/t/with_sub.t lib/Math/BigRat.pm
!> lib/Math/BigRat/t/big_ap.t lib/Math/BigRat/t/bigrat.t
!> lib/Math/BigRat/t/bigratpm.inc lib/Math/BigRat/t/bigratpm.t
!> lib/Math/BigRat/t/bigratup.t
____________________________________________________________________________
[ 23404] By: nicholas on 2004/10/21 13:53:01
Log: Integrate:
[ 23052]
A tool to check the AUTHORS file
[ 23371]
Make autodoc.pl write its output with UNIX style EOL's.
This saves the Win32 committer(s?) having to dos2unix the files
before committing. Maybe Perforce's "LineEnd: share" suffices
anyway, but there's no harm in playing safe.
Branch: maint-5.8/perl
+> Porting/checkAUTHORS.pl
!> MANIFEST autodoc.pl
____________________________________________________________________________
[ 23403] By: nicholas on 2004/10/21 13:32:54
Log: Integrate:
[ 23360]
Subject: [PATCH-for-23358] enable statically linked extensions for Win32
From: Vadim Konovalov <konovalo@mail.wplus.net>
Date: Mon, 11 Oct 2004 22:57:00 +0400
Message-ID: <80173417046.20041011225700@vkonovalov.ru>
[ 23363]
Subject: [PATCH@23361] RE: [PATCH-for-23358] enable statically linked exte nsions for Win32
From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
Date: Wed, 13 Oct 2004 09:45:31 +0400
Message-ID: <7DD1BE2C50259746ABB8683672D2089E08133C@itotest-1.spb.lucent.com>
Branch: maint-5.8/perl
!> makedef.pl win32/Makefile win32/buildext.pl win32/dl_win32.xs
!> win32/makefile.mk win32/perllib.c win32/sync_ext.pl
____________________________________________________________________________
[ 23402] By: nicholas on 2004/10/21 13:03:35
Log: Integrate:
[ 23353]
A new machine type, some reformatting, some reorganization
and a bit of additional info on Sleepycat's db.
[ 23364]
A few fixes in the list of -D debugging flags
[ 23392]
Subject: [PATCH perl.c pod/perl.pod pod/perlfaq2.pod]
Rephrase "Perl Home Page" References
From: chromatic <chromatic@wgz.org>
Date: Tue, 19 Oct 2004 22:52:19 -0700
Message-Id: <1098251539.20976.53.camel@localhost>
Branch: maint-5.8/perl
!> AUTHORS README.hpux perl.c pod/perl.pod pod/perlfaq2.pod
!> pod/perlrun.pod
____________________________________________________________________________
[ 23401] By: nicholas on 2004/10/21 12:50:53
Log: Integrate:
[ 23354]
Make AIX 5 + gcc work in 64bitall
Branch: maint-5.8/perl
!> hints/aix.sh
____________________________________________________________________________
[ 23400] By: nicholas on 2004/10/21 11:43:53
Log: Integrate:
[ 23351]
Make the perl interpreter more tolerant of UTF-16-encoded script
(patch by Jarkko Hietaniemi)
[ 23352]
Briefly document the test.utf16 make target.
[ 23362]
Minor tweaks for the test.utf16 target, by Jarkko
Branch: maint-5.8/perl
!> Makefile.SH pod/perlhack.pod t/TEST toke.c utf8.c
____________________________________________________________________________
[ 23399] By: nicholas on 2004/10/21 11:13:27
Log: Integrate:
[ 23348]
Subject: [PATCH-for-23341] dynaloader improvements and cleanup
From: Vadim Konovalov <vadim@vkonovalov.ru>
Date: Sun, 3 Oct 2004 22:10:06 +0400
Message-ID: <138-1837306906.20041003221006@vkonovalov.ru>
[ 23361]
Subject: [perl #31843] warnings::warn($obj,...) fails when $obj overloads ""
From: kaminsky@math.huji.ac.il (via RT) <perlbug-followup@perl.org>
Date: 5 Oct 2004 09:52:07 -0000
Message-ID: <rt-3.0.11-31843-97358.2.89612012687236@perl.org>
(with tweaks)
Branch: maint-5.8/perl
!> ext/DynaLoader/DynaLoader_pm.PL lib/warnings.pm warnings.pl
____________________________________________________________________________
[ 23398] By: nicholas on 2004/10/21 10:54:14
Log: Integrate:
[ 23343]
Subject: [PATCH] make t/uni/class.t pass on VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Fri, 01 Oct 2004 12:57:55 -0500
Message-ID: <415D9AA3.1000908@mac.com>
[ 23346]
Subject: [PATCH] vms/t/filespec.t tweak
From: "Craig A. Berry" <craigberry@mac.com>
Date: Fri, 01 Oct 2004 13:18:03 -0500
Message-ID: <415D9F5B.5040306@mac.com>
[ 23358]
Subject: [PATCH] add the 'test_harness' target to vms "makefile"
From: Abe Timmerman <abe@ztreet.demon.nl>
Date: Sat, 9 Oct 2004 18:13:38 +0200
Message-Id: <200410091813.38673.abe@ztreet.demon.nl>
[ 23367]
Subject: [PATCH] Re: [NOT OK] 23353 OpenVMS 7.2 VAX
From: "Craig A. Berry" <craigberry@mac.com>
Date: Thu, 14 Oct 2004 10:09:41 -0500
Message-ID: <416E96B5.5020100@mac.com>
[ 23377]
Subject: [PATCH] test_harness tweak for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sat, 16 Oct 2004 12:15:02 -0500
Message-Id: <41715716.5000108@mac.com>
Branch: maint-5.8/perl
!> ext/Devel/PPPort/parts/inc/ppphtest
!> ext/Devel/PPPort/t/ppphtest.t t/harness t/uni/class.t
!> vms/descrip_mms.template vms/ext/filespec.t vms/test.com
____________________________________________________________________________
[ 23397] By: nicholas on 2004/10/21 10:30:49
Log: Integrate:
[ 23350]
Subject: [perl #31697] [PATCH] B::Showlex::newlex enhancement and pod
From: Jim Cromie (via RT) <perlbug-followup@perl.org>
Date: 23 Sep 2004 21:45:42 -0000
Message-ID: <rt-3.0.11-31697-96840.0.810265136907162@perl.org>
(with doc nits)
[ 23356]
Hack to make -Dusethreads -Uuseithreads -Uuse5005threads pass all tests
[ 23395]
Need to skip optree walking tests if perlio not built
Branch: maint-5.8/perl
!> ext/B/B/Concise.pm ext/B/B/Showlex.pm ext/B/t/OptreeCheck.pm
!> ext/B/t/f_map.t ext/B/t/f_sort.t ext/B/t/showlex.t
____________________________________________________________________________
[ 23391] By: nicholas on 2004/10/19 20:10:52
Log: Integrate:
[ 22926]
Subject: Re: [perl #30197] perlbug AutoReply: Data::Dumper does not indent the deparsed code properly
From: Mathieu Arnold <m@absolight.fr>
Date: Thu, 10 Jun 2004 16:43:58 +0200
Message-ID: <34D483170C7F84E0DFBE442B@andromede.in.reaumur.net>
(with a test adjustment)
[ 23347]
Subject: [PATCH perl-current] Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloading
From: Rick Delaney <rick@bort.ca>
Date: Sat, 2 Oct 2004 01:04:49 -0400
Message-ID: <20041002050448.GB5059@biff.bort.ca>
[ 23349]
Increment $overload::VERSION after change #23347
Branch: maint-5.8/perl
!> ext/B/B/Concise.pm ext/Data/Dumper/Dumper.pm
!> ext/Data/Dumper/t/dumper.t lib/overload.pm lib/overload.t
____________________________________________________________________________
[ 23390] By: nicholas on 2004/10/19 19:35:22
Log: Integrate:
[ 23331]
Subject: Re: [perl #31586] utime does not reach expectations [PATCH]
From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
Date: Fri, 17 Sep 2004 14:01:11 +0200
Message-Id: <DF27CDCBD2581D4B88431901094E4B4D02B0C88B@attmsx1.aut.alcatel.at>
Clarify the effect of utime when the file isn't owned by the user
[ 23332]
Document that $ENV{PATH} may not contain relative directories under -T
[ 23333]
Remove a couple of C<> to avoid confusing double quotes in text
rendering. [perl #31678]
[ 23338]
Spelling correction spotted by Greg McCarroll
[ 23341]
Subject: [patch] Sys::Syslog POD - $Sys::Syslog::host
From: "Jay Hannah" <jhannah@omnihotels.com>
Date: Wed, 15 Sep 2004 14:51:42 -0500
Message-ID: <002001c49b5d$6d0d79c0$4722000a@omarests2>
[ 23345]
More caveats on the non-portability of stat(), suggested by
Stas Bekman.
[ 23368]
Document sv_vcatpvf, sv_vsetpvf, sv_vcatpvf_mg and sv_vsetpvf_mg.
These are already in the API supported by Devel::PPPort, and are
often more useful than sv_vcatpvfn and sv_vsetpvfn which were
already documented.
[ 23369]
Doc nit to Data::Dumper, suggested by Peter Kay.
[ 23378]
Add a missing warning categorisation in perldiag.
[ 23379]
Fix a typo.
[ 23382]
Subject: [PATCH] perlfaq2.pod (add a book)
From: <richard.foley@ubs.com>
Date: Tue, 19 Oct 2004 07:29:31 +0200
Message-ID: <B374141B0A424D4F9CF143CC51B3ADD903FB9E3A@NZURC900PEX1.ubsgs.ubsgroup.net>
[ 23383]
More Data::Dumper docs nits, fix the previous one,
suggested by Yves Orton.
Branch: maint-5.8/perl
!> README.epoc embed.fnc ext/Data/Dumper/Dumper.pm
!> ext/Sys/Syslog/Syslog.pm pod/perlapi.pod pod/perldiag.pod
!> pod/perlfaq2.pod pod/perlfunc.pod pod/perlop.pod
!> pod/perlsec.pod sv.c utils/c2ph.PL
____________________________________________________________________________
[ 23389] By: nicholas on 2004/10/19 19:16:21
Log: Integrate:
[ 23326]
Subject: [PATCH] encoding and open pragmas
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Mon, 16 Aug 2004 22:27:00 +0300
Message-ID: <41210A84.6060506@iki.fi>
Subject: Re: [PATCH] encoding and open pragmas
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Tue, 17 Aug 2004 11:22:58 +0300 (EEST)
Message-Id: <200408170822.i7H8MwUU016793@vipunen.hut.fi>
[ 23334]
Typo fix.
Subject: [PATCH] Re: Smoke [5.9.2] 23330 FAIL(X) hp-ux 11.11/64 (PA-2.0/64/2 cpu)
From: Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
Date: Wed, 22 Sep 2004 11:20:53 +0200
Message-ID: <20040922112053.686562b6@valis.local>
[ 23355]
Restore runtime loading of Encode and Encode-related modules, so that
open.pm will work when the Encode extension isn't build.
[ 23380]
Upgrade to Encode 2.04.
[ 23381]
Re-apply the encoding.pm part of:
Subject: [PATCH] encoding and open pragmas
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Mon, 16 Aug 2004 22:27:00 +0300
Message-ID: <41210A84.6060506@iki.fi>
[ 23384]
Upgrade to Encode 2.05
Branch: maint-5.8/perl
!> ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
!> ext/Encode/JP/JP.pm ext/Encode/META.yml ext/Encode/Makefile.PL
!> ext/Encode/bin/piconv ext/Encode/bin/ucmsort
!> ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
!> ext/Encode/lib/Encode/Supported.pod
!> ext/Encode/ucm/big5-hkscs.ucm lib/open.pm lib/open.t
!> t/io/layers.t
____________________________________________________________________________
[ 23388] By: nicholas on 2004/10/19 18:26:52
Log: Integrate:
[ 23329]
Upgrade to Time::HiRes 1.65.
[ 23330]
Upgrade to MIME::Base64 3.05.
[ 23340]
A fix for [perl #31692] : as PerlIO::scalar accesses directly the
PV of the scalar it reads from, avoid to read it when it's an
undefined PV.
[ 23366]
Subject: AW: [perl #31864] IO::Poll - undef fd not checked in mask()
From: "Dintelmann, Peter" <Peter.Dintelmann@Dresdner-Bank.com>
Date: Mon, 11 Oct 2004 09:54:15 +0200
Message-ID: <8FD9B6A658383E468B55D364D1A9951601857331@ffz00zm6.ffz00e.mail.dresdner.net>
Branch: maint-5.8/perl
!> ext/IO/lib/IO/Poll.pm ext/MIME/Base64/Base64.pm
!> ext/MIME/Base64/Changes ext/MIME/Base64/t/warn.t
!> ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
!> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
!> ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
!> ext/Time/HiRes/ppport.h ext/Time/HiRes/t/HiRes.t
____________________________________________________________________________
[ 23387] By: nicholas on 2004/10/19 18:09:57
Log: Integrate:
[ 23373]
Implement sv_svset _nosteal variants by passing a flag into
sv_set_flags rather than messing with the SvTEMP() flag on either
side of the call.
[ 23374]
The second half of Perl_vwarner is actually a straight cut&paste job
from Perl_vwarn, so convert it into a (tail) call to Perl_vwarn.
cut&paste is bad, m'kay.
[ 23375]
Merge the common code from Perl_vdie and Perl_vwarner into a
S_vdie_common
[ 23376]
Merge code from vdie and vcroak into S_vdie_croak_common
Branch: maint-5.8/perl
!> sv.c sv.h util.c
____________________________________________________________________________
[ 23386] By: nicholas on 2004/10/19 16:56:17
Log: Integrate:
[ 23321]
Subject: Re: [perl #31459] Bug in read()
From: Chris Heath <chris@heathens.co.nz>
Date: 06 Sep 2004 00:03:12 -0400
Message-Id: <1094443392.12379.35.camel@linux.heathens.co.nz>
a read(F) into a UTF8-encoded buffer with an offset off the
end of the buffer, miss-calculated buffer lengths
[ 23337]
Subject: Patch for perl.c fixing an obscure environment bug
From: Merijn Broeren <merijnb@iloquent.com>
Date: Thu, 23 Sep 2004 17:18:17 +0200
Message-ID: <20040923151817.GA15782@brugman.iloquent.nl>
[ 23342]
[perl #31767] open $1, "file" doesn't raise an exception
[ 23344]
Perl_sv_recode_to_utf8 shouldn't be returning SvPVX(sv) without
any check on whether it's valid.
Branch: maint-5.8/perl
!> perl.c pp.c pp_sys.c sv.c t/io/open.t
____________________________________________________________________________
[ 23385] By: nicholas on 2004/10/19 16:29:12
Log: Integrate:
[ 23155]
Build the perldelta copying command for the main Unix makefile with
buildtoc, so that it doesn't get forgotten on version increments.
[ 23370]
Include opmini.c in the dependency generation.
Branch: maint-5.8/perl
! Makefile.SH
!> pod/buildtoc
____________________________________________________________________________
[ 23335] By: nicholas on 2004/09/23 10:12:34
Log: Integrate:
[ 23320]
[perl #30066] Memory leak in nested shared data structures in 5.8.4
A pop of an item from a shared array ref causes a leak due to
AVf_REAL not having been set after an sv_upgrade(sv, SVt_PVAV).
Make sv_upgrade() set always this flag.
Branch: maint-5.8/perl
!> sv.c
____________________________________________________________________________
[ 23328] By: nicholas on 2004/09/20 14:14:31
Log: Integrate:
[ 23322]
Upgrade to Time::HiRes 1.63.
Note that it includes a ppport.h file. See if the one
previously built in Devel::PPPort can be used instead.
Branch: maint-5.8/perl
+> ext/Time/HiRes/ppport.h
!> MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
!> ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
!> ext/Time/HiRes/t/HiRes.t
____________________________________________________________________________
[ 23324] By: steveh on 2004/09/17 16:31:49
Log: Have usethreads set the same as useithreads on Win32
This should fix the current ext/B/t/optree_*.t failures.
Nicholas Clark and Andy Dougherty both say this is how it should be: