-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes5.8.1
16705 lines (14368 loc) · 620 KB
/
Changes5.8.1
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.1 Maintenance release working toward v5.8.1
--------------
____________________________________________________________________________
[ 21377] By: jhi on 2003/09/25 09:58:50
Log: Here goes nothing.
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21376] By: jhi on 2003/09/25 09:55:52
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21375] By: jhi on 2003/09/25 09:27:33
Log: Dare.
Branch: maint-5.8/perl
! pod/perldelta.pod pod/perlhist.pod
____________________________________________________________________________
[ 21374] By: jhi on 2003/09/25 09:23:35
Log: Integrate:
[ 21369]
Subject: Re: 5.8.1 and gcc-3.2.3 (& Win98)
From: Greg Matheson <lang@ms.chinmin.edu.tw>
Date: Wed, 24 Sep 2003 22:51:09 +0800
Message-ID: <20030924225109.A17126@ms>
(Win98 + MinGW, a missing Win95.pm hunk)
[ 21370]
CPAN sites update.
Regen perltoc, perlmodlib.
Branch: maint-5.8/perl
! pod/perlmodlib.PL pod/perlmodlib.pod pod/perltoc.pod
!> lib/ExtUtils/MM_Win95.pm
____________________________________________________________________________
[ 21373] By: jhi on 2003/09/25 09:22:04
Log: Integrate:
[ 21371]
Update to Scalar-List-Utils 1.13
[ 21372]
Sync with libnet 1.17
Branch: maint-5.8/perl
!> ext/List/Util/ChangeLog ext/List/Util/Util.xs
!> ext/List/Util/lib/List/Util.pm
!> ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/sum.t
____________________________________________________________________________
[ 21368] By: jhi on 2003/09/25 05:08:09
Log: Odd glitch.
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21367] By: jhi on 2003/09/25 04:56:35
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21366] By: jhi on 2003/09/25 04:49:32
Log: Integrate:
[ 21365]
AUTHORS tweak.
Branch: maint-5.8/perl
!> AUTHORS
____________________________________________________________________________
[ 21364] By: jhi on 2003/09/24 20:04:19
Log: perldelta, perlport.
Branch: maint-5.8/perl
! pod/perldelta.pod pod/perlport.pod
____________________________________________________________________________
[ 21363] By: jhi on 2003/09/24 19:42:35
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21362] By: jhi on 2003/09/24 19:37:08
Log: Integrate:
[ 21360]
Subject: [perl #24032] Perl 5.8.1-RC5 build problems on LynxOS
From: Olli Savia (via RT) <perlbug-followup@perl.org>
Date: 24 Sep 2003 15:42:41 -0000
Message-ID: <rt-24032-65280.10.6144413163834@rt.perl.org>
[ 21361]
Even though undefing SPACE and FORMAT should be safe,
at this point I'm choosing to be paranoid and using
#ifdef __Lynx__.
Branch: maint-5.8/perl
!> mg.c perl.h perlio.c pp_sys.c
____________________________________________________________________________
[ 21359] By: jhi on 2003/09/24 14:03:52
Log: Integrate:
[ 21353]
Someone actually reads the Makefile.PL messages, it seems.
(from Jonathan Leffler)
[ 21354]
A fix from Graham for
[perl #24012] Weird conversion issue with List::Util::sum on Linux/AMD 850MHz
(seemingly a NV casting issue)
[ 21356]
Subject: [DOCPATCH] attributes.pm
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Wed, 24 Sep 2003 11:00:42 +0200
Message-Id: <p05111b02bb970d5eec89@[192.168.56.4]>
(reformatted a bit)
Branch: maint-5.8/perl
!> ext/List/Util/Util.xs ext/Time/HiRes/Makefile.PL
!> lib/attributes.pm
____________________________________________________________________________
[ 21358] By: jhi on 2003/09/24 10:20:13
Log: perldelta.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21357] By: jhi on 2003/09/24 09:26:45
Log: perldelta tweaks.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21355] By: jhi on 2003/09/24 08:24:02
Log: Subject: [PATCH pod/perldelta.pod] map in void context.
From: Abigail <abigail@abigail.nl>
Date: Wed, 24 Sep 2003 10:55:45 +0200
Message-ID: <20030924085545.GA2374@abigail.nl>
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21352] By: jhi on 2003/09/24 05:00:37
Log: Integrate:
[ 21342]
Minor nit in a debug message of the tokenizer.
[ 21343]
Subject: [PATCH] Re: OK: 5.8.1 RC5 on SuSE 8.2 32bit AMD (gcc 3.3 prerelease)
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Tue, 23 Sep 2003 09:13:55 -0700
Message-ID: <20030923161354.GA2432@efn.org>
[ 21344]
Subject: Re: NCR MP-RAS perl problems [perl #23791]
From: grommel@sears.com
Date: Tue, 23 Sep 2003 13:40:33 -0500
Message-ID: <OF17BD5036.3CA48F9B-ON86256DAA.00483620-86256DAA.0066A1AA@LocalDomain>
[ 21345]
v-promises from John Peaock.
[ 21346]
M::BI news from Tels.
[ 21348]
Subject: [PATCH] perlvar
From: Juerd <juerd@convolution.nl>
Date: Sun, 21 Sep 2003 21:40:54 +0200
Message-ID: <20030921194054.GD14702@c3.convolution.nl>
[ 21349]
The FAQ answer about POD comments was incorrect. [perl #23893]
(plus a few typos.)
[ 21350]
Subject: [PATCH 5.8.x] small perldelta patch
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Tue, 23 Sep 2003 14:55:24 -0700
Message-ID: <20030923215524.GA3440@efn.org>
[ 21351]
perliol tweaks.
Branch: maint-5.8/perl
!> INSTALL hints/svr4.sh pod/perlfaq7.pod pod/perliol.pod
!> pod/perlpodspec.pod pod/perlvar.pod t/op/stat.t toke.c
____________________________________________________________________________
[ 21350] By: jhi on 2003/09/24 04:26:29
Log: Subject: [PATCH 5.8.x] small perldelta patch
From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
Date: Tue, 23 Sep 2003 14:55:24 -0700
Message-ID: <20030923215524.GA3440@efn.org>
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21346] By: jhi on 2003/09/23 19:44:52
Log: M::BI news from Tels.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21345] By: jhi on 2003/09/23 19:41:21
Log: v-promises from John Peaock.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21341] By: jhi on 2003/09/23 12:46:04
Log: Integrate:
[ 21338]
Bump the Encode version to 1.9801 since we are no more identical
to the CPAN version.
[ 21339]
Subject: Re: [PATCH] RC5 and Intel's ICC
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Tue, 23 Sep 2003 15:04:35 +0200
Message-ID: <00d101c381d3$3d761fe0$0c2f1fac@R2D2>
(add -we147 to ccflags if cc = ICC so that prototype
detection works right)
[ 21340]
Let's call it 2.34, already (from Johan).
Branch: maint-5.8/perl
!> ext/Encode/Encode.pm hints/linux.sh lib/Getopt/Long.pm
____________________________________________________________________________
[ 21337] By: jhi on 2003/09/23 11:12:27
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21336] By: jhi on 2003/09/23 10:07:41
Log: perldelta.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21335] By: jhi on 2003/09/23 10:04:22
Log: Enache Adrian says the FreeBSD malloc example
is no more true.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21334] By: jhi on 2003/09/23 10:02:42
Log: Integrate:
[ 21331]
[perl #23979] GSM 03.38 mapping in Encoding::Byte is incorrect
Fix as much as possible - the specification is still
a bit unclear.
[ 21332]
ucmlintage.
Branch: maint-5.8/perl
+> ext/Encode/t/gsm0338.t
!> MANIFEST ext/Encode/MANIFEST
!> ext/Encode/lib/Encode/Supported.pod ext/Encode/ucm/gsm0338.ucm
____________________________________________________________________________
[ 21333] By: jhi on 2003/09/23 09:21:04
Log: Mention the GSM 03.38 fix.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21330] By: jhi on 2003/09/23 06:30:06
Log: Integrate:
[ 21324]
The RCs have been missing CRs from certain files because
not all shells can handle multiline arguments right.
[ 21325]
Stray CRs noticed by Jan Dubois.
[ 21326]
Subject: [PATCH] RC5 and Intel's ICC
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Mon, 22 Sep 2003 22:52:40 +0200
Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
(the attribute part)
[ 21327]
Subject: [PATCH] RC5 and Intel's ICC
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Mon, 22 Sep 2003 22:52:40 +0200
Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
(the missing void return type)
[ 21329]
Subject: [PATCH] Re: B::Deparse fails in pure_string()
From: Stephen McCamant <smcc@MIT.EDU>
Date: Mon, 22 Sep 2003 20:53:57 -0700
Message-ID: <16239.50133.367465.947398@famine.OCF.Berkeley.EDU>
Branch: maint-5.8/perl
!> Porting/makerel ext/B/B/Deparse.pm ext/Devel/PPPort/PPPort.pm
!> ext/threads/shared/shared.xs lib/ExtUtils/MM_Win95.pm
!> lib/ExtUtils/t/MM_Win32.t perl.h
____________________________________________________________________________
[ 21328] By: jhi on 2003/09/23 06:08:15
Log: perldelta.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21322] By: jhi on 2003/09/22 19:39:27
Log: perldelta tweaks.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21321] By: jhi on 2003/09/22 19:07:15
Log: Integrate:
[ 21318]
Upgrade to Math::BigInt 1.66.
[ 21319]
An error message need not be a novel.
(the M::BI is somewhat risky, but smokes will be running,
and I will ask known tricky platforms to test separately)
Branch: maint-5.8/perl
!> lib/Math/BigFloat.pm lib/Math/BigInt.pm
!> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
!> lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
!> lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/sub_mbi.t
!> lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
!> pod/perldiag.pod pp_hot.c
____________________________________________________________________________
[ 21320] By: jhi on 2003/09/22 18:22:27
Log: perldelta updates.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21317] By: jhi on 2003/09/22 10:59:53
Log: perldelta tweakage.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21316] By: jhi on 2003/09/22 10:10:29
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21315] By: jhi on 2003/09/22 09:57:26
Log: Integrate:
[ 21311]
Some more perlio doc tweaks based on NI-S.
Branch: maint-5.8/perl
!> pod/perliol.pod
____________________________________________________________________________
[ 21314] By: jhi on 2003/09/22 09:34:25
Log: Punch the patchlevel back in for now.
Branch: maint-5.8/perl
! patchlevel.h
____________________________________________________________________________
[ 21313] By: jhi on 2003/09/22 09:33:35
Log: Rephrase a bit.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21312] By: jhi on 2003/09/22 09:00:20
Log: Also :utf8 <INPUT> is now more careful.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21310] By: jhi on 2003/09/22 08:17:03
Log: Explain 5.6.1 in the scheme of things.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21309] By: jhi on 2003/09/22 07:52:53
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21308] By: jhi on 2003/09/22 07:10:32
Log: Integrate:
[ 21305]
Upgrade to Time::HiRes 1.51.
Branch: maint-5.8/perl
!> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
____________________________________________________________________________
[ 21307] By: jhi on 2003/09/22 06:44:01
Log: It's RC time.
Branch: maint-5.8/perl
! patchlevel.h pod/perlhist.pod
____________________________________________________________________________
[ 21306] By: jhi on 2003/09/22 06:41:42
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21304] By: jhi on 2003/09/22 04:43:10
Log: Integrate:
[ 21302]
CPAN.pm 1.76_01 from Andreas.
[ 21303]
Upgrade to Getopt::Long 2.33_03.
Branch: maint-5.8/perl
!> lib/CPAN.pm lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
____________________________________________________________________________
[ 21301] By: jhi on 2003/09/22 04:28:01
Log: Mention the client-SIGPIPE feature.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21300] By: jhi on 2003/09/21 09:53:49
Log: Integrate:
[ 21288]
Subject: typo fixo
From: Vadim Konovalov <konovalo@mail.wplus.net>
Date: Fri, 19 Sep 2003 06:32:08 +0400
Message-ID: <4538131828.20030919063208@mail.wplus.net>
[ 21289]
FAQ sync.
[ 21290]
Missing perlfaq chunk.
[ 21291]
In FreeBSD allow one to try using Perl's malloc with threads.
[ 21292]
Retract #21273, #21264, and #21263 as requested by Schwern.
(The real bug was mp2 being too "friendly" with MM innards.)
[ 21293]
More PerlIO documentation.
[ 21294]
Subject: [PATCH #2] Re: [perl #23576] valgrind errors for /(?{})/ in t/op/pat.t
From: Dave Mitchell <davem@fdgroup.com>
Date: Fri, 19 Sep 2003 19:35:44 +0100
Message-ID: <20030919183544.GA14563@fdgroup.com>
[ 21295]
One obvious place to look for PerlIO implementations.
[ 21296]
Tweak the section name to agree with the change #21295.
[ 21297]
Macrofy the compile/runtime test.
[ 21298]
Handle also the curliffy files when tocing.
[ 21299]
Regen toc.
Branch: maint-5.8/perl
!> cop.h gv.c hints/freebsd.sh lib/ExtUtils/MM_Unix.pm
!> lib/ExtUtils/MM_Win32.pm lib/ExtUtils/t/MM_Unix.t
!> lib/ExtUtils/t/MM_Win32.t lib/PerlIO.pm perl.h pod/buildtoc
!> pod/perlfaq4.pod pod/perliol.pod pod/perltoc.pod
!> pod/perlunicode.pod pp_ctl.c regcomp.c sv.c utf8.c
____________________________________________________________________________
[ 21287] By: jhi on 2003/09/19 05:07:35
Log: Integrate:
[ 21282]
Integrate a change from the perlfaq CVS.
I consider the bleadperl version being more up-to-date as of now.
[ 21283]
Perlfaq nits from Iain Truskett.
(from the perlfaq-workers list)
[ 21284]
Subject: [PATCH 5.8.1 @21211] dumpvar.pl broken
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 18 Sep 2003 18:58:59 -0700
Message-ID: <20030919015858.GA22503@math.berkeley.edu>
[ 21285]
Tests for change #21284.
[ 21286]
Subject: [PATCH 5.8.1 @21211] getsysinfo() broken on OS/2
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 18 Sep 2003 19:01:06 -0700
Message-ID: <20030919020106.GA22511@math.berkeley.edu>
Branch: maint-5.8/perl
!> lib/dumpvar.pl lib/dumpvar.t os2/os2.c pod/perlfaq2.pod
!> pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq8.pod
____________________________________________________________________________
[ 21279] By: jhi on 2003/09/18 19:45:11
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21278] By: jhi on 2003/09/18 19:27:55
Log: Integrate:
[ 21276]
Subject: Re: [perl #19582] [PATCH bleedperl] bad overload copy constructor segfaults
From: Rick Delaney <rick.delaney@rogers.com>
Date: Wed, 1 Jan 2003 22:54:59 -0500
Message-ID: <20030101225459.A2320@cs839290-a.mtth.phub.net.cable.rogers.com>
(Pity the first patch fell through the cracks back then.
Not that forbidding non-object copy constructors is the right
thing to do but the bug could use fixing.)
[ 21277]
Subject: [PATCH 5.8.1 @21211] -M -A -C broken
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 18 Sep 2003 11:02:02 -0700
Message-ID: <20030918180202.GA21949@math.berkeley.edu>
(use stat.t instead of time.t)
Branch: maint-5.8/perl
!> lib/overload.t os2/os2ish.h pp.h pp_sys.c t/op/stat.t
____________________________________________________________________________
[ 21275] By: jhi on 2003/09/18 14:12:47
Log: Integrate:
[ 21273]
ld has many guises.
[ 21274]
Subject: [PATCH] small fix for Devel::PPPort
From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
Date: Thu, 18 Sep 2003 10:14:58 +0200
Message-id: <20030918081458.GA2653@ethan>
Branch: maint-5.8/perl
!> ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
!> lib/ExtUtils/t/MM_Unix.t
____________________________________________________________________________
[ 21272] By: jhi on 2003/09/18 08:09:54
Log: Integrate:
[ 21263]
Subject: RE: MM in maint@21251 breaks mp2
From: "Orton, Yves" <yves.orton@de.mci.com>
Message-ID: <71B318898201D311845C0008C75DAD1C089611FE@defra1ex2>
Date: Wed, 17 Sep 2003 15:47:35 +0100
[ 21264]
A potential fix for non-empty LD in Unix.
[ 21266]
Make it possible to override the mistrustnm hint in Solaris.
[ 21267]
Patch from Enache Adrian for the new tricks of gcc 3.4
for "is this symbol defined" scanning of Configure.
[ 21268]
Subject: 5.8.1 warnings when long double == double
From: Andy Dougherty <doughera@lafayette.edu>
Date: Wed, 10 Sep 2003 12:03:53 -0400 (EDT)
Message-ID: <Pine.SOL.4.53.0309101203010.10837@maxwell.phys.lafayette.edu>
(the changed message)
[ 21270]
Subject: Patch for VMS::Filespec
From: Ken Williams <ken@mathforum.org>
Date: Wed, 17 Sep 2003 20:11:46 -0500
Message-Id: <12FBA07F-E975-11D7-BDD7-003065F6D85A@mathforum.org>
[ 21271]
Missed OS/2 patch hunk.
Branch: maint-5.8/perl
!> Configure hints/solaris_2.sh lib/ExtUtils/MM_Unix.pm
!> lib/ExtUtils/MM_Win32.pm lib/ExtUtils/t/MM_Unix.t
!> lib/ExtUtils/t/MM_Win32.t os2/os2.c vms/ext/Filespec.pm
____________________________________________________________________________
[ 21265] By: jhi on 2003/09/18 04:28:08
Log: OZ nit.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21262] By: jhi on 2003/09/17 11:35:38
Log: Integrate:
[ 21253]
Subject: [DOC PATCH] Re: [perl #23779] $? and negative exit codes
From: Dave Mitchell <davem@fdgroup.com>
Date: Tue, 16 Sep 2003 21:56:20 +0100
Message-ID: <20030916205620.GB1246@fdgroup.com>
[ 21257]
Subject: [PATCH 5.8.1 @21211] magic.t
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Tue, 16 Sep 2003 19:17:57 -0700
Message-ID: <20030917021757.GA20261@math.berkeley.edu>
[ 21258]
Subject: [PATCH 5.8.1 @21211] os2_process.t
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Tue, 16 Sep 2003 23:21:48 -0700
Message-ID: <20030917062147.GA20400@math.berkeley.edu>
[ 21259]
Subject: [PATCH 5.8.1 @21211] OS/2 APIs again
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Tue, 16 Sep 2003 23:49:42 -0700
Message-ID: <20030917064941.GA20444@math.berkeley.edu>
[ 21260]
Fix Solaris ccversion not having the cc version.
[ 21261]
The AIX C product potentially consists of several packages,
the main package being (hopefully) the first one.
Branch: maint-5.8/perl
!> hints/aix.sh hints/solaris_2.sh
!> os2/OS2/Process/t/os2_process.t os2/os2ish.h pod/perlfunc.pod
!> t/op/magic.t
____________________________________________________________________________
[ 21251] By: jhi on 2003/09/16 19:34:20
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21250] By: jhi on 2003/09/16 19:19:05
Log: Integrate:
[ 21247]
Subject: Re: [perl #23791] Many errors in build under NCR MP-RAS
From: Andy Dougherty <doughera@lafayette.edu>
Date: Tue, 16 Sep 2003 13:47:55 -0400 (EDT)
Message-ID: <Pine.SOL.4.53.0309161345020.13081@maxwell.phys.lafayette.edu>
[ 21249]
More suggested patches for NCR MP-RAS from Andy Dougherty.
Branch: maint-5.8/perl
+> ext/Time/HiRes/hints/svr4.pl
!> MANIFEST ext/POSIX/hints/svr4.pl ext/Sys/Syslog/t/syslog.t
!> hints/svr4.sh t/op/pack.t
____________________________________________________________________________
[ 21246] By: jhi on 2003/09/16 18:49:37
Log: Integrate:
[ 21245]
Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
Date: Wed, 4 Jun 2003 00:45:23 -0700
Message-ID: <20030604074523.GA7148@math.berkeley.edu>
Branch: maint-5.8/perl
!> lib/Getopt/Std.pm
____________________________________________________________________________
[ 21244] By: jhi on 2003/09/16 16:50:31
Log: Integrate:
[ 20650]
Subject: [PATCH 5.8.1 @20218] xsubpp: wrong code
From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
Date: Sun, 3 Aug 2003 06:19:02 -0700
Message-ID: <20030803131902.GA5146@math.berkeley.edu>
[ 21243]
Give a concrete example of the still existing Unicode slowness.
Branch: maint-5.8/perl
!> lib/ExtUtils/xsubpp pod/perlunicode.pod
____________________________________________________________________________
[ 21242] By: jhi on 2003/09/16 06:41:34
Log: Integrate:
[ 21238]
Upgrade to MakeMaker 6.17.
[ 21239]
Upgrade to File::Spec 0.85_03.
[ 21240]
The test is not needed, says Schwern.
[ 21241]
Make the VERSION of File::Spec be 0.86, otherwise File::Temp's
use File::Spec 0.8 is unhappy.
Branch: maint-5.8/perl
+> lib/File/Spec/t/crossplatform.t
- lib/base/t/fields-560.t
!> MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Install.pm
!> lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
!> lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
!> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
!> lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
!> lib/ExtUtils/README lib/ExtUtils/t/MM_Win32.t
!> lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
!> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
!> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
!> lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
!> t/lib/MakeMaker/Test/Utils.pm
____________________________________________________________________________
[ 21237] By: jhi on 2003/09/16 04:48:37
Log: In maint we get p-h warnings from the 5.6.0 fields test.
Branch: maint-5.8/perl
! lib/base/t/fields-560.t
____________________________________________________________________________
[ 21236] By: jhi on 2003/09/16 04:41:09
Log: Integrate:
[ 21235]
Upgrade to base 2.03.
(Rename the fields-5.6.0.t to have less d.o.t.s.)
Branch: maint-5.8/perl
+> lib/base/t/base.t lib/base/t/fields-560.t
+> lib/base/t/fields-base.t lib/base/t/fields.t
- lib/fields-base.t lib/fields.t
!> MANIFEST lib/base.pm lib/fields.pm
____________________________________________________________________________
[ 21233] By: jhi on 2003/09/15 06:25:10
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21232] By: jhi on 2003/09/15 06:14:11
Log: Integrate:
[ 21230]
Check the context of for/grep/map.
Branch: maint-5.8/perl
!> t/op/grep.t
____________________________________________________________________________
[ 21231] By: jhi on 2003/09/15 05:58:21
Log: Also sendpath warnings from HP-UX.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21229] By: jhi on 2003/09/14 13:43:19
Log: Integrate:
[ 21227]
Also IRIX wants setlogsock('stream').
[ 21228]
For-non-perlio places we need STDOUT back.
Branch: maint-5.8/perl
!> ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/syslog.t t/io/dup.t
____________________________________________________________________________
[ 21226] By: jhi on 2003/09/14 08:43:38
Log: Regen perlmodlib, perltoc.
Branch: maint-5.8/perl
! pod/perlmodlib.pod pod/perltoc.pod
____________________________________________________________________________
[ 21225] By: jhi on 2003/09/14 07:44:59
Log: Integrate:
[ 21224]
More portable reading.
Branch: maint-5.8/perl
!> t/io/dup.t
____________________________________________________________________________
[ 21223] By: jhi on 2003/09/14 07:36:57
Log: Integrate:
[ 21214]
parse_version doesn't always succeed.
[ 21217]
Subject: [PATCH] PerlIO_tmpfile clean-up for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Date: Sun, 14 Sep 2003 00:23:56 -0500
Message-ID: <3F63FB6C.5040502@mac.com>
[ 21218]
Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
From: Michael G Schwern <schwern@pobox.com>
Date: Thu, 11 Sep 2003 15:07:10 -0700
Message-ID: <20030911220710.GO18786@windhund.schwern.org>
(in OS/2 if a file has been chmod 0400'ed, it cannot be deleted)
[ 21219]
Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Sat, 13 Sep 2003 20:20:30 -0700
Message-ID: <20030914032030.GA17822@math.berkeley.edu>
[ 21220]
Use $Config{_exe}.
[ 21222]
More dup testing.
Branch: maint-5.8/perl
!> Porting/cmpVERSION.pl lib/ExtUtils/t/Manifest.t os2/os2.c
!> perlio.c t/io/dup.t t/run/switches.t
____________________________________________________________________________
[ 21221] By: jhi on 2003/09/14 07:14:25
Log: Subject: Strange things happen with pod/perldiag.pod?
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Date: Sun, 14 Sep 2003 10:20:39 +0200
Message-ID: <002a01c37a99$1590ec30$a900a8c0@R2D2>
Branch: maint-5.8/perl
! pod/perldiag.pod
____________________________________________________________________________
[ 21212] By: jhi on 2003/09/13 18:09:30
Log: Tell what is OpenZaurus, anyway.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21211] By: jhi on 2003/09/13 16:10:30
Log: Integrate:
[ 21201]
Stringify the $VERSION of DynaLoader so it's never dependent
on localized float-to-string conversions.
[ 21202]
Make the new glob tests pass (well, skip) even with miniperl.
[ 21203]
Subject: Unknown discipline ':utf8' w/ maint perl w/o perlio
From: Stas Bekman <stas@stason.org>
Date: Fri, 12 Sep 2003 13:44:11 -0700
Message-ID: <3F62301B.3080604@stason.org>
s/discipline/IO layer/, instead of "unknown" say "unavailable",
and have the fuller explanation in perldiag.
[ 21204]
Subject: [perl #23788] int of a fraction errors
From: "Boyd, Brooks D" (via RT) <perlbug-followup@perl.org>
Date: 11 Sep 2003 22:38:19 -0000
Message-ID: <rt-23788-64511.8.7546744242259@rt.perl.org>
Add a separate faq entry for int(). (Yes, a bit redundant
with the existing "why are my numbers broken" entry.)
[ 21205]
Minuscule code cleanup.
[ 21206]
Apparently at some point doing 3-arg open with
illegal mode like ">>>" had stopped croaking.
[ 21207]
Layer names were recognized by their prefixes
(e.g. open(F, ":u", "file") worked...)
[ 21208]
The "perlio: " prefix looks a little odd
in the few warning/error messages, since
no other 'subsystems' have prefixes.
[ 21209]
More PerlIO warnings changes.
[ 21210]
Subject: Re: unicode regex problem
From: hv@crypt.org
Date: Sat, 13 Sep 2003 15:21:34 +0100
Message-Id: <200309131421.h8DELYx25894@zen.crypt.org>
Branch: maint-5.8/perl
!> doio.c ext/DynaLoader/DynaLoader_pm.PL ext/PerlIO/t/fail.t
!> perlio.c pod/perldiag.pod pod/perlfaq4.pod regcomp.c
!> t/io/open.t t/lib/warnings/perlio t/op/pat.t
!> t/run/fresh_perl.t
____________________________________________________________________________
[ 21200] By: jhi on 2003/09/12 18:07:39
Log: Update Changes.
Branch: maint-5.8/perl
! Changes patchlevel.h
____________________________________________________________________________
[ 21199] By: jhi on 2003/09/12 18:01:40
Log: Integrate:
[ 21198]
It's UTF-8, not UTF8. (Note: not s/UTF-8/UTF8/,
since that would break a lot of code.) Also few
stray UTF16s, UTF32s, and "encoded in Unicode".
Branch: maint-5.8/perl
!> doop.c hv.h pod/Makefile.SH pod/perl570delta.pod
!> pod/perl58delta.pod pod/perlapi.pod pod/perlfunc.pod
!> pod/perlguts.pod pod/perlhack.pod pod/perlpodspec.pod
!> pod/perltoc.pod pod/perltodo.pod pod/perlunicode.pod
!> pod/perluniintro.pod pp_hot.c pp_sys.c sv.c sv.h utf8.c utf8.h
!> utfebcdic.h
____________________________________________________________________________
[ 21195] By: jhi on 2003/09/12 14:26:32
Log: Integrate:
[ 21191]
More comments for the FreeBSD threads hints.
[ 21193]
Document the new strict strict in strict.
[ 21194]
Slightly more documentation for open ...&=.
Branch: maint-5.8/perl
!> hints/freebsd.sh lib/strict.pm pod/perlfunc.pod
____________________________________________________________________________
[ 21192] By: jhi on 2003/09/12 03:17:59
Log: Move the strict pragma change to "fixes"; the "incompatible
changes" section is meant for things that used to work but
do no more.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21189] By: jhi on 2003/09/11 20:29:42
Log: Integrate:
[ 21178]
Upgrading to fields.pm 2.0 strangely helps also fields.t.
[ 21179]
Upgrade to Pod::Perldoc 3.10.
(Yes, the doughera address change is wrong, but hardly worth 3.11.)
[ 21180]
Changed warning due to fields.pm 2.0.
[ 21181]
The change of not needing -pthread in FreeBSD 5.x
is very recent (Sep 3) (from Anton Berezin).
[ 21182]
The fields.pm had lost the change #19009.
[ 21186]
Subject: [PATCH maint@21148] Security: suidperl path disclosure revisited
From: "Brendan O'Dea" <bod@debian.org>
Date: Fri, 12 Sep 2003 00:12:51 +1000
Message-ID: <20030911141251.GA26907@londo.c47.org>
[ 21187]
Subject: [PATCH 5.8.1 @20218] OS/2 API
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Date: Thu, 11 Sep 2003 09:15:04 -0700
Message-ID: <20030911161504.GA16113@math.berkeley.edu>
[ 21188]
More refactoring of the FreeBSD threads hints.
Basically, for fresh enough 5.x the -pthread is dropped,
otherwise keep it, and no known FreeBSD release has
a functional gethostbyaddr_r.
Branch: maint-5.8/perl
!> hints/freebsd.sh lib/Pod/Perldoc.pm os2/OS2/Process/MANIFEST
!> os2/OS2/Process/Process.pm os2/OS2/Process/Process.xs perl.c
____________________________________________________________________________
[ 21184] By: jhi on 2003/09/11 14:31:18
Log: Slight rewording for #21183.
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21183] By: jhi on 2003/09/11 14:25:24
Log: Subject: [DOCPATCH] strict changes
From: Elizabeth Mattijsen <liz@dijkmat.nl>
Date: Thu, 11 Sep 2003 15:55:13 +0200
Message-Id: <p05111b06bb862edd9687@[192.168.56.4]>
Branch: maint-5.8/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 21182] By: jhi on 2003/09/11 11:16:33
Log: The fields.pm had lost the change #19009.
Branch: maint-5.8/perl
! lib/fields.pm t/lib/warnings/av
____________________________________________________________________________
[ 21180] By: jhi on 2003/09/11 06:40:42
Log: Changed warning due to fields.pm 2.0.
Branch: maint-5.8/perl
! t/lib/warnings/av
____________________________________________________________________________
[ 21178] By: jhi on 2003/09/11 06:08:38
Log: Upgrading to fields.pm 2.0 strangely helps also fields.t.
Branch: maint-5.8/perl
! lib/fields.pm lib/fields.t
____________________________________________________________________________
[ 21177] By: jhi on 2003/09/11 05:25:51
Log: Integrate:
[ 21176]
Upgrade to base 2.02.
(except keep our fields.t, 5.8.1 doesn't like the new one)
Branch: maint-5.8/perl
+> lib/fields-base.t
!> MANIFEST lib/base.pm
____________________________________________________________________________
[ 21175] By: jhi on 2003/09/11 05:13:43
Log: Integrate:
[ 21151]
Document a PerlIO/Encode warning.
[ 21152]
A new UTF-8 API, Perl_is_utf8_string_loc(), a variant
of Perl_utf8_is_string().
[ 21153]
[perl #23770] Reading a latin1 file with open(... "<:utf8") will freeze
is no more valid, the script doesn't freeze, but I noticed
that neither does the <FILE> complain about bad UTF-8 as it
should and as it does with :encoding(utf8).
[ 21154]
No utf8 warnings without use warnings.
[ 21155]
If doing rcatline no point rescanning each time
the beginning of the SV for utf8 validity.
[ 21156]
Detypo and explain better.
[ 21157]
Linenumbers for utf8 warnings were wrong, test also rcatline.
[ 21158]
[perl #23769] Unicode regex broken on simple example
regrepeat() did not work right for UTF-8(ed Latin-1)
in the EXACT case, which made the \x{a0}+ fail.