summaryrefslogtreecommitdiff
path: root/Changes
blob: da859d2376d4bf17e8030c18ee37172cacb27369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
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
perlhack.pod for the details.

[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/

This file contains only changes that affect the maint-5.6/perl-5.6.2 branch.
Cross-references to changes imported from other branches (principally,
the mainline) are indicated by change numbers.  Detailed log entries
corresponding to these change numbers are available in the Changes
file in the latest development release.


--------------
Version v5.6.2
--------------

____________________________________________________________________________
[ 21726] By: rgs                                   on 2003/11/15  11:13:59
        Log: This is perl 5.6.2.
     Branch: maint-5.6
	   ! perl-5.6.2/patchlevel.h perl-5.6.2/pod/perlhist.pod
____________________________________________________________________________
[ 21724] By: rgs                                   on 2003/11/14  13:33:00
        Log: Subject: [PATCH 5.6.2RC1] VMS test tweaks
             From: "Craig A. Berry" <craigberry@mac.com>
             Date: Fri, 14 Nov 2003 08:29:33 -0600
             Message-Id: <6.0.0.22.2.20031113171900.0315ee68@dcichiexc1>
     Branch: maint-5.6
	   ! perl-5.6.2/t/pod/find.t perl-5.6.2/vms/ext/filespec.t
____________________________________________________________________________
[ 21722] By: rgs                                   on 2003/11/13  21:30:29
        Log: Grab perlmodlib.PL from bleadperl, adapt it to 5.6.
             Regenerate perlmodlib.pod and perltoc.pod.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perlmodlib.PL perl-5.6.2/pod/perlmodlib.pod
	   ! perl-5.6.2/pod/perltoc.pod
____________________________________________________________________________
[ 21716] By: rgs                                   on 2003/11/13  20:18:25
        Log: Fix a couple of compilation warnings about unused variables.
     Branch: maint-5.6
	   ! perl-5.6.2/doop.c perl-5.6.2/op.c perl-5.6.2/perl.c
	   ! perl-5.6.2/regexec.c perl-5.6.2/sv.c perl-5.6.2/toke.c
	   ! perl-5.6.2/util.c
____________________________________________________________________________
[ 21711] By: rgs                                   on 2003/11/12  21:56:13
        Log: Attempt to fix a Darwin-specific problem : use re 'debug' fails,
             saying that Perl_deb wasn't found. So link deb.o statically.
     Branch: maint-5.6
	   ! perl-5.6.2/ext/re/Makefile.PL
____________________________________________________________________________
[ 21707] By: rgs                                   on 2003/11/12  08:27:41
        Log: Subject: [PATCH 5.6.2RC1] sdbm build fix for VMS
             From: Craig Berry <craigberry@mac.com>
             Date: Tue, 11 Nov 2003 17:51:10 -0600
             Message-ID: <1395948.1068594670512.JavaMail.craigberry@mac.com>
     Branch: maint-5.6
	   ! perl-5.6.2/ext/SDBM_File/sdbm/Makefile.PL
____________________________________________________________________________
[ 21705] By: rgs                                   on 2003/11/11  21:14:01
        Log: Perldelta modernization (or, rewrite history)
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perldelta.pod
____________________________________________________________________________
[ 21698] By: rgs                                   on 2003/11/10  21:26:19
        Log: Tests that may fail in db-recno.t (for Mac OS X) (from bleadperl)
     Branch: maint-5.6
	   ! perl-5.6.2/t/lib/db-recno.t
____________________________________________________________________________
[ 21696] By: rgs                                   on 2003/11/09  22:31:26
        Log: Delete MakeMaker's META.yml file.
             (Currently the PAUSE indexer takes into account META files
             if and only if there's only one META file in a distribution.)
     Branch: maint-5.6
	   - perl-5.6.2/lib/ExtUtils/META.yml
	   ! perl-5.6.2/MANIFEST
____________________________________________________________________________
[ 21695] By: rgs                                   on 2003/11/09  22:20:36
        Log: Add a .PHONY target in the makefile for "make install", for
             case-insensitive filesystems.
     Branch: maint-5.6
	   ! perl-5.6.2/Makefile.SH
____________________________________________________________________________
[ 21692] By: rgs                                   on 2003/11/09  11:14:30
        Log: Get perlhist.pod from blead.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perlhist.pod
____________________________________________________________________________
[ 21690] By: rgs                                   on 2003/11/09  10:44:30
        Log: More reasons for skipping the IPC::SysV message test.
     Branch: maint-5.6
	   ! perl-5.6.2/ext/IPC/SysV/t/msg.t
____________________________________________________________________________
[ 21689] By: rgs                                   on 2003/11/09  10:18:30
        Log: A warning test is known to fail on Darwin.
     Branch: maint-5.6
	   ! perl-5.6.2/t/pragma/warn/pp_hot
____________________________________________________________________________
[ 21688] By: rgs                                   on 2003/11/09  10:17:12
        Log: Post-RC1.
     Branch: maint-5.6
	   ! perl-5.6.2/patchlevel.h
____________________________________________________________________________
[ 21686] By: rgs                                   on 2003/11/08  14:07:22
        Log: This is RC1.
             Update Changes.
     Branch: maint-5.6
	   ! perl-5.6.2/Changes perl-5.6.2/patchlevel.h
____________________________________________________________________________
[ 21685] By: rgs                                   on 2003/11/08  13:48:05
        Log: Configure hints upgrade from blead.
     Branch: maint-5.6
	   ! perl-5.6.2/hints/darwin.sh perl-5.6.2/hints/linux.sh
	   ! perl-5.6.2/hints/solaris_2.sh
____________________________________________________________________________
[ 21684] By: rgs                                   on 2003/11/08  13:44:42
        Log: Fix the list of added modules in perldelta.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perldelta.pod
____________________________________________________________________________
[ 21683] By: rgs                                   on 2003/11/08  13:22:04
        Log: Copyright updates.
     Branch: maint-5.6
	   ! perl-5.6.2/README perl-5.6.2/perl.c perl-5.6.2/perl.h
	   ! perl-5.6.2/x2p/a2p.c perl-5.6.2/x2p/a2py.c
	   ! perl-5.6.2/x2p/walk.c
____________________________________________________________________________
[ 21682] By: rgs                                   on 2003/11/08  13:07:26
        Log: perldelta update.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perldelta.pod
____________________________________________________________________________
[ 21681] By: rgs                                   on 2003/11/08  12:51:55
        Log: Upgrade to File::Spec 0.86.
     Branch: maint-5.6
	   + perl-5.6.2/lib/File/Spec/t/crossplatform.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/lib/File/Spec.pm
	   ! perl-5.6.2/lib/File/Spec/Cygwin.pm
	   ! perl-5.6.2/lib/File/Spec/Epoc.pm
	   ! perl-5.6.2/lib/File/Spec/Mac.pm
	   ! perl-5.6.2/lib/File/Spec/OS2.pm
	   ! perl-5.6.2/lib/File/Spec/Unix.pm
	   ! perl-5.6.2/lib/File/Spec/VMS.pm
	   ! perl-5.6.2/lib/File/Spec/Win32.pm
	   ! perl-5.6.2/lib/File/Spec/t/Spec.t
____________________________________________________________________________
[ 21680] By: rgs                                   on 2003/11/08  12:38:45
        Log: Back to MakeMaker 6.17.
             6.20 apparently breaks with non-GNU makes.
     Branch: maint-5.6
	   + perl-5.6.2/lib/ExtUtils/t/00setup_dummy.t
	   + perl-5.6.2/lib/ExtUtils/t/zz_cleanup_dummy.t
	   - perl-5.6.2/lib/ExtUtils/t/parse_version.t
	   - perl-5.6.2/t/lib/MakeMaker/Test/Setup/BFD.pm
	   - perl-5.6.2/t/lib/MakeMaker/Test/Setup/Problem.pm
	   ! perl-5.6.2/MANIFEST perl-5.6.2/ext/SDBM_File/sdbm/Makefile.PL
	   ! perl-5.6.2/lib/ExtUtils/Changes
	   ! perl-5.6.2/lib/ExtUtils/Command.pm
	   ! perl-5.6.2/lib/ExtUtils/Command/MM.pm
	   ! perl-5.6.2/lib/ExtUtils/Install.pm
	   ! perl-5.6.2/lib/ExtUtils/Liblist/Kid.pm
	   ! perl-5.6.2/lib/ExtUtils/MANIFEST.SKIP
	   ! perl-5.6.2/lib/ExtUtils/META.yml perl-5.6.2/lib/ExtUtils/MM.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Any.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Cygwin.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_NW5.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Unix.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_VMS.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Win32.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Win95.pm
	   ! perl-5.6.2/lib/ExtUtils/MakeMaker.pm
	   ! perl-5.6.2/lib/ExtUtils/Manifest.pm
	   ! perl-5.6.2/lib/ExtUtils/README perl-5.6.2/lib/ExtUtils/TODO
	   ! perl-5.6.2/lib/ExtUtils/instmodsh
	   ! perl-5.6.2/lib/ExtUtils/t/Command.t
	   ! perl-5.6.2/lib/ExtUtils/t/INST.t
	   ! perl-5.6.2/lib/ExtUtils/t/INST_PREFIX.t
	   ! perl-5.6.2/lib/ExtUtils/t/Install.t
	   ! perl-5.6.2/lib/ExtUtils/t/MM_Cygwin.t
	   ! perl-5.6.2/lib/ExtUtils/t/MM_Unix.t
	   ! perl-5.6.2/lib/ExtUtils/t/Manifest.t
	   ! perl-5.6.2/lib/ExtUtils/t/basic.t
	   ! perl-5.6.2/lib/ExtUtils/t/postamble.t
	   ! perl-5.6.2/lib/ExtUtils/t/prefixify.t
	   ! perl-5.6.2/lib/ExtUtils/t/prereq_print.t
	   ! perl-5.6.2/lib/ExtUtils/t/problems.t
	   ! perl-5.6.2/lib/ExtUtils/t/writemakefile_args.t
	   ! perl-5.6.2/t/lib/MakeMaker/Test/Setup/Recurs.pm
____________________________________________________________________________
[ 21679] By: rgs                                   on 2003/11/07  22:27:42
        Log: Upgrade to MakeMaker 6.20.
             Get the SDBM_File/sdbm Makefile.PL from blead, as it now breaks.
     Branch: maint-5.6
	   + perl-5.6.2/lib/ExtUtils/t/parse_version.t
	   + perl-5.6.2/t/lib/MakeMaker/Test/Setup/BFD.pm
	   + perl-5.6.2/t/lib/MakeMaker/Test/Setup/Problem.pm
	   - perl-5.6.2/lib/ExtUtils/t/00setup_dummy.t
	   - perl-5.6.2/lib/ExtUtils/t/zz_cleanup_dummy.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/ext/SDBM_File/sdbm/Makefile.PL
	   ! perl-5.6.2/lib/ExtUtils/Changes
	   ! perl-5.6.2/lib/ExtUtils/Command.pm
	   ! perl-5.6.2/lib/ExtUtils/Command/MM.pm
	   ! perl-5.6.2/lib/ExtUtils/Install.pm
	   ! perl-5.6.2/lib/ExtUtils/Liblist/Kid.pm
	   ! perl-5.6.2/lib/ExtUtils/MANIFEST.SKIP
	   ! perl-5.6.2/lib/ExtUtils/META.yml perl-5.6.2/lib/ExtUtils/MM.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Any.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Cygwin.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_NW5.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Unix.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_VMS.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Win32.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Win95.pm
	   ! perl-5.6.2/lib/ExtUtils/MakeMaker.pm
	   ! perl-5.6.2/lib/ExtUtils/Manifest.pm
	   ! perl-5.6.2/lib/ExtUtils/README perl-5.6.2/lib/ExtUtils/TODO
	   ! perl-5.6.2/lib/ExtUtils/instmodsh
	   ! perl-5.6.2/lib/ExtUtils/t/Command.t
	   ! perl-5.6.2/lib/ExtUtils/t/INST.t
	   ! perl-5.6.2/lib/ExtUtils/t/INST_PREFIX.t
	   ! perl-5.6.2/lib/ExtUtils/t/Install.t
	   ! perl-5.6.2/lib/ExtUtils/t/MM_Cygwin.t
	   ! perl-5.6.2/lib/ExtUtils/t/MM_Unix.t
	   ! perl-5.6.2/lib/ExtUtils/t/Manifest.t
	   ! perl-5.6.2/lib/ExtUtils/t/basic.t
	   ! perl-5.6.2/lib/ExtUtils/t/postamble.t
	   ! perl-5.6.2/lib/ExtUtils/t/prefixify.t
	   ! perl-5.6.2/lib/ExtUtils/t/prereq_print.t
	   ! perl-5.6.2/lib/ExtUtils/t/problems.t
	   ! perl-5.6.2/lib/ExtUtils/t/writemakefile_args.t
	   ! perl-5.6.2/t/lib/MakeMaker/Test/Setup/Recurs.pm
____________________________________________________________________________
[ 21678] By: rgs                                   on 2003/11/07  20:42:07
        Log: Integrate change #21617 from bleadperl :
             
             Portability nit for MinGW 3.
             
             Subject: MinGW-3.1.0-1 _CRTIMP definition preempting win32.h's
             From: Greg Matheson <lang@ms.chinmin.edu.tw>
             Date: Thu, 30 Oct 2003 14:11:58 +0800
             Message-ID: <20031030141158.A11772@ms>
             (actual patch by Abe Timmerman)
     Branch: maint-5.6
	   ! perl-5.6.2/win32/win32.h
____________________________________________________________________________
[ 21510] By: rgs                                   on 2003/10/21  11:17:43
        Log: The THREADS_HAVE_PIDS cpp symbols is not used in 5.6.x.
     Branch: maint-5.6
	   ! perl-5.6.2/hints/linux.sh
____________________________________________________________________________
[ 21463] By: rgs                                   on 2003/10/15  21:42:45
        Log: More Changes and perldelta updating.
     Branch: maint-5.6
	   ! perl-5.6.2/Changes perl-5.6.2/pod/perldelta.pod
____________________________________________________________________________
[ 21462] By: rgs                                   on 2003/10/15  21:28:10
        Log: Upgrade to Safe 2.10 from bleadperl.
             Don't get the safeops.t from blead as it needs a core patch.
     Branch: maint-5.6
	   + perl-5.6.2/ext/Opcode/t/Opcode.t perl-5.6.2/ext/Opcode/t/ops.t
	   + perl-5.6.2/ext/Safe/t/safe1.t perl-5.6.2/ext/Safe/t/safe2.t
	   + perl-5.6.2/ext/Safe/t/safe3.t
	   - perl-5.6.2/t/lib/ops.t perl-5.6.2/t/lib/safe1.t
	   - perl-5.6.2/t/lib/safe2.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/ext/Opcode/Safe.pm
	   ! perl-5.6.2/ext/Opcode/ops.pm
____________________________________________________________________________
[ 21461] By: rgs                                   on 2003/10/15  20:41:27
        Log: Add the list of upgraded modules in perldelta.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perldelta.pod
____________________________________________________________________________
[ 21460] By: rgs                                   on 2003/10/15  20:30:14
        Log: Update Changes.
     Branch: maint-5.6
	   ! perl-5.6.2/Changes
____________________________________________________________________________
[ 21459] By: rgs                                   on 2003/10/15  19:52:18
        Log: Upgrade to File::Temp 0.14
     Branch: maint-5.6
	   + perl-5.6.2/lib/File/Temp/t/mktemp.t
	   + perl-5.6.2/lib/File/Temp/t/object.t
	   + perl-5.6.2/lib/File/Temp/t/posix.t
	   + perl-5.6.2/lib/File/Temp/t/security.t
	   + perl-5.6.2/lib/File/Temp/t/tempfile.t
	   - perl-5.6.2/t/lib/ftmp-mktemp.t perl-5.6.2/t/lib/ftmp-posix.t
	   - perl-5.6.2/t/lib/ftmp-security.t
	   - perl-5.6.2/t/lib/ftmp-tempfile.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/lib/File/Temp.pm
____________________________________________________________________________
[ 21458] By: rgs                                   on 2003/10/15  19:39:02
        Log: Update perlhist.pod from bleadperl.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perlhist.pod
____________________________________________________________________________
[ 21457] By: rgs                                   on 2003/10/15  19:26:41
        Log: Grab the newest perlfaq.
             It's assumed that the perlfaqs must not be version-dependent.
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perlfaq.pod perl-5.6.2/pod/perlfaq1.pod
	   ! perl-5.6.2/pod/perlfaq2.pod perl-5.6.2/pod/perlfaq3.pod
	   ! perl-5.6.2/pod/perlfaq4.pod perl-5.6.2/pod/perlfaq5.pod
	   ! perl-5.6.2/pod/perlfaq6.pod perl-5.6.2/pod/perlfaq7.pod
	   ! perl-5.6.2/pod/perlfaq8.pod perl-5.6.2/pod/perlfaq9.pod
____________________________________________________________________________
[ 21455] By: rgs                                   on 2003/10/15  19:12:14
        Log: Sync the configure hints files with bleadperl.
     Branch: maint-5.6
	   ! perl-5.6.2/hints/aix.sh perl-5.6.2/hints/darwin.sh
	   ! perl-5.6.2/hints/freebsd.sh perl-5.6.2/hints/linux.sh
	   ! perl-5.6.2/hints/powerux.sh perl-5.6.2/hints/solaris_2.sh
	   ! perl-5.6.2/hints/svr4.sh
____________________________________________________________________________
[ 21444] By: rgs                                   on 2003/10/13  20:28:05
        Log: Integrate changes 11565 and part of 19384, also
             from Abe.
             
             Subject: Re: [ID 20010731.105] MinGW can't compile win32.c on Windows 20$00
             From: John Kristian <jmk2001@engineer.com>
             Date: Fri, 03 Aug 2001 00:59:08 -0700
             Message-id: <03a101c11bf2$2c9b5ee0$0100a8c0@JOHNKRISTIAN>
             
             Subject: [PATCH win32/win32.c] silence compiler warnings
             From: Abe Timmerman <abe@ztreet.demon.nl>
             Date: Fri, 2 May 2003 00:51:42 +0200
             Message-Id: <200305020051.43166.abe@ztreet.demon.nl>
     Branch: maint-5.6
	   ! perl-5.6.2/win32/win32.c
____________________________________________________________________________
[ 21443] By: rgs                                   on 2003/10/13  20:20:11
        Log: Integrate change 18046, as suggested by Abe Timmerman :
             
             Subject: Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
             From: Alain Barbet <alian@alianwebserver.com>
             Date: Fri, 18 Oct 2002 15:29:29 +0200
             Message-ID: <3DB00CB9.70708@alianwebserver.com>
     Branch: maint-5.6
	   ! perl-5.6.2/win32/makefile.mk
	  !> perl-5.6.2/README.win32 perl-5.6.2/win32/win32.c
____________________________________________________________________________
[ 21434] By: rgs                                   on 2003/10/10  06:20:20
        Log: Integrate changes 17322, 8309 and part of 10534,
             as suggested by Stas Bakman, to suppress compilation
             warnings in XS and in mod_perl.
     Branch: maint-5.6
	   ! perl-5.6.2/lib/ExtUtils/xsubpp perl-5.6.2/perl.h
____________________________________________________________________________
[ 21347] By: rgs                                   on 2003/09/23  21:34:15
        Log: In Configure, integrate a more modern way to guess whether
             a C symbol is defined. (See change #21267.)
     Branch: maint-5.6
	   ! perl-5.6.2/Configure
____________________________________________________________________________
[ 21281] By: rgs                                   on 2003/09/18  20:48:50
        Log: perlunicode.pod refers to a future which is now the past.
             Get perlhack from bleadperl (but note that the description of the
             test suite is not in line with what's in perl 5.6.2).
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perlhack.pod perl-5.6.2/pod/perlunicode.pod
____________________________________________________________________________
[ 21280] By: rgs                                   on 2003/09/18  20:06:11
        Log: Increment the version number to 5.6.2.
             Update the user-visible copyright date (in "perl -v").
     Branch: maint-5.6
	   ! perl-5.6.2/patchlevel.h perl-5.6.2/perl.c
	   ! perl-5.6.2/win32/Makefile perl-5.6.2/win32/config_H.bc
	   ! perl-5.6.2/win32/config_H.gc perl-5.6.2/win32/config_H.vc
	   ! perl-5.6.2/win32/makefile.mk
____________________________________________________________________________
[ 21256] By: rgs                                   on 2003/09/16  20:34:56
        Log: Update Changes.
     Branch: maint-5.6
	   ! perl-5.6.2/Changes perl-5.6.2/patchlevel.h
____________________________________________________________________________
[ 21255] By: rgs                                   on 2003/09/16  20:16:03
        Log: Hints updates from bleadperl
     Branch: maint-5.6
	   ! perl-5.6.2/hints/svr4.sh
____________________________________________________________________________
[ 21254] By: rgs                                   on 2003/09/16  20:11:16
        Log: Subject: [PATCH] 5.6.2/MSWin32: Integrate fcrypt.c
             From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
             Date: Sun, 14 Sep 2003 12:13:30 +0200
             Message-ID: <00df01c37aa8$d9d7aa70$4200a8c0@R2D2>
     Branch: maint-5.6
	   + perl-5.6.2/win32/fcrypt.c
	   - perl-5.6.2/win32/des_fcrypt.patch
	   ! perl-5.6.2/MANIFEST perl-5.6.2/README.win32
	   ! perl-5.6.2/win32/Makefile perl-5.6.2/win32/makefile.mk
____________________________________________________________________________
[ 21252] By: rgs                                   on 2003/09/16  19:43:40
        Log: Subject: [PATCH: win32/Makefile] Make 5.6.2 fly again on MSWin32 (was: Re: perl562@20985)
             From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
             Date: Sun, 14 Sep 2003 12:11:22 +0200
             Message-ID: <00db01c37aa8$8d0e87e0$4200a8c0@R2D2>
     Branch: maint-5.6
	   ! perl-5.6.2/win32/Makefile
____________________________________________________________________________
[ 21248] By: rgs                                   on 2003/09/16  19:08:16
        Log: Upgrade to ExtUtils::MakeMaker 6.17.
     Branch: maint-5.6
	   ! perl-5.6.2/lib/ExtUtils/Changes
	   ! perl-5.6.2/lib/ExtUtils/Install.pm
	   ! perl-5.6.2/lib/ExtUtils/META.yml
	   ! perl-5.6.2/lib/ExtUtils/MM_Unix.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_VMS.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Win32.pm
	   ! perl-5.6.2/lib/ExtUtils/MakeMaker.pm
	   ! perl-5.6.2/lib/ExtUtils/MakeMaker/Tutorial.pod
	   ! perl-5.6.2/lib/ExtUtils/Manifest.pm
	   ! perl-5.6.2/lib/ExtUtils/t/Manifest.t
____________________________________________________________________________
[ 21216] By: rgs                                   on 2003/09/13  20:22:36
        Log: Hintfile updates.
     Branch: maint-5.6
	   + perl-5.6.2/ext/NDBM_File/hints/linux.pl
	   ! perl-5.6.2/MANIFEST perl-5.6.2/ext/DynaLoader/hints/linux.pl
	   ! perl-5.6.2/ext/POSIX/hints/svr4.pl perl-5.6.2/hints/freebsd.sh
____________________________________________________________________________
[ 21215] By: rgs                                   on 2003/09/13  19:57:14
        Log: More trivial documentation updates
     Branch: maint-5.6
	   ! perl-5.6.2/pod/perl5004delta.pod
	   ! perl-5.6.2/pod/perl5005delta.pod perl-5.6.2/pod/perlbook.pod
	   ! perl-5.6.2/pod/perldsc.pod perl-5.6.2/pod/perlfilter.pod
	   ! perl-5.6.2/pod/perlnewmod.pod perl-5.6.2/pod/perlrequick.pod
	   ! perl-5.6.2/pod/perlretut.pod perl-5.6.2/pod/perlstyle.pod
____________________________________________________________________________
[ 21190] By: rgs                                   on 2003/09/11  21:35:24
        Log: INSTALL nits ; get perlmodinstall and perlreftut from bleadperl
     Branch: maint-5.6
	   ! perl-5.6.2/INSTALL perl-5.6.2/pod/perlmodinstall.pod
	   ! perl-5.6.2/pod/perlreftut.pod
____________________________________________________________________________
[ 21185] By: rgs                                   on 2003/09/11  19:15:49
        Log: Integrate the recent hintfile changes from bleadperl
     Branch: maint-5.6
	   ! perl-5.6.2/hints/aix.sh perl-5.6.2/hints/freebsd.sh
____________________________________________________________________________
[ 21150] By: rgs                                   on 2003/09/09  20:59:37
        Log: Subject: Re: perl562@20985
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Tue, 9 Sep 2003 01:42:28 -0700
             Message-ID: <20030909084228.GA2380@efn.org>
             
             Copies the cygwin module hint files from bleadperl, plus
             other changes suitably taken from maint-5.8.
     Branch: maint-5.6
	   ! perl-5.6.2/Makefile.SH
	   ! perl-5.6.2/ext/NDBM_File/hints/cygwin.pl
	   ! perl-5.6.2/ext/ODBM_File/hints/cygwin.pl
	   ! perl-5.6.2/t/op/taint.t
____________________________________________________________________________
[ 21059] By: rgs                                   on 2003/09/06  20:21:43
        Log: Copy the Configure hint files from bleadperl.
     Branch: maint-5.6
	   + perl-5.6.2/hints/atheos.sh perl-5.6.2/hints/os400.sh
	   + perl-5.6.2/hints/super-ux.sh perl-5.6.2/hints/t001.c
	   + perl-5.6.2/hints/vos.sh
	   ! perl-5.6.2/MANIFEST perl-5.6.2/hints/README.hints
	   ! perl-5.6.2/hints/aix.sh perl-5.6.2/hints/amigaos.sh
	   ! perl-5.6.2/hints/apollo.sh perl-5.6.2/hints/beos.sh
	   ! perl-5.6.2/hints/bsdos.sh perl-5.6.2/hints/cygwin.sh
	   ! perl-5.6.2/hints/darwin.sh perl-5.6.2/hints/dec_osf.sh
	   ! perl-5.6.2/hints/dgux.sh perl-5.6.2/hints/dos_djgpp.sh
	   ! perl-5.6.2/hints/dynixptx.sh perl-5.6.2/hints/epix.sh
	   ! perl-5.6.2/hints/freebsd.sh perl-5.6.2/hints/hpux.sh
	   ! perl-5.6.2/hints/irix_5.sh perl-5.6.2/hints/irix_6.sh
	   ! perl-5.6.2/hints/isc.sh perl-5.6.2/hints/isc_2.sh
	   ! perl-5.6.2/hints/linux.sh perl-5.6.2/hints/machten.sh
	   ! perl-5.6.2/hints/machten_2.sh perl-5.6.2/hints/mpeix.sh
	   ! perl-5.6.2/hints/netbsd.sh perl-5.6.2/hints/newsos4.sh
	   ! perl-5.6.2/hints/next_3.sh perl-5.6.2/hints/nonstopux.sh
	   ! perl-5.6.2/hints/openbsd.sh perl-5.6.2/hints/os2.sh
	   ! perl-5.6.2/hints/os390.sh perl-5.6.2/hints/posix-bc.sh
	   ! perl-5.6.2/hints/powerux.sh perl-5.6.2/hints/qnx.sh
	   ! perl-5.6.2/hints/rhapsody.sh perl-5.6.2/hints/sco.sh
	   ! perl-5.6.2/hints/solaris_2.sh perl-5.6.2/hints/sunos_4_1.sh
	   ! perl-5.6.2/hints/svr4.sh perl-5.6.2/hints/svr5.sh
	   ! perl-5.6.2/hints/titanos.sh perl-5.6.2/hints/ultrix_4.sh
	   ! perl-5.6.2/hints/umips.sh perl-5.6.2/hints/unicos.sh
	   ! perl-5.6.2/hints/unicosmk.sh perl-5.6.2/hints/utekv.sh
	   ! perl-5.6.2/hints/uts.sh perl-5.6.2/hints/uwin.sh
	   ! perl-5.6.2/hints/vmesa.sh
____________________________________________________________________________
[ 21055] By: rgs                                   on 2003/09/06  18:42:56
        Log: Integrate changes #9813 and #21045 from the main branch.
             
             [9813]
             Prevent path disclosure (probing for existence of filenames)
             using suidperl; bug id 20010322.218.
             
             [21045]
             More suidperl path disclosure plugging:
             the #9813 didn't do enough.  See either of
             http://rt.perl.org/rt2/Ticket/Display.html?id=6511
             http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=203426
     Branch: maint-5.6
	   ! perl-5.6.2/perl.c perl-5.6.2/pod/perldiag.pod
____________________________________________________________________________
[ 21038] By: rgs                                   on 2003/09/04  19:44:26
        Log: Subject: [PATCH 5.6.2] make -Dusedevel imply -Dversiononly -Uinstallusrbinperl
             From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
             Date: Wed, 3 Sep 2003 12:03:30 -0700
             Message-ID: <20030903190330.GA3652@efn.org>
     Branch: maint-5.6
	   ! perl-5.6.2/Configure
____________________________________________________________________________
[ 21037] By: rgs                                   on 2003/09/04  19:36:57
        Log: Upgrade to Data::Dumper 2.121, by Ilya Martynov
     Branch: maint-5.6
	   + perl-5.6.2/ext/Data/Dumper/t/dumper.t
	   + perl-5.6.2/ext/Data/Dumper/t/overload.t
	   + perl-5.6.2/ext/Data/Dumper/t/pair.t
	   - perl-5.6.2/t/lib/dumper-ovl.t perl-5.6.2/t/lib/dumper.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/ext/Data/Dumper/Changes
	   ! perl-5.6.2/ext/Data/Dumper/Dumper.pm
	   ! perl-5.6.2/ext/Data/Dumper/Dumper.xs
____________________________________________________________________________
[ 21024] By: rgs                                   on 2003/09/03  18:46:51
        Log: Add a test_prep make target, equivalent to test-prep (for smokes)
     Branch: maint-5.6
	   ! perl-5.6.2/Makefile.SH
____________________________________________________________________________
[ 21006] By: rgs                                   on 2003/09/02  21:06:49
        Log: Upgrade to File::Spec 0.85, grabbed from CPAN.
             Get t/rel2abs2rel.t from bleadperl, because t/TEST was
             unhappy with its unstandard test output.
             Remove the old t/lib/filespec.t.
     Branch: maint-5.6
	   + perl-5.6.2/lib/File/Spec/Cygwin.pm
	   + perl-5.6.2/lib/File/Spec/t/Functions.t
	   + perl-5.6.2/lib/File/Spec/t/Spec.t
	   + perl-5.6.2/lib/File/Spec/t/rel2abs2rel.t
	   - perl-5.6.2/t/lib/filespec.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/lib/File/Spec.pm
	   ! perl-5.6.2/lib/File/Spec/Epoc.pm
	   ! perl-5.6.2/lib/File/Spec/Functions.pm
	   ! perl-5.6.2/lib/File/Spec/Mac.pm
	   ! perl-5.6.2/lib/File/Spec/OS2.pm
	   ! perl-5.6.2/lib/File/Spec/Unix.pm
	   ! perl-5.6.2/lib/File/Spec/VMS.pm
	   ! perl-5.6.2/lib/File/Spec/Win32.pm
____________________________________________________________________________
[ 21005] By: rgs                                   on 2003/09/02  19:36:59
        Log: Remove the configure probes for iconv, and any iconv
             reference, since it's not used anywhere. (See change
             #12095 in the main branch.) This was known to freeze
             the configuration process on HP-UX.
     Branch: maint-5.6
	   ! perl-5.6.2/Configure perl-5.6.2/Porting/Glossary
	   ! perl-5.6.2/config_h.SH perl-5.6.2/configure.com
	   ! perl-5.6.2/epoc/config.sh perl-5.6.2/perl.h
	   ! perl-5.6.2/vos/config.alpha.def perl-5.6.2/vos/config.alpha.h
	   ! perl-5.6.2/vos/config.ga.def perl-5.6.2/vos/config.ga.h
	   ! perl-5.6.2/win32/config.bc perl-5.6.2/win32/config.gc
	   ! perl-5.6.2/win32/config.vc perl-5.6.2/win32/config_H.bc
	   ! perl-5.6.2/win32/config_H.gc perl-5.6.2/win32/config_H.vc
____________________________________________________________________________
[ 20988] By: rgs                                   on 2003/09/01  21:40:00
        Log: README.dos update :
             Subject: Re: Perl 5.6.1 and DJGPP: some build fixes, some bug fixes
             From: Richard Dawe <rich@phekda.freeserve.co.uk>
             Date: Sat, 23 Aug 2003 23:17:19 +0100
             Message-ID: <3F47E7EF.834E9F31@phekda.freeserve.co.uk>
     Branch: maint-5.6
	   ! perl-5.6.2/README.dos
____________________________________________________________________________
[ 20987] By: rgs                                   on 2003/09/01  21:19:37
        Log: Add Changes5.6 in the MANIFEST
     Branch: maint-5.6
	   ! perl-5.6.2/MANIFEST
____________________________________________________________________________
[ 20986] By: rgs                                   on 2003/09/01  21:11:09
        Log: Update Changes : move the 5.6.[01] changes to Changes5.6,
             while the changes in this new branch //depot/maint-5.6/perl-5.6.2
             go in a new Changes file. Upgrade patchlevel.h.
     Branch: maint-5.6
	  +> perl-5.6.2/Changes5.6
	   ! perl-5.6.2/Changes perl-5.6.2/patchlevel.h
____________________________________________________________________________
[ 20985] By: rgs                                   on 2003/09/01  20:38:12
        Log: Tabify and sort MANIFEST
     Branch: maint-5.6
	   ! perl-5.6.2/MANIFEST
____________________________________________________________________________
[ 20984] By: rgs                                   on 2003/09/01  20:10:41
        Log: Integrate ExtUtils::MakeMaker 6.16.
             Update the various makefiles utilities so the Makefile.PLs are
             invoked with PERL_CORE=1.
     Branch: maint-5.6
	   + perl-5.6.2/lib/ExtUtils/Changes
	   + perl-5.6.2/lib/ExtUtils/Command/MM.pm
	   + perl-5.6.2/lib/ExtUtils/Liblist/Kid.pm
	   + perl-5.6.2/lib/ExtUtils/MANIFEST.SKIP
	   + perl-5.6.2/lib/ExtUtils/META.yml perl-5.6.2/lib/ExtUtils/MM.pm
	   + perl-5.6.2/lib/ExtUtils/MM_Any.pm
	   + perl-5.6.2/lib/ExtUtils/MM_BeOS.pm
	   + perl-5.6.2/lib/ExtUtils/MM_DOS.pm
	   + perl-5.6.2/lib/ExtUtils/MM_MacOS.pm
	   + perl-5.6.2/lib/ExtUtils/MM_NW5.pm
	   + perl-5.6.2/lib/ExtUtils/MM_UWIN.pm
	   + perl-5.6.2/lib/ExtUtils/MM_Win95.pm
	   + perl-5.6.2/lib/ExtUtils/MY.pm
	   + perl-5.6.2/lib/ExtUtils/MakeMaker/FAQ.pod
	   + perl-5.6.2/lib/ExtUtils/MakeMaker/Tutorial.pod
	   + perl-5.6.2/lib/ExtUtils/MakeMaker/bytes.pm
	   + perl-5.6.2/lib/ExtUtils/MakeMaker/vmsish.pm
	   + perl-5.6.2/lib/ExtUtils/NOTES perl-5.6.2/lib/ExtUtils/PATCHING
	   + perl-5.6.2/lib/ExtUtils/README perl-5.6.2/lib/ExtUtils/TODO
	   + perl-5.6.2/lib/ExtUtils/instmodsh
	   + perl-5.6.2/lib/ExtUtils/t/00compile.t
	   + perl-5.6.2/lib/ExtUtils/t/00setup_dummy.t
	   + perl-5.6.2/lib/ExtUtils/t/Command.t
	   + perl-5.6.2/lib/ExtUtils/t/INST.t
	   + perl-5.6.2/lib/ExtUtils/t/INST_PREFIX.t
	   + perl-5.6.2/lib/ExtUtils/t/Install.t
	   + perl-5.6.2/lib/ExtUtils/t/Installed.t
	   + perl-5.6.2/lib/ExtUtils/t/Liblist.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_Any.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_BeOS.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_Cygwin.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_NW5.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_OS2.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_Unix.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_VMS.t
	   + perl-5.6.2/lib/ExtUtils/t/MM_Win32.t
	   + perl-5.6.2/lib/ExtUtils/t/Manifest.t
	   + perl-5.6.2/lib/ExtUtils/t/Mkbootstrap.t
	   + perl-5.6.2/lib/ExtUtils/t/Packlist.t
	   + perl-5.6.2/lib/ExtUtils/t/VERSION_FROM.t
	   + perl-5.6.2/lib/ExtUtils/t/backwards.t
	   + perl-5.6.2/lib/ExtUtils/t/basic.t
	   + perl-5.6.2/lib/ExtUtils/t/bytes.t
	   + perl-5.6.2/lib/ExtUtils/t/hints.t
	   + perl-5.6.2/lib/ExtUtils/t/oneliner.t
	   + perl-5.6.2/lib/ExtUtils/t/postamble.t
	   + perl-5.6.2/lib/ExtUtils/t/prefixify.t
	   + perl-5.6.2/lib/ExtUtils/t/prereq_print.t
	   + perl-5.6.2/lib/ExtUtils/t/problems.t
	   + perl-5.6.2/lib/ExtUtils/t/prompt.t
	   + perl-5.6.2/lib/ExtUtils/t/recurs.t
	   + perl-5.6.2/lib/ExtUtils/t/split_command.t
	   + perl-5.6.2/lib/ExtUtils/t/testlib.t
	   + perl-5.6.2/lib/ExtUtils/t/vmsish.t
	   + perl-5.6.2/lib/ExtUtils/t/writemakefile_args.t
	   + perl-5.6.2/lib/ExtUtils/t/zz_cleanup_dummy.t
	   + perl-5.6.2/t/lib/MakeMaker/Test/Setup/Recurs.pm
	   + perl-5.6.2/t/lib/MakeMaker/Test/Utils.pm
	   + perl-5.6.2/t/lib/TieIn.pm
	   - perl-5.6.2/lib/ExtUtils/inst
	   ! perl-5.6.2/MANIFEST perl-5.6.2/configure.com
	   ! perl-5.6.2/ext/util/make_ext
	   ! perl-5.6.2/lib/ExtUtils/Command.pm
	   ! perl-5.6.2/lib/ExtUtils/Embed.pm
	   ! perl-5.6.2/lib/ExtUtils/Install.pm
	   ! perl-5.6.2/lib/ExtUtils/Installed.pm
	   ! perl-5.6.2/lib/ExtUtils/Liblist.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Cygwin.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_OS2.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Unix.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_VMS.pm
	   ! perl-5.6.2/lib/ExtUtils/MM_Win32.pm
	   ! perl-5.6.2/lib/ExtUtils/MakeMaker.pm
	   ! perl-5.6.2/lib/ExtUtils/Manifest.pm
	   ! perl-5.6.2/lib/ExtUtils/Mkbootstrap.pm
	   ! perl-5.6.2/lib/ExtUtils/Mksymlists.pm
	   ! perl-5.6.2/lib/ExtUtils/Packlist.pm
	   ! perl-5.6.2/lib/ExtUtils/testlib.pm perl-5.6.2/os2/Makefile.SHs
	   ! perl-5.6.2/win32/Makefile perl-5.6.2/win32/makefile.mk
____________________________________________________________________________
[ 20977] By: rgs                                   on 2003/08/31  20:54:16
        Log: Integrate change 11744 from bleadperl :
             Subject:  [PATCH bleadperl] quiet down VC++ warnings in a2py.c and walk.c
             From:  Nikola Knezevic <indy@tesla.rcub.bg.ac.yu>
             Date:  Fri, 24 Aug 2001 22:10:42 +0200
             Message-Id:  <1065978076.20010824221042@tesla.rcub.bg.ac.yu>
             
             and apply the last round of warnings hunting on Win32:
             Subject: [PATCH 5.6.2] MSWin32 test & compilation warning fixes
             From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
             Date: Sun, 31 Aug 2003 13:54:58 +0200
             Message-ID: <005801c36fb6$c26b5190$9b00a8c0@R2D2>
     Branch: maint-5.6
	   ! perl-5.6.2/ext/POSIX/POSIX.xs perl-5.6.2/x2p/a2py.c
	  !> perl-5.6.2/x2p/walk.c
____________________________________________________________________________
[ 20976] By: rgs                                   on 2003/08/31  20:47:11
        Log: Integrate from bleadperl :
             
             10526: Cleanup the a2p.c for -Wall.
             
             10537: One less -Wall whine (found under DEBUGGING).
     Branch: maint-5.6
	  !> perl-5.6.2/x2p/Makefile.SH perl-5.6.2/x2p/a2p.c
____________________________________________________________________________
[ 20975] By: rgs                                   on 2003/08/31  20:35:00
        Log: Integrate change 10684 from bleadperl (as suggested by Marcus
             Holland-Moritz) :
             Guard the SysV IPC tests against being invoked in
             SysV-IPC-less places.
     Branch: maint-5.6
	  !> perl-5.6.2/ext/IPC/SysV/t/msg.t
	  !> perl-5.6.2/ext/IPC/SysV/t/sem.t
____________________________________________________________________________
[ 20911] By: rgs                                   on 2003/08/26  20:01:16
        Log: Don't uppercase automatically all environment variables on DJGPP.
             (reported by Richard Dawe, this breaks portability of Unix
             scripts.) Don't change the behaviour on plain MS/DOS.
     Branch: maint-5.6
	   ! perl-5.6.2/perl.c
____________________________________________________________________________
[ 20859] By: rgs                                   on 2003/08/23  20:02:36
        Log: Two portability patches for DJGPP from Richard Dawe
             <rich@phekda.freeserve.co.uk>.
             Message-Id: <E19qfNh-0000Zq-00@phekda.freeserve.co.uk>
     Branch: maint-5.6
	   ! perl-5.6.2/djgpp/djgppsed.sh perl-5.6.2/dosish.h
____________________________________________________________________________
[ 20849] By: rgs                                   on 2003/08/22  21:45:20
        Log: Integrate Test::More, Test::Builder and Test::Simple,
             from bleadperl. Pulling in dependencies, I had to integrate if.pm
             as well (it's used in some tests.)
     Branch: maint-5.6
	   + perl-5.6.2/lib/Test/Builder.pm perl-5.6.2/lib/Test/More.pm
	   + perl-5.6.2/lib/Test/Simple.pm
	   + perl-5.6.2/lib/Test/Simple/Changes
	   + perl-5.6.2/lib/Test/Simple/README
	   + perl-5.6.2/lib/Test/Simple/t/Builder.t
	   + perl-5.6.2/lib/Test/Simple/t/More.t
	   + perl-5.6.2/lib/Test/Simple/t/bad_plan.t
	   + perl-5.6.2/lib/Test/Simple/t/buffer.t
	   + perl-5.6.2/lib/Test/Simple/t/curr_test.t
	   + perl-5.6.2/lib/Test/Simple/t/details.t
	   + perl-5.6.2/lib/Test/Simple/t/diag.t
	   + perl-5.6.2/lib/Test/Simple/t/exit.t
	   + perl-5.6.2/lib/Test/Simple/t/extra.t
	   + perl-5.6.2/lib/Test/Simple/t/fail-like.t
	   + perl-5.6.2/lib/Test/Simple/t/fail-more.t
	   + perl-5.6.2/lib/Test/Simple/t/fail.t
	   + perl-5.6.2/lib/Test/Simple/t/filehandles.t
	   + perl-5.6.2/lib/Test/Simple/t/fork.t
	   + perl-5.6.2/lib/Test/Simple/t/has_plan.t
	   + perl-5.6.2/lib/Test/Simple/t/has_plan2.t
	   + perl-5.6.2/lib/Test/Simple/t/import.t
	   + perl-5.6.2/lib/Test/Simple/t/is_deeply.t
	   + perl-5.6.2/lib/Test/Simple/t/maybe_regex.t
	   + perl-5.6.2/lib/Test/Simple/t/missing.t
	   + perl-5.6.2/lib/Test/Simple/t/no_ending.t
	   + perl-5.6.2/lib/Test/Simple/t/no_header.t
	   + perl-5.6.2/lib/Test/Simple/t/no_plan.t
	   + perl-5.6.2/lib/Test/Simple/t/ok_obj.t
	   + perl-5.6.2/lib/Test/Simple/t/output.t
	   + perl-5.6.2/lib/Test/Simple/t/plan.t
	   + perl-5.6.2/lib/Test/Simple/t/plan_is_noplan.t
	   + perl-5.6.2/lib/Test/Simple/t/plan_no_plan.t
	   + perl-5.6.2/lib/Test/Simple/t/plan_skip_all.t
	   + perl-5.6.2/lib/Test/Simple/t/simple.t
	   + perl-5.6.2/lib/Test/Simple/t/skip.t
	   + perl-5.6.2/lib/Test/Simple/t/skipall.t
	   + perl-5.6.2/lib/Test/Simple/t/strays.t
	   + perl-5.6.2/lib/Test/Simple/t/threads.t
	   + perl-5.6.2/lib/Test/Simple/t/todo.t
	   + perl-5.6.2/lib/Test/Simple/t/undef.t
	   + perl-5.6.2/lib/Test/Simple/t/use_ok.t
	   + perl-5.6.2/lib/Test/Simple/t/useing.t
	   + perl-5.6.2/lib/Test/Tutorial.pod perl-5.6.2/lib/if.pm
	   + perl-5.6.2/lib/if.t perl-5.6.2/t/lib/Test/Simple/Catch.pm
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/death.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/death_in_eval.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/extras.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/five_fail.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/last_minute_death.pl
	   + x perl-5.6.2/t/lib/Test/Simple/sample_tests/one_fail.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/pre_plan_death.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/require.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/success.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/too_few.plx
	   + perl-5.6.2/t/lib/Test/Simple/sample_tests/two_fail.plx
	   + perl-5.6.2/t/lib/TieOut.pm
	   ! perl-5.6.2/MANIFEST
____________________________________________________________________________
[ 20848] By: rgs                                   on 2003/08/22  20:51:02
        Log: Upgrade to Test 1.24 (from bleadperl)
     Branch: maint-5.6
	   + perl-5.6.2/lib/Test/t/fail.t perl-5.6.2/lib/Test/t/mix.t
	   + perl-5.6.2/lib/Test/t/onfail.t perl-5.6.2/lib/Test/t/qr.t
	   + perl-5.6.2/lib/Test/t/skip.t perl-5.6.2/lib/Test/t/success.t
	   + perl-5.6.2/lib/Test/t/todo.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/lib/Test.pm
____________________________________________________________________________
[ 20847] By: rgs                                   on 2003/08/22  20:07:32
        Log: Two tests were failing after the Test::Harness upgrade, because
             they use Test, that loads Test::Harness, that doesn't load FileHandle
             anymore.
     Branch: maint-5.6
	   ! perl-5.6.2/t/lib/ftmp-mktemp.t perl-5.6.2/t/lib/ftmp-posix.t
____________________________________________________________________________
[ 20846] By: rgs                                   on 2003/08/22  20:05:52
        Log: Upgrade to Test::Harness 2.30, and get t/harness from bleadperl
             (more or less, due to the different set of directories to scan
             for tests)
     Branch: maint-5.6
	   + perl-5.6.2/lib/Test/Harness/Assert.pm
	   + perl-5.6.2/lib/Test/Harness/Changes
	   + perl-5.6.2/lib/Test/Harness/Iterator.pm
	   + perl-5.6.2/lib/Test/Harness/Straps.pm
	   + perl-5.6.2/lib/Test/Harness/t/00compile.t
	   + perl-5.6.2/lib/Test/Harness/t/assert.t
	   + perl-5.6.2/lib/Test/Harness/t/base.t
	   + perl-5.6.2/lib/Test/Harness/t/callback.t
	   + perl-5.6.2/lib/Test/Harness/t/nonumbers.t
	   + perl-5.6.2/lib/Test/Harness/t/ok.t
	   + perl-5.6.2/lib/Test/Harness/t/pod.t
	   + perl-5.6.2/lib/Test/Harness/t/strap-analyze.t
	   + perl-5.6.2/lib/Test/Harness/t/strap.t
	   + perl-5.6.2/lib/Test/Harness/t/test-harness.t
	   + perl-5.6.2/t/lib/sample-tests/bailout
	   + perl-5.6.2/t/lib/sample-tests/bignum
	   + perl-5.6.2/t/lib/sample-tests/combined
	   + perl-5.6.2/t/lib/sample-tests/descriptive
	   + perl-5.6.2/t/lib/sample-tests/die
	   + perl-5.6.2/t/lib/sample-tests/die_head_end
	   + perl-5.6.2/t/lib/sample-tests/die_last_minute
	   + perl-5.6.2/t/lib/sample-tests/duplicates
	   + perl-5.6.2/t/lib/sample-tests/head_end
	   + perl-5.6.2/t/lib/sample-tests/head_fail
	   + perl-5.6.2/t/lib/sample-tests/lone_not_bug
	   + perl-5.6.2/t/lib/sample-tests/no_nums
	   + perl-5.6.2/t/lib/sample-tests/no_output
	   + perl-5.6.2/t/lib/sample-tests/out_of_order
	   + perl-5.6.2/t/lib/sample-tests/segfault
	   + perl-5.6.2/t/lib/sample-tests/shbang_misparse
	   + perl-5.6.2/t/lib/sample-tests/simple
	   + perl-5.6.2/t/lib/sample-tests/simple_fail
	   + perl-5.6.2/t/lib/sample-tests/skip
	   + perl-5.6.2/t/lib/sample-tests/skip_nomsg
	   + perl-5.6.2/t/lib/sample-tests/skipall
	   + perl-5.6.2/t/lib/sample-tests/skipall_nomsg
	   + perl-5.6.2/t/lib/sample-tests/switches
	   + perl-5.6.2/t/lib/sample-tests/taint
	   + perl-5.6.2/t/lib/sample-tests/todo
	   + perl-5.6.2/t/lib/sample-tests/todo_inline
	   + perl-5.6.2/t/lib/sample-tests/too_many
	   + perl-5.6.2/t/lib/sample-tests/vms_nit
	   + perl-5.6.2/t/lib/sample-tests/with_comments
	   ! perl-5.6.2/MANIFEST perl-5.6.2/lib/Test/Harness.pm
	   ! perl-5.6.2/t/harness
____________________________________________________________________________
[ 20788] By: rgs                                   on 2003/08/19  21:20:04
        Log: As in 5.8.0, rename the non-standard 5005 thread tests
             so that they don't get run by the test harnesses.
     Branch: maint-5.6
	  +> perl-5.6.2/ext/Thread/create.tx perl-5.6.2/ext/Thread/die.tx
	  +> perl-5.6.2/ext/Thread/die2.tx perl-5.6.2/ext/Thread/io.tx
	  +> perl-5.6.2/ext/Thread/join.tx perl-5.6.2/ext/Thread/join2.tx
	  +> perl-5.6.2/ext/Thread/list.tx perl-5.6.2/ext/Thread/lock.tx
	  +> perl-5.6.2/ext/Thread/queue.tx
	  +> perl-5.6.2/ext/Thread/specific.tx
	  +> perl-5.6.2/ext/Thread/sync.tx perl-5.6.2/ext/Thread/sync2.tx
	  +> perl-5.6.2/ext/Thread/unsync.tx
	  +> perl-5.6.2/ext/Thread/unsync2.tx
	  +> perl-5.6.2/ext/Thread/unsync3.tx
	  +> perl-5.6.2/ext/Thread/unsync4.tx
	   - perl-5.6.2/ext/Thread/create.t perl-5.6.2/ext/Thread/die.t
	   - perl-5.6.2/ext/Thread/die2.t perl-5.6.2/ext/Thread/io.t
	   - perl-5.6.2/ext/Thread/join.t perl-5.6.2/ext/Thread/join2.t
	   - perl-5.6.2/ext/Thread/list.t perl-5.6.2/ext/Thread/lock.t
	   - perl-5.6.2/ext/Thread/queue.t perl-5.6.2/ext/Thread/specific.t
	   - perl-5.6.2/ext/Thread/sync.t perl-5.6.2/ext/Thread/sync2.t
	   - perl-5.6.2/ext/Thread/unsync.t perl-5.6.2/ext/Thread/unsync2.t
	   - perl-5.6.2/ext/Thread/unsync3.t
	   - perl-5.6.2/ext/Thread/unsync4.t
	   ! perl-5.6.2/MANIFEST perl-5.6.2/README.threads
____________________________________________________________________________
[ 20787] By: rgs                                   on 2003/08/19  21:13:30
        Log: Roughly integrate t/TEST from bleadperl.
             This means that t/UTEST can probably be suppressed, but that
             implies some makefile adjustments.
     Branch: maint-5.6
	   + perl-5.6.2/t/TestInit.pm
	   ! perl-5.6.2/MANIFEST perl-5.6.2/t/TEST perl-5.6.2/t/op/eval.t
	   ! perl-5.6.2/t/op/regexp_noamp.t perl-5.6.2/t/op/subst_wamp.t
____________________________________________________________________________
[ 20624] By: rgs                                   on 2003/08/11  21:12:02
        Log: Grab perlbug from bleadperl (@18698)
     Branch: maint-5.6
	   ! perl-5.6.2/utils/perlbug.PL
____________________________________________________________________________
[ 20481] By: rgs                                   on 2003/08/04  21:39:01
        Log: AUTHORS update.
     Branch: maint-5.6
	   ! perl-5.6.2/AUTHORS
____________________________________________________________________________
[ 20449] By: rgs                                   on 2003/08/02  19:22:34
        Log: Integrate change #19805 from bleadperl :
             
             Subject: /ext/DynaLoader/dl_dyld.xs
             From: "Peter O'Gorman" <peter@pogma.com>
             Date: Tue, 17 Jun 2003 23:45:47 +0900
             Message-Id: <619B6B53-A0D2-11D7-BAF7-003065F6C222@pogma.com>
             
             No need to see dlclose() and dlsym() outside the dl_dyld.xs
             (Mac OS X, NeXT), and seeing them is harmful for libdlcompat
             of OpenDarwin.
     Branch: maint-5.6
	  !> perl-5.6.2/ext/DynaLoader/dl_dyld.xs
____________________________________________________________________________
[ 20403] By: rgs                                   on 2003/07/31  22:00:47
        Log: When adding files, update MANIFEST.
     Branch: maint-5.6
	   ! perl-5.6.2/MANIFEST
____________________________________________________________________________
[ 20402] By: rgs                                   on 2003/07/31  21:53:23
        Log: Forgot to add those files from DB_File 1.806.
     Branch: maint-5.6
	   + perl-5.6.2/ext/DB_File/config.in
	   + perl-5.6.2/ext/DB_File/fallback.h
	   + perl-5.6.2/ext/DB_File/fallback.xs
	   + perl-5.6.2/ext/DB_File/ppport.h
____________________________________________________________________________
[ 20400] By: rgs                                   on 2003/07/31  20:58:37
        Log: Discourage from using threads in INSTALL.
     Branch: maint-5.6
	   ! perl-5.6.2/INSTALL
____________________________________________________________________________
[ 20399] By: rgs                                   on 2003/07/31  20:42:45
        Log: Backport doc patch #20396 (Document in INSTALL that
             -Uinstallusrbinperl is now the default.) (goes with
             change #20382.)
     Branch: maint-5.6
	   ! perl-5.6.2/INSTALL
____________________________________________________________________________
[ 20391] By: rgs                                   on 2003/07/31  20:20:48
        Log: Introduce a '_test' make target, equivalent to 'test',
             to please Test::Smoke. In the future, backporting change
             9217 would be nice.
     Branch: maint-5.6
	   ! perl-5.6.2/Makefile.SH
____________________________________________________________________________
[ 20382] By: rgs                                   on 2003/07/31  19:33:36
        Log: Backport change #17926 : make installusrbinperl optional
             (that's probably better nowadays)
     Branch: maint-5.6
	   ! perl-5.6.2/Configure
____________________________________________________________________________
[ 20381] By: rgs                                   on 2003/07/31  18:41:29
        Log: Reintegrate change #11115 from the main branch :
             allow trailing whitespace when parsing /lib/syscalls.exp
             in AIX. Fixes detection of pipes and times syscalls on AIX 5.
     Branch: maint-5.6
	   ! perl-5.6.2/Configure
____________________________________________________________________________
[ 20361] By: rgs                                   on 2003/07/30  19:33:18
        Log: Integrate change #9996 as suggested by Jarrko :
             Add preemptive #undefs for some of the shorter and more prone
             to collision regcomp.h #defines.  (Background: the MASK collided
             with a system header #define in Rhapsody.)
             
             Backport change #18538 as suggested by Enache :
             Subject: [PATCH] Re: FreeBSD 5 hints patch
             From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
             Date: Mon, 30 Dec 2002 18:01:16 -0800
             Message-ID: <spPE+gzkg+6F092yn@efn.org>
     Branch: maint-5.6
	   ! perl-5.6.2/Configure
	  !> perl-5.6.2/regcomp.h
____________________________________________________________________________
[ 20328] By: rgs                                   on 2003/07/29  20:35:37
        Log: Integrate the CPAN distribution of DB_File 1.806.
     Branch: maint-5.6
	   ! perl-5.6.2/ext/DB_File/Changes
	   ! perl-5.6.2/ext/DB_File/DB_File.pm
	   ! perl-5.6.2/ext/DB_File/DB_File.xs
	   ! perl-5.6.2/ext/DB_File/DB_File_BS
	   ! perl-5.6.2/ext/DB_File/Makefile.PL
	   ! perl-5.6.2/ext/DB_File/dbinfo
	   ! perl-5.6.2/ext/DB_File/hints/dynixptx.pl
	   ! perl-5.6.2/ext/DB_File/hints/sco.pl
	   ! perl-5.6.2/ext/DB_File/typemap
	   ! perl-5.6.2/ext/DB_File/version.c perl-5.6.2/t/lib/db-btree.t
	   ! perl-5.6.2/t/lib/db-hash.t perl-5.6.2/t/lib/db-recno.t
____________________________________________________________________________
[ 20326] By: rgs                                   on 2003/07/29  19:59:46
        Log: Update Configure and makedepend.SH to work with gcc 3.x
             and with localized make messages.
             Update Configure and the hints files for svr5 to recognize
             OpenUNIX 8 as a flavor of Unixware.
     Branch: maint-5.6
	   ! perl-5.6.2/Configure perl-5.6.2/hints/svr5.sh
	   ! perl-5.6.2/makedepend.SH
____________________________________________________________________________
[ 20325] By: rgs                                   on 2003/07/29  19:55:51
        Log: Reintroduce the DEVELxxxxx stamp in the patchlevel.
             Put a small introductive note in perldelta.
     Branch: maint-5.6
	   ! perl-5.6.2/patchlevel.h perl-5.6.2/pod/perldelta.pod
____________________________________________________________________________
[ 20322] By: rgs                                   on 2003/07/29  19:33:28
        Log: Create the perl-5.6.2 branch from perl 5.6.1
             (i.e. from //depot/maint-5.6/perl/...@9654).
             The changes currently under //depot/maint-5.6/perl/...
             will eventually be used later to produce a 5.6.3 release.
     Branch: maint-5.6
	  +> (branch 1728 files)