-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes5.005
19342 lines (18636 loc) · 885 KB
/
Changes5.005
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 summary of significant changes
between versions and sub-versions of Perl, not necessarily a complete
list of each modification. If you'd like more detailed information,
please consult the comments in the patches on which the relevant
release of Perl is based. (Patches can be found on any CPAN
site, in the .../src/5.0 directory for full version releases,
or in the .../src/5/0/unsupported directory for sub-version
releases.)
---------------
CAST AND CREW
---------------
To give due honor to those who have made Perl what is is today,
here are some of the more common names in the Changes file, and their
current addresses (as of July 1998):
Gisle Aas <gisle@aas.no>
Abigail <abigail@fnx.com>
Kenneth Albanowski <kjahds@kjahds.com>
Russ Allbery <rra@stanford.edu>
Spider Boardman <spider@orb.nashua.nh.us>
Tom Christiansen <tchrist@perl.com>
Hallvard B Furuseth <h.b.furuseth@usit.uio.no>
M. J. T. Guy <mjtg@cus.cam.ac.uk>
Jarkko Hietaniemi <jhi@iki.fi>
Nick Ing-Simmons <nik@tiuk.ti.com>
Andreas Koenig <a.koenig@mind.de>
Doug MacEachern <dougm@opengroup.org>
Paul Marquess <pmarquess@bfsec.bt.co.uk>
Stephen McCamant <alias@mcs.com>
Laszlo Molnar <molnarl@cdata.tvnet.hu>
Hans Mulder <hansmu@xs4all.nl>
Matthias Neeracher <neeri@iis.ee.ethz.ch>
Jeff Okamoto <okamoto@hpcc123.corp.hp.com>
Ulrich Pfeifer <pfeifer@charly.informatik.uni-dortmund.de>
Tom Phoenix <rootbeer@teleport.com>
Joshua Pritikin <joshua.pritikin@db.com>
Norbert Pueschel <pueschel@imsdd.meb.uni-bonn.de>
Dean Roehrich <roehrich@cray.com>
Hugo van der Sanden <hv@crypt0.demon.co.uk>
Roderick Schertler <roderick@argon.org>
Kurt D. Starsinic <kstar@isinet.com>
Dan Sugalski <sugalskd@osshe.edu>
Larry W. Virden <lvirden@cas.org>
Ilya Zakharevich <ilya@math.ohio-state.edu>
And the Keepers of the Patch Pumpkin:
Charles Bailey <bailey@newman.upenn.edu>
Graham Barr <gbarr@pobox.com>
Malcolm Beattie <mbeattie@sable.ox.ac.uk>
Tim Bunce <Tim.Bunce@ig.co.uk>
Andy Dougherty <doughera@lafcol.lafayette.edu>
Gurusamy Sarathy <gsar@umich.edu>
Chip Salzenberg <chip@perl.com>
And, of course, the Author of Perl:
Larry Wall <larry@wall.org>
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)
----------------
Version 5.005_03 Third maintenance release of 5.005
----------------
____________________________________________________________________________
[ 3198] By: gbarr on 1999/03/28 22:21:49
Log: redo #3193 which #3195 undid
Branch: maint-5.005/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 3197] By: gbarr on 1999/03/28 21:04:04
Log: Updated CPAN.pm to 1.48
Branch: maint-5.005/perl
! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
____________________________________________________________________________
[ 3196] By: gbarr on 1999/03/28 17:21:27
Log: AIX hints update from Jarkko
Branch: maint-5.005/perl
! hints/aix.sh
____________________________________________________________________________
[ 3195] By: jhi on 1999/03/28 16:42:54
Log: Update perlhist on 5_03.
Branch: maint-5.005/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 3193] By: gsar on 1999/03/28 09:46:29
Log: =end needs matching =begin (or installhtml will croak)
Branch: maint-5.005/perl
! pod/perlhist.pod
____________________________________________________________________________
[ 3192] By: gsar on 1999/03/28 09:10:15
Log: update pod/Makefile
Branch: maint-5.005/perl
! pod/Makefile
____________________________________________________________________________
[ 3191] By: gsar on 1999/03/28 08:43:47
Log: integrate change#3180 from mainline
fix bogus OPf_REF context for the BLOCK in C<grep BLOCK @foo>
(sometimes caused bizarreness in the BLOCK)
Branch: maint-5.005/perl
+> t/op/grep.t
!> MANIFEST op.c
____________________________________________________________________________
[ 3190] By: gsar on 1999/03/28 08:29:51
Log: integrate change#3147 from mainline
warn about newfangled vfork() caveats
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 3189] By: gsar on 1999/03/28 08:22:00
Log: various pod niggles
Branch: maint-5.005/perl
! pod/perl.pod pod/perldebug.pod pod/perldiag.pod
! pod/perlfunc.pod pod/perlhist.pod
____________________________________________________________________________
[ 3188] By: gsar on 1999/03/28 07:37:43
Log: integrate binary compatible variant of change#3098 from mainline
Branch: maint-5.005/perl
! op.c perl.h t/base/lex.t toke.c
____________________________________________________________________________
[ 3187] By: gsar on 1999/03/28 07:31:16
Log: regularize CAPI declarations (CAPI extensions now build under
the Borland compiler)
Branch: maint-5.005/perl
! win32/GenCAPI.pl
____________________________________________________________________________
[ 3186] By: gsar on 1999/03/28 07:26:33
Log: ensure XS_LOCKS stuff happens *before* XSUB is entered under
-DPERL_CAPI
Branch: maint-5.005/perl
! XSlock.h win32/GenCAPI.pl win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 3185] By: gbarr on 1999/03/28 06:37:41
Log: integrate change #2846 from mainline
a modified version of suggested patch for pack template 'Z'; added docs
From: "Valeriy E. Ushakov" <uwe@ptc.spbu.ru>
Date: Mon, 16 Jun 1997 03:00:31 +0400 (MSD)
Message-ID: <%lOHpzIuGV@snark.ptc.spbu.ru>
Subject: lack of pack/unpack letter with useful symmetry for C null delimited strings
Branch: maint-5.005/perl
! pod/perldelta.pod pod/perlfunc.pod pp.c
!> t/op/pack.t
____________________________________________________________________________
[ 3184] By: gbarr on 1999/03/28 06:35:50
Log: integrate change # 3160 from mainline
better description of OP_UNSTACK (s/unstack/iteration finalizer/)
Branch: maint-5.005/perl
! opcode.h opcode.pl
____________________________________________________________________________
[ 3182] By: gbarr on 1999/03/28 03:40:28
Log: Integrate changes #3067 and #3106 from mainline
exempt $foo::a,$foo::b from warnings only if sort() was seen in package foo
From: Graham Barr <gbarr@ti.com>
Date: Wed, 3 Mar 1999 17:23:56 -0600
Message-ID: <19990303172356.F7442@dal.asp.ti.com>
Subject: Re: 'use strict' doesn't work for one-letter variables
change#3067 failed package.t due to needless creation of $a and $b;
fixed to do that only for C<sort BLOCK|CODE @foo>, not C<sort(@foo)>
Branch: maint-5.005/perl
! gv.c op.c t/pragma/warn-1global
____________________________________________________________________________
[ 3179] By: gsar on 1999/03/28 02:14:04
Log: fix thread segfault when passing large number of arguments to child
a la C<Thread->new($foo, 1..1000)>
Branch: maint-5.005/perl
! ext/Thread/Thread.xs t/lib/thread.t
____________________________________________________________________________
[ 3178] By: gbarr on 1999/03/28 01:39:23
Log: fix $Config{'usethreads'} typo in perlthrtut
From: Ian Maloney <szhmf9@wsblob.ubs.com>
Date: Thu, 25 Mar 1999 16:40:14 +0100 (MET)
Message-Id: <199903251540.QAA02439@wsblob.>
Subject: perlthrtut documentation error
Branch: maint-5.005/perl
! pod/perlthrtut.pod
____________________________________________________________________________
[ 3177] By: gbarr on 1999/03/28 01:09:59
Log: Integrate #2910 from mainline
slurping an empty file should return '' rather than undef, with
commensurate effects on ARGV processing
Branch: maint-5.005/perl
! pod/perldelta.pod pp_hot.c sv.h
!> t/io/argv.t
____________________________________________________________________________
[ 3176] By: gbarr on 1999/03/28 00:00:30
Log: Integrate relevant doc changes from mainline
Branch: maint-5.005/perl
!> (integrate 34 files)
____________________________________________________________________________
[ 3175] By: gbarr on 1999/03/27 19:20:32
Log: Integrated #2352 and #2397 from mainline
Implement $^C to allow perl access to -c flag - I think this
was agreed once...
Update docs and English.pm for $^C
Branch: maint-5.005/perl
! gv.c mg.c
!> lib/English.pm
____________________________________________________________________________
[ 3174] By: gbarr on 1999/03/27 18:21:01
Log: Update Copyright year
Branch: maint-5.005/perl
! EXTERN.h INTERN.h README av.c av.h cop.h cv.h deb.c doio.c
! doop.c dump.c form.h gv.c gv.h handy.h hv.c hv.h mg.c mg.h
! op.c op.h perl.h perly.y pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c
! regcomp.c regexec.c run.c scope.c sv.c sv.h toke.c util.c
! util.h
____________________________________________________________________________
[ 3173] By: gbarr on 1999/03/27 18:19:47
Log: Update Test.pm to VERSION 1.122 from CPAN
Branch: maint-5.005/perl
! lib/Test.pm
____________________________________________________________________________
[ 3154] By: jhi on 1999/03/24 21:40:51
Log: Reword the shared library search path (LD_LIBRARY_PATH) info
based on suggestions from Andy Dougherty.
Branch: maint-5.005/perl
! INSTALL
____________________________________________________________________________
[ 3146] By: jhi on 1999/03/24 09:20:14
Log: Bring in changes #2808 and #2812 (from mainline perl)
that enhance the perlbug checklist.
Branch: maint-5.005/perl
! utils/perlbug.PL
____________________________________________________________________________
[ 3130] By: jhi on 1999/03/23 22:02:23
Log: Don't use config.msg to remind about the
LD_LIBRARY_PATH because Makefile.SH takes
care of that.
Use shrplib in DEC O^W^Digital U^W^WTru64 UNIX.
This used to be the default but in some MT or another it
was dropped because of some transient error or another.
Branch: maint-5.005/perl
! Configure hints/dec_osf.sh
____________________________________________________________________________
[ 3122] By: jhi on 1999/03/19 21:12:14
Log: Describe the new Benchmark feature in more detail.
Branch: cfgperl
! pod/perldelta.pod
Branch: maint-5.005/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 3121] By: jhi on 1999/03/19 08:16:12
Log: AVAILABILITY tuning.
Branch: cfgperl
! pod/perl.pod
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 3119] By: jhi on 1999/03/17 14:33:43
Log: More Apollo fixes.
Branch: maint-5.005/perl
! README.apollo hints/apollo.sh t/lib/io_udp.t
____________________________________________________________________________
[ 3118] By: jhi on 1999/03/16 17:23:39
Log: Nada.
Branch: maint-5.005/perl
! README.apollo
____________________________________________________________________________
[ 3117] By: jhi on 1999/03/16 17:18:49
Log: Apollo DomainOS AVAILABILITY.
Branch: cfgperl
! pod/perl.pod
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 3116] By: jhi on 1999/03/16 17:14:00
Log: Apollo DomainOS patch
From: Johann Klasek <jk@auto.tuwien.ac.at>
Subject: Re: DomainPerl
Date: Tue, 16 Mar 1999 17:46:32 +0100
Message-ID: <19990316174632.A19759@euklid.auto.tuwien.ac.at>
Branch: maint-5.005/perl
+ README.apollo apollo/netinet/in.h
! MANIFEST hints/apollo.sh
____________________________________________________________________________
[ 3115] By: jhi on 1999/03/16 14:23:54
Log: From: Paul Marquess <pmarquess@bfsec.bt.co.uk>
To: Gurusamy Sarathy <gsar@activestate.com>,
Graham Barr <gbarr@pobox.com>
Cc: Perl5 Porters <perl5-porters@perl.org>,
"Paul.Marquess" <Paul.Marquess@btinternet.com>
Subject: [PATCH 5.005_56 & 5.005_03_T6] Upgrade DB_File to version 1.65
Date: Sun, 14 Mar 1999 14:43:57 -0000
Message-Id: <199903141841.NAA17040@defender.perl.org>
Branch: maint-5.005/perl
! ext/DB_File/Changes ext/DB_File/DB_File.pm
! ext/DB_File/DB_File.xs ext/DB_File/typemap
____________________________________________________________________________
[ 3114] By: jhi on 1999/03/16 12:42:20
Log: Mention Rhapsody in 5.005_5X perldelta,
and in Rhapsody and Netware in 5.005_0X and 5.005_5X
*planned* AVAILABILITY.
Branch: cfgperl
! pod/perl.pod pod/perldelta.pod
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 3113] By: jhi on 1999/03/16 10:38:53
Log: perldelta niggling.
Branch: cfgperl
! pod/perldelta.pod
Branch: maint-5.005/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 3111] By: jhi on 1999/03/16 10:28:10
Log: AVAILABILITY update: still mention PowerUX,
Novell Netware now has sources available.
Branch: cfgperl
! pod/perl.pod
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 3105] By: jhi on 1999/03/12 15:54:57
Log: Recognize the NetBSD packages collection.
Branch: maint-5.005/perl
! hints/netbsd.sh
____________________________________________________________________________
[ 3104] By: jhi on 1999/03/12 09:07:04
Log: From: pvhp@forte.com (Peter Prymmer)
To: jhi@iki.fi, perl-mvs@perl.org, perlbug@perl.com
Subject: [PATCH MT6,_56] was Re: Not OK: perl 5.00503 +MAINT_TRIAL_6 on os390 06.00 (UNINSTALLED)
Date: Thu, 11 Mar 99 14:24:54 PST
Message-Id: <9903112224.AA24346@forte.com>
Branch: maint-5.005/perl
! README.os390 t/lib/posix.t
____________________________________________________________________________
[ 3102] By: jhi on 1999/03/10 11:01:20
Log: From: pvhp@forte.com (Peter Prymmer)
To: perl5-porters@perl.org
Subject: [5.005_03-MT6]Patch: time passes
Date: Tue, 9 Mar 99 18:42:17 PST
Message-Id: <9903100242.AA29057@forte.com>
Branch: maint-5.005/perl
! perl.c
____________________________________________________________________________
[ 3101] By: jhi on 1999/03/10 10:30:15
Log: From: Mark-Jason Dominus <mjd@plover.com>
To: perl5-porters@perl.com
Subject: Minor fix to perlfunc.pod
Date: Mon, 08 Mar 1999 20:05:53 -0500
Message-ID: <19990309010553.13757.qmail@plover.com>
Branch: maint-5.005/perl
! pod/perlfunc.pod
____________________________________________________________________________
[ 3094] By: jhi on 1999/03/06 16:16:15
Log: From: Mark Kettenis <kettenis@wins.uva.nl>
To: jhi@iki.fi
Subject: Oops
Date: Sat, 6 Mar 1999 17:15:35 +0100 (CET)
Message-Id: <199903061615.RAA00207@delius.kettenis.nl>
Branch: maint-5.005/perl
! README.hurd
____________________________________________________________________________
[ 3093] By: jhi on 1999/03/06 15:59:46
Log: From: Mark Kettenis <kettenis@wins.uva.nl>
To: jhi@iki.fi
Subject: New Hurd README
Date: Sat, 6 Mar 1999 16:46:12 +0100 (CET)
Message-Id: <199903061601.RAA00185@delius.kettenis.nl>
Branch: maint-5.005/perl
! README.hurd
____________________________________________________________________________
[ 3092] By: jhi on 1999/03/06 12:52:06
Log: From: Paul_Green@stratus.com
To: perl5-porters@perl.org
Cc: jhi@iki.fi, Paul_Green@stratus.com
Subject: [PATCH 5.005_03-MAINT_TRIAL_6]: platform: vos -- updates to VOS port of Perl5
Date: Fri, 5 Mar 1999 18:08:49 -0500
Message-ID: <1D1A4EF7AD4DD211A80D00A0C9D7DB665A035A@exna1.stratus.com>
Branch: maint-5.005/perl
! vos/config.h vos/config_h.SH_orig
____________________________________________________________________________
[ 3091] By: jhi on 1999/03/06 12:42:21
Log: From: Dan Sugalski <sugalskd@osshe.edu>
To: perl5-porters@perl.org, vmsperl@perl.org
Subject: [PATCH 5.005_03-MT6]VMS build patch
Date: Fri, 05 Mar 1999 12:36:19 -0800
Message-Id: <3.0.6.32.19990305123619.02d326a0@ous.edu>
Branch: maint-5.005/perl
! vms/subconfigure.com
____________________________________________________________________________
[ 3090] By: gsar on 1999/03/06 04:40:03
Log: integrate change#3089 from mainline
tolerate CRs after options
Branch: maint-5.005/perl
!> perl.c
____________________________________________________________________________
[ 3086] By: gbarr on 1999/03/05 01:48:05
Log: #3085 was a bit premature, this is MT6 as 2 files were
missing from MANIFEST
Branch: maint-5.005/perl
! MANIFEST
____________________________________________________________________________
[ 3085] By: gbarr on 1999/03/05 01:41:06
Log: Trial release 6
Branch: maint-5.005/perl
! Changes
____________________________________________________________________________
[ 3084] By: gbarr on 1999/03/05 01:34:07
Log: Don't process - as a file in Errno_pm.PL
From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Thu, 4 Mar 1999 13:29:23 +0200 (EET)
Message-ID: <14046.28307.561693.849859@alpha.hut.fi>
Subject: Re: maint-5.005
Branch: maint-5.005/perl
! ext/Errno/Errno_pm.PL
____________________________________________________________________________
[ 3081] By: gsar on 1999/03/05 00:14:33
Log: protect against doubled backslashes
Branch: maint-5.005/perl
! ext/Errno/Errno_pm.PL
____________________________________________________________________________
[ 3080] By: gsar on 1999/03/04 23:37:20
Log: pick up AIX hints from mainline
Branch: maint-5.005/perl
!> hints/aix.sh
____________________________________________________________________________
[ 3079] By: gsar on 1999/03/04 21:09:43
Log: tweak cast and crew
Branch: maint-5.005/perl
! Changes
____________________________________________________________________________
[ 3078] By: gsar on 1999/03/04 21:03:04
Log: update patchlevel, Changes
Branch: maint-5.005/perl
! Changes README.win32 patchlevel.h
!> pod/perlhist.pod
____________________________________________________________________________
[ 3075] By: gsar on 1999/03/04 07:36:53
Log: integrate changes#3037,3041 from mainline
fix longstanding bug: searches for lexicals originating within eval''
weren't stopping at the subroutine boundary correctly
--
fix subtle bug in eval'' testsuite
Branch: maint-5.005/perl
!> op.c proto.h t/op/eval.t
____________________________________________________________________________
[ 3074] By: gsar on 1999/03/04 07:32:15
Log: integrate change#3048 from mainline
updated HP-UX notes from Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
Branch: maint-5.005/perl
!> MANIFEST README.hpux
____________________________________________________________________________
[ 3073] By: gsar on 1999/03/04 07:29:43
Log: integrate changes#3014,3015,3021,3032,3034,3045 from mainline
more "correct" utbuf for utime()
--
avoid modifying readonly values from qw()
--
ansify perlio.c, fix PerlIO-ish typos
--
add README.hpux
--
s/print STDERR/warn/ suggested by abigail@fnx.com; add $VERSION
--
destroy PL_svref_mutex in perl_destruct()
Branch: maint-5.005/perl
+> README.hpux
!> MANIFEST doio.c ext/DynaLoader/dl_beos.xs
!> ext/DynaLoader/dl_cygwin32.xs iperlsys.h
!> lib/ExtUtils/MM_Unix.pm lib/Getopt/Std.pm perl.c perlio.c
____________________________________________________________________________
[ 3072] By: gsar on 1999/03/04 07:12:15
Log: integrate changes#2978,2979 from mainline
bring '*' prototype closer to how it behaves internally
--
doc for change#2978
Branch: maint-5.005/perl
+> t/lib/fatal.t
!> MANIFEST lib/Fatal.pm op.c pod/perlsub.pod t/comp/proto.t
____________________________________________________________________________
[ 3071] By: gsar on 1999/03/04 07:05:50
Log: integrate changes#2919,2920,2921,2928,2932,2933 from mainline
applied suggested patch, with several language/readability tweaks
From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Date: Fri, 29 Jan 1999 00:25:02 -0500
Message-ID: <19990129002502.C2898@monk.mps.ohio-state.edu>
Subject: Re: [PATCH 5.005_*] Better parsing docs
--
tweak READ() docs to mention $buffer must be altered by reference
--
use New() et al., rather than safemalloc() et al.
From: jan.dubois@ibm.net (Jan Dubois)
Date: Fri, 29 Jan 1999 23:27:22 +0100
Message-ID: <36bd33f2.51029616@smtp1.ibm.net>
Subject: [PATCH _03-MT5] POSIX.xs memory API
--
allow the Carp routines to pass through exception objects
--
clarify what a "line" is
--
From: "J. van Krieken" <John.van.Krieken@ATComputing.nl>
Date: Thu, 4 Feb 1999 17:25:25 +0100 (MET)
Message-Id: <199902041625.RAA14489@atcmpg.ATComputing.nl>
Subject: s2p incorrectly handles hold space commands
Branch: maint-5.005/perl
!> ext/POSIX/POSIX.xs lib/Carp.pm pod/perlfunc.pod pod/perlop.pod
!> pod/perltie.pod pod/perlvar.pod x2p/s2p.PL
____________________________________________________________________________
[ 3070] By: gsar on 1999/03/04 06:43:57
Log: integrate changes#2748,2753,2754,2819,2824,2855,2866,2867,2869,2885,2888,2889
from mainline
From: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
Date: Thu, 3 Dec 1998 15:10:17 -0500
Message-Id: <199812032010.PAA09692@jik.shore.net>
Subject: sample checksum code in "perlfunc" man page is wrong
--
Todo tweaks
--
Todo updates from Andy Dougherty <doughera@lafayette.edu>
--
avoid garbage in db->dirbuf
From: Masahiro KAJIURA <masahiro.kajiura@toshiba.co.jp>
Date: Sat, 05 Dec 1998 14:14:54 +0900
Message-Id: <199812050514.OAA23268@toshiba.co.jp>
Subject: SDBM bug
--
tweak doc on bitwise ops
--
applied suggested patch; added tests
From: Adam Krolnik <adamk@gypsy.cyrix.com>
Date: Sat, 12 Dec 98 15:30:18 -0600
Message-Id: <9812122130.AA03717@gypsy.eng.cyrix.com>
Subject: Range operation doesn't handle IV_MAX
--
display full pathname of unreadable files
--
av_extend() doc tweak from Jan Dubois
--
update win32/pod.mak
--
note how to find REG_INFTY limit
--
add note about test-notty target
--
tweak PERL_STRICT_CR notes
Branch: maint-5.005/perl
!> Porting/pumpkin.pod README.win32 Todo Todo-5.005
!> ext/SDBM_File/sdbm/sdbm.c pod/perldelta.pod pod/perlfunc.pod
!> pod/perlguts.pod pod/perlop.pod pod/perlre.pod pp_ctl.c
!> t/op/range.t utils/perldoc.PL win32/pod.mak
____________________________________________________________________________
[ 3069] By: gsar on 1999/03/04 06:02:29
Log: integrate change#2747 from mainline
typos in Pod/Text.pm
Branch: maint-5.005/perl
!> lib/Pod/Text.pm
____________________________________________________________________________
[ 3059] By: jhi on 1999/03/03 22:46:43
Log: Document HP-UX 11 Y2K patch effect, based on
From: "Richard L. England" <richard_england@mentorg.com>
To: perlbug@perl.com
CC: "England, Richard" <richard_england@mentorg.com>
Subject: test io/fs.t number 18 fails on HPUX 11.0 when Y2K patch installed.
Date: Fri, 26 Feb 1999 15:35:49 -0800
Message-ID: <36D72FD4.4136C84F@mentorg.com>
Branch: maint-5.005/perl
! INSTALL
____________________________________________________________________________
[ 3057] By: jhi on 1999/03/03 21:42:22
Log: The *symbols patch (for Kurt's h2ph fixes) haunted us in AIX.
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 3056] By: jhi on 1999/03/03 21:21:46
Log: Fixed the pthreads_created_joinable test messed up
by the Mach cthreads change.
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 3055] By: jhi on 1999/03/03 18:17:55
Log: Configure and make gotchas.
Branch: maint-5.005/perl
! INSTALL
____________________________________________________________________________
[ 3051] By: jhi on 1999/03/02 08:24:52
Log: From: Dan Sugalski <sugalskd@osshe.edu>
To: perl5-porters@perl.org, vmsperl@perl.org
Subject: [PATCH 5.005_0x and 5.005_5x]Minor update to README.VMS
Date: Mon, 01 Mar 1999 16:10:57 -0800
Message-Id: <3.0.6.32.19990301161057.03b1fc00@ous.edu>
Branch: cfgperl
! README.vms
Branch: maint-5.005/perl
! README.vms
____________________________________________________________________________
[ 3049] By: jhi on 1999/03/02 07:34:21
Log: From: Spider Boardman <spider@leggy.zk3.dec.com>
To: perl5-porters@perl.org
Subject: [PATCH] Eliminate (valid) warning in byterun.c
Date: Mon, 01 Mar 1999 17:27:59 -0500
Message-Id: <199903012227.RAA00181@leggy.zk3.dec.com>
Branch: cfgperl
! bytecode.h
Branch: maint-5.005/perl
! bytecode.h
____________________________________________________________________________
[ 3028] By: jhi on 1999/02/26 14:40:00
Log: HP-UX 11 threads.
From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
To: perl5-porters@perl.org
Cc: jhi@cc.hut.fi
Subject: Maint 5 and _54 with threading on HP-UX 11.00
Date: Wed, 3 Feb 1999 12:57:18 -0800 (PST)
Message-Id: <199902032057.MAA10218@xfiles.intercon.hp.com>
NOTE from jhi: the hpux hints could still be more robust by
disabling gdbm when necessary.
Currently if there's a libgdbm.sl (gdbm 1.7.3) which is pre-11,
linking -lgdbm -lpthread creates an executable that instantly
core dumps on a pthreads internal panic:
./gdpt
Pthread internal error: message: __libc_reinit() failed, file: ../pthreads/pthread.c, line: 1096
Return Pointer is 0xc082bf33
17639 quit (core dumped) ./gdpt
You don't have to *use* either gdbm or pthreads in the executable,
just linking them together is enough. Workaround is to recompile
the GDBM under HP-UX 11, that makes the problem to go away.
Branch: maint-5.005/perl
! hints/hpux.sh thread.h
____________________________________________________________________________
[ 3027] By: jhi on 1999/02/26 09:04:29
Log: From: abigail@fnx.com
To: perl5-porters@perl.org (Perl Porters)
Subject: [PATCH 5.005_02 Getopt::Std] warn() instead of print STDERR.
Date: Thu, 25 Feb 1999 22:08:41 -0500 (EST)
Message-ID: <19990226030841.5985.qmail@alexandra.wayne.fnx.com>
Branch: maint-5.005/perl
! lib/Getopt/Std.pm
____________________________________________________________________________
[ 3026] By: jhi on 1999/02/26 08:18:26
Log: full_ar wasn't propagated.
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 3013] By: jhi on 1999/02/22 19:27:44
Log: Fix MacPerl version, change PowerUX to PowerMAX.
From: Chris Nandor <pudge@pobox.com>
To: jhi@iki.fi
Cc: perl5-porters@perl.org
Subject: Re: perl current availability as documented by perl.pod
Date: Sun, 21 Feb 1999 11:06:03 -0500
Message-Id: <v04020a07b2f5df60c9e3@[192.168.0.77]>
From: Tom Horsley <Tom.Horsley@mail.ccur.com>
To: jhi@iki.fi
Cc: perl5-porters@perl.org
Subject: Re: perl current availability as documented by perl.pod
Date: Mon, 22 Feb 1999 13:08:30 GMT
Message-Id: <199902221308.NAA19971@cleo.ccur.com>
Branch: cfgperl
! pod/perl.pod
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 3010] By: jhi on 1999/02/22 10:21:55
Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
To: gbarr@pobox.com (Graham Barr)
Cc: perl5-porters@perl.org
Subject: [PATCH 5.005_03-MT5] DB_File 1.64 patch
Date: Mon, 22 Feb 1999 10:12:34 +0000 (GMT)
Message-Id: <9902221012.AA17784@claudius.bfsec.bt.co.uk>
Branch: maint-5.005/perl
! ext/DB_File/Changes ext/DB_File/DB_File.pm
! ext/DB_File/DB_File.xs ext/DB_File/typemap t/lib/db-recno.t
____________________________________________________________________________
[ 3005] By: jhi on 1999/02/22 08:35:30
Log: Configure/Perl knew how to look for use Mach cthreads
but Configure didn't let them to be used ($osname 'next').
Branch: cfgperl
! Configure config_h.SH
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 3004] By: jhi on 1999/02/21 15:46:02
Log: Update Acorn AVAILABILITY.
Branch: cfgperl
! pod/perl.pod
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 3003] By: jhi on 1999/02/21 14:50:42
Log: From: rjk@linguist.dartmouth.edu (Ronald J. Kimball)
To: perl5-porters@perl.org (Perl 5 Porters)
Subject: PATCH: perlref.pod - symbolic ref example
Date: Sat, 20 Feb 1999 17:32:11 -0500 (EST)
Message-Id: <199902202232.RAA62306@linguist.dartmouth.edu>
Branch: cfgperl
! pod/perlref.pod
Branch: maint-5.005/perl
! pod/perlref.pod
____________________________________________________________________________
[ 3000] By: jhi on 1999/02/21 14:15:31
Log: pack s/l for negative numbers was broken on platforms
where sizeof(short) != 2 or sizeof(long) != 4 (Alpha, Cray).
pack v was broken for sizeof(short) == 8 big-endian platforms
(Cray), only zeros were produced.
Branch: maint-5.005/perl
! perl.h pod/perlfunc.pod pp.c t/op/pack.t
____________________________________________________________________________
[ 2997] By: jhi on 1999/02/20 14:00:26
Log: Glossary update.
Branch: maint-5.005/perl
! Porting/Glossary
____________________________________________________________________________
[ 2995] By: jhi on 1999/02/20 12:25:10
Log: Document #2893, Mach cthreads support.
Branch: maint-5.005/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 2986] By: jhi on 1999/02/19 23:26:34
Log: Remove the unnecessary osf1 -D__LANGUAGE_C__.
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 2983] By: jhi on 1999/02/19 20:35:51
Log: Mach cthreads:
From: brie@corp.home.net (Brian Harrison)
Subject: perl5.005_02 patch for mthreads
To: perl5-porters@perl.org
Date: Fri, 23 Oct 1998 14:20:57 -0700 (PDT)
Message-ID: <Pine.GSO.4.04.9810231410220.11111-200000@sulaco.eos.home.net>
Branch: maint-5.005/perl
! Configure Porting/Glossary config_h.SH malloc.c perl.h
! thread.h
____________________________________________________________________________
[ 2981] By: jhi on 1999/02/19 19:49:03
Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
To: Chaim Frenkel <chaimf@pobox.com>,
Russ Allbery <rra@stanford.edu>,
Jarkko Hietaniemi <jhi@iki.fi>,
Gurusamy Sarathy <gsar@activestate.com>,
Graham Barr <gbarr@pobox.com>
Cc: bdensch@ameritech.net, perlbug@perl.com
Subject: [PATCH] Re: Solaris 7 for Intel
Message-ID: <19990219124404.A30182@O2.chapin.edu>
and Glossary update.
Branch: maint-5.005/perl
! Configure Makefile.SH Porting/Glossary
____________________________________________________________________________
[ 2980] By: gbarr on 1999/02/19 16:06:53
Log: Make result of h2xs work when user adds C<use strict>
Branch: maint-5.005/perl
! utils/h2xs.PL
____________________________________________________________________________
[ 2976] By: gsar on 1999/02/18 21:54:09
Log: integrate change#2975 from mainline
distinguish eval'' from BEGIN|INIT|END CVs (fixes buggy propagation
of lexical searches in BEGIN|INIT|END)
Branch: maint-5.005/perl
!> cop.h cv.h op.c perly.c perly.y pp_ctl.c t/op/misc.t
!> vms/perly_c.vms
____________________________________________________________________________
[ 2971] By: jhi on 1999/02/18 11:14:24
Log: AIX syscalls.exp scan missed explicitly 32/64-bit syscalls.
From: Joe Buehler <jhpb@hekimian.com>
To: perl5-porters@perl.org
Subject: setsid not detected by perl 5.005_02 configure under AIX 4.3
Date: 12 Feb 1999 11:25:21 -0500
Message-ID: <yd3lni3613i.fsf@ganymede.hekimian.com>
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 2967] By: jhi on 1999/02/17 23:12:59
Log: Make SCO/Unixware scan to work in Unixware, too.
From: Tom Hughes <thh@cyberscience.com>
To: perlbug@perl.com
Subject: Not OK: perl 5.00555 on i386-svr4 [actually Unixware 2.1] (UNINSTALLED)
Date: 17 Feb 1999 15:34:15 +0000
Message-ID: <yekg185nix4.fsf@elva.cyberscience.com>
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 2956] By: jhi on 1999/02/15 21:03:28
Log: OpenBSD sparc SHMLBA (like change #2945).
Branch: maint-5.005/perl
! ext/IPC/SysV/SysV.xs
____________________________________________________________________________
[ 2950] By: jhi on 1999/02/15 13:37:28
Log: AVAILABILITY sync.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2906] By: jhi on 1999/02/13 14:55:47
Log: AVAILABILITY sync.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2905] By: gsar on 1999/02/13 00:12:53
Log: integrate change#2898 from mainline
support win32_putenv()
Branch: maint-5.005/perl
!> mg.c util.c win32/GenCAPI.pl win32/makedef.pl win32/perlhost.h
!> win32/win32.c win32/win32iop.h
____________________________________________________________________________
[ 2904] By: jhi on 1999/02/12 21:23:30
Log: Add README.hurd, from Mark Kettenis <kettenis@wins.uva.nl>.
Branch: maint-5.005/perl
+ README.hurd
! MANIFEST
____________________________________________________________________________
[ 2900] By: jhi on 1999/02/12 12:07:28
Log: SCO ODT/OSR release scanning.
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 2897] By: jhi on 1999/02/12 11:24:25
Log: Undo a big bad paste from change #2884.
Branch: maint-5.005/perl
! hints/openbsd.sh
____________________________________________________________________________
[ 2896] By: jhi on 1999/02/12 11:19:52
Log: Update the error message of db-recno.t to DB version 1.86
and the URL to www.sleepycat.com instead of www.bostic.com.
Branch: maint-5.005/perl
! t/lib/db-recno.t
____________________________________________________________________________
[ 2895] By: gsar on 1999/02/12 11:18:59
Log: integrate change#2854 from mainline
compatibility fix: magic non-propagation in foreach implicit localization
Branch: maint-5.005/perl
!> pp_ctl.c t/op/local.t
____________________________________________________________________________
[ 2884] By: jhi on 1999/02/12 08:36:14
Log: OpenBSD pthreads awareness, thanks to
David Leonard <david.leonard@csee.uq.edu.au>
Branch: maint-5.005/perl
! Configure hints/openbsd.sh
____________________________________________________________________________
[ 2883] By: jhi on 1999/02/12 08:29:51
Log: AVAILABILITY sync.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2878] By: jhi on 1999/02/11 22:00:50
Log: Replace changes #2783, #2784, #2785, with a single tested
patch from Francois Desarmenien <desar@club-internet.fr>.
Branch: maint-5.005/perl
! MANIFEST ext/GDBM_File/hints/sco.pl ext/IPC/SysV/SysV.xs
! hints/sco.sh
____________________________________________________________________________
[ 2876] By: jhi on 1999/02/11 20:43:17
Log: From: Chris Nandor <pudge@pobox.com>
To: perl5-porters@perl.org
Subject: [PATCH] perlport.pod 1.39
Date: Thu, 11 Feb 1999 12:28:35 -0500
Message-Id: <v04020a2db2e8c3177123@[192.168.0.77]>
Branch: maint-5.005/perl
! pod/perlport.pod
____________________________________________________________________________
[ 2875] By: jhi on 1999/02/11 20:35:08
Log: The fpsetmask() really is SCO5 only.
Branch: maint-5.005/perl
! unixish.h
____________________________________________________________________________
[ 2874] By: jhi on 1999/02/11 20:32:06
Log: Change #2783 missed these.
Branch: maint-5.005/perl
! ext/IPC/SysV/SysV.xs unixish.h
____________________________________________________________________________
[ 2873] By: jhi on 1999/02/11 20:27:45
Log: Import the change #2810 from cfgperl.
Branch: maint-5.005/perl
+ ext/GDBM_File/hints/sco.pl
! MANIFEST hints/sco.sh unixish.h
____________________________________________________________________________
[ 2872] By: jhi on 1999/02/11 19:57:37
Log: Sync the current AVAILABILITY.
Branch: maint-5.005/perl
! pod/perl.pod pod/perldelta.pod
____________________________________________________________________________
[ 2871] By: jhi on 1999/02/11 19:42:54
Log: Copied the GNU/Hurd hints file over from cfgperl
because it works well enough (there are still some
rough edges in Hurd), verified via private
email from Mark Kettenis <kettenis@wins.uva.nl>
Branch: maint-5.005/perl
+ hints/gnu.sh
____________________________________________________________________________
[ 2864] By: jhi on 1999/02/11 08:45:00
Log: From: Spider Boardman <spider@zk3.dec.com>
To: perlbug@perl.com
Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on RISC-ultrix 4.4 (UNINSTALLED)
Date: Wed, 10 Feb 1999 23:33:31 -0500
Message-Id: <9902110433.AA12816@abyss.zk3.dec.com>
Branch: maint-5.005/perl
! doio.c ext/IPC/SysV/SysV.xs hints/ultrix_4.sh
____________________________________________________________________________
[ 2863] By: jhi on 1999/02/11 08:35:35
Log: AVAILABILITY.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2858] By: gsar on 1999/02/11 07:10:59
Log: remove dup hunk
Branch: maint-5.005/perl
! pod/perldelta.pod
____________________________________________________________________________
[ 2857] By: gsar on 1999/02/11 07:09:20
Log: sync with parent version of perldelta.pod
Branch: maint-5.005/perl
!> pod/perldelta.pod
____________________________________________________________________________
[ 2853] By: gsar on 1999/02/11 00:33:06
Log: integrate change#2816 from mainline
minor bug in dumping blessed subrefs
Branch: maint-5.005/perl
!> ext/Data/Dumper/Dumper.pm
____________________________________________________________________________
[ 2852] By: gsar on 1999/02/10 23:17:49
Log: fair warning about -Dusethreads
Branch: maint-5.005/perl
! Configure INSTALL README.threads
____________________________________________________________________________
[ 2851] By: jhi on 1999/02/10 23:00:39
Log: Snapshot of the ongoing AVAILABILITY discussion.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2850] By: jhi on 1999/02/10 16:07:32
Log: OS390 and Windows AVAILABILITY entries enhanced.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2849] By: jhi on 1999/02/10 12:39:46
Log: AS/400 and Mac were not described right.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2848] By: jhi on 1999/02/10 09:13:49
Log: Added AVAILABILITY section.
Branch: maint-5.005/perl
! pod/perl.pod
____________________________________________________________________________
[ 2837] By: jhi on 1999/02/08 14:51:39
Log: Fix typo introduced in change #2836.
Branch: maint-5.005/perl
! Configure
____________________________________________________________________________
[ 2836] By: jhi on 1999/02/08 14:44:31
Log: Augment change #2809, the h2ph-*symbols patch.
Branch: maint-5.005/perl
! Configure t/lib/h2ph.pht
____________________________________________________________________________
[ 2815] By: gsar on 1999/02/05 03:44:50
Log: integrate change#2242 from mainline
fix skipspace() to properly account for newlines in eval''-ed
strings (caused bogus line numbers in diagnostics and debugger)
Branch: maint-5.005/perl
!> toke.c