This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
OS/2 update
[perl5.git] / Changes
CommitLineData
99b32ad1
JH
1Please note: This file provides a complete, temporally ordered log of
2changes that went into every version of Perl. If you'd like more
3detailed information, please consult the comments in the individual
4patches posted to the perl5-porters mailing list. Patches for each
5individual change may also be obtained through ftp and rsync--see
21a64cc4 6pod/perlhack.pod for the details.
99b32ad1 7
21a64cc4 8For information on what's new in this release, see pod/perldelta.pod.
99b32ad1 9
5850c7a4 10[The "CAST AND CREW" list has been moved to AUTHORS.]
99b32ad1 11
99b32ad1
JH
12NOTE: Each change entry shows the change number; who checked it into the
13repository; when; description of the change; which branch the change
14happened in; and the affected files. The file lists have a short symbolic
15indicator:
16
17 ! modified
18 + added
19 - deleted
20 +> branched (from elsewhere)
21 !> merged changes (from elsewhere)
22
dd6de302
JH
23The Message-Ids in the change entries refer to the email messages sent
24to the perl5-porters mailing list. You can retrieve the messages for
25example from http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/
99b32ad1
JH
26
27--------------
6b490b4c 28Version v5.9.X Development release working toward v5.10
99b32ad1 29--------------
9d1d2f03
AMS
30
31____________________________________________________________________________
ce780a94 32____________________________________________________________________________
ea4fd6da
HS
33[ 21538] By: ams on 2003/10/26 08:08:02
34 Log: Fix off-by-one in $0 set magic. (From Autrijus.)
35 The whole PL_origalen thing in perl.c looks very hokey.
36 Branch: perl
37 ! mg.c
38____________________________________________________________________________
39[ 21537] By: nicholas on 2003/10/25 23:05:21
40 Log: Integrate:
41 [ 21536]
42 show the rehash flags in dumps
43 Branch: maint-5.8/perl
44 !> dump.c
45____________________________________________________________________________
46[ 21536] By: nicholas on 2003/10/25 22:33:18
47 Log: show the rehash flags in dumps
48 Branch: perl
49 ! dump.c
50____________________________________________________________________________
51[ 21535] By: nicholas on 2003/10/25 22:32:40
52 Log: Return 21533 (with modifications) having found the problem
53 Branch: perl
54 ! hv.c hv.h
55____________________________________________________________________________
56[ 21534] By: nicholas on 2003/10/25 20:46:36
57 Log: Back out 21533 because it broke Encode's build in really weird ways
58 Branch: perl
59 ! hv.c hv.h
60____________________________________________________________________________
61[ 21533] By: nicholas on 2003/10/25 13:10:21
62 Log: Plan C rough edge smoothing. Criteria for a hash split is now
63 the earlier of "more keys than buckets" (the old test) or
64 linked list too long. Rehash is triggered after a split if the
65 longest linked list is too long.
66 Branch: perl
67 ! hv.c hv.h
68____________________________________________________________________________
69[ 21532] By: rgs on 2003/10/25 10:03:18
70 Log: Subject: Re: [perl #948] $, untieable?
71 From: Richard Clamp <richardc@unixbeard.net>
72 Date: Tue, 21 Oct 2003 00:02:49 +0100
73 Message-ID: <20031020230249.GA31123@mirth.demon.co.uk>
74
75 Plus a small fix to t/TEST to recognize the added TODO test
76 as a TODO test.
77 Branch: perl
78 ! t/TEST t/op/tie.t
79____________________________________________________________________________
80[ 21531] By: nicholas on 2003/10/24 19:15:02
81 Log: Integrate:
82 [ 21530]
83
84 (The typo corrrection in blead)
85 Branch: maint-5.8/perl
86 !> ext/threads/shared/shared.xs
87____________________________________________________________________________
88[ 21530] By: nicholas on 2003/10/23 20:44:09
89 Log: Integrate:
90 [ 21527]
91 Fix two threads::shared leaks
92 #24061 - AV in shared interpreter wasn't set to AvREAL
93 #24255 - mortals were added to the shared interpreter's tmpstack
94 and never freed.
95
96 [oops. Also sucked in a typo correction in blead]
97 Branch: maint-5.8/perl
98 !> ext/threads/shared/shared.xs
99 Branch: perl
100 ! ext/threads/shared/shared.xs
101____________________________________________________________________________
102[ 21529] By: nicholas on 2003/10/23 19:39:41
103 Log: Integrate:
104 [ 21526]
105 From: Jan Dubois <jand@ActiveState.com>
106 Subject: [PATCH] Update Pod::Perldoc from 3.10 to 3.11
107 Date: Wed, 22 Oct 2003 20:17:07 -0700
108 Message-ID: <mjhepvgtnifdlgrvp20urtuu058e1jrav2@4ax.com>
109
110 From: Jan Dubois <jand@ActiveState.com>
111 Subject: [PATCH] Update I18N::LangTags from 0.28 to 0.29
112 Date: Wed, 22 Oct 2003 20:26:56 -0700
113 Message-ID: <jgiepv0a8fp8ffq3lpc5ujl7j25hoo1rdt@4ax.com>
114
115 [ 21528]
116 When it says "add", then, like, you have to p4 add it. D'oh!
117 (missed the new file in "Update I18N::LangTags from 0.28 to 0.29")
118 Branch: maint-5.8/perl
119 +> lib/I18N/LangTags/t/02decency.t
120 !> MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
121 !> lib/I18N/LangTags/List.pm lib/I18N/LangTags/README
122 !> lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm pod/perldoc.pod
123 !> utils/perldoc.PL
124____________________________________________________________________________
125[ 21528] By: nicholas on 2003/10/23 19:21:00
126 Log: When it says "add", then, like, you have to p4 add it. D'oh!
127 (missed the new file in "Update I18N::LangTags from 0.28 to 0.29")
128 Branch: perl
129 + lib/I18N/LangTags/t/02decency.t
130____________________________________________________________________________
131[ 21527] By: davem on 2003/10/23 19:13:20
132 Log: Fix two threads::shared leaks
133 #24061 - AV in shared interpreter wasn't set to AvREAL
134 #24255 - mortals were added to the shared interpreter's tmpstack
135 and never freed.
136 Branch: perl
137 ! ext/threads/shared/shared.xs
138____________________________________________________________________________
139[ 21526] By: nicholas on 2003/10/23 19:11:24
140 Log: From: Jan Dubois <jand@ActiveState.com>
141 Subject: [PATCH] Update Pod::Perldoc from 3.10 to 3.11
142 Date: Wed, 22 Oct 2003 20:17:07 -0700
143 Message-ID: <mjhepvgtnifdlgrvp20urtuu058e1jrav2@4ax.com>
144
145 From: Jan Dubois <jand@ActiveState.com>
146 Subject: [PATCH] Update I18N::LangTags from 0.28 to 0.29
147 Date: Wed, 22 Oct 2003 20:26:56 -0700
148 Message-ID: <jgiepv0a8fp8ffq3lpc5ujl7j25hoo1rdt@4ax.com>
149 Branch: perl
150 ! MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/ChangeLog
151 ! lib/I18N/LangTags/List.pm lib/I18N/LangTags/README
152 ! lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm pod/perldoc.pod
153 ! utils/perldoc.PL
154____________________________________________________________________________
155[ 21525] By: nicholas on 2003/10/23 18:51:56
156 Log: Integrate:
157 [ 21523]
158 Subject: [PATCH] utime documentation
159 From: Gisle Aas <gisle@ActiveState.com>
160 Date: 23 Oct 2003 05:33:43 -0700
161 Message-Id: <lrekx4jfq0.fsf@caliper.activestate.com>
162 Branch: maint-5.8/perl
163 !> pod/perlfunc.pod
164____________________________________________________________________________
165[ 21524] By: nicholas on 2003/10/23 18:38:02
166 Log: Integrate:
167 [ 21522]
168 Subject: [PATCH] dup2() not going through PerlLIO abstraction layer
169 From: Jan Dubois <jand@ActiveState.com>
170 Date: Wed, 22 Oct 2003 20:33:54 -0700
171 Message-Id: <vniepv0n5mcrbbutm0qgvori6n6vr6arsh@4ax.com>
172 Branch: maint-5.8/perl
173 !> doio.c
174____________________________________________________________________________
175[ 21523] By: ams on 2003/10/23 12:53:03
176 Log: Subject: [PATCH] utime documentation
177 From: Gisle Aas <gisle@ActiveState.com>
178 Date: 23 Oct 2003 05:33:43 -0700
179 Message-Id: <lrekx4jfq0.fsf@caliper.activestate.com>
180 Branch: perl
181 ! pod/perlfunc.pod
182____________________________________________________________________________
183[ 21522] By: ams on 2003/10/23 08:07:18
184 Log: Subject: [PATCH] dup2() not going through PerlLIO abstraction layer
185 From: Jan Dubois <jand@ActiveState.com>
186 Date: Wed, 22 Oct 2003 20:33:54 -0700
187 Message-Id: <vniepv0n5mcrbbutm0qgvori6n6vr6arsh@4ax.com>
188 Branch: perl
189 ! doio.c
190____________________________________________________________________________
191[ 21521] By: nicholas on 2003/10/22 20:30:05
192 Log: Integrate:
193 [ 21520]
194 patch created by Casey West from:
195
196 Subject: CPAN module problems
197 From: Edward Moy <emoy@apple.com>
198 Date: Fri, 10 Oct 2003 17:42:06 -0700
199 Message-Id: <BD2513C0-FB83-11D7-9065-000A956EFDEE@apple.com>
200
201 (change ld value in hints file)
202 Branch: maint-5.8/perl
203 !> hints/darwin.sh
204____________________________________________________________________________
205[ 21520] By: nicholas on 2003/10/22 19:50:15
206 Log: patch created by Casey West from:
207
208 Subject: CPAN module problems
209 From: Edward Moy <emoy@apple.com>
210 Date: Fri, 10 Oct 2003 17:42:06 -0700
211 Message-Id: <BD2513C0-FB83-11D7-9065-000A956EFDEE@apple.com>
212
213 (change ld value in hints file)
214 Branch: perl
215 ! hints/darwin.sh
216____________________________________________________________________________
217[ 21519] By: nicholas on 2003/10/22 19:11:43
218 Log: Integrate:
219 [ 21514]
220 Subject: [PATCH @20458] embedding perl
221 From: Radu Greab <rgreab@fx.ro>
222 Date: Tue, 05 Aug 2003 20:57:15 +0300 (EEST)
223 Message-Id: <20030805.205715.113441323.radu@yx.primIT.ro>
224 Branch: maint-5.8/perl
225 ! perl.c
226 !> hv.c intrpvar.h pod/perlembed.pod pod/perlintern.pod sv.c
227____________________________________________________________________________
228[ 21518] By: nicholas on 2003/10/22 18:32:17
229 Log: Integrate:
230 [ 21515]
231 Add a test.taintwarn makefile target,
232 to run the whole test suite with the -t switch.
233 Branch: maint-5.8/perl
234 !> Makefile.SH pod/perlhack.pod t/TEST
235____________________________________________________________________________
236[ 21517] By: nicholas on 2003/10/22 17:53:48
237 Log: Integrate:
238 [ 21513]
239 Fix doc bug #23890, as suggested by Himanshu Garg :
240 in perltoot, $him->fullname should be $him->fullname->as_string
241 when passed to printf.
242
243 [ 21516]
244 Small email update in AUTHORS.
245 Branch: maint-5.8/perl
246 !> AUTHORS pod/perltoot.pod
247____________________________________________________________________________
248[ 21516] By: rgs on 2003/10/22 15:06:13
249 Log: Small email update in AUTHORS.
250 Branch: perl
251 ! AUTHORS
252____________________________________________________________________________
253[ 21515] By: rgs on 2003/10/22 06:39:29
254 Log: Add a test.taintwarn makefile target,
255 to run the whole test suite with the -t switch.
256 Branch: perl
257 ! Makefile.SH pod/perlhack.pod t/TEST
258____________________________________________________________________________
259[ 21514] By: rgs on 2003/10/21 21:21:56
260 Log: Subject: [PATCH @20458] embedding perl
261 From: Radu Greab <rgreab@fx.ro>
262 Date: Tue, 05 Aug 2003 20:57:15 +0300 (EEST)
263 Message-Id: <20030805.205715.113441323.radu@yx.primIT.ro>
264 Branch: perl
265 ! hv.c intrpvar.h perl.c pod/perlembed.pod pod/perlintern.pod
266 ! sv.c
267____________________________________________________________________________
268[ 21513] By: rgs on 2003/10/21 20:45:12
269 Log: Fix doc bug #23890, as suggested by Himanshu Garg :
270 in perltoot, $him->fullname should be $him->fullname->as_string
271 when passed to printf.
272 Branch: perl
273 ! pod/perltoot.pod
274____________________________________________________________________________
275[ 21512] By: nicholas on 2003/10/21 18:58:30
276 Log: Integrate:
277 [ 21372]
278 Sync with libnet 1.17
279 Branch: maint-5.8/perl
280 !> lib/Net/ChangeLog.libnet lib/Net/Domain.pm lib/Net/FTP.pm
281____________________________________________________________________________
282[ 21511] By: nicholas on 2003/10/21 18:31:19
283 Log:
284 Two OS/2 portability patches from Ilya.
285
286 Subject: [PATCH 5.8.1 @21211] sockets broken on OS/2
287 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
288 Date: Thu, 25 Sep 2003 12:09:11 -0700
289 Message-ID: <20030925190911.GA27028@math.berkeley.edu>
290
291 Subject: Re: [PATCH 5.8.1 @21379] tmpfile() broken on OS/2
292 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
293 Date: Thu, 25 Sep 2003 19:50:45 -0700
294 Message-ID: <20030926025045.GA27507@math.berkeley.edu>
295 Branch: maint-5.8/perl
296 !> doio.c os2/os2ish.h perl.h perlio.c pp_sys.c
297____________________________________________________________________________
298[ 21510] By: rgs on 2003/10/21 11:17:43
299 Log: The THREADS_HAVE_PIDS cpp symbols is not used in 5.6.x.
300 Branch: maint-5.6
301 ! perl-5.6.2/hints/linux.sh
302____________________________________________________________________________
303[ 21509] By: rgs on 2003/10/21 05:42:50
304 Log: Two OS/2 portability patches from Ilya.
305
306 Subject: [PATCH 5.8.1 @21211] sockets broken on OS/2
307 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
308 Date: Thu, 25 Sep 2003 12:09:11 -0700
309 Message-ID: <20030925190911.GA27028@math.berkeley.edu>
310
311 Subject: Re: [PATCH 5.8.1 @21379] tmpfile() broken on OS/2
312 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
313 Date: Thu, 25 Sep 2003 19:50:45 -0700
314 Message-ID: <20030926025045.GA27507@math.berkeley.edu>
315 Branch: perl
316 ! doio.c os2/os2ish.h perl.h perlio.c pp_sys.c
317____________________________________________________________________________
318[ 21508] By: nicholas on 2003/10/20 22:06:05
319 Log: Integrate:
320 [ 21506]
321 Subject: [PATCH] add some missing defines to Devel::PPPort
322 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
323 Date: Mon, 20 Oct 2003 20:14:19 +0200
324 Message-ID: <03a301c39735$fb7cb220$0c2f1fac@R2D2>
325 Branch: maint-5.8/perl
326 !> ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
327____________________________________________________________________________
328[ 21507] By: nicholas on 2003/10/20 20:14:57
329 Log: Integrate:
330 [ 21505]
331 Subject: Re: [perl #24225] [5.8.1] segfault in binmode STDOUT, ':stdio'; print 1
332 From: Slaven Rezic <slaven@rezic.de>
333 Date: 19 Oct 2003 17:54:59 +0200
334 Message-ID: <871xt9te7g.fsf@vran.herceg.de>
335 Branch: maint-5.8/perl
336 !> perlio.c
337____________________________________________________________________________
338[ 21506] By: rgs on 2003/10/20 19:28:27
339 Log: Subject: [PATCH] add some missing defines to Devel::PPPort
340 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
341 Date: Mon, 20 Oct 2003 20:14:19 +0200
342 Message-ID: <03a301c39735$fb7cb220$0c2f1fac@R2D2>
343 Branch: perl
344 ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
345____________________________________________________________________________
346[ 21505] By: rgs on 2003/10/20 19:22:38
347 Log: Subject: Re: [perl #24225] [5.8.1] segfault in binmode STDOUT, ':stdio'; print 1
348 From: Slaven Rezic <slaven@rezic.de>
349 Date: 19 Oct 2003 17:54:59 +0200
350 Message-ID: <871xt9te7g.fsf@vran.herceg.de>
351 Branch: perl
352 ! perlio.c
353____________________________________________________________________________
354[ 21504] By: nicholas on 2003/10/20 17:31:11
355 Log: Integrate:
356 [ 21503]
357 Skip the chflags tests in filetest.t on Darwin.
358 Branch: maint-5.8/perl
359 !> lib/filetest.t
360____________________________________________________________________________
361[ 21503] By: rgs on 2003/10/20 06:04:04
362 Log: Skip the chflags tests in filetest.t on Darwin.
363 Branch: perl
364 ! lib/filetest.t
365____________________________________________________________________________
366[ 21502] By: nicholas on 2003/10/19 19:49:25
367 Log: Forgot to run regen.pl when I merged Plan C (already fixed in
368 the snapshot)
369 Branch: maint-5.8/perl
370 ! embedvar.h
371____________________________________________________________________________
372[ 21501] By: nicholas on 2003/10/19 19:37:27
373 Log: update MAINT level
374 Branch: maint-5.8/perl
375 ! patchlevel.h
376____________________________________________________________________________
377[ 21500] By: nicholas on 2003/10/19 19:35:55
378 Log: Update Changes (submit by hand) - not sure if they're quite in the
379 tidiest order yet
380 Branch: maint-5.8/perl
381 ! Changes
382____________________________________________________________________________
383[ 21499] By: nicholas on 2003/10/19 19:14:43
384 Log: If you add files you must add them to the MANIFEST
385 Branch: maint-5.8/perl
386 ! MANIFEST
387____________________________________________________________________________
388[ 21498] By: nicholas on 2003/10/19 19:08:39
389 Log: Place the changes for 5.8.1 into their own file; start Changes afresh
390 for 5.8.2. For reference, 5.8.1 release was change 21377
391 Branch: maint-5.8/perl
392 + Changes5.8.1
393 ! Changes
394____________________________________________________________________________
395[ 21497] By: nicholas on 2003/10/19 18:50:07
396 Log: Integrate:
397 [ 21418]
398 Subject: [PATCH] Fixing UNIVERSAL.pm's bit of unpleasantness
399 From: schwern@pobox.com
400 Date: Mon, 6 Oct 2003 13:14:36 -0700
401 Message-Id: <20031006131436.G20960@ttul.org>
402
403 [ 21449]
404 Subject: [PATCH] SIGN => 1 support for MakeMaker
405 From: Autrijus Tang <autrijus@autrijus.org>
406 Date: Tue, 14 Oct 2003 18:32:28 +0800
407 Message-Id: <1066127547.65845.35.camel@localhost>
408 Branch: maint-5.8/perl
409 !> lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
410 !> lib/ExtUtils/MakeMaker.pm lib/UNIVERSAL.pm t/op/universal.t
411____________________________________________________________________________
412[ 21496] By: nicholas on 2003/10/19 18:31:14
413 Log: Integrate:
414 [ 21415]
415 Subject: [PATCH bleadperl] (was Re: require() does not behave aas documented)
416 From: Rick Delaney <rick@bort.ca>
417 Date: Tue, 23 Sep 2003 12:14:52 -0400
418 Message-ID: <20030923121452.G18845@biff.bort.ca>
419
420 [ 21427]
421 Subject: Re: require patch breaks locale
422 From: Rick Delaney <rick@bort.ca>
423 Date: Wed, 8 Oct 2003 22:41:55 -0400
424 Message-Id: <20031008224155.A14638@biff.bort.ca>
425 Branch: maint-5.8/perl
426 !> pp_ctl.c t/comp/require.t
427____________________________________________________________________________
428[ 21495] By: nicholas on 2003/10/19 18:13:23
429 Log: Integrate:
430 [ 21407]
431 Subject: [PATCH]Re: The META.yml file in bleadperl
432 From: Fergal Daly <fergal@esatclear.ie>
433 Date: Mon, 6 Oct 2003 00:25:29 +0100
434 Message-Id: <200310060025.29122.fergal@esatclear.ie>
435
436 Plus regeneration of META.yml
437 Branch: maint-5.8/perl
438 + META.yml
439 !> Porting/makemeta
440____________________________________________________________________________
441[ 21494] By: nicholas on 2003/10/19 17:55:17
442 Log: Integrate:
443 [ 21438]
444 Subject: Re: [perl #24122] setreuid and friends borked on darwin/osx
445 From: Slaven Rezic <slaven@rezic.de>
446 Date: 07 Oct 2003 00:04:34 +0200
447 Message-ID: <87ekxq6n0t.fsf@vran.herceg.de>
448
449 [ 21440]
450 Subject: [perl #24122] setreuid and friends borked on darwin/osx
451 From: "pxm@nubz.org (via RT)" <perlbug-followup@perl.org>
452 Date: 5 Oct 2003 20:55:56 -0000
453 Message-ID: <rt-24122-65678.14.2411168523081@rt.perl.org>
454 Branch: maint-5.8/perl
455 !> hints/darwin.sh mg.c
456____________________________________________________________________________
457[ 21493] By: nicholas on 2003/10/19 17:35:10
458 Log: Integrate:
459 [ 21424]
460 Subject: Re: Simple @INC hook core dump [PATCH]
461 From: Gisle Aas <gisle@ActiveState.com>
462 Date: 08 Oct 2003 04:47:33 -0700
463 Message-ID: <lrllrweysq.fsf_-_@caliper.activestate.com>
464
465 [ 21426]
466 Subject: Re: Simple @INC hook core dump [PATCH]
467 From: Gisle Aas <gisle@ActiveState.com>
468 Date: 08 Oct 2003 13:35:28 -0700
469 Message-Id: <lrr81ncvsf.fsf@caliper.activestate.com>
470
471 [ 21452]
472 Fix bug [perl #24212] : improper error recovery in the
473 tokenizer after an unknown filetest operator.
474 Branch: maint-5.8/perl
475 !> pp_ctl.c t/comp/parser.t t/op/inccode.t toke.c
476____________________________________________________________________________
477[ 21492] By: nicholas on 2003/10/19 17:17:40
478 Log: Integrate:
479 [ 21436]
480 Subject: [PATCH] threads::async + some cleanup
481 From: Elizabeth Mattijsen <liz@dijkmat.nl>
482 Date: Fri, 10 Oct 2003 16:37:55 +0200
483 Message-Id: <p05111b07bbac713a0aaf@[192.168.56.2]>
484
485 [ 21470]
486 Ensure PL_comppad/curpad point to PL_main_cv's padlist when
487 PL_main_root is freed; this may not have been be the case if a
488 thread other than the main one is the last to be destroyed
489 Branch: maint-5.8/perl
490 ! ext/threads/threads.pm
491 !> ext/threads/t/thread.t pad.h perl.c
492____________________________________________________________________________
493[ 21491] By: nicholas on 2003/10/19 16:54:46
494 Log: Integrate:
495 [ 21451]
496 Update MIME::Base64 and Digest::MD5 from the CPAN version.
497 Branch: maint-5.8/perl
498 !> ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
499 !> ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/align.t
500 !> ext/Digest/MD5/t/files.t ext/Digest/MD5/t/utf8.t
501 !> ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
502 !> ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
503 !> ext/MIME/Base64/QuotedPrint.pm ext/MIME/Base64/t/unicode.t
504____________________________________________________________________________
505[ 21490] By: nicholas on 2003/10/19 16:19:58
506 Log: Integrate:
507 [ 21402]
508 Subject: [PATCH] pp_sys.c: pp_waitpid and EINTR
509 From: Steve Grazzini <grazz@pobox.com>
510 Date: Sat, 4 Oct 2003 18:15:23 -0400
511 Message-Id: <20031004221523.GA29324@grazzini.net>
512
513 [ 21425]
514 Fix bug #24108: Goto +foo broken
515 the fix having been suggested by xmath via Juerd.
516
517 [ 21428]
518 Subject: [PATCH] Devel::PPPort is missing an aTHX when calling
519 grok_numeric_radix()
520 From: Jan Dubois <jand@ActiveState.com>
521 Date: Wed, 08 Oct 2003 20:37:42 -0700
522 Message-Id: <8kl9ov0932qo08o24uafuc9v77clrgnoe4@4ax.com>
523
524 [ 21429]
525 Patch based on:
526
527 Subject: [perl #24157] -MModule=} is broken
528 From: "Lukas Mai" (via RT) <perlbug-followup@perl.org>
529 Date: 7 Oct 2003 21:47:43 -0000
530 Message-Id: <rt-24157-65809.10.9980909617566@rt.perl.org>
531
532 (Includes a fix for a similar problem in -A, but not -d.)
533
534 [ 21430]
535 Subject: [PATCH 5.8.1 CORE] Internal fixes to source-code coordinate
536 calculations in regcomp.c
537 From: Eric Promislow <ericp@ActiveState.com>
538 Date: Wed, 8 Oct 2003 17:42:42 -0700
539 Message-Id: <20031008174242.A17544@ActiveState.com>
540
541 [ 21441]
542 Subject: [PATCH] Internals::hash_seed() returns wrong value
543 From: Jan Dubois <jand@ActiveState.com>
544 Date: Sun, 12 Oct 2003 22:09:39 -0700
545 Message-ID: <07ckovck8mp5e8tthmtbbcrpi2tj6q9eak@4ax.com>
546
547 [ 21445]
548 Subject: [PATCH ext/Devel/PPPort/PPPort.pm] Changes #20819 and #20996 break compatibility with perl 5.6.0
549 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
550 Date: Tue, 30 Sep 2003 19:23:34 +0200
551 Message-ID: <021e01c38777$93ea4e10$0c2f1fac@R2D2>
552 Branch: maint-5.8/perl
553 ! perl.c
554 !> ext/Devel/PPPort/PPPort.pm op.c pp_sys.c regcomp.c t/op/goto.t
555 !> universal.c
556____________________________________________________________________________
557[ 21489] By: nicholas on 2003/10/19 11:14:32
558 Log: Integrate:
559 [ 21397]
560 Subject: Re: 5.8.1 and srand
561 From: Brendan O'Dea <bod@debian.org>
562 Date: Thu, 2 Oct 2003 10:30:36 +1000
563 Message-Id: <20031002003036.GA9198@londo.c47.org>
564
565 [ 21401]
566 Subject: Re: 5.8.1 and srand
567 From: Slaven Rezic <slaven@rezic.de>
568 Date: Thu, 2 Oct 2003 15:51:11 +0000
569 Message-Id: <1065109871.3115@devpc01.iconmobile.de>
570 Branch: maint-5.8/perl
571 !> t/op/fork.t util.c
572____________________________________________________________________________
573[ 21488] By: nicholas on 2003/10/19 10:47:57
574 Log: Integrate:
575 [ 21419]
576 Why should -3**$x be more precisely determined than 3**$x?
577
578 [ 21420]
579 Minor tweaks to t/op/pow.t (John P. Linderman).
580 Branch: maint-5.8/perl
581 !> t/op/pow.t
582____________________________________________________________________________
583[ 21487] By: nicholas on 2003/10/18 22:33:08
584 Log: Integrate:
585 [ 21433]
586 Put all pre-processor #s on the first column (some compilers are picky)
587 [perl #24167] `#' comment signs not at the very beginning of a line
588
589 [ 21468]
590 Subject: Re: assert.h breaks perl.h
591 From: Alexey Tourbin <at@altlinux.ru>
592 Date: Thu, 16 Oct 2003 22:24:35 +0400
593 Message-Id: <20031016182434.GH1724@julia.office.altlinux.ru>
594 Branch: maint-5.8/perl
595 !> cop.h dosish.h ext/SDBM_File/sdbm/sdbm.h iperlsys.h op.c
596 !> perl.h regcomp.c sv.h
597____________________________________________________________________________
598[ 21486] By: nicholas on 2003/10/18 22:12:47
599 Log: Integrate:
600 [ 21404]
601 Subject: [perl #24120] Tie::Hash documentation has broken code
602 From: "Benjamin J. Tilly" (via RT) <perlbug-followup@perl.org>
603 Date: 5 Oct 2003 18:40:36 -0000
604 Message-Id: <rt-24120-65664.15.9776865968429@rt.perl.org>
605 (Applied without $VERSION update.)
606
607 [ 21439]
608 Subject: [PATCH] Tie::Hash documentation
609 From: Slaven Rezic <slaven@rezic.de>
610 Date: Sun, 12 Oct 2003 18:55:54 +0200 (CEST)
611 Message-Id: <200310121655.h9CGtsrY003613@vran.herceg.de>
612
613 [ 21442]
614 Subject: [perl #24189] Incorrect comment in perldoc strict
615 From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
616 Date: 12 Oct 2003 09:01:25 -0000
617 Message-Id: <rt-24189-65954.9.50514379869631@rt.perl.org>
618
619 [ 21467]
620 Subject: [PATCH] Tie::Hash documentation
621 From: Slaven Rezic <slaven@rezic.de>
622 Date: Thu, 16 Oct 2003 17:57:35 +0000
623 Message-Id: <1066327055.1428@devpc01.iconmobile.de>
624 Branch: maint-5.8/perl
625 !> lib/Tie/Hash.pm lib/strict.pm
626____________________________________________________________________________
627[ 21485] By: nicholas on 2003/10/18 21:44:41
628 Log: Integrate:
629 [ 21416]
630 Subject: [patch sv.c] improve "...free unref scalar" warning
631 From: Stas Bekman <stas@stason.org>
632 Date: Mon, 06 Oct 2003 21:19:53 -0700
633 Message-Id: <3F823EE9.4030103@stason.org>
634
635 [ 21420]
636 Minor tweaks to sv.c (Tim Bunce)
637 Branch: maint-5.8/perl
638 !> sv.c
639____________________________________________________________________________
640[ 21484] By: nicholas on 2003/10/18 21:25:13
641 Log: Integrate:
642 [ 21453]
643 Typos.
644
645 [ 21472]
646 The compilation of PerlIO::via may hang on AIX when
647 compiling with vac at -O3 optimization level. Disable
648 optimization for this module.
649 Branch: maint-5.8/perl
650 +> ext/PerlIO/via/hints/aix.pl
651 !> MANIFEST hints/aix.sh
652____________________________________________________________________________
653[ 21483] By: nicholas on 2003/10/18 20:50:49
654 Log: Integrate:
655 [ 21390]
656 Subject: Re: NCR MP-RAS perl problems [perl #23791]
657 From: grommel@sears.com
658 Date: Mon, 29 Sep 2003 14:45:16 -0500
659 Message-ID: <OF9B00605E.3CC90F32-ON86256DB0.006B13F0-86256DB0.006C8E85@LocalDomain>
660
661 [ 21410]
662 Subject: Re: [doc-PATCH] for unpack_str() and question
663 From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
664 Date: Mon, 6 Oct 2003 08:45:29 +0200
665 Message-ID: <75A46BF1A9D8D311863A00508B6259A405F180C1@ATTMSX4>
666 Branch: maint-5.8/perl
667 !> hints/svr4.sh pod/perlapi.pod pp_pack.c t/op/pack.t
668____________________________________________________________________________
669[ 21482] By: nicholas on 2003/10/18 18:26:46
670 Log: Integrate:
671 [ 21464]
672 Subject: perl -h tweak [PATCH]
673 From: Gisle Aas <gisle@ActiveState.com>
674 Date: 16 Oct 2003 02:49:39 -0700
675 Message-Id: <lrn0c11pho.fsf@caliper.activestate.com>
676
677 [ 21466]
678 Further tweak on change #21464.
679
680 [ 21473]
681 -u is deprecated.
682 Subject: Re: why PERL5LIB is ignored when -T is in effect
683 From: Slaven Rezic <slaven@rezic.de>
684 Date: Fri, 17 Oct 2003 10:02:31 +0000
685 Message-Id: <1066384951.4964@devpc01.iconmobile.de>
686 Branch: maint-5.8/perl
687 !> perl.c
688____________________________________________________________________________
689[ 21481] By: nicholas on 2003/10/18 17:40:32
690 Log: Integrate:
691 [ 21394]
692 Subject: misapplied patch 19452
693 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
694 Date: Tue, 30 Sep 2003 06:01:50 -0700
695 Message-Id: <20030930130150.GA1436@efn.org>
696 Branch: maint-5.8/perl
697 ! pp_hot.c
698____________________________________________________________________________
699[ 21480] By: nicholas on 2003/10/18 16:42:12
700 Log: Integrate:
701 [ 21383]
702 Missing +x bits.
703 Branch: maint-5.8/perl
704 !> Porting/makerel
705____________________________________________________________________________
706[ 21479] By: nicholas on 2003/10/18 16:37:49
707 Log: Integrate:
708 [ 21385]
709 Subject: [PATCH 5.8.1] pod/perlrun.pod: no space after -i allowed
710 From: Brendan O'Dea <bod@debian.org>
711 Date: Sun, 28 Sep 2003 23:23:34 +1000
712 Message-ID: <20030928132334.GA29499@londo.c47.org>
713
714 [ 21386]
715 Subject: [PATCH 5.8.1] Fix broken splitpod program
716 From: Steve Hay <steve.hay@uk.radan.com>
717 Date: Mon, 29 Sep 2003 11:50:23 +0100
718 Message-ID: <3F780E6F.3020704@uk.radan.com>
719
720 [ 21388]
721 Subject: [PATCH] Re: [perl #24071] Typo in description of binmode
722 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
723 Date: Tue, 30 Sep 2003 04:53:02 -0700
724 Message-ID: <20030930115302.GA3200@efn.org>
725
726 [ 21392]
727 Revamp the section on local() in perlsub.
728 - avoid using the word "declare" in conjunction with local()
729 - less archaelogical references
730 - more about localization of lvalues
731 - removes examples of localization of tied hashes that don't work
732 - give titles to subsections
733 - explain localization of magic values
734 - explain localization of globs
735 - fix link to perldelta
736
737 [ 21398]
738 build perlapi.pod in deterministic order even when functions differ
739 only in case; regen perlapi.pod
740
741 [ 21403]
742 Subject: Re: [PATCH] [perl #24113] mistake in perlretut
743 From: Robert Spier <rspier@pobox.com>
744 Date: Sun, 05 Oct 2003 21:34:30 -0700
745 Message-Id: <m3vfr39e7d.wl_rspier@pobox.com>
746
747 [ 21405]
748 Subject: Re: [PATCH] perlsyn.pod Revision - Resend
749 From: Shlomi Fish <shlomif@vipe.technion.ac.il>
750 Date: Fri, 3 Oct 2003 12:34:46 +0200 (IST)
751 Message-Id: <Pine.LNX.4.56.0310031233580.28640@vipe.technion.ac.il>
752 (Applied with minor tweaks.)
753
754 [ 21409]
755 Subject: [PATCH pod/perlfunc.pod] ref can return false on references
756 From: Abigail <abigail@abigail.nl>
757 Date: Mon, 6 Oct 2003 05:55:21 -0700
758 Message-ID: <20031006125521.GA26446@ucan.foad.org>
759
760 [ 21412]
761 Fix broken link in perltodo.pod.
762
763 [ 21417]
764 Update perlfunc/require to describe NXDOMAIN caching... er, you
765 know what I mean.
766
767 [ 21431]
768 Document the behaviour of filetest operators regarding parentheses.
769 This fixes bug #24127 (by documenting it as a feature.)
770
771 [ 21435]
772 Make everyone stop posting to p5p about 0e0.
773
774 [ 21437]
775 Minor nit in perlrun, spotted by Art Haas.
776 Branch: maint-5.8/perl
777 ! pod/perlrun.pod pod/perlsyn.pod
778 !> autodoc.pl pod/perlapi.pod pod/perlfunc.pod pod/perlop.pod
779 !> pod/perlretut.pod pod/perlsub.pod pod/perltodo.pod
780 !> pod/splitpod
781____________________________________________________________________________
782[ 21478] By: nicholas on 2003/10/18 13:40:08
783 Log: Integrate:
784 [ 21420]
785 Minor tweaks to pod/perlsyn.pod (as suggested by Yves Orton)
786
787 [ 21421]
788 Subject: Re: [PATCH] perlop.pod Revamp - revision 4
789 From: schwern@pobox.com
790 Date: Tue, 7 Oct 2003 20:39:36 -0700
791 Message-Id: <20031007203936.X4301@ttul.org>
792
793 (Originally from Shlomi Fish. Applied with tweaks.)
794
795 [ 21422]
796 "Are implicit undefs true?" asks Gisle.
797
798 [ 21423]
799 Subject: [PATCH pod/perlrun.pod] Layout & POD nit.
800 From: Abigail <abigail@abigail.nl>
801 Date: Wed, 8 Oct 2003 03:50:49 -0700
802 Message-Id: <20031008105049.GA15770@ucan.foad.org>
803 Branch: maint-5.8/perl
804 ! pod/perlop.pod pod/perlsyn.pod
805 !> pod/perliol.pod
806____________________________________________________________________________
807[ 21477] By: nicholas on 2003/10/18 13:22:15
808 Log: Integrate:
809 [ 21384]
810 Nit to the maintainers list by SADAHIRO Tomoyuki
811
812 [ 21408]
813 Add a new option --check to Porting/Maintainers,
814 to check for files who are listed for several maintainers.
815
816 [ 21413]
817 Fixes in the modules maintainers list.
818 Branch: maint-5.8/perl
819 !> Porting/Maintainers.pl Porting/Maintainers.pm
820____________________________________________________________________________
821[ 21476] By: nicholas on 2003/10/18 13:14:40
822 Log: Integrate:
823 [ 21391]
824 Useless "local $_" in a perlfaq3 example
825
826 [ 21454]
827 PerlFAQ sync. (only actual changes)
828
829 [ 21456]
830 Perlfaq1 : take notice that 5.8.1 is now released.
831 Branch: maint-5.8/perl
832 !> pod/perlfaq1.pod pod/perlfaq3.pod pod/perlfaq4.pod
833____________________________________________________________________________
834[ 21475] By: nicholas on 2003/10/17 21:09:13
835 Log: Integrate:
836 [ 21446]
837 Duplicate 19423 (pathological hashes too easy) into hv_store_ent
838 (the routine used by perl level HV operations)
839
840 [ 21469]
841 Duplicate 19423 (pathological hashes too easy) into share_hek_flags
842 (as suggested by Jan Dubois)
843
844 [ 21471]
845 Plan C for foiling the algorithmic complexity attack
846 (based on Chip's plan A (binary compatibility with 5.8.0 and 5.8.1),
847 Chip's plan B (do something new inside the hv functions)
848 and introspective sort)
849 Provides infrastructure for hashes to change their hash function
850 if necessary, and code in hsplit to detect pathalogical data and
851 instigate a random rehashing.
852 Needs refinement. Let's see how much smoke it creates.
853
854 [ 21474]
855 Plan C rough edge smoothing - forgot to turn on the "has key flags"
856 flag on the hash when rehashing. Can turn off the "rehasing" flag
857 if the hash is cleared
858 Branch: maint-5.8/perl
859 ! hv.c
860 !> embedvar.h hv.h intrpvar.h perl.c perlapi.h sv.c sv.h util.c
861____________________________________________________________________________
862[ 21474] By: nicholas on 2003/10/17 18:44:28
863 Log: Plan C rough edge smoothing - forgot to turn on the "has key flags"
864 flag on the hash when rehashing. Can turn off the "rehasing" flag
865 if the hash is cleared
866 Branch: perl
867 ! hv.c
868____________________________________________________________________________
869[ 21473] By: rgs on 2003/10/17 08:53:48
870 Log: -u is deprecated.
871 Subject: Re: why PERL5LIB is ignored when -T is in effect
872 From: Slaven Rezic <slaven@rezic.de>
873 Date: Fri, 17 Oct 2003 10:02:31 +0000
874 Message-Id: <1066384951.4964@devpc01.iconmobile.de>
875 Branch: perl
876 ! perl.c
877____________________________________________________________________________
878[ 21472] By: rgs on 2003/10/17 07:29:10
879 Log: The compilation of PerlIO::via may hang on AIX when
880 compiling with vac at -O3 optimization level. Disable
881 optimization for this module.
882 Branch: perl
883 + ext/PerlIO/via/hints/aix.pl
884 ! MANIFEST
885____________________________________________________________________________
886[ 21471] By: nicholas on 2003/10/16 21:10:27
887 Log: Plan C for foiling the algorithmic complexity attack
888 (based on Chip's plan A (binary compatibility with 5.8.0 and 5.8.1),
889 Chip's plan B (do something new inside the hv functions)
890 and introspective sort)
891 Provides infrastructure for hashes to change their hash function
892 if necessary, and code in hsplit to detect pathalogical data and
893 instigate a random rehashing.
894 Needs refinement. Let's see how much smoke it creates.
895 Branch: perl
896 ! embedvar.h hv.c hv.h intrpvar.h perl.c perlapi.h sv.c sv.h
897 ! util.c
898____________________________________________________________________________
899[ 21470] By: davem on 2003/10/16 20:03:44
900 Log: Ensure PL_comppad/curpad point to PL_main_cv's padlist when
901 PL_main_root is freed; this may not have been be the case if a
902 thread other than the main one is the last to be destroyed
903 Branch: perl
904 ! ext/threads/t/thread.t pad.h perl.c
905____________________________________________________________________________
906[ 21469] By: nicholas on 2003/10/16 19:31:19
907 Log: Duplicate 19423 (pathological hashes too easy) into share_hek_flags
908 (as suggested by Jan Dubois)
909 Branch: perl
910 ! hv.c
911____________________________________________________________________________
912[ 21468] By: ams on 2003/10/16 19:00:14
913 Log: Subject: Re: assert.h breaks perl.h
914 From: Alexey Tourbin <at@altlinux.ru>
915 Date: Thu, 16 Oct 2003 22:24:35 +0400
916 Message-Id: <20031016182434.GH1724@julia.office.altlinux.ru>
917 Branch: perl
918 ! sv.h
919____________________________________________________________________________
920[ 21467] By: ams on 2003/10/16 18:57:57
921 Log: Subject: [PATCH] Tie::Hash documentation
922 From: Slaven Rezic <slaven@rezic.de>
923 Date: Thu, 16 Oct 2003 17:57:35 +0000
924 Message-Id: <1066327055.1428@devpc01.iconmobile.de>
925 Branch: perl
926 ! lib/Tie/Hash.pm
927____________________________________________________________________________
928[ 21466] By: rgs on 2003/10/16 08:52:50
929 Log: Further tweak on change #21464.
930 Branch: perl
931 ! perl.c
932____________________________________________________________________________
933[ 21464] By: ams on 2003/10/16 08:42:50
934 Log: Subject: perl -h tweak [PATCH]
935 From: Gisle Aas <gisle@ActiveState.com>
936 Date: 16 Oct 2003 02:49:39 -0700
937 Message-Id: <lrn0c11pho.fsf@caliper.activestate.com>
938 Branch: perl
939 ! perl.c
940____________________________________________________________________________
941[ 21463] By: rgs on 2003/10/15 21:42:45
942 Log: More Changes and perldelta updating.
943 Branch: maint-5.6
944 ! perl-5.6.2/Changes perl-5.6.2/pod/perldelta.pod
945____________________________________________________________________________
946[ 21462] By: rgs on 2003/10/15 21:28:10
947 Log: Upgrade to Safe 2.10 from bleadperl.
948 Don't get the safeops.t from blead as it needs a core patch.
949 Branch: maint-5.6
950 + perl-5.6.2/ext/Opcode/t/Opcode.t perl-5.6.2/ext/Opcode/t/ops.t
951 + perl-5.6.2/ext/Safe/t/safe1.t perl-5.6.2/ext/Safe/t/safe2.t
952 + perl-5.6.2/ext/Safe/t/safe3.t
953 - perl-5.6.2/t/lib/ops.t perl-5.6.2/t/lib/safe1.t
954 - perl-5.6.2/t/lib/safe2.t
955 ! perl-5.6.2/MANIFEST perl-5.6.2/ext/Opcode/Safe.pm
956 ! perl-5.6.2/ext/Opcode/ops.pm
957____________________________________________________________________________
958[ 21461] By: rgs on 2003/10/15 20:41:27
959 Log: Add the list of upgraded modules in perldelta.
960 Branch: maint-5.6
961 ! perl-5.6.2/pod/perldelta.pod
962____________________________________________________________________________
963[ 21460] By: rgs on 2003/10/15 20:30:14
964 Log: Update Changes.
965 Branch: maint-5.6
966 ! perl-5.6.2/Changes
967____________________________________________________________________________
968[ 21459] By: rgs on 2003/10/15 19:52:18
969 Log: Upgrade to File::Temp 0.14
970 Branch: maint-5.6
971 + perl-5.6.2/lib/File/Temp/t/mktemp.t
972 + perl-5.6.2/lib/File/Temp/t/object.t
973 + perl-5.6.2/lib/File/Temp/t/posix.t
974 + perl-5.6.2/lib/File/Temp/t/security.t
975 + perl-5.6.2/lib/File/Temp/t/tempfile.t
976 - perl-5.6.2/t/lib/ftmp-mktemp.t perl-5.6.2/t/lib/ftmp-posix.t
977 - perl-5.6.2/t/lib/ftmp-security.t
978 - perl-5.6.2/t/lib/ftmp-tempfile.t
979 ! perl-5.6.2/MANIFEST perl-5.6.2/lib/File/Temp.pm
980____________________________________________________________________________
981[ 21458] By: rgs on 2003/10/15 19:39:02
982 Log: Update perlhist.pod from bleadperl.
983 Branch: maint-5.6
984 ! perl-5.6.2/pod/perlhist.pod
985____________________________________________________________________________
986[ 21457] By: rgs on 2003/10/15 19:26:41
987 Log: Grab the newest perlfaq.
988 It's assumed that the perlfaqs must not be version-dependent.
989 Branch: maint-5.6
990 ! perl-5.6.2/pod/perlfaq.pod perl-5.6.2/pod/perlfaq1.pod
991 ! perl-5.6.2/pod/perlfaq2.pod perl-5.6.2/pod/perlfaq3.pod
992 ! perl-5.6.2/pod/perlfaq4.pod perl-5.6.2/pod/perlfaq5.pod
993 ! perl-5.6.2/pod/perlfaq6.pod perl-5.6.2/pod/perlfaq7.pod
994 ! perl-5.6.2/pod/perlfaq8.pod perl-5.6.2/pod/perlfaq9.pod
995____________________________________________________________________________
996[ 21456] By: rgs on 2003/10/15 19:19:05
997 Log: Perlfaq1 : take notice that 5.8.1 is now released.
998 Branch: perl
999 ! pod/perlfaq1.pod
1000____________________________________________________________________________
1001[ 21455] By: rgs on 2003/10/15 19:12:14
1002 Log: Sync the configure hints files with bleadperl.
1003 Branch: maint-5.6
1004 ! perl-5.6.2/hints/aix.sh perl-5.6.2/hints/darwin.sh
1005 ! perl-5.6.2/hints/freebsd.sh perl-5.6.2/hints/linux.sh
1006 ! perl-5.6.2/hints/powerux.sh perl-5.6.2/hints/solaris_2.sh
1007 ! perl-5.6.2/hints/svr4.sh
1008____________________________________________________________________________
1009[ 21454] By: rgs on 2003/10/15 19:06:05
1010 Log: PerlFAQ sync. (only actual changes)
1011 Branch: perl
1012 ! pod/perlfaq4.pod
1013____________________________________________________________________________
1014[ 21453] By: rgs on 2003/10/15 19:02:35
1015 Log: Typos.
1016 Branch: perl
1017 ! hints/aix.sh
1018____________________________________________________________________________
1019[ 21452] By: rgs on 2003/10/15 11:12:31
1020 Log: Fix bug [perl #24212] : improper error recovery in the
1021 tokenizer after an unknown filetest operator.
1022 Branch: perl
1023 ! t/comp/parser.t toke.c
1024____________________________________________________________________________
1025[ 21451] By: rgs on 2003/10/15 09:19:02
1026 Log: Update MIME::Base64 and Digest::MD5 from the CPAN version.
1027 Branch: perl
1028 ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
1029 ! ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/align.t
1030 ! ext/Digest/MD5/t/files.t ext/Digest/MD5/t/utf8.t
1031 ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
1032 ! ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
1033 ! ext/MIME/Base64/QuotedPrint.pm ext/MIME/Base64/t/unicode.t
1034____________________________________________________________________________
1035[ 21450] By: rgs on 2003/10/15 06:47:11
1036 Log: Add support for Linux abstract unix domain sockets to Socket.pm.
1037 Based on a idea by Alex Hudson. (Basically those are unix domain
1038 sockets whose name has a '\0' as first character.)
1039 Branch: perl
1040 ! ext/Socket/Socket.xs ext/Socket/t/Socket.t
1041____________________________________________________________________________
1042[ 21449] By: ams on 2003/10/15 06:32:44
1043 Log: Subject: [PATCH] SIGN => 1 support for MakeMaker
1044 From: Autrijus Tang <autrijus@autrijus.org>
1045 Date: Tue, 14 Oct 2003 18:32:28 +0800
1046 Message-Id: <1066127547.65845.35.camel@localhost>
1047 Branch: perl
1048 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
1049 ! lib/ExtUtils/MakeMaker.pm
1050____________________________________________________________________________
1051[ 21448] By: ams on 2003/10/15 05:56:12
1052 Log: Rewrite #21447.
1053 Branch: perl
1054 ! pod/perliol.pod
1055____________________________________________________________________________
1056[ 21447] By: ams on 2003/10/15 05:36:48
1057 Log: Subject: [patch pod/perliol.pod]
1058 From: Stas Bekman <stas@stason.org>
1059 Date: Tue, 14 Oct 2003 18:05:29 -0700
1060 Message-Id: <3F8C9D59.3040403@stason.org>
1061 Branch: perl
1062 ! pod/perliol.pod
1063____________________________________________________________________________
1064[ 21446] By: nicholas on 2003/10/14 18:45:39
1065 Log: Duplicate 19423 (pathological hashes too easy) into hv_store_ent
1066 (the routine used by perl level HV operations)
1067 Branch: perl
1068 ! hv.c
1069____________________________________________________________________________
1070[ 21445] By: rgs on 2003/10/13 21:03:05
1071 Log: Subject: [PATCH ext/Devel/PPPort/PPPort.pm] Changes #20819 and #20996 break compatibility with perl 5.6.0
1072 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
1073 Date: Tue, 30 Sep 2003 19:23:34 +0200
1074 Message-ID: <021e01c38777$93ea4e10$0c2f1fac@R2D2>
1075 Branch: perl
1076 ! ext/Devel/PPPort/PPPort.pm
1077____________________________________________________________________________
1078[ 21444] By: rgs on 2003/10/13 20:28:05
1079 Log: Integrate changes 11565 and part of 19384, also
1080 from Abe.
1081
1082 Subject: Re: [ID 20010731.105] MinGW can't compile win32.c on Windows 20$00
1083 From: John Kristian <jmk2001@engineer.com>
1084 Date: Fri, 03 Aug 2001 00:59:08 -0700
1085 Message-id: <03a101c11bf2$2c9b5ee0$0100a8c0@JOHNKRISTIAN>
1086
1087 Subject: [PATCH win32/win32.c] silence compiler warnings
1088 From: Abe Timmerman <abe@ztreet.demon.nl>
1089 Date: Fri, 2 May 2003 00:51:42 +0200
1090 Message-Id: <200305020051.43166.abe@ztreet.demon.nl>
1091 Branch: maint-5.6
1092 ! perl-5.6.2/win32/win32.c
1093____________________________________________________________________________
1094[ 21443] By: rgs on 2003/10/13 20:20:11
1095 Log: Integrate change 18046, as suggested by Abe Timmerman :
1096
1097 Subject: Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
1098 From: Alain Barbet <alian@alianwebserver.com>
1099 Date: Fri, 18 Oct 2002 15:29:29 +0200
1100 Message-ID: <3DB00CB9.70708@alianwebserver.com>
1101 Branch: maint-5.6
1102 ! perl-5.6.2/win32/makefile.mk
1103 !> perl-5.6.2/README.win32 perl-5.6.2/win32/win32.c
1104____________________________________________________________________________
1105[ 21442] By: ams on 2003/10/13 08:41:17
1106 Log: Subject: [perl #24189] Incorrect comment in perldoc strict
1107 From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
1108 Date: 12 Oct 2003 09:01:25 -0000
1109 Message-Id: <rt-24189-65954.9.50514379869631@rt.perl.org>
1110 Branch: perl
1111 ! lib/strict.pm
1112____________________________________________________________________________
1113[ 21441] By: rgs on 2003/10/13 08:02:21
1114 Log: Subject: [PATCH] Internals::hash_seed() returns wrong value
1115 From: Jan Dubois <jand@ActiveState.com>
1116 Date: Sun, 12 Oct 2003 22:09:39 -0700
1117 Message-ID: <07ckovck8mp5e8tthmtbbcrpi2tj6q9eak@4ax.com>
1118 Branch: perl
1119 ! universal.c
1120____________________________________________________________________________
1121[ 21440] By: rgs on 2003/10/12 19:58:05
1122 Log: Subject: [perl #24122] setreuid and friends borked on darwin/osx
1123 From: "pxm@nubz.org (via RT)" <perlbug-followup@perl.org>
1124 Date: 5 Oct 2003 20:55:56 -0000
1125 Message-ID: <rt-24122-65678.14.2411168523081@rt.perl.org>
1126 Branch: perl
1127 ! mg.c
1128____________________________________________________________________________
1129[ 21439] By: rgs on 2003/10/12 16:28:06
1130 Log: Subject: [PATCH] Tie::Hash documentation
1131 From: Slaven Rezic <slaven@rezic.de>
1132 Date: Sun, 12 Oct 2003 18:55:54 +0200 (CEST)
1133 Message-Id: <200310121655.h9CGtsrY003613@vran.herceg.de>
1134 Branch: perl
1135 ! lib/Tie/Hash.pm
1136____________________________________________________________________________
1137[ 21438] By: rgs on 2003/10/12 15:48:13
1138 Log: Subject: Re: [perl #24122] setreuid and friends borked on darwin/osx
1139 From: Slaven Rezic <slaven@rezic.de>
1140 Date: 07 Oct 2003 00:04:34 +0200
1141 Message-ID: <87ekxq6n0t.fsf@vran.herceg.de>
1142 Branch: perl
1143 ! hints/darwin.sh
1144____________________________________________________________________________
1145[ 21437] By: rgs on 2003/10/12 15:25:17
1146 Log: Minor nit in perlrun, spotted by Art Haas.
1147 Branch: perl
1148 ! pod/perlrun.pod
1149____________________________________________________________________________
1150[ 21436] By: ams on 2003/10/10 19:05:55
1151 Log: Subject: [PATCH] threads::async + some cleanup
1152 From: Elizabeth Mattijsen <liz@dijkmat.nl>
1153 Date: Fri, 10 Oct 2003 16:37:55 +0200
1154 Message-Id: <p05111b07bbac713a0aaf@[192.168.56.2]>
1155 Branch: perl
1156 ! ext/threads/threads.pm
1157____________________________________________________________________________
1158[ 21435] By: ams on 2003/10/10 19:02:34
1159 Log: Make everyone stop posting to p5p about 0e0.
1160 Branch: perl
1161 ! pod/perlsyn.pod
1162____________________________________________________________________________
1163[ 21434] By: rgs on 2003/10/10 06:20:20
1164 Log: Integrate changes 17322, 8309 and part of 10534,
1165 as suggested by Stas Bakman, to suppress compilation
1166 warnings in XS and in mod_perl.
1167 Branch: maint-5.6
1168 ! perl-5.6.2/lib/ExtUtils/xsubpp perl-5.6.2/perl.h
1169____________________________________________________________________________
1170[ 21433] By: nicholas on 2003/10/09 20:57:26
1171 Log: Put all pre-processor #s on the first column (some compilers are picky)
1172 [perl #24167] `#' comment signs not at the very beginning of a line
1173 Branch: perl
1174 ! cop.h dosish.h ext/SDBM_File/sdbm/sdbm.h iperlsys.h op.c
1175 ! perl.h regcomp.c
1176____________________________________________________________________________
1177[ 21432] By: rgs on 2003/10/09 11:09:24
1178 Log: Suppress the test file t/op/nothr5005.t and integrate its tests into
1179 t/op/args.t, now that 5005threads have been removed. Port t/op/args.t
1180 to t/test.pl.
1181 Branch: perl
1182 - t/op/nothr5005.t
1183 ! MANIFEST t/op/args.t
1184____________________________________________________________________________
1185[ 21431] By: rgs on 2003/10/09 11:06:15
1186 Log: Document the behaviour of filetest operators regarding parentheses.
1187 This fixes bug #24127 (by documenting it as a feature.)
1188 Branch: perl
1189 ! pod/perlop.pod
1190____________________________________________________________________________
1191[ 21430] By: ams on 2003/10/09 07:55:34
1192 Log: Subject: [PATCH 5.8.1 CORE] Internal fixes to source-code coordinate
1193 calculations in regcomp.c
1194 From: Eric Promislow <ericp@ActiveState.com>
1195 Date: Wed, 8 Oct 2003 17:42:42 -0700
1196 Message-Id: <20031008174242.A17544@ActiveState.com>
1197 Branch: perl
1198 ! regcomp.c
1199____________________________________________________________________________
1200[ 21429] By: ams on 2003/10/09 07:43:56
1201 Log: Patch based on:
1202
1203 Subject: [perl #24157] -MModule=} is broken
1204 From: "Lukas Mai" (via RT) <perlbug-followup@perl.org>
1205 Date: 7 Oct 2003 21:47:43 -0000
1206 Message-Id: <rt-24157-65809.10.9980909617566@rt.perl.org>
1207
1208 (Includes a fix for a similar problem in -A, but not -d.)
1209 Branch: perl
1210 ! perl.c
1211____________________________________________________________________________
1212[ 21428] By: ams on 2003/10/09 02:32:07
1213 Log: Subject: [PATCH] Devel::PPPort is missing an aTHX when calling
1214 grok_numeric_radix()
1215 From: Jan Dubois <jand@ActiveState.com>
1216 Date: Wed, 08 Oct 2003 20:37:42 -0700
1217 Message-Id: <8kl9ov0932qo08o24uafuc9v77clrgnoe4@4ax.com>
1218 Branch: perl
1219 ! ext/Devel/PPPort/PPPort.pm
1220____________________________________________________________________________
1221[ 21427] By: ams on 2003/10/09 01:36:18
1222 Log: Subject: Re: require patch breaks locale
1223 From: Rick Delaney <rick@bort.ca>
1224 Date: Wed, 8 Oct 2003 22:41:55 -0400
1225 Message-Id: <20031008224155.A14638@biff.bort.ca>
1226 Branch: perl
1227 ! t/comp/require.t
1228____________________________________________________________________________
1229[ 21426] By: ams on 2003/10/09 01:26:57
1230 Log: Subject: Re: Simple @INC hook core dump [PATCH]
1231 From: Gisle Aas <gisle@ActiveState.com>
1232 Date: 08 Oct 2003 13:35:28 -0700
1233 Message-Id: <lrr81ncvsf.fsf@caliper.activestate.com>
1234 Branch: perl
1235 ! t/op/inccode.t
1236____________________________________________________________________________
1237[ 21425] By: rgs on 2003/10/08 11:34:17
1238 Log: Fix bug #24108: Goto +foo broken
1239 the fix having been suggested by xmath via Juerd.
1240 Branch: perl
1241 ! op.c t/op/goto.t
1242____________________________________________________________________________
1243[ 21424] By: rgs on 2003/10/08 11:16:58
1244 Log: Subject: Re: Simple @INC hook core dump [PATCH]
1245 From: Gisle Aas <gisle@ActiveState.com>
1246 Date: 08 Oct 2003 04:47:33 -0700
1247 Message-ID: <lrllrweysq.fsf_-_@caliper.activestate.com>
1248 Branch: perl
1249 ! pp_ctl.c
1250____________________________________________________________________________
1251[ 21423] By: ams on 2003/10/08 10:09:41
1252 Log: Subject: [PATCH pod/perlrun.pod] Layout & POD nit.
1253 From: Abigail <abigail@abigail.nl>
1254 Date: Wed, 8 Oct 2003 03:50:49 -0700
1255 Message-Id: <20031008105049.GA15770@ucan.foad.org>
1256 Branch: perl
1257 ! pod/perlrun.pod
1258____________________________________________________________________________
1259[ 21422] By: ams on 2003/10/08 06:13:07
1260 Log: "Are implicit undefs true?" asks Gisle.
1261 Branch: perl
1262 ! pod/perlsyn.pod
1263____________________________________________________________________________
1264[ 21421] By: ams on 2003/10/08 03:20:00
1265 Log: Subject: Re: [PATCH] perlop.pod Revamp - revision 4
1266 From: schwern@pobox.com
1267 Date: Tue, 7 Oct 2003 20:39:36 -0700
1268 Message-Id: <20031007203936.X4301@ttul.org>
1269
1270 (Originally from Shlomi Fish. Applied with tweaks.)
1271 Branch: perl
1272 ! pod/perlop.pod
1273____________________________________________________________________________
1274[ 21420] By: ams on 2003/10/07 19:51:35
1275 Log: Minor tweaks to pod/perlsyn.pod (as suggested by Yves Orton),
1276 sv.c (Tim Bunce), t/op/pow.t (John P. Linderman).
1277 Branch: perl
1278 ! pod/perlsyn.pod sv.c t/op/pow.t
1279____________________________________________________________________________
1280[ 21419] By: ams on 2003/10/07 04:03:34
1281 Log: Why should -3**$x be more precisely determined than 3**$x?
1282 Branch: perl
1283 ! t/op/pow.t
1284____________________________________________________________________________
1285[ 21418] By: ams on 2003/10/07 03:59:38
1286 Log: Subject: [PATCH] Fixing UNIVERSAL.pm's bit of unpleasantness
1287 From: schwern@pobox.com
1288 Date: Mon, 6 Oct 2003 13:14:36 -0700
1289 Message-Id: <20031006131436.G20960@ttul.org>
1290 Branch: perl
1291 ! lib/UNIVERSAL.pm t/op/universal.t
1292____________________________________________________________________________
1293[ 21417] By: ams on 2003/10/07 03:55:18
1294 Log: Update perlfunc/require to describe NXDOMAIN caching... er, you
1295 know what I mean.
1296 Branch: perl
1297 ! pod/perlfunc.pod
1298____________________________________________________________________________
1299[ 21416] By: ams on 2003/10/07 03:37:01
1300 Log: Subject: [patch sv.c] improve "...free unref scalar" warning
1301 From: Stas Bekman <stas@stason.org>
1302 Date: Mon, 06 Oct 2003 21:19:53 -0700
1303 Message-Id: <3F823EE9.4030103@stason.org>
1304 Branch: perl
1305 ! sv.c
1306____________________________________________________________________________
1307[ 21415] By: ams on 2003/10/06 17:30:31
1308 Log: Subject: [PATCH bleadperl] (was Re: require() does not behave aas documented)
1309 From: Rick Delaney <rick@bort.ca>
1310 Date: Tue, 23 Sep 2003 12:14:52 -0400
1311 Message-ID: <20030923121452.G18845@biff.bort.ca>
1312 Branch: perl
1313 ! pp_ctl.c t/comp/require.t
1314____________________________________________________________________________
1315[ 21414] By: rgs on 2003/10/06 15:23:01
1316 Log: Subject: Re: [PATCH lib/warnings.t] Adding TODO functionality to lib/warnings.
1317 From: Abigail <abigail@abigail.nl>
1318 Date: Wed, 1 Oct 2003 14:19:43 +0200
1319 Message-ID: <20031001121943.GA29419@abigail.nl>
1320 Branch: perl
1321 ! lib/warnings.t
1322____________________________________________________________________________
1323[ 21413] By: rgs on 2003/10/06 15:05:32
1324 Log: Fixes in the modules maintainers list.
1325 Branch: perl
1326 ! Porting/Maintainers.pl
1327____________________________________________________________________________
1328[ 21412] By: rgs on 2003/10/06 15:02:42
1329 Log: Fix broken link in perltodo.pod.
1330 Branch: perl
1331 ! pod/perltodo.pod
1332____________________________________________________________________________
1333[ 21411] By: rgs on 2003/10/06 12:11:10
1334 Log: Typos in perldiag.
1335 Branch: perl
1336 ! pod/perldiag.pod
1337____________________________________________________________________________
1338[ 21410] By: rgs on 2003/10/06 11:55:52
1339 Log: Subject: Re: [doc-PATCH] for unpack_str() and question
1340 From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
1341 Date: Mon, 6 Oct 2003 08:45:29 +0200
1342 Message-ID: <75A46BF1A9D8D311863A00508B6259A405F180C1@ATTMSX4>
1343 Branch: perl
1344 ! pod/perlapi.pod pp_pack.c
1345____________________________________________________________________________
1346[ 21409] By: rgs on 2003/10/06 11:49:55
1347 Log: Subject: [PATCH pod/perlfunc.pod] ref can return false on references
1348 From: Abigail <abigail@abigail.nl>
1349 Date: Mon, 6 Oct 2003 05:55:21 -0700
1350 Message-ID: <20031006125521.GA26446@ucan.foad.org>
1351 Branch: perl
1352 ! pod/perlfunc.pod
1353____________________________________________________________________________
1354[ 21408] By: rgs on 2003/10/06 11:46:14
1355 Log: Add a new option --check to Porting/Maintainers,
1356 to check for files who are listed for several maintainers.
1357 Branch: perl
1358 ! Porting/Maintainers.pm
1359____________________________________________________________________________
1360[ 21407] By: rgs on 2003/10/06 11:44:33
1361 Log: Subject: [PATCH]Re: The META.yml file in bleadperl
1362 From: Fergal Daly <fergal@esatclear.ie>
1363 Date: Mon, 6 Oct 2003 00:25:29 +0100
1364 Message-Id: <200310060025.29122.fergal@esatclear.ie>
1365
1366 Plus regeneration of META.yml
1367 Branch: perl
1368 ! META.yml Porting/makemeta
1369____________________________________________________________________________
1370[ 21406] By: ams on 2003/10/06 04:22:11
1371 Log: Subject: Re: [perl #24076] "<> err EXPR" and warnings.
1372 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
1373 Date: Sun, 5 Oct 2003 21:27:54 +0200
1374 Message-Id: <20031005212754.5ef54472.rgarciasuarez@free.fr>
1375 (Applied with tweaks to op.c and a comment.)
1376 Branch: perl
1377 ! op.c t/lib/warnings/op
1378____________________________________________________________________________
1379[ 21405] By: ams on 2003/10/06 03:56:54
1380 Log: Subject: Re: [PATCH] perlsyn.pod Revision - Resend
1381 From: Shlomi Fish <shlomif@vipe.technion.ac.il>
1382 Date: Fri, 3 Oct 2003 12:34:46 +0200 (IST)
1383 Message-Id: <Pine.LNX.4.56.0310031233580.28640@vipe.technion.ac.il>
1384 (Applied with minor tweaks.)
1385 Branch: perl
1386 ! pod/perlsyn.pod
1387____________________________________________________________________________
1388[ 21404] By: ams on 2003/10/06 03:32:50
1389 Log: Subject: [perl #24120] Tie::Hash documentation has broken code
1390 From: "Benjamin J. Tilly" (via RT) <perlbug-followup@perl.org>
1391 Date: 5 Oct 2003 18:40:36 -0000
1392 Message-Id: <rt-24120-65664.15.9776865968429@rt.perl.org>
1393 (Applied without $VERSION update.)
1394 Branch: perl
1395 ! lib/Tie/Hash.pm
1396____________________________________________________________________________
1397[ 21403] By: ams on 2003/10/06 03:26:39
1398 Log: Subject: Re: [PATCH] [perl #24113] mistake in perlretut
1399 From: Robert Spier <rspier@pobox.com>
1400 Date: Sun, 05 Oct 2003 21:34:30 -0700
1401 Message-Id: <m3vfr39e7d.wl_rspier@pobox.com>
1402 Branch: perl
1403 ! pod/perlretut.pod
1404____________________________________________________________________________
1405[ 21402] By: ams on 2003/10/05 03:08:53
1406 Log: Subject: [PATCH] pp_sys.c: pp_waitpid and EINTR
1407 From: Steve Grazzini <grazz@pobox.com>
1408 Date: Sat, 4 Oct 2003 18:15:23 -0400
1409 Message-Id: <20031004221523.GA29324@grazzini.net>
1410 Branch: perl
1411 ! pp_sys.c
1412____________________________________________________________________________
1413[ 21401] By: ams on 2003/10/02 17:25:34
1414 Log: Subject: Re: 5.8.1 and srand
1415 From: Slaven Rezic <slaven@rezic.de>
1416 Date: Thu, 2 Oct 2003 15:51:11 +0000
1417 Message-Id: <1065109871.3115@devpc01.iconmobile.de>
1418 Branch: perl
1419 ! t/op/fork.t
1420____________________________________________________________________________
1421[ 21400] By: hv on 2003/10/02 09:34:36
1422 Log: minor cleanup for Changes
1423 Branch: perl
1424 ! Changes
1425____________________________________________________________________________
1426[ 21399] By: hv on 2003/10/02 09:18:27
1427 Log: Update changes
1428 Branch: perl
1429 ! Changes patchlevel.h
2f123ff6 1430____________________________________________________________________________
ce780a94
HS
1431[ 21398] By: hv on 2003/10/02 09:15:42
1432 Log: build perlapi.pod in deterministic order even when functions differ
1433 only in case; regen perlapi.pod
1434 Branch: perl
1435 ! autodoc.pl pod/perlapi.pod
1436____________________________________________________________________________
1437[ 21397] By: ams on 2003/10/02 07:48:51
1438 Log: Subject: Re: 5.8.1 and srand
1439 From: Brendan O'Dea <bod@debian.org>
1440 Date: Thu, 2 Oct 2003 10:30:36 +1000
1441 Message-Id: <20031002003036.GA9198@londo.c47.org>
1442 Branch: perl
1443 ! util.c
1444____________________________________________________________________________
1445[ 21396] By: ams on 2003/10/01 22:18:13
1446 Log: Update Changes.
1447 Branch: perl
1448 ! Changes patchlevel.h
a2e0df50 1449____________________________________________________________________________
70faccd7
AMS
1450[ 21395] By: nicholas on 2003/10/01 21:09:11
1451 Log: Integrate:
1452 [ 21387]
1453 Subject: [PATCH] perl-5.8.1 hints/powerux.sh, ext/Sys/Syslog/t/syslog.t
1454 From: Tom Horsley <Tom.Horsley@ccur.com>
1455 Date: Mon, 29 Sep 2003 13:00:09 GMT
1456 Message-Id: <200309291300.NAA23856@amber2.ccur.com>
1457 Branch: maint-5.8/perl
1458 !> ext/Sys/Syslog/t/syslog.t hints/powerux.sh
1459____________________________________________________________________________
1460[ 21394] By: ams on 2003/10/01 20:28:20
1461 Log: Subject: misapplied patch 19452
1462 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
1463 Date: Tue, 30 Sep 2003 06:01:50 -0700
1464 Message-Id: <20030930130150.GA1436@efn.org>
1465 Branch: perl
1466 ! pp_hot.c
1467____________________________________________________________________________
1468[ 21393] By: nicholas on 2003/09/30 20:52:55
1469 Log: Disarm the maint branch.
1470 (Put the MAINTfoo local patch back in patchlevel.h following the
1471 successful escape, er release, of 5.8.1)
1472 Branch: maint-5.8/perl
1473 ! Changes patchlevel.h
1474____________________________________________________________________________
1475[ 21392] By: rgs on 2003/09/30 20:22:02
1476 Log: Revamp the section on local() in perlsub.
1477 - avoid using the word "declare" in conjunction with local()
1478 - less archaelogical references
1479 - more about localization of lvalues
1480 - removes examples of localization of tied hashes that don't work
1481 - give titles to subsections
1482 - explain localization of magic values
1483 - explain localization of globs
1484 - fix link to perldelta
1485 Branch: perl
1486 ! pod/perlsub.pod
1487____________________________________________________________________________
1488[ 21391] By: rgs on 2003/09/30 12:47:13
1489 Log: Useless "local $_" in a perlfaq3 example
1490 Branch: perl
1491 ! pod/perlfaq3.pod
1492____________________________________________________________________________
1493[ 21390] By: rgs on 2003/09/30 11:29:17
1494 Log: Subject: Re: NCR MP-RAS perl problems [perl #23791]
1495 From: grommel@sears.com
1496 Date: Mon, 29 Sep 2003 14:45:16 -0500
1497 Message-ID: <OF9B00605E.3CC90F32-ON86256DB0.006B13F0-86256DB0.006C8E85@LocalDomain>
1498 Branch: perl
1499 ! hints/svr4.sh t/op/pack.t
1500____________________________________________________________________________
1501[ 21389] By: rgs on 2003/09/30 11:06:53
1502 Log: Add a TODO test for bug #23790, by Abigail
1503 Branch: perl
1504 ! t/op/sub_lval.t
1505____________________________________________________________________________
1506[ 21388] By: rgs on 2003/09/30 10:52:50
1507 Log: Subject: [PATCH] Re: [perl #24071] Typo in description of binmode
1508 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
1509 Date: Tue, 30 Sep 2003 04:53:02 -0700
1510 Message-ID: <20030930115302.GA3200@efn.org>
1511 Branch: perl
1512 ! pod/perlfunc.pod
1513____________________________________________________________________________
1514[ 21387] By: rgs on 2003/09/29 12:47:37
1515 Log: Subject: [PATCH] perl-5.8.1 hints/powerux.sh, ext/Sys/Syslog/t/syslog.t
1516 From: Tom Horsley <Tom.Horsley@ccur.com>
1517 Date: Mon, 29 Sep 2003 13:00:09 GMT
1518 Message-Id: <200309291300.NAA23856@amber2.ccur.com>
1519 Branch: perl
1520 ! ext/Sys/Syslog/t/syslog.t hints/powerux.sh
1521____________________________________________________________________________
1522[ 21386] By: rgs on 2003/09/29 11:14:27
1523 Log: Subject: [PATCH 5.8.1] Fix broken splitpod program
1524 From: Steve Hay <steve.hay@uk.radan.com>
1525 Date: Mon, 29 Sep 2003 11:50:23 +0100
1526 Message-ID: <3F780E6F.3020704@uk.radan.com>
1527 Branch: perl
1528 ! pod/splitpod
1529____________________________________________________________________________
1530[ 21385] By: rgs on 2003/09/29 11:09:32
1531 Log: Subject: [PATCH 5.8.1] pod/perlrun.pod: no space after -i allowed
1532 From: Brendan O'Dea <bod@debian.org>
1533 Date: Sun, 28 Sep 2003 23:23:34 +1000
1534 Message-ID: <20030928132334.GA29499@londo.c47.org>
1535 Branch: perl
1536 ! pod/perlrun.pod
1537____________________________________________________________________________
1538[ 21384] By: rgs on 2003/09/26 20:39:19
1539 Log: Nit to the maintainers list by SADAHIRO Tomoyuki
1540 Branch: perl
1541 ! Porting/Maintainers.pl
1542____________________________________________________________________________
1543[ 21383] By: jhi on 2003/09/26 04:41:17
1544 Log: Missing +x bits.
1545 Branch: perl
1546 ! Porting/makerel
1547____________________________________________________________________________
1548[ 21382] By: rgs on 2003/09/25 19:40:50
1549 Log: Update the perldelta for 5.9.0.
1550 Branch: perl
1551 ! pod/perldelta.pod
1552____________________________________________________________________________
1553[ 21381] By: rgs on 2003/09/25 19:02:12
1554 Log: Add the perl581delta manpage.
1555 Regenerate the table of contents.
1556 Branch: perl
1557 + pod/perl581delta.pod
1558 ! MANIFEST pod.lst pod/perl.pod pod/perlhist.pod pod/perltoc.pod
1559 ! vms/descrip_mms.template win32/pod.mak
1560____________________________________________________________________________
1561[ 21380] By: rgs on 2003/09/25 18:36:45
1562 Log: Update perlhist.pod
1563 Branch: perl
1564 ! pod/perlhist.pod
1565____________________________________________________________________________
1566[ 21379] By: chip on 2003/09/25 18:10:01
1567 Log: Relocate the mention of safe signals with POSIX::SigAction.
1568 Branch: maint-5.8/perl
1569 ! pod/perl581delta.pod
1570____________________________________________________________________________
1571[ 21378] By: jhi on 2003/09/25 12:42:00
1572 Log: perldelta turnover.
1573 Branch: maint-5.8/perl
1574 + pod/perl581delta.pod
1575 ! MANIFEST pod.lst pod/perl.pod pod/perldelta.pod
1576 ! pod/perltoc.pod vms/descrip_mms.template win32/pod.mak
1577____________________________________________________________________________
1578[ 21377] By: jhi on 2003/09/25 09:58:50
1579 Log: Here goes nothing.
1580 Branch: maint-5.8/perl
1581 ! patchlevel.h
1582____________________________________________________________________________
1583[ 21376] By: jhi on 2003/09/25 09:55:52
1584 Log: Update Changes.
1585 Branch: maint-5.8/perl
1586 ! Changes patchlevel.h
1587____________________________________________________________________________
1588[ 21375] By: jhi on 2003/09/25 09:27:33
1589 Log: Dare.
1590 Branch: maint-5.8/perl
1591 ! pod/perldelta.pod pod/perlhist.pod
1592____________________________________________________________________________
1593[ 21374] By: jhi on 2003/09/25 09:23:35
1594 Log: Integrate:
1595 [ 21369]
1596 Subject: Re: 5.8.1 and gcc-3.2.3 (& Win98)
1597 From: Greg Matheson <lang@ms.chinmin.edu.tw>
1598 Date: Wed, 24 Sep 2003 22:51:09 +0800
1599 Message-ID: <20030924225109.A17126@ms>
1600
1601 (Win98 + MinGW, a missing Win95.pm hunk)
1602
1603 [ 21370]
1604 CPAN sites update.
1605
1606 Regen perltoc, perlmodlib.
1607 Branch: maint-5.8/perl
1608 ! pod/perlmodlib.PL pod/perlmodlib.pod pod/perltoc.pod
1609 !> lib/ExtUtils/MM_Win95.pm
1610____________________________________________________________________________
1611[ 21373] By: jhi on 2003/09/25 09:22:04
1612 Log: Integrate:
1613 [ 21371]
1614 Update to Scalar-List-Utils 1.13
1615
1616 [ 21372]
1617 Sync with libnet 1.17
1618 Branch: maint-5.8/perl
1619 !> ext/List/Util/ChangeLog ext/List/Util/Util.xs
1620 !> ext/List/Util/lib/List/Util.pm
1621 !> ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/sum.t
1622____________________________________________________________________________
1623[ 21372] By: gbarr on 2003/09/25 07:35:24
1624 Log: Sync with libnet 1.17
1625 Branch: perl
1626 ! lib/Net/ChangeLog.libnet lib/Net/Domain.pm lib/Net/FTP.pm
1627____________________________________________________________________________
1628[ 21371] By: gbarr on 2003/09/25 06:57:35
1629 Log: Update to Scalar-List-Utils 1.13
1630 Branch: perl
1631 ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
1632 ! ext/List/Util/lib/List/Util.pm
1633 ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/sum.t
1634____________________________________________________________________________
1635[ 21370] By: jhi on 2003/09/25 06:45:42
1636 Log: CPAN sites update.
1637 Branch: perl
1638 ! pod/perlmodlib.PL
1639____________________________________________________________________________
1640[ 21369] By: jhi on 2003/09/25 05:22:48
1641 Log: Subject: Re: 5.8.1 and gcc-3.2.3 (& Win98)
1642 From: Greg Matheson <lang@ms.chinmin.edu.tw>
1643 Date: Wed, 24 Sep 2003 22:51:09 +0800
1644 Message-ID: <20030924225109.A17126@ms>
1645
1646 (Win98 + MinGW, a missing Win95.pm hunk)
1647 Branch: perl
1648 ! lib/ExtUtils/MM_Win95.pm
1649____________________________________________________________________________
1650[ 21368] By: jhi on 2003/09/25 05:08:09
1651 Log: Odd glitch.
1652 Branch: maint-5.8/perl
1653 ! patchlevel.h
1654____________________________________________________________________________
1655[ 21367] By: jhi on 2003/09/25 04:56:35
1656 Log: Update Changes.
1657 Branch: maint-5.8/perl
1658 ! Changes patchlevel.h
1659____________________________________________________________________________
1660[ 21366] By: jhi on 2003/09/25 04:49:32
1661 Log: Integrate:
1662
1663 [ 21365]
1664 AUTHORS tweak.
1665 Branch: maint-5.8/perl
1666 !> AUTHORS
1667____________________________________________________________________________
1668[ 21365] By: jhi on 2003/09/25 04:44:05
1669 Log: AUTHORS tweak.
1670 Branch: perl
1671 ! AUTHORS
1672____________________________________________________________________________
1673[ 21364] By: jhi on 2003/09/24 20:04:19
1674 Log: perldelta, perlport.
1675 Branch: maint-5.8/perl
1676 ! pod/perldelta.pod pod/perlport.pod
1677____________________________________________________________________________
1678[ 21363] By: jhi on 2003/09/24 19:42:35
1679 Log: Update Changes.
1680 Branch: maint-5.8/perl
1681 ! Changes patchlevel.h
1682____________________________________________________________________________
1683[ 21362] By: jhi on 2003/09/24 19:37:08
1684 Log: Integrate:
1685 [ 21360]
1686 Subject: [perl #24032] Perl 5.8.1-RC5 build problems on LynxOS
1687 From: Olli Savia (via RT) <perlbug-followup@perl.org>
1688 Date: 24 Sep 2003 15:42:41 -0000
1689 Message-ID: <rt-24032-65280.10.6144413163834@rt.perl.org>
1690
1691 [ 21361]
1692 Even though undefing SPACE and FORMAT should be safe,
1693 at this point I'm choosing to be paranoid and using
1694 #ifdef __Lynx__.
1695 Branch: maint-5.8/perl
1696 !> mg.c perl.h perlio.c pp_sys.c
1697____________________________________________________________________________
1698[ 21361] By: jhi on 2003/09/24 17:40:42
1699 Log: Even though undefing SPACE and FORMAT should be safe,
1700 at this point I'm choosing to be paranoid and using
1701 #ifdef __Lynx__.
1702 Branch: perl
1703 ! perl.h
1704____________________________________________________________________________
1705[ 21360] By: jhi on 2003/09/24 17:30:07
1706 Log: Subject: [perl #24032] Perl 5.8.1-RC5 build problems on LynxOS
1707 From: Olli Savia (via RT) <perlbug-followup@perl.org>
1708 Date: 24 Sep 2003 15:42:41 -0000
1709 Message-ID: <rt-24032-65280.10.6144413163834@rt.perl.org>
1710 Branch: perl
1711 ! mg.c perl.h perlio.c pp_sys.c
1712____________________________________________________________________________
1713[ 21359] By: jhi on 2003/09/24 14:03:52
1714 Log: Integrate:
1715 [ 21353]
1716 Someone actually reads the Makefile.PL messages, it seems.
1717 (from Jonathan Leffler)
1718
1719 [ 21354]
1720 A fix from Graham for
1721 [perl #24012] Weird conversion issue with List::Util::sum on Linux/AMD 850MHz
1722 (seemingly a NV casting issue)
1723
1724 [ 21356]
1725 Subject: [DOCPATCH] attributes.pm
1726 From: Elizabeth Mattijsen <liz@dijkmat.nl>
1727 Date: Wed, 24 Sep 2003 11:00:42 +0200
1728 Message-Id: <p05111b02bb970d5eec89@[192.168.56.4]>
1729
1730 (reformatted a bit)
1731 Branch: maint-5.8/perl
1732 !> ext/List/Util/Util.xs ext/Time/HiRes/Makefile.PL
1733 !> lib/attributes.pm
1734____________________________________________________________________________
1735[ 21358] By: jhi on 2003/09/24 10:20:13
1736 Log: perldelta.
1737 Branch: maint-5.8/perl
1738 ! pod/perldelta.pod
1739____________________________________________________________________________
1740[ 21357] By: jhi on 2003/09/24 09:26:45
1741 Log: perldelta tweaks.
1742 Branch: maint-5.8/perl
1743 ! pod/perldelta.pod
1744____________________________________________________________________________
1745[ 21356] By: jhi on 2003/09/24 08:27:52
1746 Log: Subject: [DOCPATCH] attributes.pm
1747 From: Elizabeth Mattijsen <liz@dijkmat.nl>
1748 Date: Wed, 24 Sep 2003 11:00:42 +0200
1749 Message-Id: <p05111b02bb970d5eec89@[192.168.56.4]>
1750
1751 (reformatted a bit)
1752 Branch: perl
1753 ! lib/attributes.pm
1754____________________________________________________________________________
1755[ 21355] By: jhi on 2003/09/24 08:24:02
1756 Log: Subject: [PATCH pod/perldelta.pod] map in void context.
1757 From: Abigail <abigail@abigail.nl>
1758 Date: Wed, 24 Sep 2003 10:55:45 +0200
1759 Message-ID: <20030924085545.GA2374@abigail.nl>
1760 Branch: maint-5.8/perl
1761 ! pod/perldelta.pod
1762____________________________________________________________________________
1763[ 21354] By: jhi on 2003/09/24 07:25:48
1764 Log: A fix from Graham for
1765 [perl #24012] Weird conversion issue with List::Util::sum on Linux/AMD 850MHz
1766 (seemingly a NV casting issue)
1767 Branch: perl
1768 ! ext/List/Util/Util.xs
1769____________________________________________________________________________
1770[ 21353] By: jhi on 2003/09/24 05:05:39
1771 Log: Someone actually reads the Makefile.PL messages, it seems.
1772 (from Jonathan Leffler)
1773 Branch: perl
1774 ! ext/Time/HiRes/Makefile.PL
1775____________________________________________________________________________
1776[ 21352] By: jhi on 2003/09/24 05:00:37
1777 Log: Integrate:
1778 [ 21342]
1779 Minor nit in a debug message of the tokenizer.
1780
1781 [ 21343]
1782 Subject: [PATCH] Re: OK: 5.8.1 RC5 on SuSE 8.2 32bit AMD (gcc 3.3 prerelease)
1783 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
1784 Date: Tue, 23 Sep 2003 09:13:55 -0700
1785 Message-ID: <20030923161354.GA2432@efn.org>
1786
1787 [ 21344]
1788 Subject: Re: NCR MP-RAS perl problems [perl #23791]
1789 From: grommel@sears.com
1790 Date: Tue, 23 Sep 2003 13:40:33 -0500
1791 Message-ID: <OF17BD5036.3CA48F9B-ON86256DAA.00483620-86256DAA.0066A1AA@LocalDomain>
1792
1793 [ 21345]
1794 v-promises from John Peaock.
1795
1796 [ 21346]
1797 M::BI news from Tels.
1798
1799 [ 21348]
1800 Subject: [PATCH] perlvar
1801 From: Juerd <juerd@convolution.nl>
1802 Date: Sun, 21 Sep 2003 21:40:54 +0200
1803 Message-ID: <20030921194054.GD14702@c3.convolution.nl>
1804
1805 [ 21349]
1806 The FAQ answer about POD comments was incorrect. [perl #23893]
1807 (plus a few typos.)
1808
1809 [ 21350]
1810 Subject: [PATCH 5.8.x] small perldelta patch
1811 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
1812 Date: Tue, 23 Sep 2003 14:55:24 -0700
1813 Message-ID: <20030923215524.GA3440@efn.org>
1814
1815 [ 21351]
1816 perliol tweaks.
1817 Branch: maint-5.8/perl
1818 !> INSTALL hints/svr4.sh pod/perlfaq7.pod pod/perliol.pod
1819 !> pod/perlpodspec.pod pod/perlvar.pod t/op/stat.t toke.c
1820____________________________________________________________________________
1821[ 21351] By: jhi on 2003/09/24 04:54:33
1822 Log: perliol tweaks.
1823 Branch: perl
1824 ! pod/perliol.pod
1825____________________________________________________________________________
1826[ 21350] By: jhi on 2003/09/24 04:26:29
1827 Log: Subject: [PATCH 5.8.x] small perldelta patch
1828 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
1829 Date: Tue, 23 Sep 2003 14:55:24 -0700
1830 Message-ID: <20030923215524.GA3440@efn.org>
1831 Branch: maint-5.8/perl
1832 ! pod/perldelta.pod
1833____________________________________________________________________________
1834[ 21349] By: rgs on 2003/09/23 22:09:57
1835 Log: The FAQ answer about POD comments was incorrect. [perl #23893]
1836 (plus a few typos.)
1837 Branch: perl
1838 ! pod/perlfaq7.pod pod/perlpodspec.pod
1839____________________________________________________________________________
1840[ 21348] By: rgs on 2003/09/23 21:56:50
1841 Log: Subject: [PATCH] perlvar
1842 From: Juerd <juerd@convolution.nl>
1843 Date: Sun, 21 Sep 2003 21:40:54 +0200
1844 Message-ID: <20030921194054.GD14702@c3.convolution.nl>
1845 Branch: perl
1846 ! pod/perlvar.pod
1847____________________________________________________________________________
1848[ 21347] By: rgs on 2003/09/23 21:34:15
1849 Log: In Configure, integrate a more modern way to guess whether
1850 a C symbol is defined. (See change #21267.)
1851 Branch: maint-5.6
1852 ! perl-5.6.2/Configure
1853____________________________________________________________________________
1854[ 21346] By: jhi on 2003/09/23 19:44:52
1855 Log: M::BI news from Tels.
1856 Branch: maint-5.8/perl
1857 ! pod/perldelta.pod
1858____________________________________________________________________________
1859[ 21345] By: jhi on 2003/09/23 19:41:21
1860 Log: v-promises from John Peaock.
1861 Branch: maint-5.8/perl
1862 ! pod/perldelta.pod
1863____________________________________________________________________________
1864[ 21344] By: jhi on 2003/09/23 19:33:45
1865 Log: Subject: Re: NCR MP-RAS perl problems [perl #23791]
1866 From: grommel@sears.com
1867 Date: Tue, 23 Sep 2003 13:40:33 -0500
1868 Message-ID: <OF17BD5036.3CA48F9B-ON86256DAA.00483620-86256DAA.0066A1AA@LocalDomain>
1869 Branch: perl
1870 ! hints/svr4.sh t/op/stat.t
1871____________________________________________________________________________
1872[ 21343] By: jhi on 2003/09/23 19:26:06
1873 Log: Subject: [PATCH] Re: OK: 5.8.1 RC5 on SuSE 8.2 32bit AMD (gcc 3.3 prerelease)
1874 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
1875 Date: Tue, 23 Sep 2003 09:13:55 -0700
1876 Message-ID: <20030923161354.GA2432@efn.org>
1877 Branch: perl
1878 ! INSTALL
1879____________________________________________________________________________
1880[ 21342] By: rgs on 2003/09/23 19:12:58
1881 Log: Minor nit in a debug message of the tokenizer.
1882 Branch: perl
1883 ! toke.c
1884____________________________________________________________________________
1885[ 21341] By: jhi on 2003/09/23 12:46:04
1886 Log: Integrate:
1887 [ 21338]
1888 Bump the Encode version to 1.9801 since we are no more identical
1889 to the CPAN version.
1890
1891 [ 21339]
1892 Subject: Re: [PATCH] RC5 and Intel's ICC
1893 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
1894 Date: Tue, 23 Sep 2003 15:04:35 +0200
1895 Message-ID: <00d101c381d3$3d761fe0$0c2f1fac@R2D2>
1896
1897 (add -we147 to ccflags if cc = ICC so that prototype
1898 detection works right)
1899
1900 [ 21340]
1901 Let's call it 2.34, already (from Johan).
1902 Branch: maint-5.8/perl
1903 !> ext/Encode/Encode.pm hints/linux.sh lib/Getopt/Long.pm
1904____________________________________________________________________________
1905[ 21340] By: jhi on 2003/09/23 12:33:53
1906 Log: Let's call it 2.34, already (from Johan).
1907 Branch: perl
1908 ! lib/Getopt/Long.pm
1909____________________________________________________________________________
1910[ 21339] By: jhi on 2003/09/23 12:31:08
1911 Log: Subject: Re: [PATCH] RC5 and Intel's ICC
1912 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
1913 Date: Tue, 23 Sep 2003 15:04:35 +0200
1914 Message-ID: <00d101c381d3$3d761fe0$0c2f1fac@R2D2>
1915
1916 (add -we147 to ccflags if cc = ICC so that prototype
1917 detection works right)
1918 Branch: perl
1919 ! hints/linux.sh
1920____________________________________________________________________________
1921[ 21338] By: jhi on 2003/09/23 12:02:28
1922 Log: Bump the Encode version to 1.9801 since we are no more identical
1923 to the CPAN version.
1924 Branch: perl
1925 ! ext/Encode/Encode.pm
1926____________________________________________________________________________
1927[ 21337] By: jhi on 2003/09/23 11:12:27
1928 Log: Update Changes.
1929 Branch: maint-5.8/perl
1930 ! Changes patchlevel.h
1931____________________________________________________________________________
1932[ 21336] By: jhi on 2003/09/23 10:07:41
1933 Log: perldelta.
1934 Branch: maint-5.8/perl
1935 ! pod/perldelta.pod
1936____________________________________________________________________________
1937[ 21335] By: jhi on 2003/09/23 10:04:22
1938 Log: Enache Adrian says the FreeBSD malloc example
1939 is no more true.
1940 Branch: maint-5.8/perl
1941 ! pod/perldelta.pod
1942____________________________________________________________________________
1943[ 21334] By: jhi on 2003/09/23 10:02:42
1944 Log: Integrate:
1945 [ 21331]
1946 [perl #23979] GSM 03.38 mapping in Encoding::Byte is incorrect
1947
1948 Fix as much as possible - the specification is still
1949 a bit unclear.
1950
1951 [ 21332]
1952 ucmlintage.
1953 Branch: maint-5.8/perl
1954 +> ext/Encode/t/gsm0338.t
1955 !> MANIFEST ext/Encode/MANIFEST
1956 !> ext/Encode/lib/Encode/Supported.pod ext/Encode/ucm/gsm0338.ucm
1957____________________________________________________________________________
1958[ 21333] By: jhi on 2003/09/23 09:21:04
1959 Log: Mention the GSM 03.38 fix.
1960 Branch: maint-5.8/perl
1961 ! pod/perldelta.pod
1962____________________________________________________________________________
1963[ 21332] By: jhi on 2003/09/23 09:17:32
1964 Log: ucmlintage.
1965 Branch: perl
1966 ! ext/Encode/ucm/gsm0338.ucm
1967____________________________________________________________________________
1968[ 21331] By: jhi on 2003/09/23 09:11:23
1969 Log: GSM 03.38 mapping in Encoding::Byte is incorrect
1970
1971 Fix as much as possible - the specification is still
1972 a bit unclear.
1973 Branch: perl
1974 + ext/Encode/t/gsm0338.t
1975 ! MANIFEST ext/Encode/MANIFEST
1976 ! ext/Encode/lib/Encode/Supported.pod ext/Encode/ucm/gsm0338.ucm
1977____________________________________________________________________________
1978[ 21330] By: jhi on 2003/09/23 06:30:06
1979 Log: Integrate:
1980 [ 21324]
1981 The RCs have been missing CRs from certain files because
1982 not all shells can handle multiline arguments right.
1983
1984 [ 21325]
1985 Stray CRs noticed by Jan Dubois.
1986
1987 [ 21326]
1988 Subject: [PATCH] RC5 and Intel's ICC
1989 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
1990 Date: Mon, 22 Sep 2003 22:52:40 +0200
1991 Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
1992
1993 (the attribute part)
1994
1995 [ 21327]
1996 Subject: [PATCH] RC5 and Intel's ICC
1997 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
1998 Date: Mon, 22 Sep 2003 22:52:40 +0200
1999 Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
2000
2001 (the missing void return type)
2002
2003 [ 21329]
2004 Subject: [PATCH] Re: B::Deparse fails in pure_string()
2005 From: Stephen McCamant <smcc@MIT.EDU>
2006 Date: Mon, 22 Sep 2003 20:53:57 -0700
2007 Message-ID: <16239.50133.367465.947398@famine.OCF.Berkeley.EDU>
2008 Branch: maint-5.8/perl
2009 !> Porting/makerel ext/B/B/Deparse.pm ext/Devel/PPPort/PPPort.pm
2010 !> ext/threads/shared/shared.xs lib/ExtUtils/MM_Win95.pm
2011 !> lib/ExtUtils/t/MM_Win32.t perl.h
2012____________________________________________________________________________
2013[ 21329] By: jhi on 2003/09/23 06:10:28
2014 Log: Subject: [PATCH] Re: B::Deparse fails in pure_string()
2015 From: Stephen McCamant <smcc@MIT.EDU>
2016 Date: Mon, 22 Sep 2003 20:53:57 -0700
2017 Message-ID: <16239.50133.367465.947398@famine.OCF.Berkeley.EDU>
2018 Branch: perl
2019 ! ext/B/B/Deparse.pm
2020____________________________________________________________________________
2021[ 21328] By: jhi on 2003/09/23 06:08:15
2022 Log: perldelta.
2023 Branch: maint-5.8/perl
2024 ! pod/perldelta.pod
2025____________________________________________________________________________
2026[ 21327] By: jhi on 2003/09/23 04:51:15
2027 Log: Subject: [PATCH] RC5 and Intel's ICC
2028 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
2029 Date: Mon, 22 Sep 2003 22:52:40 +0200
2030 Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
2031
2032 (the missing void return type)
2033 Branch: perl
2034 ! ext/threads/shared/shared.xs
2035____________________________________________________________________________
2036[ 21326] By: jhi on 2003/09/23 04:46:48
2037 Log: Subject: [PATCH] RC5 and Intel's ICC
2038 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
2039 Date: Mon, 22 Sep 2003 22:52:40 +0200
2040 Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
2041
2042 (the attribute part)
2043 Branch: perl
2044 ! ext/Devel/PPPort/PPPort.pm perl.h
2045____________________________________________________________________________
2046[ 21325] By: jhi on 2003/09/23 04:43:29
2047 Log: Stray CRs noticed by Jan Dubois.
2048 Branch: perl
2049 ! lib/ExtUtils/MM_Win95.pm lib/ExtUtils/t/MM_Win32.t
2050____________________________________________________________________________
2051[ 21324] By: jhi on 2003/09/23 04:40:19
2052 Log: The RCs have been missing CRs from certain files because
2053 not all shells can handle multiline arguments right.
2054 Branch: perl
2055 ! Porting/makerel
2056____________________________________________________________________________
2057[ 21323] By: rgs on 2003/09/22 20:31:19
2058 Log: When localising a magic value, propagæte the readonly flag
2059 only if this scalar has \0 magic or has magic without a
2060 'set' method. (follows change #20479 for bug #23141.)
2061 Branch: perl
2062 ! scope.c t/op/local.t
2063____________________________________________________________________________
2064[ 21322] By: jhi on 2003/09/22 19:39:27
2065 Log: perldelta tweaks.
2066 Branch: maint-5.8/perl
2067 ! pod/perldelta.pod
2068____________________________________________________________________________
2069[ 21321] By: jhi on 2003/09/22 19:07:15
2070 Log: Integrate:
2071
2072 [ 21318]
2073 Upgrade to Math::BigInt 1.66.
2074
2075 [ 21319]
2076 An error message need not be a novel.
2077
2078 (the M::BI is somewhat risky, but smokes will be running,
2079 and I will ask known tricky platforms to test separately)
2080 Branch: maint-5.8/perl
2081 !> lib/Math/BigFloat.pm lib/Math/BigInt.pm
2082 !> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
2083 !> lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
2084 !> lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/sub_mbi.t
2085 !> lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
2086 !> pod/perldiag.pod pp_hot.c
2087____________________________________________________________________________
2088[ 21320] By: jhi on 2003/09/22 18:22:27
2089 Log: perldelta updates.
2090 Branch: maint-5.8/perl
2091 ! pod/perldelta.pod
2092____________________________________________________________________________
2093[ 21319] By: jhi on 2003/09/22 18:16:40
2094 Log: An error message need not be a novel.
2095 Branch: perl
2096 ! pod/perldiag.pod pp_hot.c
2097____________________________________________________________________________
2098[ 21318] By: jhi on 2003/09/22 17:45:23
2099 Log: Upgrade to Math::BigInt 1.66.
2100 Branch: perl
2101 ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
2102 ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbi.t
2103 ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
2104 ! lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/sub_mbi.t
2105 ! lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
2106____________________________________________________________________________
2107[ 21317] By: jhi on 2003/09/22 10:59:53
2108 Log: perldelta tweakage.
2109 Branch: maint-5.8/perl
2110 ! pod/perldelta.pod
2111____________________________________________________________________________
2112[ 21316] By: jhi on 2003/09/22 10:10:29
2113 Log: Update Changes.
2114 Branch: maint-5.8/perl
2115 ! Changes patchlevel.h
2116____________________________________________________________________________
2117[ 21315] By: jhi on 2003/09/22 09:57:26
2118 Log: Integrate:
2119 [ 21311]
2120 Some more perlio doc tweaks based on NI-S.
2121 Branch: maint-5.8/perl
2122 !> pod/perliol.pod
2123____________________________________________________________________________
2124[ 21314] By: jhi on 2003/09/22 09:34:25
2125 Log: Punch the patchlevel back in for now.
2126 Branch: maint-5.8/perl
2127 ! patchlevel.h
2128____________________________________________________________________________
2129[ 21313] By: jhi on 2003/09/22 09:33:35
2130 Log: Rephrase a bit.
2131 Branch: maint-5.8/perl
2132 ! pod/perldelta.pod
2133____________________________________________________________________________
2134[ 21312] By: jhi on 2003/09/22 09:00:20
2135 Log: Also :utf8 <INPUT> is now more careful.
2136 Branch: maint-5.8/perl
2137 ! pod/perldelta.pod
2138____________________________________________________________________________
2139[ 21311] By: jhi on 2003/09/22 08:49:24
2140 Log: Some more perlio doc tweaks based on NI-S.
2141 Branch: perl
2142 ! pod/perliol.pod
2143____________________________________________________________________________
2144[ 21310] By: jhi on 2003/09/22 08:17:03
2145 Log: Explain 5.6.1 in the scheme of things.
2146 Branch: maint-5.8/perl
2147 ! pod/perldelta.pod
2148____________________________________________________________________________
2149[ 21309] By: jhi on 2003/09/22 07:52:53
2150 Log: Update Changes.
2151 Branch: maint-5.8/perl
2152 ! Changes patchlevel.h
2153____________________________________________________________________________
2154[ 21308] By: jhi on 2003/09/22 07:10:32
2155 Log: Integrate:
2156 [ 21305]
2157 Upgrade to Time::HiRes 1.51.
2158 Branch: maint-5.8/perl
2159 !> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
2160____________________________________________________________________________
2161[ 21307] By: jhi on 2003/09/22 06:44:01
2162 Log: It's RC time.
2163 Branch: maint-5.8/perl
2164 ! patchlevel.h pod/perlhist.pod
2165____________________________________________________________________________
2166[ 21306] By: jhi on 2003/09/22 06:41:42
2167 Log: Update Changes.
2168 Branch: maint-5.8/perl
2169 ! Changes patchlevel.h
2170____________________________________________________________________________
2171[ 21305] By: jhi on 2003/09/22 05:59:54
2172 Log: Upgrade to Time::HiRes 1.51.
2173 Branch: perl
2174 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
2175____________________________________________________________________________
2176[ 21304] By: jhi on 2003/09/22 04:43:10
2177 Log: Integrate:
2178 [ 21302]
2179 CPAN.pm 1.76_01 from Andreas.
2180
2181 [ 21303]
2182 Upgrade to Getopt::Long 2.33_03.
2183 Branch: maint-5.8/perl
2184 !> lib/CPAN.pm lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
2185____________________________________________________________________________
2186[ 21303] By: jhi on 2003/09/22 04:37:21
2187 Log: Upgrade to Getopt::Long 2.33_03.
2188 Branch: perl
2189 ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
2190____________________________________________________________________________
2191[ 21302] By: jhi on 2003/09/22 04:28:57
2192 Log: CPAN.pm 1.76_01 from Andreas.
2193 Branch: perl
2194 ! lib/CPAN.pm
2195____________________________________________________________________________
2196[ 21301] By: jhi on 2003/09/22 04:28:01
2197 Log: Mention the client-SIGPIPE feature.
2198 Branch: maint-5.8/perl
2199 ! pod/perldelta.pod
2200____________________________________________________________________________
2201[ 21300] By: jhi on 2003/09/21 09:53:49
2202 Log: Integrate:
2203 [ 21288]
2204 Subject: typo fixo
2205 From: Vadim Konovalov <konovalo@mail.wplus.net>
2206 Date: Fri, 19 Sep 2003 06:32:08 +0400
2207 Message-ID: <4538131828.20030919063208@mail.wplus.net>
2208
2209 [ 21289]
2210 FAQ sync.
2211
2212 [ 21290]
2213 Missing perlfaq chunk.
2214
2215 [ 21291]
2216 In FreeBSD allow one to try using Perl's malloc with threads.
2217
2218 [ 21292]
2219 Retract #21273, #21264, and #21263 as requested by Schwern.
2220 (The real bug was mp2 being too "friendly" with MM innards.)
2221
2222 [ 21293]
2223 More PerlIO documentation.
2224
2225 [ 21294]
2226 Subject: [PATCH #2] Re: [perl #23576] valgrind errors for /(?{})/ in t/op/pat.t
2227 From: Dave Mitchell <davem@fdgroup.com>
2228 Date: Fri, 19 Sep 2003 19:35:44 +0100
2229 Message-ID: <20030919183544.GA14563@fdgroup.com>
2230
2231 [ 21295]
2232 One obvious place to look for PerlIO implementations.
2233
2234 [ 21296]
2235 Tweak the section name to agree with the change #21295.
2236
2237 [ 21297]
2238 Macrofy the compile/runtime test.
2239
2240 [ 21298]
2241 Handle also the curliffy files when tocing.
2242
2243 [ 21299]
2244 Regen toc.
2245 Branch: maint-5.8/perl
2246 !> cop.h gv.c hints/freebsd.sh lib/ExtUtils/MM_Unix.pm
2247 !> lib/ExtUtils/MM_Win32.pm lib/ExtUtils/t/MM_Unix.t
2248 !> lib/ExtUtils/t/MM_Win32.t lib/PerlIO.pm perl.h pod/buildtoc
2249 !> pod/perlfaq4.pod pod/perliol.pod pod/perltoc.pod
2250 !> pod/perlunicode.pod pp_ctl.c regcomp.c sv.c utf8.c
2251____________________________________________________________________________
2252[ 21299] By: jhi on 2003/09/21 09:23:17
2253 Log: Regen toc.
2254 Branch: perl
2255 ! pod/perltoc.pod
2256____________________________________________________________________________
2257[ 21298] By: jhi on 2003/09/21 09:22:57
2258 Log: Handle also the curliffy files when tocing.
2259 Branch: perl
2260 ! pod/buildtoc
2261____________________________________________________________________________
2262[ 21297] By: jhi on 2003/09/21 08:50:22
2263 Log: Macrofy the compile/runtime test.
2264 Branch: perl
2265 ! cop.h gv.c perl.h pp_ctl.c regcomp.c sv.c utf8.c
2266____________________________________________________________________________
2267[ 21296] By: jhi on 2003/09/21 08:47:32
2268 Log: Tweak the section name to agree with the change #21295.
2269 Branch: perl
2270 ! lib/PerlIO.pm
2271____________________________________________________________________________
2272[ 21295] By: jhi on 2003/09/21 08:44:52
2273 Log: One obvious place to look for PerlIO implementations.
2274 Branch: perl
2275 ! pod/perliol.pod
2276____________________________________________________________________________
2277[ 21294] By: jhi on 2003/09/21 08:15:52
2278 Log: Subject: [PATCH #2] Re: [perl #23576] valgrind errors for /(?{})/ in t/op/pat.t
2279 From: Dave Mitchell <davem@fdgroup.com>
2280 Date: Fri, 19 Sep 2003 19:35:44 +0100
2281 Message-ID: <20030919183544.GA14563@fdgroup.com>
2282 Branch: perl
2283 ! pp_ctl.c
2284____________________________________________________________________________
2285[ 21293] By: jhi on 2003/09/21 08:13:58
2286 Log: More PerlIO documentation.
2287 Branch: perl
2288 ! lib/PerlIO.pm pod/perliol.pod
2289____________________________________________________________________________
2290[ 21292] By: jhi on 2003/09/20 18:44:07
2291 Log: Retract #21273, #21264, and #21263 as requested by Schwern.
2292 (The real bug was mp2 being too "friendly" with MM innards.)
2293 Branch: perl
2294 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
2295 ! lib/ExtUtils/t/MM_Unix.t lib/ExtUtils/t/MM_Win32.t
2296____________________________________________________________________________
2297[ 21291] By: jhi on 2003/09/20 18:37:33
2298 Log: In FreeBSD allow one to try using Perl's malloc with threads.
2299 Branch: perl
2300 ! hints/freebsd.sh
2301____________________________________________________________________________
2302[ 21290] By: rgs on 2003/09/20 10:05:38
2303 Log: Missing perlfaq chunk.
2304 Branch: perl
2305 ! pod/perlfaq4.pod
2306____________________________________________________________________________
2307[ 21289] By: rgs on 2003/09/20 10:00:12
2308 Log: FAQ sync.
2309 Branch: perl
2310 ! pod/perlfaq4.pod
2311____________________________________________________________________________
2312[ 21288] By: jhi on 2003/09/19 14:49:20
2313 Log: Subject: typo fixo
2314 From: Vadim Konovalov <konovalo@mail.wplus.net>
2315 Date: Fri, 19 Sep 2003 06:32:08 +0400
2316 Message-ID: <4538131828.20030919063208@mail.wplus.net>
2317 Branch: perl
2318 ! pod/perlunicode.pod
2319____________________________________________________________________________
2320[ 21287] By: jhi on 2003/09/19 05:07:35
2321 Log: Integrate:
2322 [ 21282]
2323 Integrate a change from the perlfaq CVS.
2324 I consider the bleadperl version being more up-to-date as of now.
2325
2326 [ 21283]
2327 Perlfaq nits from Iain Truskett.
2328 (from the perlfaq-workers list)
2329
2330 [ 21284]
2331 Subject: [PATCH 5.8.1 @21211] dumpvar.pl broken
2332 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2333 Date: Thu, 18 Sep 2003 18:58:59 -0700
2334 Message-ID: <20030919015858.GA22503@math.berkeley.edu>
2335
2336 [ 21285]
2337 Tests for change #21284.
2338
2339 [ 21286]
2340 Subject: [PATCH 5.8.1 @21211] getsysinfo() broken on OS/2
2341 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2342 Date: Thu, 18 Sep 2003 19:01:06 -0700
2343 Message-ID: <20030919020106.GA22511@math.berkeley.edu>
2344 Branch: maint-5.8/perl
2345 !> lib/dumpvar.pl lib/dumpvar.t os2/os2.c pod/perlfaq2.pod
2346 !> pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq8.pod
2347____________________________________________________________________________
2348[ 21286] By: jhi on 2003/09/19 04:48:52
2349 Log: Subject: [PATCH 5.8.1 @21211] getsysinfo() broken on OS/2
2350 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2351 Date: Thu, 18 Sep 2003 19:01:06 -0700
2352 Message-ID: <20030919020106.GA22511@math.berkeley.edu>
2353 Branch: perl
2354 ! os2/os2.c
2355____________________________________________________________________________
2356[ 21285] By: jhi on 2003/09/19 04:46:39
2357 Log: Tests for change #21284.
2358 Branch: perl
2359 ! lib/dumpvar.t
2360____________________________________________________________________________
2361[ 21284] By: jhi on 2003/09/19 04:46:12
2362 Log: Subject: [PATCH 5.8.1 @21211] dumpvar.pl broken
2363 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2364 Date: Thu, 18 Sep 2003 18:58:59 -0700
2365 Message-ID: <20030919015858.GA22503@math.berkeley.edu>
2366 Branch: perl
2367 ! lib/dumpvar.pl
2368____________________________________________________________________________
2369[ 21283] By: rgs on 2003/09/18 21:29:23
2370 Log: Perlfaq nits from Iain Truskett.
2371 (from the perlfaq-workers list)
2372 Branch: perl
2373 ! pod/perlfaq2.pod pod/perlfaq4.pod pod/perlfaq8.pod
2374____________________________________________________________________________
2375[ 21282] By: rgs on 2003/09/18 21:10:26
2376 Log: Integrate a change from the perlfaq CVS.
2377 I consider the bleadperl version being more up-to-date as of now.
2378 Branch: perl
2379 ! pod/perlfaq3.pod
2380____________________________________________________________________________
2381[ 21281] By: rgs on 2003/09/18 20:48:50
2382 Log: perlunicode.pod refers to a future which is now the past.
2383 Get perlhack from bleadperl (but note that the description of the
2384 test suite is not in line with what's in perl 5.6.2).
2385 Branch: maint-5.6
2386 ! perl-5.6.2/pod/perlhack.pod perl-5.6.2/pod/perlunicode.pod
2387____________________________________________________________________________
2388[ 21280] By: rgs on 2003/09/18 20:06:11
2389 Log: Increment the version number to 5.6.2.
2390 Update the user-visible copyright date (in "perl -v").
2391 Branch: maint-5.6
2392 ! perl-5.6.2/patchlevel.h perl-5.6.2/perl.c
2393 ! perl-5.6.2/win32/Makefile perl-5.6.2/win32/config_H.bc
2394 ! perl-5.6.2/win32/config_H.gc perl-5.6.2/win32/config_H.vc
2395 ! perl-5.6.2/win32/makefile.mk
2396____________________________________________________________________________
2397[ 21279] By: jhi on 2003/09/18 19:45:11
2398 Log: Update Changes.
2399 Branch: maint-5.8/perl
2400 ! Changes patchlevel.h
2401____________________________________________________________________________
2402[ 21278] By: jhi on 2003/09/18 19:27:55
2403 Log: Integrate:
2404 [ 21276]
2405 Subject: Re: [perl #19582] [PATCH bleedperl] bad overload copy constructor segfaults
2406 From: Rick Delaney <rick.delaney@rogers.com>
2407 Date: Wed, 1 Jan 2003 22:54:59 -0500
2408 Message-ID: <20030101225459.A2320@cs839290-a.mtth.phub.net.cable.rogers.com>
2409
2410 (Pity the first patch fell through the cracks back then.
2411 Not that forbidding non-object copy constructors is the right
2412 thing to do but the bug could use fixing.)
2413
2414 [ 21277]
2415 Subject: [PATCH 5.8.1 @21211] -M -A -C broken
2416 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2417 Date: Thu, 18 Sep 2003 11:02:02 -0700
2418 Message-ID: <20030918180202.GA21949@math.berkeley.edu>
2419
2420 (use stat.t instead of time.t)
2421 Branch: maint-5.8/perl
2422 !> lib/overload.t os2/os2ish.h pp.h pp_sys.c t/op/stat.t
2423____________________________________________________________________________
2424[ 21277] By: jhi on 2003/09/18 19:23:22
2425 Log: Subject: [PATCH 5.8.1 @21211] -M -A -C broken
2426 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2427 Date: Thu, 18 Sep 2003 11:02:02 -0700
2428 Message-ID: <20030918180202.GA21949@math.berkeley.edu>
2429
2430 (use stat.t instead of time.t)
2431 Branch: perl
2432 ! os2/os2ish.h pp_sys.c t/op/stat.t
2433____________________________________________________________________________
2434[ 21276] By: jhi on 2003/09/18 19:15:07
2435 Log: Subject: Re: [perl #19582] [PATCH bleedperl] bad overload copy constructor segfaults
2436 From: Rick Delaney <rick.delaney@rogers.com>
2437 Date: Wed, 1 Jan 2003 22:54:59 -0500
2438 Message-ID: <20030101225459.A2320@cs839290-a.mtth.phub.net.cable.rogers.com>
2439
2440 (Pity the first patch fell through the cracks back then.
2441 Not that forbidding non-object copy constructors is the right
2442 thing to do but the bug could use fixing.)
2443 Branch: perl
2444 ! lib/overload.t pp.h
2445____________________________________________________________________________
2446[ 21275] By: jhi on 2003/09/18 14:12:47
2447 Log: Integrate:
2448 [ 21273]
2449 ld has many guises.
2450
2451 [ 21274]
2452 Subject: [PATCH] small fix for Devel::PPPort
2453 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
2454 Date: Thu, 18 Sep 2003 10:14:58 +0200
2455 Message-id: <20030918081458.GA2653@ethan>
2456 Branch: maint-5.8/perl
2457 !> ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
2458 !> lib/ExtUtils/t/MM_Unix.t
2459____________________________________________________________________________
2460[ 21274] By: jhi on 2003/09/18 10:59:58
2461 Log: Subject: [PATCH] small fix for Devel::PPPort
2462 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
2463 Date: Thu, 18 Sep 2003 10:14:58 +0200
2464 Message-id: <20030918081458.GA2653@ethan>
2465 Branch: perl
2466 ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
2467____________________________________________________________________________
2468[ 21273] By: jhi on 2003/09/18 10:57:41
2469 Log: ld has many guises.
2470 Branch: perl
2471 ! lib/ExtUtils/t/MM_Unix.t
2472____________________________________________________________________________
2473[ 21272] By: jhi on 2003/09/18 08:09:54
2474 Log: Integrate:
2475 [ 21263]
2476 Subject: RE: MM in maint@21251 breaks mp2
2477 From: "Orton, Yves" <yves.orton@de.mci.com>
2478 Message-ID: <71B318898201D311845C0008C75DAD1C089611FE@defra1ex2>
2479 Date: Wed, 17 Sep 2003 15:47:35 +0100
2480
2481 [ 21264]
2482 A potential fix for non-empty LD in Unix.
2483
2484 [ 21266]
2485 Make it possible to override the mistrustnm hint in Solaris.
2486
2487 [ 21267]
2488 Patch from Enache Adrian for the new tricks of gcc 3.4
2489 for "is this symbol defined" scanning of Configure.
2490
2491 [ 21268]
2492 Subject: 5.8.1 warnings when long double == double
2493 From: Andy Dougherty <doughera@lafayette.edu>
2494 Date: Wed, 10 Sep 2003 12:03:53 -0400 (EDT)
2495 Message-ID: <Pine.SOL.4.53.0309101203010.10837@maxwell.phys.lafayette.edu>
2496 (the changed message)
2497
2498 [ 21270]
2499 Subject: Patch for VMS::Filespec
2500 From: Ken Williams <ken@mathforum.org>
2501 Date: Wed, 17 Sep 2003 20:11:46 -0500
2502 Message-Id: <12FBA07F-E975-11D7-BDD7-003065F6D85A@mathforum.org>
2503
2504 [ 21271]
2505 Missed OS/2 patch hunk.
2506 Branch: maint-5.8/perl
2507 !> Configure hints/solaris_2.sh lib/ExtUtils/MM_Unix.pm
2508 !> lib/ExtUtils/MM_Win32.pm lib/ExtUtils/t/MM_Unix.t
2509 !> lib/ExtUtils/t/MM_Win32.t os2/os2.c vms/ext/Filespec.pm
2510____________________________________________________________________________
2511[ 21271] By: jhi on 2003/09/18 08:05:28
2512 Log: Missed OS/2 patch hunk.
2513 Branch: perl
2514 ! os2/os2.c
2515____________________________________________________________________________
2516[ 21270] By: jhi on 2003/09/18 05:00:23
2517 Log: Subject: Patch for VMS::Filespec
2518 From: Ken Williams <ken@mathforum.org>
2519 Date: Wed, 17 Sep 2003 20:11:46 -0500
2520 Message-Id: <12FBA07F-E975-11D7-BDD7-003065F6D85A@mathforum.org>
2521 Branch: perl
2522 ! vms/ext/Filespec.pm
2523____________________________________________________________________________
2524[ 21269] By: jhi on 2003/09/18 04:58:53
2525 Log: metaconfig unit changes for #21267 and #21268.
2526 Branch: metaconfig
2527 ! U/compline/Csym.U U/modified/d_longdbl.U
2528____________________________________________________________________________
2529[ 21268] By: jhi on 2003/09/18 04:58:05
2530 Log: Subject: 5.8.1 warnings when long double == double
2531 From: Andy Dougherty <doughera@lafayette.edu>
2532 Date: Wed, 10 Sep 2003 12:03:53 -0400 (EDT)
2533 Message-ID: <Pine.SOL.4.53.0309101203010.10837@maxwell.phys.lafayette.edu>
2534 (the changed message)
2535 Branch: perl
2536 ! Configure
2537____________________________________________________________________________
2538[ 21267] By: jhi on 2003/09/18 04:54:16
2539 Log: Patch from Enache Adrian for the new tricks of gcc 3.4
2540 for "is this symbol defined" scanning of Configure.
2541 Branch: perl
2542 ! Configure
2543____________________________________________________________________________
2544[ 21266] By: jhi on 2003/09/18 04:29:55
2545 Log: Make it possible to override the mistrustnm hint in Solaris.
2546 Branch: perl
2547 ! hints/solaris_2.sh
2548____________________________________________________________________________
2549[ 21265] By: jhi on 2003/09/18 04:28:08
2550 Log: OZ nit.
2551 Branch: maint-5.8/perl
2552 ! pod/perldelta.pod
2553____________________________________________________________________________
2554[ 21264] By: jhi on 2003/09/17 21:01:36
2555 Log: A potential fix for non-empty LD in Unix.
2556 Branch: perl
2557 ! lib/ExtUtils/t/MM_Unix.t
2558____________________________________________________________________________
2559[ 21263] By: jhi on 2003/09/17 14:09:50
2560 Log: Subject: RE: MM in maint@21251 breaks mp2
2561 From: "Orton, Yves" <yves.orton@de.mci.com>
2562 Message-ID: <71B318898201D311845C0008C75DAD1C089611FE@defra1ex2>
2563 Date: Wed, 17 Sep 2003 15:47:35 +0100
2564 Branch: perl
2565 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
2566 ! lib/ExtUtils/t/MM_Unix.t lib/ExtUtils/t/MM_Win32.t
2567____________________________________________________________________________
2568[ 21262] By: jhi on 2003/09/17 11:35:38
2569 Log: Integrate:
2570 [ 21253]
2571 Subject: [DOC PATCH] Re: [perl #23779] $? and negative exit codes
2572 From: Dave Mitchell <davem@fdgroup.com>
2573 Date: Tue, 16 Sep 2003 21:56:20 +0100
2574 Message-ID: <20030916205620.GB1246@fdgroup.com>
2575
2576 [ 21257]
2577 Subject: [PATCH 5.8.1 @21211] magic.t
2578 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2579 Date: Tue, 16 Sep 2003 19:17:57 -0700
2580 Message-ID: <20030917021757.GA20261@math.berkeley.edu>
2581
2582 [ 21258]
2583 Subject: [PATCH 5.8.1 @21211] os2_process.t
2584 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2585 Date: Tue, 16 Sep 2003 23:21:48 -0700
2586 Message-ID: <20030917062147.GA20400@math.berkeley.edu>
2587
2588 [ 21259]
2589 Subject: [PATCH 5.8.1 @21211] OS/2 APIs again
2590 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2591 Date: Tue, 16 Sep 2003 23:49:42 -0700
2592 Message-ID: <20030917064941.GA20444@math.berkeley.edu>
2593
2594 [ 21260]
2595 Fix Solaris ccversion not having the cc version.
2596
2597 [ 21261]
2598 The AIX C product potentially consists of several packages,
2599 the main package being (hopefully) the first one.
2600 Branch: maint-5.8/perl
2601 !> hints/aix.sh hints/solaris_2.sh
2602 !> os2/OS2/Process/t/os2_process.t os2/os2ish.h pod/perlfunc.pod
2603 !> t/op/magic.t
2604____________________________________________________________________________
2605[ 21261] By: jhi on 2003/09/17 09:33:39
2606 Log: The AIX C product potentially consists of several packages,
2607 the main package being (hopefully) the first one.
2608 Branch: perl
2609 ! hints/aix.sh
2610____________________________________________________________________________
2611[ 21260] By: jhi on 2003/09/17 07:52:03
2612 Log: Fix Solaris ccversion not having the cc version.
2613 Branch: perl
2614 ! hints/solaris_2.sh
2615____________________________________________________________________________
2616[ 21259] By: jhi on 2003/09/17 06:02:19
2617 Log: Subject: [PATCH 5.8.1 @21211] OS/2 APIs again
2618 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2619 Date: Tue, 16 Sep 2003 23:49:42 -0700
2620 Message-ID: <20030917064941.GA20444@math.berkeley.edu>
2621 Branch: perl
2622 ! os2/os2ish.h
2623____________________________________________________________________________
2624[ 21258] By: jhi on 2003/09/17 06:00:48
2625 Log: Subject: [PATCH 5.8.1 @21211] os2_process.t
2626 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2627 Date: Tue, 16 Sep 2003 23:21:48 -0700
2628 Message-ID: <20030917062147.GA20400@math.berkeley.edu>
2629 Branch: perl
2630 ! os2/OS2/Process/t/os2_process.t
2631____________________________________________________________________________
2632[ 21257] By: jhi on 2003/09/17 03:53:46
2633 Log: Subject: [PATCH 5.8.1 @21211] magic.t
2634 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2635 Date: Tue, 16 Sep 2003 19:17:57 -0700
2636 Message-ID: <20030917021757.GA20261@math.berkeley.edu>
2637 Branch: perl
2638 ! t/op/magic.t
2639____________________________________________________________________________
2640[ 21256] By: rgs on 2003/09/16 20:34:56
2641 Log: Update Changes.
2642 Branch: maint-5.6
2643 ! perl-5.6.2/Changes perl-5.6.2/patchlevel.h
2644____________________________________________________________________________
2645[ 21255] By: rgs on 2003/09/16 20:16:03
2646 Log: Hints updates from bleadperl
2647 Branch: maint-5.6
2648 ! perl-5.6.2/hints/svr4.sh
2649____________________________________________________________________________
2650[ 21254] By: rgs on 2003/09/16 20:11:16
2651 Log: Subject: [PATCH] 5.6.2/MSWin32: Integrate fcrypt.c
2652 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
2653 Date: Sun, 14 Sep 2003 12:13:30 +0200
2654 Message-ID: <00df01c37aa8$d9d7aa70$4200a8c0@R2D2>
2655 Branch: maint-5.6
2656 + perl-5.6.2/win32/fcrypt.c
2657 - perl-5.6.2/win32/des_fcrypt.patch
2658 ! perl-5.6.2/MANIFEST perl-5.6.2/README.win32
2659 ! perl-5.6.2/win32/Makefile perl-5.6.2/win32/makefile.mk
2660____________________________________________________________________________
2661[ 21253] By: jhi on 2003/09/16 19:48:08
2662 Log: Subject: [DOC PATCH] Re: [perl #23779] $? and negative exit codes
2663 From: Dave Mitchell <davem@fdgroup.com>
2664 Date: Tue, 16 Sep 2003 21:56:20 +0100
2665 Message-ID: <20030916205620.GB1246@fdgroup.com>
2666 Branch: perl
2667 ! pod/perlfunc.pod
2668____________________________________________________________________________
2669[ 21252] By: rgs on 2003/09/16 19:43:40
2670 Log: Subject: [PATCH: win32/Makefile] Make 5.6.2 fly again on MSWin32 (was: Re: perl562@20985)
2671 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
2672 Date: Sun, 14 Sep 2003 12:11:22 +0200
2673 Message-ID: <00db01c37aa8$8d0e87e0$4200a8c0@R2D2>
2674 Branch: maint-5.6
2675 ! perl-5.6.2/win32/Makefile
2676____________________________________________________________________________
2677[ 21251] By: jhi on 2003/09/16 19:34:20
2678 Log: Update Changes.
2679 Branch: maint-5.8/perl
2680 ! Changes patchlevel.h
2681____________________________________________________________________________
2682[ 21250] By: jhi on 2003/09/16 19:19:05
2683 Log: Integrate:
2684 [ 21247]
2685 Subject: Re: [perl #23791] Many errors in build under NCR MP-RAS
2686 From: Andy Dougherty <doughera@lafayette.edu>
2687 Date: Tue, 16 Sep 2003 13:47:55 -0400 (EDT)
2688 Message-ID: <Pine.SOL.4.53.0309161345020.13081@maxwell.phys.lafayette.edu>
2689
2690 [ 21249]
2691 More suggested patches for NCR MP-RAS from Andy Dougherty.
2692 Branch: maint-5.8/perl
2693 +> ext/Time/HiRes/hints/svr4.pl
2694 !> MANIFEST ext/POSIX/hints/svr4.pl ext/Sys/Syslog/t/syslog.t
2695 !> hints/svr4.sh t/op/pack.t
2696____________________________________________________________________________
2697[ 21249] By: jhi on 2003/09/16 19:10:58
2698 Log: More suggested patches for NCR MP-RAS from Andy Dougherty.
2699 Branch: perl
2700 + ext/Time/HiRes/hints/svr4.pl
2701 ! MANIFEST ext/Sys/Syslog/t/syslog.t t/op/pack.t
2702____________________________________________________________________________
2703[ 21248] By: rgs on 2003/09/16 19:08:16
2704 Log: Upgrade to ExtUtils::MakeMaker 6.17.
2705 Branch: maint-5.6
2706 ! perl-5.6.2/lib/ExtUtils/Changes
2707 ! perl-5.6.2/lib/ExtUtils/Install.pm
2708 ! perl-5.6.2/lib/ExtUtils/META.yml
2709 ! perl-5.6.2/lib/ExtUtils/MM_Unix.pm
2710 ! perl-5.6.2/lib/ExtUtils/MM_VMS.pm
2711 ! perl-5.6.2/lib/ExtUtils/MM_Win32.pm
2712 ! perl-5.6.2/lib/ExtUtils/MakeMaker.pm
2713 ! perl-5.6.2/lib/ExtUtils/MakeMaker/Tutorial.pod
2714 ! perl-5.6.2/lib/ExtUtils/Manifest.pm
2715 ! perl-5.6.2/lib/ExtUtils/t/Manifest.t
2716____________________________________________________________________________
2717[ 21247] By: jhi on 2003/09/16 18:57:34
2718 Log: Subject: Re: [perl #23791] Many errors in build under NCR MP-RAS
2719 From: Andy Dougherty <doughera@lafayette.edu>
2720 Date: Tue, 16 Sep 2003 13:47:55 -0400 (EDT)
2721 Message-ID: <Pine.SOL.4.53.0309161345020.13081@maxwell.phys.lafayette.edu>
2722 Branch: perl
2723 ! ext/POSIX/hints/svr4.pl hints/svr4.sh
2724____________________________________________________________________________
2725[ 21246] By: jhi on 2003/09/16 18:49:37
2726 Log: Integrate:
2727 [ 21245]
2728 Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
2729 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
2730 Date: Wed, 4 Jun 2003 00:45:23 -0700
2731 Message-ID: <20030604074523.GA7148@math.berkeley.edu>
2732 Branch: maint-5.8/perl
2733 !> lib/Getopt/Std.pm
2734____________________________________________________________________________
2735[ 21245] By: jhi on 2003/09/16 18:47:52
2736 Log: Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
2737 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
2738 Date: Wed, 4 Jun 2003 00:45:23 -0700
2739 Message-ID: <20030604074523.GA7148@math.berkeley.edu>
2740 Branch: perl
2741 ! lib/Getopt/Std.pm
2742____________________________________________________________________________
2743[ 21244] By: jhi on 2003/09/16 16:50:31
2744 Log: Integrate:
2745 [ 20650]
2746 Subject: [PATCH 5.8.1 @20218] xsubpp: wrong code
2747 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
2748 Date: Sun, 3 Aug 2003 06:19:02 -0700
2749 Message-ID: <20030803131902.GA5146@math.berkeley.edu>
2750
2751 [ 21243]
2752 Give a concrete example of the still existing Unicode slowness.
2753 Branch: maint-5.8/perl
2754 !> lib/ExtUtils/xsubpp pod/perlunicode.pod
2755____________________________________________________________________________
2756[ 21243] By: jhi on 2003/09/16 12:18:03
2757 Log: Give a concrete example of the still existing Unicode slowness.
2758 Branch: perl
2759 ! pod/perlunicode.pod
2760____________________________________________________________________________
2761[ 21242] By: jhi on 2003/09/16 06:41:34
2762 Log: Integrate:
2763 [ 21238]
2764 Upgrade to MakeMaker 6.17.
2765
2766 [ 21239]
2767 Upgrade to File::Spec 0.85_03.
2768
2769 [ 21240]
2770 The test is not needed, says Schwern.
2771
2772 [ 21241]
2773 Make the VERSION of File::Spec be 0.86, otherwise File::Temp's
2774 use File::Spec 0.8 is unhappy.
2775 Branch: maint-5.8/perl
2776 +> lib/File/Spec/t/crossplatform.t
2777 - lib/base/t/fields-560.t
2778 !> MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Install.pm
2779 !> lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
2780 !> lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
2781 !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
2782 !> lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
2783 !> lib/ExtUtils/README lib/ExtUtils/t/MM_Win32.t
2784 !> lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
2785 !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
2786 !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
2787 !> lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
2788 !> t/lib/MakeMaker/Test/Utils.pm
2789____________________________________________________________________________
2790[ 21241] By: jhi on 2003/09/16 06:38:45
2791 Log: Make the VERSION of File::Spec be 0.86, otherwise File::Temp's
2792 use File::Spec 0.8 is unhappy.
2793 Branch: perl
2794 ! lib/File/Spec.pm
2795____________________________________________________________________________
2796[ 21240] By: jhi on 2003/09/16 06:34:35
2797 Log: The test is not needed, says Schwern.
2798 Branch: perl
2799 - lib/base/t/fields-560.t
2800 ! MANIFEST
2801____________________________________________________________________________
2802[ 21239] By: jhi on 2003/09/16 05:04:09
2803 Log: Upgrade to File::Spec 0.85_03.
2804 Branch: perl
2805 + lib/File/Spec/t/crossplatform.t
2806 ! MANIFEST lib/File/Spec.pm lib/File/Spec/Mac.pm
2807 ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
2808 ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
2809 ! lib/File/Spec/t/Spec.t
2810____________________________________________________________________________
2811[ 21238] By: jhi on 2003/09/16 04:57:08
2812 Log: Upgrade to MakeMaker 6.17.
2813 Branch: perl
2814 ! lib/ExtUtils/Changes lib/ExtUtils/Install.pm
2815 ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
2816 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
2817 ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
2818 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
2819 ! lib/ExtUtils/README lib/ExtUtils/t/MM_Win32.t
2820 ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
2821 ! t/lib/MakeMaker/Test/Utils.pm
2822____________________________________________________________________________
2823[ 21237] By: jhi on 2003/09/16 04:48:37
2824 Log: In maint we get p-h warnings from the 5.6.0 fields test.
2825 Branch: maint-5.8/perl
2826 ! lib/base/t/fields-560.t
2827____________________________________________________________________________
2828[ 21236] By: jhi on 2003/09/16 04:41:09
2829 Log: Integrate:
2830 [ 21235]
2831 Upgrade to base 2.03.
2832 (Rename the fields-5.6.0.t to have less d.o.t.s.)
2833 Branch: maint-5.8/perl
2834 +> lib/base/t/base.t lib/base/t/fields-560.t
2835 +> lib/base/t/fields-base.t lib/base/t/fields.t
2836 - lib/fields-base.t lib/fields.t
2837 !> MANIFEST lib/base.pm lib/fields.pm
2838____________________________________________________________________________
2839[ 21235] By: jhi on 2003/09/16 04:35:34
2840 Log: Upgrade to base 2.03.
2841 (Rename the fields-5.6.0.t to have less d.o.t.s.)
2842 Branch: perl
2843 + lib/base/t/base.t lib/base/t/fields-560.t
2844 + lib/base/t/fields-base.t lib/base/t/fields.t
2845 - lib/fields-base.t lib/fields.t
2846 ! MANIFEST lib/base.pm lib/fields.pm
2847____________________________________________________________________________
2848[ 21234] By: jhi on 2003/09/15 19:17:03
2849 Log: Subject: Re: perl@21233 looks ok on VMS 7.3-1
2850 From: PPrymmer@factset.com
2851 Date: Mon, 15 Sep 2003 15:28:52 -0400
2852 Message-ID: <OF6F1E6CF4.9206F415-ON85256DA2.006A58F1-85256DA2.006B0330@factset.com>
2853 Branch: perl
2854 ! lib/Memoize/t/tie_sdbm.t
2855____________________________________________________________________________
2856[ 21233] By: jhi on 2003/09/15 06:25:10
2857 Log: Update Changes.
2858 Branch: maint-5.8/perl
2859 ! Changes patchlevel.h
2860____________________________________________________________________________
2861[ 21232] By: jhi on 2003/09/15 06:14:11
2862 Log: Integrate:
2863 [ 21230]
2864 Check the context of for/grep/map.
2865 Branch: maint-5.8/perl
2866 !> t/op/grep.t
2867____________________________________________________________________________
2868[ 21231] By: jhi on 2003/09/15 05:58:21
2869 Log: Also sendpath warnings from HP-UX.
2870 Branch: maint-5.8/perl
2871 ! pod/perldelta.pod
2872____________________________________________________________________________
2873[ 21230] By: jhi on 2003/09/14 17:46:52
2874 Log: Check the context of for/grep/map.
2875 Branch: perl
2876 ! t/op/grep.t
2877____________________________________________________________________________
2878[ 21229] By: jhi on 2003/09/14 13:43:19
2879 Log: Integrate:
2880 [ 21227]
2881 Also IRIX wants setlogsock('stream').
2882
2883 [ 21228]
2884 For-non-perlio places we need STDOUT back.
2885 Branch: maint-5.8/perl
2886 !> ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/syslog.t t/io/dup.t
2887____________________________________________________________________________
2888[ 21228] By: jhi on 2003/09/14 13:40:23
2889 Log: For-non-perlio places we need STDOUT back.
2890 Branch: perl
2891 ! t/io/dup.t
2892____________________________________________________________________________
2893[ 21227] By: jhi on 2003/09/14 09:44:49
2894 Log: Also IRIX wants setlogsock('stream').
2895 Branch: perl
2896 ! ext/Sys/Syslog/Syslog.pm ext/Sys/Syslog/t/syslog.t
2897____________________________________________________________________________
2898[ 21226] By: jhi on 2003/09/14 08:43:38
2899 Log: Regen perlmodlib, perltoc.
2900 Branch: maint-5.8/perl
2901 ! pod/perlmodlib.pod pod/perltoc.pod
2902____________________________________________________________________________
2903[ 21225] By: jhi on 2003/09/14 07:44:59
2904 Log: Integrate:
2905 [ 21224]
2906 More portable reading.
2907 Branch: maint-5.8/perl
2908 !> t/io/dup.t
2909____________________________________________________________________________
2910[ 21224] By: jhi on 2003/09/14 07:44:26
2911 Log: More portable reading.
2912 Branch: perl
2913 ! t/io/dup.t
2914____________________________________________________________________________
2915[ 21223] By: jhi on 2003/09/14 07:36:57
2916 Log: Integrate:
2917 [ 21214]
2918 parse_version doesn't always succeed.
2919
2920 [ 21217]
2921 Subject: [PATCH] PerlIO_tmpfile clean-up for VMS
2922 From: "Craig A. Berry" <craigberry@mac.com>
2923 Date: Sun, 14 Sep 2003 00:23:56 -0500
2924 Message-ID: <3F63FB6C.5040502@mac.com>
2925
2926 [ 21218]
2927 Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
2928 From: Michael G Schwern <schwern@pobox.com>
2929 Date: Thu, 11 Sep 2003 15:07:10 -0700
2930 Message-ID: <20030911220710.GO18786@windhund.schwern.org>
2931
2932 (in OS/2 if a file has been chmod 0400'ed, it cannot be deleted)
2933
2934 [ 21219]
2935 Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
2936 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2937 Date: Sat, 13 Sep 2003 20:20:30 -0700
2938 Message-ID: <20030914032030.GA17822@math.berkeley.edu>
2939
2940 [ 21220]
2941 Use $Config{_exe}.
2942
2943 [ 21222]
2944 More dup testing.
2945 Branch: maint-5.8/perl
2946 !> Porting/cmpVERSION.pl lib/ExtUtils/t/Manifest.t os2/os2.c
2947 !> perlio.c t/io/dup.t t/run/switches.t
2948____________________________________________________________________________
2949[ 21222] By: jhi on 2003/09/14 07:35:28
2950 Log: More dup testing.
2951 Branch: perl
2952 ! t/io/dup.t
2953____________________________________________________________________________
2954[ 21221] By: jhi on 2003/09/14 07:14:25
2955 Log: Subject: Strange things happen with pod/perldiag.pod?
2956 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
2957 Date: Sun, 14 Sep 2003 10:20:39 +0200
2958 Message-ID: <002a01c37a99$1590ec30$a900a8c0@R2D2>
2959 Branch: maint-5.8/perl
2960 ! pod/perldiag.pod
2961____________________________________________________________________________
2962[ 21220] By: jhi on 2003/09/14 06:54:05
2963 Log: Use $Config{_exe}.
2964 Branch: perl
2965 ! t/run/switches.t
2966____________________________________________________________________________
2967[ 21219] By: jhi on 2003/09/14 06:46:26
2968 Log: Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
2969 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
2970 Date: Sat, 13 Sep 2003 20:20:30 -0700
2971 Message-ID: <20030914032030.GA17822@math.berkeley.edu>
2972 Branch: perl
2973 ! os2/os2.c t/run/switches.t
2974____________________________________________________________________________
2975[ 21218] By: jhi on 2003/09/14 06:45:13
2976 Log: Subject: Re: [PATCH 5.8.1 @20218] OS/2 API
2977 From: Michael G Schwern <schwern@pobox.com>
2978 Date: Thu, 11 Sep 2003 15:07:10 -0700
2979 Message-ID: <20030911220710.GO18786@windhund.schwern.org>
2980
2981 (in OS/2 if a file has been chmod 0400'ed, it cannot be deleted)
2982 Branch: perl
2983 ! lib/ExtUtils/t/Manifest.t
2984____________________________________________________________________________
2985[ 21217] By: jhi on 2003/09/14 06:42:12
2986 Log: Subject: [PATCH] PerlIO_tmpfile clean-up for VMS
2987 From: "Craig A. Berry" <craigberry@mac.com>
2988 Date: Sun, 14 Sep 2003 00:23:56 -0500
2989 Message-ID: <3F63FB6C.5040502@mac.com>
2990 Branch: perl
2991 ! perlio.c
2992____________________________________________________________________________
2993[ 21216] By: rgs on 2003/09/13 20:22:36
2994 Log: Hintfile updates.
2995 Branch: maint-5.6
2996 + perl-5.6.2/ext/NDBM_File/hints/linux.pl
2997 ! perl-5.6.2/MANIFEST perl-5.6.2/ext/DynaLoader/hints/linux.pl
2998 ! perl-5.6.2/ext/POSIX/hints/svr4.pl perl-5.6.2/hints/freebsd.sh
2999____________________________________________________________________________
3000[ 21215] By: rgs on 2003/09/13 19:57:14
3001 Log: More trivial documentation updates
3002 Branch: maint-5.6
3003 ! perl-5.6.2/pod/perl5004delta.pod
3004 ! perl-5.6.2/pod/perl5005delta.pod perl-5.6.2/pod/perlbook.pod
3005 ! perl-5.6.2/pod/perldsc.pod perl-5.6.2/pod/perlfilter.pod
3006 ! perl-5.6.2/pod/perlnewmod.pod perl-5.6.2/pod/perlrequick.pod
3007 ! perl-5.6.2/pod/perlretut.pod perl-5.6.2/pod/perlstyle.pod
3008____________________________________________________________________________
3009[ 21214] By: jhi on 2003/09/13 18:33:41
3010 Log: parse_version doesn't always succeed.
3011 Branch: perl
3012 ! Porting/cmpVERSION.pl
3013____________________________________________________________________________
3014[ 21213] By: jhi on 2003/09/13 18:31:41
3015 Log: pod changes, so change $VERSION.
3016 Branch: perl
3017 ! lib/Fatal.pm
3018____________________________________________________________________________
3019[ 21212] By: jhi on 2003/09/13 18:09:30
3020 Log: Tell what is OpenZaurus, anyway.
3021 Branch: maint-5.8/perl
3022 ! pod/perldelta.pod
3023____________________________________________________________________________
3024[ 21211] By: jhi on 2003/09/13 16:10:30
3025 Log: Integrate:
3026 [ 21201]
3027 Stringify the $VERSION of DynaLoader so it's never dependent
3028 on localized float-to-string conversions.
3029
3030 [ 21202]
3031 Make the new glob tests pass (well, skip) even with miniperl.
3032
3033 [ 21203]
3034 Subject: Unknown discipline ':utf8' w/ maint perl w/o perlio
3035 From: Stas Bekman <stas@stason.org>
3036 Date: Fri, 12 Sep 2003 13:44:11 -0700
3037 Message-ID: <3F62301B.3080604@stason.org>
3038
3039 s/discipline/IO layer/, instead of "unknown" say "unavailable",
3040 and have the fuller explanation in perldiag.
3041
3042 [ 21204]
3043 Subject: [perl #23788] int of a fraction errors
3044 From: "Boyd, Brooks D" (via RT) <perlbug-followup@perl.org>
3045 Date: 11 Sep 2003 22:38:19 -0000
3046 Message-ID: <rt-23788-64511.8.7546744242259@rt.perl.org>
3047
3048 Add a separate faq entry for int(). (Yes, a bit redundant
3049 with the existing "why are my numbers broken" entry.)
3050
3051 [ 21205]
3052 Minuscule code cleanup.
3053
3054 [ 21206]
3055 Apparently at some point doing 3-arg open with
3056 illegal mode like ">>>" had stopped croaking.
3057
3058 [ 21207]
3059 Layer names were recognized by their prefixes
3060 (e.g. open(F, ":u", "file") worked...)
3061
3062 [ 21208]
3063 The "perlio: " prefix looks a little odd
3064 in the few warning/error messages, since
3065 no other 'subsystems' have prefixes.
3066
3067 [ 21209]
3068 More PerlIO warnings changes.
3069
3070 [ 21210]
3071 Subject: Re: unicode regex problem
3072 From: hv@crypt.org
3073 Date: Sat, 13 Sep 2003 15:21:34 +0100
3074 Message-Id: <200309131421.h8DELYx25894@zen.crypt.org>
3075 Branch: maint-5.8/perl
3076 !> doio.c ext/DynaLoader/DynaLoader_pm.PL ext/PerlIO/t/fail.t
3077 !> perlio.c pod/perldiag.pod pod/perlfaq4.pod regcomp.c
3078 !> t/io/open.t t/lib/warnings/perlio t/op/pat.t
3079 !> t/run/fresh_perl.t
3080____________________________________________________________________________
3081[ 21210] By: jhi on 2003/09/13 15:24:38
3082 Log: Subject: Re: unicode regex problem
3083 From: hv@crypt.org
3084 Date: Sat, 13 Sep 2003 15:21:34 +0100
3085 Message-Id: <200309131421.h8DELYx25894@zen.crypt.org>
3086 Branch: perl
3087 ! regcomp.c t/op/pat.t
3088____________________________________________________________________________
3089[ 21209] By: jhi on 2003/09/13 15:22:38
3090 Log: More PerlIO warnings changes.
3091 Branch: perl
3092 ! ext/PerlIO/t/fail.t t/lib/warnings/perlio
3093____________________________________________________________________________
3094[ 21208] By: jhi on 2003/09/13 11:15:40
3095 Log: The "perlio: " prefix looks a little odd
3096 in the few warning/error messages, since
3097 no other 'subsystems' have prefixes.
3098 Branch: perl
3099 ! perlio.c pod/perldiag.pod t/io/open.t
3100____________________________________________________________________________
3101[ 21207] By: jhi on 2003/09/13 10:37:30
3102 Log: Layer names were recognized by their prefixes
3103 (e.g. open(F, ":u", "file") worked...)
3104 Branch: perl
3105 ! perlio.c t/io/open.t
3106____________________________________________________________________________
3107[ 21206] By: jhi on 2003/09/13 10:10:46
3108 Log: Apparently at some point doing 3-arg open with
3109 illegal mode like ">>>" had stopped croaking.
3110 Branch: perl
3111 ! doio.c t/io/open.t
3112____________________________________________________________________________
3113[ 21205] By: jhi on 2003/09/13 08:42:10
3114 Log: Minuscule code cleanup.
3115 Branch: perl
3116 ! doio.c
3117____________________________________________________________________________
3118[ 21204] By: jhi on 2003/09/13 06:47:23
3119 Log: Subject: [perl #23788] int of a fraction errors
3120 From: "Boyd, Brooks D" (via RT) <perlbug-followup@perl.org>
3121 Date: 11 Sep 2003 22:38:19 -0000
3122 Message-ID: <rt-23788-64511.8.7546744242259@rt.perl.org>
3123
3124 Add a separate faq entry for int(). (Yes, a bit redundant
3125 with the existing "why are my numbers broken" entry.)
3126 Branch: perl
3127 ! pod/perlfaq4.pod
3128____________________________________________________________________________
3129[ 21203] By: jhi on 2003/09/13 06:34:03
3130 Log: Subject: Unknown discipline ':utf8' w/ maint perl w/o perlio
3131 From: Stas Bekman <stas@stason.org>
3132 Date: Fri, 12 Sep 2003 13:44:11 -0700
3133 Message-ID: <3F62301B.3080604@stason.org>
3134
3135 s/discipline/IO layer/, instead of "unknown" say "unavailable",
3136 and have the fuller explanation in perldiag.
3137 Branch: perl
3138 ! doio.c pod/perldiag.pod
3139____________________________________________________________________________
3140[ 21202] By: jhi on 2003/09/13 06:07:27
3141 Log: Make the new glob tests pass (well, skip) even with miniperl.
3142 Branch: perl
3143 ! t/run/fresh_perl.t
3144____________________________________________________________________________
3145[ 21201] By: rgs on 2003/09/12 21:41:04
3146 Log: Stringify the $VERSION of DynaLoader so it's never dependent
3147 on localized float-to-string conversions.
3148 Branch: perl
3149 ! ext/DynaLoader/DynaLoader_pm.PL
3150____________________________________________________________________________
3151[ 21200] By: jhi on 2003/09/12 18:07:39
3152 Log: Update Changes.
3153 Branch: maint-5.8/perl
3154 ! Changes patchlevel.h
3155____________________________________________________________________________
3156[ 21199] By: jhi on 2003/09/12 18:01:40
3157 Log: Integrate:
3158 [ 21198]
3159 It's UTF-8, not UTF8. (Note: not s/UTF-8/UTF8/,
3160 since that would break a lot of code.) Also few
3161 stray UTF16s, UTF32s, and "encoded in Unicode".
3162 Branch: maint-5.8/perl
3163 !> doop.c hv.h pod/Makefile.SH pod/perl570delta.pod
3164 !> pod/perl58delta.pod pod/perlapi.pod pod/perlfunc.pod
3165 !> pod/perlguts.pod pod/perlhack.pod pod/perlpodspec.pod
3166 !> pod/perltoc.pod pod/perltodo.pod pod/perlunicode.pod
3167 !> pod/perluniintro.pod pp_hot.c pp_sys.c sv.c sv.h utf8.c utf8.h
3168 !> utfebcdic.h
3169____________________________________________________________________________
3170[ 21198] By: jhi on 2003/09/12 17:59:25
3171 Log: It's UTF-8, not UTF8. (Note: not s/UTF-8/UTF8/,
3172 since that would break a lot of code.) Also few
3173 stray UTF16s, UTF32s, and "encoded in Unicode".
3174 Branch: perl
3175 ! doop.c hv.h pod/perl570delta.pod pod/perl58delta.pod
3176 ! pod/perlapi.pod pod/perlfunc.pod pod/perlguts.pod
3177 ! pod/perlhack.pod pod/perlpodspec.pod pod/perltoc.pod
3178 ! pod/perltodo.pod pod/perlunicode.pod pod/perluniintro.pod
3179 ! pp_hot.c pp_sys.c sv.c sv.h utf8.c utf8.h utfebcdic.h
3180____________________________________________________________________________
3181[ 21197] By: jhi on 2003/09/12 17:24:17
3182 Log: The buildtoc now has options.
3183 Branch: perl
3184 ! pod/Makefile.SH
3185____________________________________________________________________________
3186[ 21196] By: jhi on 2003/09/12 14:33:16
3187 Log: Some more tweaks on open ...&=.
3188 Branch: perl
3189 ! pod/perlfunc.pod
3190____________________________________________________________________________
3191[ 21195] By: jhi on 2003/09/12 14:26:32
3192 Log: Integrate:
3193 [ 21191]
3194 More comments for the FreeBSD threads hints.
3195
3196 [ 21193]
3197 Document the new strict strict in strict.
3198
3199 [ 21194]
3200 Slightly more documentation for open ...&=.
3201 Branch: maint-5.8/perl
3202 !> hints/freebsd.sh lib/strict.pm pod/perlfunc.pod
3203____________________________________________________________________________
3204[ 21194] By: jhi on 2003/09/12 11:36:14
3205 Log: Slightly more documentation for open ...&=.
3206 Branch: perl
3207 ! pod/perlfunc.pod
3208____________________________________________________________________________
3209[ 21193] By: jhi on 2003/09/12 03:21:53
3210 Log: Document the new strict strict in strict.
3211 Branch: perl
3212 ! lib/strict.pm
3213____________________________________________________________________________
3214[ 21192] By: jhi on 2003/09/12 03:17:59
3215 Log: Move the strict pragma change to "fixes"; the "incompatible
3216 changes" section is meant for things that used to work but
3217 do no more.
3218 Branch: maint-5.8/perl
3219 ! pod/perldelta.pod
3220____________________________________________________________________________
3221[ 21191] By: jhi on 2003/09/12 03:03:17
3222 Log: More comments for the FreeBSD threads hints.
3223 Branch: perl
3224 ! hints/freebsd.sh
3225____________________________________________________________________________
3226[ 21190] By: rgs on 2003/09/11 21:35:24
3227 Log: INSTALL nits ; get perlmodinstall and perlreftut from bleadperl
3228 Branch: maint-5.6
3229 ! perl-5.6.2/INSTALL perl-5.6.2/pod/perlmodinstall.pod
3230 ! perl-5.6.2/pod/perlreftut.pod
3231____________________________________________________________________________
3232[ 21189] By: jhi on 2003/09/11 20:29:42
3233 Log: Integrate:
3234 [ 21178]
3235 Upgrading to fields.pm 2.0 strangely helps also fields.t.
3236
3237 [ 21179]
3238 Upgrade to Pod::Perldoc 3.10.
3239 (Yes, the doughera address change is wrong, but hardly worth 3.11.)
3240
3241 [ 21180]
3242 Changed warning due to fields.pm 2.0.
3243
3244 [ 21181]
3245 The change of not needing -pthread in FreeBSD 5.x
3246 is very recent (Sep 3) (from Anton Berezin).
3247
3248 [ 21182]
3249 The fields.pm had lost the change #19009.
3250
3251 [ 21186]
3252 Subject: [PATCH maint@21148] Security: suidperl path disclosure revisited
3253 From: "Brendan O'Dea" <bod@debian.org>
3254 Date: Fri, 12 Sep 2003 00:12:51 +1000
3255 Message-ID: <20030911141251.GA26907@londo.c47.org>
3256
3257 [ 21187]
3258 Subject: [PATCH 5.8.1 @20218] OS/2 API
3259 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
3260 Date: Thu, 11 Sep 2003 09:15:04 -0700
3261 Message-ID: <20030911161504.GA16113@math.berkeley.edu>
3262
3263 [ 21188]
3264 More refactoring of the FreeBSD threads hints.
3265 Basically, for fresh enough 5.x the -pthread is dropped,
3266 otherwise keep it, and no known FreeBSD release has
3267 a functional gethostbyaddr_r.
3268 Branch: maint-5.8/perl
3269 !> hints/freebsd.sh lib/Pod/Perldoc.pm os2/OS2/Process/MANIFEST
3270 !> os2/OS2/Process/Process.pm os2/OS2/Process/Process.xs perl.c
3271____________________________________________________________________________
3272[ 21188] By: jhi on 2003/09/11 20:23:55
3273 Log: More refactoring of the FreeBSD threads hints.
3274 Basically, for fresh enough 5.x the -pthread is dropped,
3275 otherwise keep it, and no known FreeBSD release has
3276 a functional gethostbyaddr_r.
3277 Branch: perl
3278 ! hints/freebsd.sh
3279____________________________________________________________________________
3280[ 21187] By: jhi on 2003/09/11 20:12:00
3281 Log: Subject: [PATCH 5.8.1 @20218] OS/2 API
3282 From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
3283 Date: Thu, 11 Sep 2003 09:15:04 -0700
3284 Message-ID: <20030911161504.GA16113@math.berkeley.edu>
3285 Branch: perl
3286 ! os2/OS2/Process/MANIFEST os2/OS2/Process/Process.pm
3287 ! os2/OS2/Process/Process.xs
3288____________________________________________________________________________
3289[ 21186] By: jhi on 2003/09/11 20:10:32
3290 Log: Subject: [PATCH maint@21148] Security: suidperl path disclosure revisited
3291 From: "Brendan O'Dea" <bod@debian.org>
3292 Date: Fri, 12 Sep 2003 00:12:51 +1000
3293 Message-ID: <20030911141251.GA26907@londo.c47.org>
3294 Branch: perl
3295 ! perl.c
3296____________________________________________________________________________
3297[ 21185] By: rgs on 2003/09/11 19:15:49
3298 Log: Integrate the recent hintfile changes from bleadperl
3299 Branch: maint-5.6
3300 ! perl-5.6.2/hints/aix.sh perl-5.6.2/hints/freebsd.sh
3301____________________________________________________________________________
3302[ 21184] By: jhi on 2003/09/11 14:31:18
3303 Log: Slight rewording for #21183.
3304 Branch: maint-5.8/perl
3305 ! pod/perldelta.pod
3306____________________________________________________________________________
3307[ 21183] By: jhi on 2003/09/11 14:25:24
3308 Log: Subject: [DOCPATCH] strict changes
3309 From: Elizabeth Mattijsen <liz@dijkmat.nl>
3310 Date: Thu, 11 Sep 2003 15:55:13 +0200
3311 Message-Id: <p05111b06bb862edd9687@[192.168.56.4]>
3312 Branch: maint-5.8/perl
3313 ! pod/perldelta.pod
3314____________________________________________________________________________
3315[ 21182] By: jhi on 2003/09/11 11:16:33
3316 Log: The fields.pm had lost the change #19009.
3317 Branch: maint-5.8/perl
3318 ! lib/fields.pm t/lib/warnings/av
3319____________________________________________________________________________
3320[ 21181] By: jhi on 2003/09/11 08:25:13
3321 Log: The change of not needing -pthread in FreeBSD 5.x
3322 is very recent (Sep 3) (from Anton Berezin).
3323 Branch: perl
3324 ! hints/freebsd.sh
3325____________________________________________________________________________
3326[ 21180] By: jhi on 2003/09/11 06:40:42
3327 Log: Changed warning due to fields.pm 2.0.
3328 Branch: maint-5.8/perl
3329 ! t/lib/warnings/av
3330____________________________________________________________________________
3331[ 21179] By: jhi on 2003/09/11 06:13:12
3332 Log: Upgrade to Pod::Perldoc 3.10.
3333 (Yes, the doughera address change is wrong, but hardly worth 3.11.)
3334 Branch: perl
3335 ! lib/Pod/Perldoc.pm
3336____________________________________________________________________________
3337[ 21178] By: jhi on 2003/09/11 06:08:38
3338 Log: Upgrading to fields.pm 2.0 strangely helps also fields.t.
3339 Branch: maint-5.8/perl
3340 ! lib/fields.pm lib/fields.t
3341____________________________________________________________________________
3342[ 21177] By: jhi on 2003/09/11 05:25:51
3343 Log: Integrate:
3344 [ 21176]
3345 Upgrade to base 2.02.
3346
3347 (except keep our fields.t, 5.8.1 doesn't like the new one)
3348 Branch: maint-5.8/perl
3349 +> lib/fields-base.t
3350 !> MANIFEST lib/base.pm
3351____________________________________________________________________________
3352[ 21176] By: jhi on 2003/09/11 05:22:27
3353 Log: Upgrade to base 2.02.
3354 Branch: perl
3355 + lib/fields-base.t
3356 ! MANIFEST lib/base.pm lib/fields.t
3357____________________________________________________________________________
3358[ 21175] By: jhi on 2003/09/11 05:13:43
3359 Log: Integrate:
3360 [ 21151]
3361 Document a PerlIO/Encode warning.
3362
3363 [ 21152]
3364 A new UTF-8 API, Perl_is_utf8_string_loc(), a variant
3365 of Perl_utf8_is_string().
3366
3367 [ 21153]
3368 [perl #23770] Reading a latin1 file with open(... "<:utf8") will freeze
3369 is no more valid, the script doesn't freeze, but I noticed
3370 that neither does the <FILE> complain about bad UTF-8 as it
3371 should and as it does with :encoding(utf8).
3372
3373 [ 21154]
3374 No utf8 warnings without use warnings.
3375
3376 [ 21155]
3377 If doing rcatline no point rescanning each time
3378 the beginning of the SV for utf8 validity.
3379
3380 [ 21156]
3381 Detypo and explain better.
3382
3383 [ 21157]
3384 Linenumbers for utf8 warnings were wrong, test also rcatline.
3385
3386 [ 21158]
3387 [perl #23769] Unicode regex broken on simple example
3388 regrepeat() did not work right for UTF-8(ed Latin-1)
3389 in the EXACT case, which made the \x{a0}+ fail.
3390
3391 [ 21159]
3392 Subject: [PATCH 5.8.1] Unwanted "redefined" warnings in h2ph
3393 From: Kurt Starsinic <kstar@cpan.org>
3394 Date: Tue, 9 Sep 2003 23:16:00 -0400
3395 Message-ID: <20030910031600.GA30554@verizon.net>
3396
3397 Subject: Re: [PATCH 5.8.1] Unwanted "redefined" warnings in h2ph
3398 From: "Brendan O'Dea" <bod@debian.org>
3399 Date: Wed, 10 Sep 2003 22:03:15 +1000
3400 Message-ID: <20030910120315.GA1372@londo.c47.org>
3401
3402 [ 21160]
3403 Subject: Re: Decreasing VMS tests in File::Spec::VMS?
3404 From: PPrymmer@factset.com
3405 Message-ID: <OF103BAFC0.72D92F9B-ON85256D98.00742293-85256D98.0077A3F5@factset.com>
3406 Date: Fri, 5 Sep 2003 17:46:48 -0400
3407
3408 [ 21161]
3409 Subject: [PATCH pod/perlvar.pod] Remove deprecated English names.
3410 From: Abigail <abigail@abigail.nl>
3411 Date: Wed, 10 Sep 2003 09:50:16 +0200
3412 Message-ID: <20030910075016.GA23847@abigail.nl>
3413
3414 [ 21163]
3415 Subject: [perl #23778] hints/aix.sh
3416 Date: 10 Sep 2003 16:30:32 -0000
3417 From: "Gary L. Armstrong" (via RT) <perlbug-followup@perl.org>
3418 Message-ID: <rt-23778-64471.11.7773626323738@rt.perl.org>
3419
3420 [ 21164]
3421 Regen perlapi.
3422
3423 [ 21165]
3424 Subject: [PATCH] AUTHORS
3425 From: enache@rdslink.ro (Enache Adrian)
3426 Date: Tue, 9 Sep 2003 19:34:05 +0300
3427 Message-ID: <20030909163405.GB1398@ratsnest.hole>
3428
3429 [ 21166]
3430 Remove the warning in perlfaq about using map in void context :
3431 From: abigail@abigail.nl (Abigail)
3432 Subject: [PATCH perlfaq6] map in a void context.
3433 Date: Tue, 9 Sep 2003 10:31:58 +0200
3434 Message-ID: <20030909083158.GA24125@abigail.nl>
3435
3436 [ 21168]
3437 Subject: nit to hints/freebsd.sh
3438 From: Enache Adrian <enache@rdslink.ro>
3439 Date: Wed, 10 Sep 2003 19:50:59 +0300
3440 Message-ID: <20030910165059.GB1321@ratsnest.hole>
3441
3442 [ 21169]
3443 Retract #21168 based on advice from Anton Berezin (added).
3444
3445 [ 21171]
3446 Subject: [patch] more fullpath TAGS patches (emacs/cperl-mode.el + emacs/ptags)
3447 From: Stas Bekman <stas@stason.org>
3448 Date: Thu, 28 Aug 2003 16:10:48 -0700
3449 Message-ID: <3F4E8BF8.1090800@stason.org>
3450
3451 [ 21172]
3452 Enache still wants -pthread gone for FreeBSD 5.x
3453 since it doesn't work with the latest -current.
3454
3455 [ 21173]
3456 Subject: [PATCH][TESTS] dumpvar.pl
3457 From: Joe McMahon <mcmahon@metalab.unc.edu>
3458 Date: Thu, 11 Sep 2003 00:10:29 -0400 (EDT)
3459 Message-ID: <Pine.LNX.4.44.0309102337150.2043-300000@tribal.metalab.unc.edu>
3460
3461 [ 21174]
3462 Replace #21158 with a better patch from Hugo
3463 (for [perl #23769]).
3464 Branch: maint-5.8/perl
3465 !> AUTHORS emacs/cperl-mode.el emacs/ptags embed.fnc embed.h
3466 !> global.sym hints/aix.sh hints/freebsd.sh
3467 !> lib/File/Spec/t/Spec.t lib/dumpvar.pl lib/dumpvar.t
3468 !> pod/perlapi.pod pod/perldiag.pod pod/perlfaq6.pod pp_hot.c
3469 !> proto.h regcomp.c regexec.c t/io/utf8.t t/lib/h2ph.pht
3470 !> t/op/pat.t utf8.c utils/h2ph.PL
3471____________________________________________________________________________
3472[ 21174] By: jhi on 2003/09/11 04:45:56
3473 Log: Replace #21158 with a better patch from Hugo
3474 (for [perl #23769]).
3475 Branch: perl
3476 ! regcomp.c regexec.c t/op/pat.t
3477____________________________________________________________________________
3478[ 21173] By: jhi on 2003/09/11 03:08:04
3479 Log: Subject: [PATCH][TESTS] dumpvar.pl
3480 From: Joe McMahon <mcmahon@metalab.unc.edu>
3481 Date: Thu, 11 Sep 2003 00:10:29 -0400 (EDT)
3482 Message-ID: <Pine.LNX.4.44.0309102337150.2043-300000@tribal.metalab.unc.edu>
3483 Branch: perl
3484 ! lib/dumpvar.pl lib/dumpvar.t
3485____________________________________________________________________________
3486[ 21172] By: jhi on 2003/09/11 03:03:52
3487 Log: Enache still wants -pthread gone for FreeBSD 5.x
3488 since it doesn't work with the latest -current.
3489 Branch: perl
3490 ! hints/freebsd.sh
3491____________________________________________________________________________
3492[ 21171] By: jhi on 2003/09/11 02:58:29
3493 Log: Subject: [patch] more fullpath TAGS patches (emacs/cperl-mode.el + emacs/ptags)
3494 From: Stas Bekman <stas@stason.org>
3495 Date: Thu, 28 Aug 2003 16:10:48 -0700
3496 Message-ID: <3F4E8BF8.1090800@stason.org>
3497 Branch: perl
3498 ! emacs/cperl-mode.el emacs/ptags
3499____________________________________________________________________________
3500[ 21170] By: jhi on 2003/09/11 02:56:50
3501 Log: Retract #21149, sez Schwern.
3502 Branch: perl
3503 ! lib/Test/More.pm
3504____________________________________________________________________________
3505[ 21169] By: jhi on 2003/09/11 02:55:49
3506 Log: Retract #21168 based on advice from Anton Berezin (added).
3507 Branch: perl
3508 ! hints/freebsd.sh
3509____________________________________________________________________________
3510[ 21168] By: rgs on 2003/09/10 21:43:40
3511 Log: Subject: nit to hints/freebsd.sh
3512 From: Enache Adrian <enache@rdslink.ro>
3513 Date: Wed, 10 Sep 2003 19:50:59 +0300
3514 Message-ID: <20030910165059.GB1321@ratsnest.hole>
3515 Branch: perl
3516 ! hints/freebsd.sh
3517____________________________________________________________________________
3518[ 21167] By: rgs on 2003/09/10 21:18:59
3519 Log: Subject: Re: [perl #15395] lexical warnings and inheritance
3520 From: Anno Siegel <Siegel@zrz.TU-Berlin.DE>
3521 Date: Sun, 31 Aug 2003 22:08:19 GMT
3522 Message-Id: <200308312208.WAA25312@lublin.zrz.TU-Berlin.DE>
3523
3524 The test has been moved into warnings.pm's test suite. Note
3525 that this patch fixed as well the behaviour of warnings::enabled
3526 regarding lexical scoping and different files; hence the expected
3527 results in a few tests in /t/lib/warnings/9enabled has been
3528 reverted.
3529 Branch: perl
3530 ! lib/warnings.pm t/lib/warnings/9enabled warnings.pl
3531____________________________________________________________________________
3532[ 21166] By: rgs on 2003/09/10 19:36:30
3533 Log: Remove the warning in perlfaq about using map in void context :
3534 From: abigail@abigail.nl (Abigail)
3535 Subject: [PATCH perlfaq6] map in a void context.
3536 Date: Tue, 9 Sep 2003 10:31:58 +0200
3537 Message-ID: <20030909083158.GA24125@abigail.nl>
3538 Branch: perl
3539 ! pod/perlfaq6.pod
3540____________________________________________________________________________
3541[ 21165] By: jhi on 2003/09/10 16:48:52
3542 Log: Subject: [PATCH] AUTHORS
3543 From: enache@rdslink.ro (Enache Adrian)
3544 Date: Tue, 9 Sep 2003 19:34:05 +0300
3545 Message-ID: <20030909163405.GB1398@ratsnest.hole>
3546 Branch: perl
3547 ! AUTHORS
3548____________________________________________________________________________
3549[ 21164] By: jhi on 2003/09/10 15:38:51
3550 Log: Regen perlapi.
3551 Branch: perl
3552 ! pod/perlapi.pod
3553____________________________________________________________________________
3554[ 21163] By: merijn on 2003/09/10 15:31:27
3555 Log: Subject: [perl #23778] hints/aix.sh
3556 Date: 10 Sep 2003 16:30:32 -0000
3557 From: "Gary L. Armstrong" (via RT) <perlbug-followup@perl.org>
3558 Message-ID: <rt-23778-64471.11.7773626323738@rt.perl.org>
3559 Branch: perl
3560 ! hints/aix.sh
3561____________________________________________________________________________
3562[ 21162] By: jhi on 2003/09/10 15:21:43
3563 Log: blead version of #21161.
3564 Branch: perl
3565 ! pod/perlvar.pod
3566____________________________________________________________________________
3567[ 21161] By: jhi on 2003/09/10 15:21:16
3568 Log: Subject: [PATCH pod/perlvar.pod] Remove deprecated English names.
3569 From: Abigail <abigail@abigail.nl>
3570 Date: Wed, 10 Sep 2003 09:50:16 +0200
3571 Message-ID: <20030910075016.GA23847@abigail.nl>
3572 Branch: maint-5.8/perl
3573 ! pod/perlvar.pod
3574____________________________________________________________________________
3575[ 21160] By: jhi on 2003/09/10 15:11:59
3576 Log: Subject: Re: Decreasing VMS tests in File::Spec::VMS?
3577 From: PPrymmer@factset.com
3578 Message-ID: <OF103BAFC0.72D92F9B-ON85256D98.00742293-85256D98.0077A3F5@factset.com>
3579 Date: Fri, 5 Sep 2003 17:46:48 -0400
3580 Branch: perl
3581 ! lib/File/Spec/t/Spec.t
3582____________________________________________________________________________
3583[ 21159] By: jhi on 2003/09/10 15:10:06
3584 Log: Subject: [PATCH 5.8.1] Unwanted "redefined" warnings in h2ph
3585 From: Kurt Starsinic <kstar@cpan.org>
3586 Date: Tue, 9 Sep 2003 23:16:00 -0400
3587 Message-ID: <20030910031600.GA30554@verizon.net>
3588
3589 Subject: Re: [PATCH 5.8.1] Unwanted "redefined" warnings in h2ph
3590 From: "Brendan O'Dea" <bod@debian.org>
3591 Date: Wed, 10 Sep 2003 22:03:15 +1000
3592 Message-ID: <20030910120315.GA1372@londo.c47.org>
3593 Branch: perl
3594 ! t/lib/h2ph.pht utils/h2ph.PL
3595____________________________________________________________________________
3596[ 21158] By: jhi on 2003/09/10 09:31:24
3597 Log: Unicode regex broken on simple example
3598 regrepeat() did not work right for UTF-8(ed Latin-1)
3599 in the EXACT case, which made the \x{a0}+ fail.
3600 Branch: perl
3601 ! regexec.c t/op/pat.t
3602____________________________________________________________________________
3603[ 21157] By: jhi on 2003/09/10 08:15:54
3604 Log: Linenumbers for utf8 warnings were wrong, test also rcatline.
3605 Branch: perl
3606 ! pp_hot.c t/io/utf8.t
3607____________________________________________________________________________
3608[ 21156] By: jhi on 2003/09/10 08:05:13
3609 Log: Detypo and explain better.
3610 Branch: perl
3611 ! pod/perldiag.pod
3612____________________________________________________________________________
3613[ 21155] By: jhi on 2003/09/10 08:02:55
3614 Log: If doing rcatline no point rescanning each time
3615 the beginning of the SV for utf8 validity.
3616 Branch: perl
3617 ! pp_hot.c
3618____________________________________________________________________________
3619[ 21154] By: jhi on 2003/09/10 07:16:52
3620 Log: No utf8 warnings without use warnings.
3621 Branch: perl
3622 ! t/io/utf8.t
3623____________________________________________________________________________
3624[ 21153] By: jhi on 2003/09/10 06:57:16
3625 Log: Reading a latin1 file with open(... "<:utf8") will freeze
3626 is no more valid, the script doesn't freeze, but I noticed
3627 that neither does the <FILE> complain about bad UTF-8 as it
3628 should and as it does with :encoding(utf8).
3629 Branch: perl
3630 ! pp_hot.c t/io/utf8.t
3631____________________________________________________________________________
3632[ 21152] By: jhi on 2003/09/10 06:54:02
3633 Log: A new UTF-8 API, Perl_is_utf8_string_loc(), a variant
3634 of Perl_utf8_is_string().
3635 Branch: perl
3636 ! embed.fnc embed.h global.sym proto.h utf8.c
3637____________________________________________________________________________
3638[ 21151] By: jhi on 2003/09/10 06:16:28
3639 Log: Document a PerlIO/Encode warning.
3640 Branch: perl
3641 ! pod/perldiag.pod
3642____________________________________________________________________________
3643[ 21150] By: rgs on 2003/09/09 20:59:37
3644 Log: Subject: Re: perl562@20985
3645 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
3646 Date: Tue, 9 Sep 2003 01:42:28 -0700
3647 Message-ID: <20030909084228.GA2380@efn.org>
3648
3649 Copies the cygwin module hint files from bleadperl, plus
3650 other changes suitably taken from maint-5.8.
3651 Branch: maint-5.6
3652 ! perl-5.6.2/Makefile.SH
3653 ! perl-5.6.2/ext/NDBM_File/hints/cygwin.pl
3654 ! perl-5.6.2/ext/ODBM_File/hints/cygwin.pl
3655 ! perl-5.6.2/t/op/taint.t
3656____________________________________________________________________________
3657[ 21149] By: jhi on 2003/09/09 17:22:42
3658 Log: Subject: Re: maint @ 21116
3659 From: Fergal Daly <fergal@esatclear.ie>
3660 Date: Tue, 9 Sep 2003 18:26:20 +0100
3661 Message-Id: <200309091826.20630.fergal@esatclear.ie>
3662
3663 (added warning)
3664 Branch: perl
3665 ! lib/Test/More.pm
3666____________________________________________________________________________
3667[ 21148] By: jhi on 2003/09/09 16:00:51
3668 Log: Update Changes.
3669 Branch: maint-5.8/perl
3670 ! Changes patchlevel.h
3671____________________________________________________________________________
3672[ 21147] By: jhi on 2003/09/09 15:36:59
3673 Log: Integrate:
3674 [ 21146]
3675 Adjust the test count.
3676 Branch: maint-5.8/perl
3677 !> lib/Test/Simple/t/is_deeply.t
3678____________________________________________________________________________
3679[ 21146] By: jhi on 2003/09/09 15:36:20
3680 Log: Adjust the test count.
3681 Branch: perl
3682 ! lib/Test/Simple/t/is_deeply.t
3683____________________________________________________________________________
3684[ 21145] By: jhi on 2003/09/09 15:07:47
3685 Log: Integrate:
3686 [ 21143]
3687 Retract #20548 and #20465.
3688
3689 [ 21144]
3690 AUTHORS update from Dave Mitchell.
3691 Branch: maint-5.8/perl
3692 !> AUTHORS lib/Test/More.pm lib/Test/Simple/t/More.t
3693 !> lib/Test/Simple/t/is_deeply.t
3694____________________________________________________________________________
3695[ 21144] By: jhi on 2003/09/09 15:03:58
3696 Log: AUTHORS update from Dave Mitchell.
3697 Branch: perl
3698 ! AUTHORS
3699____________________________________________________________________________
3700[ 21143] By: jhi on 2003/09/09 15:02:18
3701 Log: Retract #20548 and #20465.
3702 Branch: perl
3703 ! lib/Test/More.pm lib/Test/Simple/t/More.t
3704 ! lib/Test/Simple/t/is_deeply.t
3705____________________________________________________________________________
3706[ 21142] By: jhi on 2003/09/09 14:28:55
3707 Log: Integrate:
3708 [ 21139]
3709 Warn more about disclosing the hash seed, from Scott A. Crosby.
3710
3711 [ 21140]
3712 Retract #21132.
3713
3714 [ 21116]
3715 Update Changes.
3716 Branch: maint-5.8/perl
3717 !> lib/Hash/Util.pm makedef.pl perl.h pod/perlrun.pod
3718____________________________________________________________________________
3719[ 21141] By: jhi on 2003/09/09 14:27:10
3720 Log: Subject: Re: maint @ 21116
3721 From: Enache Adrian <enache@rdslink.ro>
3722 Date: Tue, 9 Sep 2003 16:59:44 +0300
3723 Message-ID: <20030909135944.GA1666@ratsnest.hole>
3724 Branch: perl
3725 ! makedef.pl
3726____________________________________________________________________________
3727[ 21140] By: jhi on 2003/09/09 14:25:51
3728 Log: Retract #21132.
3729 Branch: perl
3730 ! makedef.pl perl.h
3731____________________________________________________________________________
3732[ 21139] By: jhi on 2003/09/09 11:55:33
3733 Log: Warn more about disclosing the hash seed, from Scott A. Crosby.
3734 Branch: perl
3735 ! lib/Hash/Util.pm pod/perlrun.pod
3736____________________________________________________________________________
3737[ 21138] By: jhi on 2003/09/09 10:32:25
3738 Log: Integrate:
3739 [ 21135]
3740 One more test count tweak.
3741
3742 [ 21136]
3743 One more chance... Elizabeth's change #21107 plus
3744 Subject: Re: [PATCH] warnings.pl: each thread 10K smaller
3745 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
3746 Date: Tue, 9 Sep 2003 01:44:24 +0200
3747 Message-Id: <20030909014424.7ef5e0cd.rgarciasuarez@free.fr>
3748
3749 [ 21137]
3750 Subject: =encoding in perlpod/perlpodspec
3751 From: sburke@cpan.org (Sean M. Burke)
3752 Date: Sun, 07 Sep 2003 03:08:28 -0800
3753 Message-ID: <5.2.1.1.1.20030907030717.00a6aaa0@mailstore.pobox.com>
3754 Branch: maint-5.8/perl
3755 !> lib/warnings.pm pod/perlpod.pod pod/perlpodspec.pod
3756 !> t/op/grep.t toke.c warnings.pl
3757____________________________________________________________________________
3758[ 21137] By: jhi on 2003/09/09 09:50:13
3759 Log: Subject: =encoding in perlpod/perlpodspec
3760 From: sburke@cpan.org (Sean M. Burke)
3761 Date: Sun, 07 Sep 2003 03:08:28 -0800
3762 Message-ID: <5.2.1.1.1.20030907030717.00a6aaa0@mailstore.pobox.com>
3763 Branch: perl
3764 ! pod/perlpod.pod pod/perlpodspec.pod
3765____________________________________________________________________________
3766[ 21136] By: jhi on 2003/09/09 09:46:01
3767 Log: One more chance... Elizabeth's change #21107 plus
3768 Subject: Re: [PATCH] warnings.pl: each thread 10K smaller
3769 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
3770 Date: Tue, 9 Sep 2003 01:44:24 +0200
3771 Message-Id: <20030909014424.7ef5e0cd.rgarciasuarez@free.fr>
3772 Branch: perl
3773 ! lib/warnings.pm toke.c warnings.pl
3774____________________________________________________________________________
3775[ 21135] By: jhi on 2003/09/09 09:35:48
3776 Log: One more test count tweak.
3777 Branch: perl
3778 ! t/op/grep.t
3779____________________________________________________________________________
3780[ 21134] By: jhi on 2003/09/09 08:37:02
3781 Log: Changing the test count is always a good habit.
3782 Branch: maint-5.8/perl
3783 ! ext/threads/t/join.t
3784____________________________________________________________________________
3785[ 21133] By: jhi on 2003/09/09 07:58:23
3786 Log: Integrate:
3787 [ 21131]
3788 Subject: Re: [PATCH] honoring void context for map(), return from sub end test
3789 From: david nicol <whatever@davidnicol.com>
3790 Date: 08 Sep 2003 23:39:32 -0500
3791 Message-Id: <1063082372.1375.126.camel@plaza.davidnicol.com>
3792
3793 (a testcase)
3794
3795 [ 21132]
3796 Subject: Re: maint @ 21116
3797 From: Steve Hay <steve.hay@uk.radan.com>
3798 Date: Tue, 09 Sep 2003 09:49:07 +0100
3799 Message-ID: <3F5D9403.3040004@uk.radan.com>
3800 Branch: maint-5.8/perl
3801 !> makedef.pl perl.h t/op/grep.t
3802____________________________________________________________________________
3803[ 21132] By: jhi on 2003/09/09 07:57:20
3804 Log: Subject: Re: maint @ 21116
3805 From: Steve Hay <steve.hay@uk.radan.com>
3806 Date: Tue, 09 Sep 2003 09:49:07 +0100
3807 Message-ID: <3F5D9403.3040004@uk.radan.com>
3808 Branch: perl
3809 ! makedef.pl perl.h
3810____________________________________________________________________________
3811[ 21131] By: jhi on 2003/09/09 07:54:52
3812 Log: Subject: Re: [PATCH] honoring void context for map(), return from sub end test
3813 From: david nicol <whatever@davidnicol.com>
3814 Date: 08 Sep 2003 23:39:32 -0500
3815 Message-Id: <1063082372.1375.126.camel@plaza.davidnicol.com>
3816
3817 (a testcase)
3818 Branch: perl
3819 ! t/op/grep.t
3820____________________________________________________________________________
3821[ 21130] By: jhi on 2003/09/09 07:46:30
3822 Log: de0.t is gone for now.
3823 Branch: maint-5.8/perl
3824 !> MANIFEST
3825____________________________________________________________________________
3826[ 21129] By: jhi on 2003/09/09 07:13:19
3827 Log: Integrate:
3828 [ 21124]
3829 In trying to save space, the warnings.pl change (#21107)
3830 pulled in attributes.pm... and the change didn't seem to
3831 be that well tested with different configurations.
3832 Retract #21119, #21117, #21107.
3833 Branch: maint-5.8/perl
3834 !> ext/B/t/stash.t lib/warnings.pm warnings.pl
3835____________________________________________________________________________
3836[ 21128] By: jhi on 2003/09/09 07:08:15
3837 Log: Ooops, perlio into scalars was already history for this test...
3838 Branch: perl
3839 ! lib/dumpvar.t
3840____________________________________________________________________________
3841[ 21127] By: jhi on 2003/09/09 07:06:26
3842 Log: Cannot do perlio into scalars without perlio.
3843 Branch: perl
3844 ! lib/dumpvar.t
3845____________________________________________________________________________
3846[ 21126] By: jhi on 2003/09/09 07:04:53
3847 Log: I claim that the debugger is untestable until proven otherwise.
3848 Branch: perl
3849 - lib/perl5db/de0.t
3850 ! MANIFEST
3851____________________________________________________________________________
3852[ 21125] By: jhi on 2003/09/09 07:00:57
3853 Log: Remove the two new join.t tests from maint,
3854 something fishy is going on.
3855 Branch: maint-5.8/perl
3856 ! ext/threads/t/join.t
3857____________________________________________________________________________
3858[ 21124] By: jhi on 2003/09/09 06:59:52
3859 Log: In trying to save space, the warnings.pl change (#21107)
3860 pulled in attributes.pm... and the change didn't seem to
3861 be that well tested with different configurations.
3862 Retract #21119, #21117, #21107.
3863 Branch: perl
3864 ! ext/B/t/stash.t lib/warnings.pm warnings.pl
3865____________________________________________________________________________
3866[ 21123] By: jhi on 2003/09/09 06:43:23
3867 Log: Integrate:
3868 [ 21121]
3869 There's no particular reason to have the dumpvar.t
3870 in lib/perl5db/.
3871
3872 [ 21122]
3873 Really do #21121.
3874 Branch: maint-5.8/perl
3875 +> lib/dumpvar.t
3876 - lib/perl5db/dumpvar.t
3877 !> MANIFEST
3878____________________________________________________________________________
3879[ 21122] By: jhi on 2003/09/09 06:28:31
3880 Log: Really do #21121.
3881 Branch: perl
3882 ! MANIFEST
3883____________________________________________________________________________
3884[ 21121] By: jhi on 2003/09/09 05:56:52
3885 Log: There's no particular reason to have the dumpvar.t
3886 in lib/perl5db/.
3887 Branch: perl
3888 + lib/dumpvar.t
3889 - lib/perl5db/dumpvar.t
3890 ! MANIFEST
3891____________________________________________________________________________
3892[ 21120] By: jhi on 2003/09/09 05:48:49
3893 Log: Integrate:
3894 [ 21117]
3895 Loading warnings.pm now loads attributes.pm that loads strict.pm.
3896 (due to #21107 apparently.) Adjust this test accordingly.
3897
3898 [ 21119]
3899 strict stash seems to have gone, too.
3900 Branch: maint-5.8/perl
3901 !> ext/B/t/stash.t
3902____________________________________________________________________________
3903[ 21119] By: jhi on 2003/09/09 05:46:02
3904 Log: strict stash seems to have gone, too.
3905 Branch: perl
3906 ! ext/B/t/stash.t
3907____________________________________________________________________________
3908[ 21118] By: jhi on 2003/09/09 05:36:32
3909 Log: The de0.t is far too flaky to be in the maint.
3910 Branch: maint-5.8/perl
3911 - lib/perl5db/de0.t
3912 ! MANIFEST
3913____________________________________________________________________________
3914[ 21117] By: rgs on 2003/09/08 22:26:36
3915 Log: Loading warnings.pm now loads attributes.pm that loads strict.pm.
3916 (due to #21107 apparently.) Adjust this test accordingly.
3917 Branch: perl
3918 ! ext/B/t/stash.t
3919____________________________________________________________________________
3920[ 21116] By: jhi on 2003/09/08 21:23:27
3921 Log: Update Changes.
3922 Branch: maint-5.8/perl
3923 ! Changes patchlevel.h
3924____________________________________________________________________________
3925[ 21115] By: jhi on 2003/09/08 21:20:04
3926 Log: Integrate:
3927 [ 21112]
3928 Retract #21096, mostly: I had misexplained the situation
3929 to Scott A. Crosby. Seeing the seed value while not good
3930 for the ultimate paranoia viewpoint is not that bad, as long
3931 as the users are fully aware of the dangers of disclosing
3932 the hash seed. So hash_seed() is okay.
3933
3934 Being able to see the hash values (as in Java) would
3935 be another option, but dubious: it's not that per-key
3936 hash values themselves are bad to allow scripts to see,
3937 but rather that hash values are just as sensitive (from
3938 the DoSing viewpoint) as the hash seed itself (and there
3939 usually more hash values than the one hash seed....)
3940
3941 [ 21113]
3942 Subject: [PATCH] silence 1 compiler warning
3943 From: Nicholas Clark <nick@ccl4.org>
3944 Date: Mon, 8 Sep 2003 23:04:45 +0100
3945 Message-ID: <20030908230445.E30881@plum.flirble.org>
3946 Branch: maint-5.8/perl
3947 !> lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
3948____________________________________________________________________________
3949[ 21114] By: jhi on 2003/09/08 21:17:45
3950 Log: Integrate:
3951 [ 21062]
3952 Subject: [PATCH] honoring void context for map()
3953 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
3954 Date: Thu, 04 Sep 2003 11:13:41 +0200
3955 Message-id: <20030904091341.GA30655@ethan>
3956 Branch: maint-5.8/perl
3957 !> pp_ctl.c
3958____________________________________________________________________________
3959[ 21113] By: jhi on 2003/09/08 21:10:53
3960 Log: Subject: [PATCH] silence 1 compiler warning
3961 From: Nicholas Clark <nick@ccl4.org>
3962 Date: Mon, 8 Sep 2003 23:04:45 +0100
3963 Message-ID: <20030908230445.E30881@plum.flirble.org>
3964 Branch: perl
3965 ! universal.c
3966____________________________________________________________________________
3967[ 21112] By: jhi on 2003/09/08 21:09:34
3968 Log: Retract #21096, mostly: I had misexplained the situation
3969 to Scott A. Crosby. Seeing the seed value while not good
3970 for the ultimate paranoia viewpoint is not that bad, as long
3971 as the users are fully aware of the dangers of disclosing
3972 the hash seed. So hash_seed() is okay.
3973
3974 Being able to see the hash values (as in Java) would
3975 be another option, but dubious: it's not that per-key
3976 hash values themselves are bad to allow scripts to see,
3977 but rather that hash values are just as sensitive (from
3978 the DoSing viewpoint) as the hash seed itself (and there
3979 usually more hash values than the one hash seed....)
3980 Branch: perl
3981 ! lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
3982____________________________________________________________________________
3983[ 21111] By: jhi on 2003/09/08 21:01:25
3984 Log: Integrate:
3985 [ 21109]
3986 Subject: [PATCH] configpm: about 1.5K less per thread
3987 From: Elizabeth Mattijsen <liz@dijkmat.nl>
3988 Date: Mon, 8 Sep 2003 23:58:34 +0200
3989 Message-Id: <p05111b21bb829c68b496@[192.168.56.4]>
3990
3991 [ 21110]
3992 Urk. unique, not shared.
3993 Branch: maint-5.8/perl
3994 !> configpm
3995____________________________________________________________________________
3996[ 21110] By: jhi on 2003/09/08 20:59:04
3997 Log: Urk. unique, not shared.
3998 Branch: perl
3999 ! configpm
4000____________________________________________________________________________
4001[ 21109] By: jhi on 2003/09/08 20:57:25
4002 Log: Subject: [PATCH] configpm: about 1.5K less per thread
4003 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4004 Date: Mon, 8 Sep 2003 23:58:34 +0200
4005 Message-Id: <p05111b21bb829c68b496@[192.168.56.4]>
4006 Branch: perl
4007 ! configpm
4008____________________________________________________________________________
4009[ 21108] By: jhi on 2003/09/08 20:51:14
4010 Log: Integrate:
4011 [ 21105]
4012 Regen perlapi.
4013
4014 [ 21106]
4015 A version of change #21073 that works.
4016
4017 [ 21107]
4018 Subject: [PATCH] warnings.pl: each thread 10K smaller
4019 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4020 Date: Mon, 8 Sep 2003 22:22:38 +0200
4021 Message-Id: <p05111b16bb827ce551da@[192.168.56.4]>
4022 Branch: maint-5.8/perl
4023 !> ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
4024 !> lib/warnings.pm pod/perlapi.pod warnings.pl
4025____________________________________________________________________________
4026[ 21107] By: jhi on 2003/09/08 20:45:38
4027 Log: Subject: [PATCH] warnings.pl: each thread 10K smaller
4028 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4029 Date: Mon, 8 Sep 2003 22:22:38 +0200
4030 Message-Id: <p05111b16bb827ce551da@[192.168.56.4]>
4031 Branch: perl
4032 ! lib/warnings.pm warnings.pl
4033____________________________________________________________________________
4034[ 21106] By: rgs on 2003/09/08 20:45:03
4035 Log: A version of change #21073 that works.
4036 Branch: perl
4037 ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
4038____________________________________________________________________________
4039[ 21105] By: jhi on 2003/09/08 20:44:22
4040 Log: Regen perlapi.
4041 Branch: perl
4042 ! pod/perlapi.pod
4043____________________________________________________________________________
4044[ 21104] By: jhi on 2003/09/08 20:22:21
4045 Log: Integrate:
4046 [ 21103]
4047 Radu Greab is my hero (the recent cygwin getpw*->pw_comment
4048 being a bad pointer is apparently a known cygwin bug). The
4049 cure is to initialize the field.
4050 Branch: maint-5.8/perl
4051 !> pp_sys.c
4052____________________________________________________________________________
4053[ 21103] By: jhi on 2003/09/08 20:18:56
4054 Log: Radu Greab is my hero (the recent cygwin getpw*->pw_comment
4055 being a bad pointer is apparently a known cygwin bug). The
4056 cure is to initialize the field.
4057 Branch: perl
4058 ! pp_sys.c
4059____________________________________________________________________________
4060[ 21102] By: jhi on 2003/09/08 19:43:33
4061 Log: Update Changes.
4062 Branch: maint-5.8/perl
4063 ! Changes patchlevel.h
4064____________________________________________________________________________
4065[ 21101] By: jhi on 2003/09/08 19:39:43
4066 Log: Integrate:
4067 [ 21100]
4068 Bad export.
4069 Branch: maint-5.8/perl
4070 !> lib/Hash/Util.t
4071____________________________________________________________________________
4072[ 21100] By: jhi on 2003/09/08 19:38:39
4073 Log: Bad export.
4074 Branch: perl
4075 ! lib/Hash/Util.t
4076____________________________________________________________________________
4077[ 21099] By: jhi on 2003/09/08 19:29:58
4078 Log: Integrate:
4079 [ 21093]
4080 Slightly more intelligent paranoia.
4081
4082 [ 21094]
4083 Subject: [patch] AUTHORS
4084 From: Juerd <juerd@cpan.org>
4085 Date: Mon, 8 Sep 2003 08:42:13 +0200
4086 Message-ID: <20030908064213.GC23461@c3.convolution.nl>
4087
4088 [ 21095]
4089 Mac OS X "last resort" recipe.
4090
4091 [ 21096]
4092 Scott A. Crosby believes in not disclosing
4093 any more information than necessary: therefore
4094 instead of hash_seed() we have now hashes_random().
4095
4096 [ 21097]
4097 Try to make the de0.t test more robust.
4098 The test is so flakey (too many external things influencing
4099 the result) that I'm likely to leave it out from the maint.
4100
4101 [ 21098]
4102 The IPC::Open3 is just too unreliable for this task.
4103 Branch: maint-5.8/perl
4104 !> AUTHORS README.macosx lib/Hash/Util.pm lib/Hash/Util.t
4105 !> lib/perl5db/de0.t pod/perldiag.pod pod/perlrun.pod universal.c
4106 !> util.c
4107____________________________________________________________________________
4108[ 21098] By: jhi on 2003/09/08 19:06:09
4109 Log: The IPC::Open3 is just too unreliable for this task.
4110 Branch: perl
4111 ! lib/perl5db/de0.t
4112____________________________________________________________________________
4113[ 21097] By: jhi on 2003/09/08 18:42:43
4114 Log: Try to make the de0.t test more robust.
4115 The test is so flakey (too many external things influencing
4116 the result) that I'm likely to leave it out from the maint.
4117 Branch: perl
4118 ! lib/perl5db/de0.t
4119____________________________________________________________________________
4120[ 21096] By: jhi on 2003/09/08 17:58:19
4121 Log: Scott A. Crosby believes in not disclosing
4122 any more information than necessary: therefore
4123 instead of hash_seed() we have now hashes_random().
4124 Branch: perl
4125 ! lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
4126____________________________________________________________________________
4127[ 21095] By: jhi on 2003/09/08 17:36:50
4128 Log: Mac OS X "last resort" recipe.
4129 Branch: perl
4130 ! README.macosx
4131____________________________________________________________________________
4132[ 21094] By: jhi on 2003/09/08 16:50:55
4133 Log: Subject: [patch] AUTHORS
4134 From: Juerd <juerd@cpan.org>
4135 Date: Mon, 8 Sep 2003 08:42:13 +0200
4136 Message-ID: <20030908064213.GC23461@c3.convolution.nl>
4137 Branch: perl
4138 ! AUTHORS
4139____________________________________________________________________________
4140[ 21093] By: jhi on 2003/09/08 15:47:14
4141 Log: Slightly more intelligent paranoia.
4142 Branch: perl
4143 ! pod/perldiag.pod util.c
4144____________________________________________________________________________
4145[ 21092] By: jhi on 2003/09/08 14:19:55
4146 Log: Update Changes.
4147 Branch: maint-5.8/perl
4148 ! Changes patchlevel.h
4149____________________________________________________________________________
4150[ 21091] By: jhi on 2003/09/08 14:10:40
4151 Log: Integrate:
4152 [ 21090]
4153 Win32 is playing to hard to get but I do not have
4154 time to chase it, so restore #21072, more or less.
4155 I think testing the debugger in UNIX-like places
4156 is enough, no need to go into painful contortions
4157 trying to "portably" run interactive programs like
4158 the debugger.
4159 Branch: maint-5.8/perl
4160 !> lib/perl5db/de0.t
4161____________________________________________________________________________
4162[ 21090] By: jhi on 2003/09/08 14:07:03
4163 Log: Win32 is playing to hard to get but I do not have
4164 time to chase it, so restore #21072, more or less.
4165 I think testing the debugger in UNIX-like places
4166 is enough, no need to go into painful contortions
4167 trying to "portably" run interactive programs like
4168 the debugger.
4169 Branch: perl
4170 ! lib/perl5db/de0.t
4171____________________________________________________________________________
4172[ 21089] By: jhi on 2003/09/08 12:53:10
4173 Log: Integrate:
4174 [ 21084]
4175 Clean up pp_readdir() somewhat.
4176
4177 [ 21085]
4178 Superparanoia.
4179
4180 [ 21086]
4181 XSRETURN_UV was missing.
4182
4183 [ 21087]
4184 Add Hash::Util::hash_seed() which answers among
4185 other things the question whether our hashes are
4186 "randomised". (They always were...)
4187
4188 [ 21088]
4189 5.8.1 was mistakenly redefining PL_sv_placeholder.
4190 Branch: maint-5.8/perl
4191 !> XSUB.h ext/Storable/Storable.xs lib/Hash/Util.pm
4192 !> lib/Hash/Util.t pod/perlrun.pod pp_sys.c universal.c util.c
4193____________________________________________________________________________
4194[ 21088] By: jhi on 2003/09/08 12:50:15
4195 Log: 5.8.1 was mistakenly redefining PL_sv_placeholder.
4196 Branch: perl
4197 ! ext/Storable/Storable.xs
4198____________________________________________________________________________
4199[ 21087] By: jhi on 2003/09/08 12:34:37
4200 Log: Add Hash::Util::hash_seed() which answers among
4201 other things the question whether our hashes are
4202 "randomised". (They always were...)
4203 Branch: perl
4204 ! lib/Hash/Util.pm lib/Hash/Util.t pod/perlrun.pod universal.c
4205____________________________________________________________________________
4206[ 21086] By: jhi on 2003/09/08 12:22:03
4207 Log: XSRETURN_UV was missing.
4208 Branch: perl
4209 ! XSUB.h
4210____________________________________________________________________________
4211[ 21085] By: jhi on 2003/09/08 12:15:23
4212 Log: Superparanoia.
4213 Branch: perl
4214 ! util.c
4215____________________________________________________________________________
4216[ 21084] By: ams on 2003/09/08 11:44:25
4217 Log: Clean up pp_readdir() somewhat.
4218 Branch: perl
4219 ! pp_sys.c
4220____________________________________________________________________________
4221[ 21083] By: jhi on 2003/09/08 11:34:40
4222 Log: Integrate:
4223 [ 21082]
4224 The #21073 broke ext/B/t/o.t, retracting the #21073.
4225 Branch: maint-5.8/perl
4226 !> ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
4227____________________________________________________________________________
4228[ 21082] By: jhi on 2003/09/08 11:32:46
4229 Log: The #21073 broke ext/B/t/o.t, retracting the #21073.
4230 Branch: perl
4231 ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
4232____________________________________________________________________________
4233[ 21081] By: jhi on 2003/09/08 09:55:24
4234 Log: Integrate:
4235 [ 21076]
4236 Let's require fork for this test.
4237
4238 [ 21077]
4239 Move Config test.
4240
4241 [ 21078]
4242 In Win32 the cmd.exe console output doesn't seem to
4243 be catchable using the in-memory I/O + select trick,
4244 so use tie-STDOUT trick instead.
4245
4246 [ 21080]
4247 In Win32 IPC::Open3 + IO::Select does not work that well
4248 so mostly undo the change #21072 and revert back to using
4249 a temp file.
4250 Branch: maint-5.8/perl
4251 !> lib/perl5db/de0.t lib/perl5db/dumpvar.t
4252____________________________________________________________________________
4253[ 21080] By: jhi on 2003/09/08 09:52:40
4254 Log: In Win32 IPC::Open3 + IO::Select does not work that well
4255 so mostly undo the change #21072 and revert back to using
4256 a temp file.
4257 Branch: perl
4258 ! lib/perl5db/de0.t
4259____________________________________________________________________________
4260[ 21079] By: jhi on 2003/09/08 09:44:46
4261 Log: Integrate:
4262 [ 21061]
4263 Retract #21010.
4264 Branch: maint-5.8/perl
4265 !> lib/dumpvar.pl
4266____________________________________________________________________________
4267[ 21078] By: jhi on 2003/09/08 09:10:47
4268 Log: In Win32 the cmd.exe console output doesn't seem to
4269 be catchable using the in-memory I/O + select trick,
4270 so use tie-STDOUT trick instead.
4271 Branch: perl
4272 ! lib/perl5db/dumpvar.t
4273____________________________________________________________________________
4274[ 21077] By: jhi on 2003/09/08 09:03:13
4275 Log: Move Config test.
4276 Branch: perl
4277 ! lib/perl5db/de0.t
4278____________________________________________________________________________
4279[ 21076] By: jhi on 2003/09/08 08:50:27
4280 Log: Let's require fork for this test.
4281 Branch: perl
4282 ! lib/perl5db/de0.t
4283____________________________________________________________________________
4284[ 21075] By: jhi on 2003/09/08 08:15:50
4285 Log: Integrate:
4286 [ 21051]
4287 1. Work around the bug fixed by #20587 (because it's in 5.8.0).
4288 2. Compensate for PL_sv_placeholder <= 5.8.1.
4289 3. Clean up non-backwards-compatible tests.
4290 4. Prepare for the 2.08 CPAN release.
4291
4292 [ 21052]
4293 Musty corners of Syslog.pm.
4294
4295 [ 21057]
4296 Updated Sharp Zaurus cross-compilation from Redvers Davies.
4297
4298 [ 21058]
4299 Vanity patch.
4300
4301 [ 21063]
4302 Subject: [PATCH] Re: [perl #23656] Safe reval bleeds local variable values
4303 From: Dave Mitchell <davem@fdgroup.com>
4304 Date: Sun, 7 Sep 2003 19:14:44 +0100
4305 Message-ID: <20030907181444.GA7058@fdgroup.com>
4306
4307 [ 21064]
4308 Upgrade to Unicode::Collate 0.28
4309
4310 [ 21065]
4311 Subject: [PATCH] Test skeleton for debugger commands
4312 From: Andreas J Koenig <andreas.koenig@anima.de>
4313 Date: Sun, 07 Sep 2003 18:51:56 +0200
4314 Message-ID: <87fzj8k0cz.fsf@franz.ak.mind.de>
4315 With minor adjustments
4316
4317 [ 21066]
4318 The in-memory files require PerlIO::scalar.
4319
4320 [ 21067]
4321 Cleanup PerlIO::scalar documentation a bit.
4322
4323 [ 21068]
4324 dumpvar.t: use Test::More;
4325
4326 [ 21069]
4327 An empty test.
4328
4329 [ 21070]
4330 More dumpvar testing.
4331
4332 [ 21071]
4333 de0.t: use Test::More, add some tests.
4334
4335 [ 21072]
4336 Subject: Re: [PATCH] Test skeleton for debugger commands
4337 From: Andreas J Koenig <andreas.koenig@anima.de>
4338 Date: Mon, 08 Sep 2003 10:48:27 +0200
4339 Message-ID: <87llszis2s.fsf@franz.ak.mind.de>
4340
4341 [ 21073]
4342 Subject: Re: one nit to fix [PATCH]
4343 From: Rafael Garcia-Suarez <raphel.garcia-suarez@hexaflux.com>
4344 Date: Mon, 8 Sep 2003 10:19:08 +0200
4345 Message-Id: <20030908101908.5571326d.rgarcia@hexaflux.com>
4346
4347 [ 21074]
4348 Subject: [PATCH] call_(pv|etc.) for Devel::PPPort
4349 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
4350 Date: Mon, 08 Sep 2003 08:56:09 +0200
4351 Message-id: <20030908065609.GA1260@ethan>
4352 Branch: maint-5.8/perl
4353 +> lib/Unicode/Collate/t/contract.t lib/perl5db/de0.t
4354 +> lib/perl5db/dumpvar.t
4355 !> (integrate 26 files)
4356____________________________________________________________________________
4357[ 21074] By: jhi on 2003/09/08 08:09:27
4358 Log: Subject: [PATCH] call_(pv|etc.) for Devel::PPPort
4359 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
4360 Date: Mon, 08 Sep 2003 08:56:09 +0200
4361 Message-id: <20030908065609.GA1260@ethan>
4362 Branch: perl
4363 ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
4364 ! ext/Devel/PPPort/t/test.t
4365____________________________________________________________________________
4366[ 21073] By: jhi on 2003/09/08 08:07:55
4367 Log: Subject: Re: one nit to fix [PATCH]
4368 From: Rafael Garcia-Suarez <raphel.garcia-suarez@hexaflux.com>
4369 Date: Mon, 8 Sep 2003 10:19:08 +0200
4370 Message-Id: <20030908101908.5571326d.rgarcia@hexaflux.com>
4371 Branch: perl
4372 ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
4373____________________________________________________________________________
4374[ 21072] By: jhi on 2003/09/08 08:04:53
4375 Log: Subject: Re: [PATCH] Test skeleton for debugger commands
4376 From: Andreas J Koenig <andreas.koenig@anima.de>
4377 Date: Mon, 08 Sep 2003 10:48:27 +0200
4378 Message-ID: <87llszis2s.fsf@franz.ak.mind.de>
4379 Branch: perl
4380 ! lib/perl5db/de0.t
4381____________________________________________________________________________
4382[ 21071] By: jhi on 2003/09/08 06:46:00
4383 Log: de0.t: use Test::More, add some tests.
4384 Branch: perl
4385 ! lib/perl5db/de0.t
4386____________________________________________________________________________
4387[ 21070] By: jhi on 2003/09/08 06:31:39
4388 Log: More dumpvar testing.
4389 Branch: perl
4390 ! lib/perl5db/dumpvar.t
4391____________________________________________________________________________
4392[ 21069] By: jhi on 2003/09/08 05:34:03
4393 Log: An empty test.
4394 Branch: perl
4395 ! lib/perl5db/dumpvar.t
4396____________________________________________________________________________
4397[ 21068] By: jhi on 2003/09/08 05:21:21
4398 Log: dumpvar.t: use Test::More;
4399 Branch: perl
4400 ! lib/perl5db/dumpvar.t
4401____________________________________________________________________________
4402[ 21067] By: jhi on 2003/09/08 05:11:46
4403 Log: Cleanup PerlIO::scalar documentation a bit.
4404 Branch: perl
4405 ! ext/PerlIO/scalar/scalar.pm
4406____________________________________________________________________________
4407[ 21066] By: jhi on 2003/09/08 04:49:28
4408 Log: The in-memory files require PerlIO::scalar.
4409 Branch: perl
4410 ! lib/perl5db/dumpvar.t
4411____________________________________________________________________________
4412[ 21065] By: rgs on 2003/09/07 21:17:23
4413 Log: Subject: [PATCH] Test skeleton for debugger commands
4414 From: Andreas J Koenig <andreas.koenig@anima.de>
4415 Date: Sun, 07 Sep 2003 18:51:56 +0200
4416 Message-ID: <87fzj8k0cz.fsf@franz.ak.mind.de>
4417 With minor adjustments
4418 Branch: perl
4419 + lib/perl5db/de0.t lib/perl5db/dumpvar.t
4420 ! MANIFEST
4421____________________________________________________________________________
4422[ 21064] By: rgs on 2003/09/07 19:12:05
4423 Log: Upgrade to Unicode::Collate 0.28
4424 Branch: perl
4425 + lib/Unicode/Collate/t/contract.t
4426 ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
4427 ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
4428____________________________________________________________________________
4429[ 21063] By: rgs on 2003/09/07 18:25:23
4430 Log: Subject: [PATCH] Re: [perl #23656] Safe reval bleeds local variable values
4431 From: Dave Mitchell <davem@fdgroup.com>
4432 Date: Sun, 7 Sep 2003 19:14:44 +0100
4433 Message-ID: <20030907181444.GA7058@fdgroup.com>
4434 Branch: perl
4435 ! ext/Opcode/Safe.pm
4436____________________________________________________________________________
4437[ 21062] By: rgs on 2003/09/07 12:44:33
4438 Log: Subject: [PATCH] honoring void context for map()
4439 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
4440 Date: Thu, 04 Sep 2003 11:13:41 +0200
4441 Message-id: <20030904091341.GA30655@ethan>
4442 Branch: perl
4443 ! pp_ctl.c
4444____________________________________________________________________________
4445[ 21061] By: jhi on 2003/09/07 07:04:53
4446 Log: Retract #21010.
4447 Branch: perl
4448 ! lib/dumpvar.pl
4449____________________________________________________________________________
4450[ 21060] By: rgs on 2003/09/06 21:30:10
4451 Log: Minor doc style nits in XSLoader.
4452 Branch: perl
4453 ! ext/DynaLoader/XSLoader_pm.PL
4454____________________________________________________________________________
4455[ 21059] By: rgs on 2003/09/06 20:21:43
4456 Log: Copy the Configure hint files from bleadperl.
4457 Branch: maint-5.6
4458 + perl-5.6.2/hints/atheos.sh perl-5.6.2/hints/os400.sh
4459 + perl-5.6.2/hints/super-ux.sh perl-5.6.2/hints/t001.c
4460 + perl-5.6.2/hints/vos.sh
4461 ! perl-5.6.2/MANIFEST perl-5.6.2/hints/README.hints
4462 ! perl-5.6.2/hints/aix.sh perl-5.6.2/hints/amigaos.sh
4463 ! perl-5.6.2/hints/apollo.sh perl-5.6.2/hints/beos.sh
4464 ! perl-5.6.2/hints/bsdos.sh perl-5.6.2/hints/cygwin.sh
4465 ! perl-5.6.2/hints/darwin.sh perl-5.6.2/hints/dec_osf.sh
4466 ! perl-5.6.2/hints/dgux.sh perl-5.6.2/hints/dos_djgpp.sh
4467 ! perl-5.6.2/hints/dynixptx.sh perl-5.6.2/hints/epix.sh
4468 ! perl-5.6.2/hints/freebsd.sh perl-5.6.2/hints/hpux.sh
4469 ! perl-5.6.2/hints/irix_5.sh perl-5.6.2/hints/irix_6.sh
4470 ! perl-5.6.2/hints/isc.sh perl-5.6.2/hints/isc_2.sh
4471 ! perl-5.6.2/hints/linux.sh perl-5.6.2/hints/machten.sh
4472 ! perl-5.6.2/hints/machten_2.sh perl-5.6.2/hints/mpeix.sh
4473 ! perl-5.6.2/hints/netbsd.sh perl-5.6.2/hints/newsos4.sh
4474 ! perl-5.6.2/hints/next_3.sh perl-5.6.2/hints/nonstopux.sh
4475 ! perl-5.6.2/hints/openbsd.sh perl-5.6.2/hints/os2.sh
4476 ! perl-5.6.2/hints/os390.sh perl-5.6.2/hints/posix-bc.sh
4477 ! perl-5.6.2/hints/powerux.sh perl-5.6.2/hints/qnx.sh
4478 ! perl-5.6.2/hints/rhapsody.sh perl-5.6.2/hints/sco.sh
4479 ! perl-5.6.2/hints/solaris_2.sh perl-5.6.2/hints/sunos_4_1.sh
4480 ! perl-5.6.2/hints/svr4.sh perl-5.6.2/hints/svr5.sh
4481 ! perl-5.6.2/hints/titanos.sh perl-5.6.2/hints/ultrix_4.sh
4482 ! perl-5.6.2/hints/umips.sh perl-5.6.2/hints/unicos.sh
4483 ! perl-5.6.2/hints/unicosmk.sh perl-5.6.2/hints/utekv.sh
4484 ! perl-5.6.2/hints/uts.sh perl-5.6.2/hints/uwin.sh
4485 ! perl-5.6.2/hints/vmesa.sh
4486____________________________________________________________________________
4487[ 21058] By: jhi on 2003/09/06 19:57:46
4488 Log: Vanity patch.
4489 Branch: perl
4490 ! AUTHORS
4491____________________________________________________________________________
4492[ 21057] By: jhi on 2003/09/06 19:56:53
4493 Log: Updated Sharp Zaurus cross-compilation from Redvers Davies.
4494 Branch: perl
4495 ! Cross/Makefile Cross/Makefile.SH.patch Cross/README Cross/TODO
4496 ! Cross/config.sh-arm-linux Cross/generate_config_sh
4497 ! Cross/installperl.patch
4498____________________________________________________________________________
4499[ 21056] By: rgs on 2003/09/06 19:03:41
4500 Log: Email nits in Fatal.pm [perl #23724].
4501 Branch: perl
4502 ! lib/Fatal.pm
4503____________________________________________________________________________
4504[ 21055] By: rgs on 2003/09/06 18:42:56
4505 Log: Integrate changes #9813 and #21045 from the main branch.
4506
4507 [9813]
4508 Prevent path disclosure (probing for existence of filenames)
4509 using suidperl; bug id 20010322.218.
4510
4511 [21045]
4512 More suidperl path disclosure plugging:
4513 the #9813 didn't do enough. See either of
4514 http://rt.perl.org/rt2/Ticket/Display.html?id=6511
4515 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=203426
4516 Branch: maint-5.6
4517 ! perl-5.6.2/perl.c perl-5.6.2/pod/perldiag.pod
4518____________________________________________________________________________
4519[ 21054] By: jhi on 2003/09/06 06:30:49
4520 Log: Bytecompiler and byteloader are now in better shape.
4521 (While the C backend is a smoking ruin.)
4522 Branch: maint-5.8/perl
4523 ! pod/perldelta.pod
4524____________________________________________________________________________
4525[ 21053] By: jhi on 2003/09/05 20:45:41
4526 Log: Enache thinks now is a good spot to bring back the fixed
4527 bytecode goodness to maint. (Not the bytecode.t, though:
4528 that's still too unfinished.)
4529 Branch: maint-5.8/perl
4530 !> bytecode.pl embed.fnc embed.h ext/B/B/Asmdata.pm
4531 !> ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
4532 !> ext/B/B/Disassembler.pm ext/B/t/assembler.t
4533 !> ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c global.sym
4534 !> op.c op.h proto.h t/TEST
4535____________________________________________________________________________
4536[ 21052] By: jhi on 2003/09/05 20:34:15
4537 Log: Musty corners of Syslog.pm.
4538 Branch: perl
4539 ! ext/Sys/Syslog/Syslog.pm
4540____________________________________________________________________________
4541[ 21051] By: ams on 2003/09/05 18:43:46
4542 Log: 1. Work around the bug fixed by #20587 (because it's in 5.8.0).
4543 2. Compensate for PL_sv_placeholder <= 5.8.1.
4544 3. Clean up non-backwards-compatible tests.
4545 4. Prepare for the 2.08 CPAN release.
4546 Branch: perl
4547 ! ext/Storable/ChangeLog ext/Storable/Storable.xs
4548 ! ext/Storable/t/freeze.t ext/Storable/t/malice.t
4549 ! ext/Storable/t/utf8hash.t
4550____________________________________________________________________________
4551[ 21050] By: jhi on 2003/09/05 14:23:02
4552 Log: Update Changes.
4553 Branch: maint-5.8/perl
4554 ! Changes patchlevel.h
4555____________________________________________________________________________
4556[ 21049] By: jhi on 2003/09/05 13:56:44
4557 Log: Integrate:
4558 [ 21036]
4559 Subject: Re: [PATCH] Data::Dumper 2.121
4560 From: Ilya Martynov <ilya@martynov.org>
4561 Date: Fri, 05 Sep 2003 00:33:46 +0400
4562 Message-ID: <87ad9kuwd1.fsf@abra.ru>
4563
4564 [ 21039]
4565 Another seemingly fixed (un)tie bug,
4566 [perl ##22297] cannot untie scalar from within tied FETCH
4567
4568 [ 21040]
4569 [perl #3763] code example error in "perlopentut"
4570
4571 [ 21041]
4572 Subject: [PATCH] Remove dublicated entry in AUTHORS
4573 From: Ilya Martynov <ilya@martynov.org>
4574 Date: Fri, 05 Sep 2003 00:49:57 +0400
4575 Message-ID: <8765k8uvm2.fsf@abra.ru>
4576
4577 [ 21042]
4578 Acknowledge some known tie bugs.
4579
4580 [ 21043]
4581 Changed conflicting diff options
4582
4583 [ 21044]
4584 FreeBSD hints updates from Anton Berezin.
4585
4586 [ 21045]
4587 More suidperl path disclosure plugging:
4588 the #9813 didn't do enough. See either of
4589 http://rt.perl.org/rt2/Ticket/Display.html?id=6511
4590 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=203426
4591
4592 [ 21046]
4593 Subject: versions threads modules
4594 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4595 Date: Fri, 5 Sep 2003 12:22:52 +0200
4596 Message-Id: <p05111b03bb7e1423e6ff@[192.168.56.4]>
4597
4598 [ 21047]
4599 Subject: [PATCH] threads/shared.pm: saves 4K per thread
4600 Date: Fri, 5 Sep 2003 14:46:00 +0200
4601 Message-Id: <p05111b05bb7e177db044@[192.168.56.4]>
4602 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4603
4604 [ 21048]
4605 One more known tie problem.
4606 Branch: maint-5.8/perl
4607 !> AUTHORS ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm
4608 !> ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
4609 !> ext/Data/Dumper/t/overload.t ext/Data/Dumper/t/pair.t
4610 !> ext/threads/shared/shared.pm hints/freebsd.sh patchlevel.h
4611 !> perl.c pod/perldiag.pod pod/perlopentut.pod pod/perltie.pod
4612 !> t/op/tie.t
4613____________________________________________________________________________
4614[ 21048] By: jhi on 2003/09/05 13:53:23
4615 Log: One more known tie problem.
4616 Branch: perl
4617 ! pod/perltie.pod
4618____________________________________________________________________________
4619[ 21047] By: jhi on 2003/09/05 13:46:35
4620 Log: Subject: [PATCH] threads/shared.pm: saves 4K per thread
4621 Date: Fri, 5 Sep 2003 14:46:00 +0200
4622 Message-Id: <p05111b05bb7e177db044@[192.168.56.4]>
4623 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4624 Branch: perl
4625 ! ext/threads/shared/shared.pm
4626____________________________________________________________________________
4627[ 21046] By: jhi on 2003/09/05 13:44:30
4628 Log: Subject: versions threads modules
4629 From: Elizabeth Mattijsen <liz@dijkmat.nl>
4630 Date: Fri, 5 Sep 2003 12:22:52 +0200
4631 Message-Id: <p05111b03bb7e1423e6ff@[192.168.56.4]>
4632 Branch: perl
4633 ! ext/threads/shared/shared.pm
4634____________________________________________________________________________
4635[ 21045] By: jhi on 2003/09/05 13:43:36
4636 Log: More suidperl path disclosure plugging:
4637 the #9813 didn't do enough. See either of
4638 http://rt.perl.org/rt2/Ticket/Display.html?id=6511
4639 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=203426
4640 Branch: perl
4641 ! perl.c pod/perldiag.pod
4642____________________________________________________________________________
4643[ 21044] By: jhi on 2003/09/05 13:09:54
4644 Log: FreeBSD hints updates from Anton Berezin.
4645 Branch: perl
4646 ! hints/freebsd.sh
4647____________________________________________________________________________
4648[ 21043] By: merijn on 2003/09/05 11:18:20
4649 Log: Changed conflicting diff options
4650 Branch: perl
4651 ! patchlevel.h
4652____________________________________________________________________________
4653[ 21042] By: jhi on 2003/09/05 06:47:43
4654 Log: Acknowledge some known tie bugs.
4655 Branch: perl
4656 ! pod/perltie.pod
4657____________________________________________________________________________
4658[ 21041] By: merijn on 2003/09/05 04:50:44
4659 Log: Subject: [PATCH] Remove dublicated entry in AUTHORS
4660 From: Ilya Martynov <ilya@martynov.org>
4661 Date: Fri, 05 Sep 2003 00:49:57 +0400
4662 Message-ID: <8765k8uvm2.fsf@abra.ru>
4663 Branch: perl
4664 ! AUTHORS
4665____________________________________________________________________________
4666[ 21040] By: jhi on 2003/09/05 04:36:48
4667 Log: code example error in "perlopentut"
4668 Branch: perl
4669 ! pod/perlopentut.pod
4670____________________________________________________________________________
4671[ 21039] By: jhi on 2003/09/05 04:13:17
4672 Log: Another seemingly fixed (un)tie bug,
4673 [perl ##22297] cannot untie scalar from within tied FETCH
4674 Branch: perl
4675 ! t/op/tie.t
4676____________________________________________________________________________
4677[ 21038] By: rgs on 2003/09/04 19:44:26
4678 Log: Subject: [PATCH 5.6.2] make -Dusedevel imply -Dversiononly -Uinstallusrbinperl
4679 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
4680 Date: Wed, 3 Sep 2003 12:03:30 -0700
4681 Message-ID: <20030903190330.GA3652@efn.org>
4682 Branch: maint-5.6
4683 ! perl-5.6.2/Configure
4684____________________________________________________________________________
4685[ 21037] By: rgs on 2003/09/04 19:36:57
4686 Log: Upgrade to Data::Dumper 2.121, by Ilya Martynov
4687 Branch: maint-5.6
4688 + perl-5.6.2/ext/Data/Dumper/t/dumper.t
4689 + perl-5.6.2/ext/Data/Dumper/t/overload.t
4690 + perl-5.6.2/ext/Data/Dumper/t/pair.t
4691 - perl-5.6.2/t/lib/dumper-ovl.t perl-5.6.2/t/lib/dumper.t
4692 ! perl-5.6.2/MANIFEST perl-5.6.2/ext/Data/Dumper/Changes
4693 ! perl-5.6.2/ext/Data/Dumper/Dumper.pm
4694 ! perl-5.6.2/ext/Data/Dumper/Dumper.xs
4695____________________________________________________________________________
4696[ 21036] By: jhi on 2003/09/04 19:34:26
4697 Log: Subject: Re: [PATCH] Data::Dumper 2.121
4698 From: Ilya Martynov <ilya@martynov.org>
4699 Date: Fri, 05 Sep 2003 00:33:46 +0400
4700 Message-ID: <87ad9kuwd1.fsf@abra.ru>
4701 Branch: perl
4702 ! ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm
4703 ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
4704 ! ext/Data/Dumper/t/overload.t ext/Data/Dumper/t/pair.t
4705____________________________________________________________________________
4706[ 21035] By: jhi on 2003/09/04 19:02:26
4707 Log: Integrate:
4708 [ 21027]
4709 AUTHORS updates.
4710
4711 [ 21028]
4712 A SuSE patchlet for perlcc -c to avoid
4713 "Modification of a read-only value attempted at ... C.pm"
4714
4715 [ 21029]
4716 Tiny perlcc tweaks.
4717
4718 [ 21030]
4719 Subject: Re: "vendor" patch pickup
4720 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
4721 Date: Thu, 4 Sep 2003 19:47:55 +0200
4722 Message-ID: <009b01c3730c$ac45e750$0c2f1fac@R2D2>
4723
4724 (Gentoo: take Marcus' version of the __THROW patch and
4725 even further #ifdef-protect it with __GLIBC__.)
4726
4727 [ 21031]
4728 Subject: [PATCH] perlreftut: change distribution conditions
4729 From: "Brendan O'Dea" <bod@debian.org>
4730 Date: Thu, 4 Sep 2003 02:28:49 +1000
4731 Message-ID: <20030903162849.GA9675@londo.c47.org>
4732
4733 [ 21033]
4734 I think once is enough.
4735 Branch: maint-5.8/perl
4736 !> AUTHORS configure.gnu ext/B/B/C.pm perl.h pod/perlreftut.pod
4737 !> utils/perlcc.PL
4738____________________________________________________________________________
4739[ 21034] By: jhi on 2003/09/04 18:57:14
4740 Log: Regen the Asmdata for maint (only the VERSION changes, which is okay)
4741 Branch: maint-5.8/perl
4742 ! ext/B/B/Asmdata.pm
4743____________________________________________________________________________
4744[ 21033] By: jhi on 2003/09/04 18:52:29
4745 Log: I think once is enough.
4746 Branch: perl
4747 ! configure.gnu
4748____________________________________________________________________________
4749[ 21032] By: jhi on 2003/09/04 17:30:28
4750 Log: Subject: [PATCH] Re: [PATCH] Re: ByteLoader and MSWin32
4751 From: Enache Adrian <enache@rdslink.ro>
4752 Date: Thu, 4 Sep 2003 20:09:06 +0300
4753 Message-ID: <20030904170906.GA1235@ratsnest.hole>
4754 Branch: perl
4755 ! bytecode.pl ext/B/B/Bytecode.pm ext/ByteLoader/bytecode.h
4756 ! ext/ByteLoader/byterun.c
4757____________________________________________________________________________
4758[ 21031] By: jhi on 2003/09/04 17:27:58
4759 Log: Subject: [PATCH] perlreftut: change distribution conditions
4760 From: "Brendan O'Dea" <bod@debian.org>
4761 Date: Thu, 4 Sep 2003 02:28:49 +1000
4762 Message-ID: <20030903162849.GA9675@londo.c47.org>
4763 Branch: perl
4764 ! pod/perlreftut.pod
4765____________________________________________________________________________
4766[ 21030] By: jhi on 2003/09/04 17:26:48
4767 Log: Subject: Re: "vendor" patch pickup
4768 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
4769 Date: Thu, 4 Sep 2003 19:47:55 +0200
4770 Message-ID: <009b01c3730c$ac45e750$0c2f1fac@R2D2>
4771
4772 (Gentoo: take Marcus' version of the __THROW patch and
4773 even further #ifdef-protect it with __GLIBC__.)
4774 Branch: perl
4775 ! perl.h
4776____________________________________________________________________________
4777[ 21029] By: jhi on 2003/09/04 16:01:26
4778 Log: Tiny perlcc tweaks.
4779 Branch: perl
4780 ! utils/perlcc.PL
4781____________________________________________________________________________
4782[ 21028] By: jhi on 2003/09/04 15:10:48
4783 Log: A SuSE patchlet for perlcc -c to avoid
4784 "Modification of a read-only value attempted at ... C.pm"
4785 Branch: perl
4786 ! ext/B/B/C.pm
4787____________________________________________________________________________
4788[ 21027] By: jhi on 2003/09/04 08:54:40
4789 Log: AUTHORS updates.
4790 Branch: perl
4791 ! AUTHORS
4792____________________________________________________________________________
4793[ 21026] By: jhi on 2003/09/03 20:29:34
4794 Log: Integrate:
4795 [ 21022]
4796 Subject: [PATCH Porting/valgrindpp.pl] fix: output from different pids
4797 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
4798 Date: Wed, 3 Sep 2003 19:20:20 +0200
4799 Message-ID: <005901c3723f$a7914f10$0c2f1fac@R2D2>
4800
4801 [ 21025]
4802 Upgrade to Math::BigInt pre-rel 1.66 as of
4803 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-09/msg00242.html
4804 (the tar.gz link doesn't have 'v1.66', it has '1.66')
4805 so that the smoke builds can start chewing it.
4806 Branch: maint-5.8/perl
4807 !> Porting/valgrindpp.pl lib/Math/BigInt.pm
4808 !> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
4809 !> lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bigfltpm.inc
4810 !> lib/Math/BigInt/t/bigfltpm.t lib/Math/BigInt/t/bigintpm.inc
4811 !> lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/mbi_rand.t
4812 !> lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
4813 !> lib/Math/BigInt/t/with_sub.t
4814____________________________________________________________________________
4815[ 21025] By: jhi on 2003/09/03 20:27:56
4816 Log: Upgrade to Math::BigInt pre-rel 1.66 as of
4817 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-09/msg00242.html
4818 (the tar.gz link doesn't have 'v1.66', it has '1.66')
4819 so that the smoke builds can start chewing it.
4820 Branch: perl
4821 ! lib/Math/BigInt.pm lib/Math/BigInt/Calc.pm
4822 ! lib/Math/BigInt/t/bare_mbf.t lib/Math/BigInt/t/bare_mbi.t
4823 ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
4824 ! lib/Math/BigInt/t/bigintpm.inc lib/Math/BigInt/t/bigintpm.t
4825 ! lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/sub_mbf.t
4826 ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/with_sub.t
4827____________________________________________________________________________
4828[ 21024] By: rgs on 2003/09/03 18:46:51
4829 Log: Add a test_prep make target, equivalent to test-prep (for smokes)
4830 Branch: maint-5.6
4831 ! perl-5.6.2/Makefile.SH
4832____________________________________________________________________________
4833[ 21023] By: jhi on 2003/09/03 17:01:01
4834 Log: perldelta polishing.
4835 Branch: maint-5.8/perl
4836 ! pod/perldelta.pod
4837____________________________________________________________________________
4838[ 21022] By: jhi on 2003/09/03 16:42:24
4839 Log: Subject: [PATCH Porting/valgrindpp.pl] fix: output from different pids
4840 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
4841 Date: Wed, 3 Sep 2003 19:20:20 +0200
4842 Message-ID: <005901c3723f$a7914f10$0c2f1fac@R2D2>
4843 Branch: perl
4844 ! Porting/valgrindpp.pl
4845____________________________________________________________________________
4846[ 21021] By: jhi on 2003/09/03 16:10:31
4847 Log: Update Changes.
4848 Branch: maint-5.8/perl
4849 ! Changes patchlevel.h
4850____________________________________________________________________________
4851[ 21020] By: jhi on 2003/09/03 16:07:02
4852 Log: Integrate:
4853 [ 21016]
4854 Add, document, and test bytes::substr, index, rindex, chr,
4855 document bytes::ord.
4856
4857 [ 21017]
4858 Bump up the VERSION.
4859
4860 [ 21019]
4861 Also indicate the Unicode level here.
4862 (The last date is non-committal :-)
4863 Branch: maint-5.8/perl
4864 !> lib/bytes.pm lib/bytes.t lib/bytes_heavy.pl
4865 !> pod/perlunicode.pod
4866____________________________________________________________________________
4867[ 21019] By: jhi on 2003/09/03 15:51:35
4868 Log: Also indicate the Unicode level here.
4869 (The last date is non-committal :-)
4870 Branch: perl
4871 ! pod/perlunicode.pod
4872____________________________________________________________________________
4873[ 21018] By: jhi on 2003/09/03 12:08:23
4874 Log: Avoid lvalue casts, from Enache.
4875 Branch: perl
4876 ! ext/ByteLoader/bytecode.h op.h
4877____________________________________________________________________________
4878[ 21017] By: jhi on 2003/09/03 08:23:39
4879 Log: Bump up the VERSION.
4880 Branch: perl
4881 ! lib/bytes.pm
4882____________________________________________________________________________
4883[ 21016] By: jhi on 2003/09/03 08:22:48
4884 Log: Add, document, and test bytes::substr, index, rindex, chr,
4885 document bytes::ord.
4886 Branch: perl
4887 ! lib/bytes.pm lib/bytes.t lib/bytes_heavy.pl
4888____________________________________________________________________________
4889[ 21015] By: jhi on 2003/09/03 07:06:08
4890 Log: Integrate:
4891 [ 21008]
4892 VMS does not have quite UNIX glob semantics.
4893
4894 [ 21009]
4895 Subject: Re: maint@20974 or before broke mp2 ithreads test
4896 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
4897 Date: Wed, 3 Sep 2003 06:07:54 +0200
4898 Message-ID: <044101c371d0$f39b3fc0$0c2f1fac@R2D2>
4899
4900 [ 21010]
4901 Subject: {PATCH 5.8.1] Re: [perl #23651] Debugger dump failed for blessed REF object
4902 From: Joe McMahon <mcmahon@ibiblio.org>
4903 Date: Tue, 2 Sep 2003 18:02:14 -0400
4904 Message-Id: <1C49133C-DD91-11D7-8450-000393BCA0FC@ibiblio.org>
4905
4906 [ 21011]
4907 Changing the test count is a good idea.
4908
4909 [ 21012]
4910 Upgrade to base 2.01 from CPAN.
4911
4912 [ 21013]
4913 use IO; is deprecated.
4914
4915 [ 21014]
4916 Subject: [PATCH] Re: maint@20974 or before broke mp2 ithreads test
4917 From: Marcus Holland-Moritz <mhx-perl@gmx.net>
4918 Date: Wed, 3 Sep 2003 08:57:25 +0200 (MEST)
4919 Message-ID: <29644.1062572245@www50.gmx.net>
4920
4921 The other half of #20930 should be still good.
4922
4923 (The fields.pm from the base 2.01 not integrated, though,
4924 because otherwise fields.t and t/lib/warnings/doio will
4925 start emitting "Pseudo-hashes are deprecated" warnings)
4926 Branch: maint-5.8/perl
4927 !> ext/threads/t/join.t lib/base.pm lib/dumpvar.pl op.c
4928 !> t/run/fresh_perl.t
4929____________________________________________________________________________
4930[ 21014] By: jhi on 2003/09/03 06:16:24
4931 Log: Subject: [PATCH] Re: maint@20974 or before broke mp2 ithreads test
4932 From: Marcus Holland-Moritz <mhx-perl@gmx.net>
4933 Date: Wed, 3 Sep 2003 08:57:25 +0200 (MEST)
4934 Message-ID: <29644.1062572245@www50.gmx.net>
4935
4936 The other half of #20930 should be still good.
4937 Branch: perl
4938 ! op.c
4939____________________________________________________________________________
4940[ 21013] By: jhi on 2003/09/03 06:15:09
4941 Log: use IO; is deprecated.
4942 Branch: perl
4943 ! ext/threads/t/join.t
4944____________________________________________________________________________
4945[ 21012] By: jhi on 2003/09/03 05:28:50
4946 Log: Upgrade to base 2.01 from CPAN.
4947 Branch: perl
4948 ! lib/base.pm lib/fields.pm
4949____________________________________________________________________________
4950[ 21011] By: jhi on 2003/09/03 05:08:29
4951 Log: Changing the test count is a good idea.
4952 Branch: perl
4953 ! ext/threads/t/join.t
4954____________________________________________________________________________
4955[ 21010] By: jhi on 2003/09/03 04:59:38
4956 Log: Subject: {PATCH 5.8.1] Re: [perl #23651] Debugger dump failed for blessed REF object
4957 From: Joe McMahon <mcmahon@ibiblio.org>
4958 Date: Tue, 2 Sep 2003 18:02:14 -0400
4959 Message-Id: <1C49133C-DD91-11D7-8450-000393BCA0FC@ibiblio.org>
4960 Branch: perl
4961 ! lib/dumpvar.pl
4962____________________________________________________________________________
4963[ 21009] By: jhi on 2003/09/03 04:48:40
4964 Log: Subject: Re: maint@20974 or before broke mp2 ithreads test
4965 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
4966 Date: Wed, 3 Sep 2003 06:07:54 +0200
4967 Message-ID: <044101c371d0$f39b3fc0$0c2f1fac@R2D2>
4968 Branch: perl
4969 ! ext/threads/t/join.t
4970____________________________________________________________________________
4971[ 21008] By: jhi on 2003/09/03 04:31:35
4972 Log: VMS does not have quite UNIX glob semantics.
4973 Branch: perl
4974 ! t/run/fresh_perl.t
4975____________________________________________________________________________
4976[ 21007] By: rgs on 2003/09/02 21:21:27
4977 Log: Subject: some method calls not autoloaded
4978 From: Yitzchak Scott-Thoennes <sthoenna@efn.org>
4979 Date: Tue, 2 Sep 2003 15:06:29 -0700
4980 Message-ID: <20030902220629.GA2952@efn.org>
4981 Branch: perl
4982 ! pod/perlfunc.pod pod/perlsub.pod
4983____________________________________________________________________________
4984[ 21006] By: rgs on 2003/09/02 21:06:49
4985 Log: Upgrade to File::Spec 0.85, grabbed from CPAN.
4986 Get t/rel2abs2rel.t from bleadperl, because t/TEST was
4987 unhappy with its unstandard test output.
4988 Remove the old t/lib/filespec.t.
4989 Branch: maint-5.6
4990 + perl-5.6.2/lib/File/Spec/Cygwin.pm
4991 + perl-5.6.2/lib/File/Spec/t/Functions.t
4992 + perl-5.6.2/lib/File/Spec/t/Spec.t
4993 + perl-5.6.2/lib/File/Spec/t/rel2abs2rel.t
4994 - perl-5.6.2/t/lib/filespec.t
4995 ! perl-5.6.2/MANIFEST perl-5.6.2/lib/File/Spec.pm
4996 ! perl-5.6.2/lib/File/Spec/Epoc.pm
4997 ! perl-5.6.2/lib/File/Spec/Functions.pm
4998 ! perl-5.6.2/lib/File/Spec/Mac.pm
4999 ! perl-5.6.2/lib/File/Spec/OS2.pm
5000 ! perl-5.6.2/lib/File/Spec/Unix.pm
5001 ! perl-5.6.2/lib/File/Spec/VMS.pm
5002 ! perl-5.6.2/lib/File/Spec/Win32.pm
5003____________________________________________________________________________
5004[ 21005] By: rgs on 2003/09/02 19:36:59
5005 Log: Remove the configure probes for iconv, and any iconv
5006 reference, since it's not used anywhere. (See change
5007 #12095 in the main branch.) This was known to freeze
5008 the configuration process on HP-UX.
5009 Branch: maint-5.6
5010 ! perl-5.6.2/Configure perl-5.6.2/Porting/Glossary
5011 ! perl-5.6.2/config_h.SH perl-5.6.2/configure.com
5012 ! perl-5.6.2/epoc/config.sh perl-5.6.2/perl.h
5013 ! perl-5.6.2/vos/config.alpha.def perl-5.6.2/vos/config.alpha.h
5014 ! perl-5.6.2/vos/config.ga.def perl-5.6.2/vos/config.ga.h
5015 ! perl-5.6.2/win32/config.bc perl-5.6.2/win32/config.gc
5016 ! perl-5.6.2/win32/config.vc perl-5.6.2/win32/config_H.bc
5017 ! perl-5.6.2/win32/config_H.gc perl-5.6.2/win32/config_H.vc
5018____________________________________________________________________________
5019[ 21004] By: jhi on 2003/09/02 19:10:18
5020 Log: Integrate:
5021 [ 20995]
5022 Subject: [perl #23679] perl-5.8.1-RC4 perldelta typo
5023 From: "mcharity@vendian.org (via RT)" <perlbug-followup@perl.org>
5024 Date: 1 Sep 2003 22:11:00 -0000
5025 Message-ID: <rt-23679-64048.6.59087677001438@rt.perl.org>
5026
5027 [ 20996]
5028 Subject: [PATCH] grok_(number|numeric_radix) added to Devel::PPPort
5029 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
5030 Date: Tue, 02 Sep 2003 11:27:19 +0200
5031 Message-id: <20030902092719.GA18075@ethan>
5032
5033 [ 20997]
5034 Subject: [PATCH perlfaq6.pod] Explain \Q better
5035 From: Mark Jason Dominus <mjd@plover.com>
5036 Date: Mon, 01 Sep 2003 16:19:20 -0400
5037 Message-ID: <20030901201920.3929.qmail@plover.com>
5038
5039 [ 20998]
5040 Subject: [perl #23672] Math::BigInit POD
5041 From: "abigail@abigail.nl (via RT)" <perlbug-followup@perl.org>
5042 Date: 1 Sep 2003 08:47:39 -0000
5043 Message-ID: <rt-23672-64035.19.2973991993763@rt.perl.org>
5044
5045 [ 20999]
5046 Subject: [DOCPATCH] Re: [perl #23630] problem with "used only once" warning
5047 From: Fergal Daly <fergal@esatclear.ie>
5048 Date: Tue, 2 Sep 2003 17:36:52 +0100
5049 Message-Id: <200309021736.52725.fergal@esatclear.ie>
5050
5051 [ 21000]
5052 Retract #20930 because of
5053 Subject: maint@20974 or before broke mp2 ithreads test
5054 From: Stas Bekman <stas@stason.org>
5055 Date: Mon, 01 Sep 2003 23:31:11 -0700
5056 Message-ID: <3F54392F.7080009@stason.org>
5057
5058 [ 21003]
5059 An untie test from perlmonks-- worked in 5.6.1,
5060 broken in 5.8.0, seems to be working again in maint,
5061 better nail it down now.
5062 Branch: maint-5.8/perl
5063 !> ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
5064 !> ext/Devel/PPPort/t/test.t lib/Math/BigInt.pm op.c
5065 !> pod/perldiag.pod pod/perlfaq6.pod t/op/tie.t
5066____________________________________________________________________________
5067[ 21003] By: jhi on 2003/09/02 19:01:07
5068 Log: An untie test from perlmonks-- worked in 5.6.1,
5069 broken in 5.8.0, seems to be working again in maint,
5070 better nail it down now.
5071 Branch: perl
5072 ! t/op/tie.t
5073____________________________________________________________________________
5074[ 21002] By: jhi on 2003/09/02 18:23:44
5075 Log: Better wording for Rafael.
5076 Branch: maint-5.8/perl
5077 ! pod/perldelta.pod
5078____________________________________________________________________________
5079[ 21001] By: jhi on 2003/09/02 15:43:23
5080 Log: More future.
5081 Branch: maint-5.8/perl
5082 ! pod/perldelta.pod
5083____________________________________________________________________________
5084[ 21000] By: jhi on 2003/09/02 15:35:40
5085 Log: Retract #20930 because of
5086 Subject: maint@20974 or before broke mp2 ithreads test
5087 From: Stas Bekman <stas@stason.org>
5088 Date: Mon, 01 Sep 2003 23:31:11 -0700
5089 Message-ID: <3F54392F.7080009@stason.org>
5090 Branch: perl
5091 ! op.c
5092____________________________________________________________________________
5093[ 20999] By: jhi on 2003/09/02 15:34:14
5094 Log: Subject: [DOCPATCH] Re: [perl #23630] problem with "used only once" warning
5095 From: Fergal Daly <fergal@esatclear.ie>
5096 Date: Tue, 2 Sep 2003 17:36:52 +0100
5097 Message-Id: <200309021736.52725.fergal@esatclear.ie>
5098 Branch: perl
5099 ! pod/perldiag.pod
5100____________________________________________________________________________
5101[ 20998] By: jhi on 2003/09/02 15:02:47
5102 Log: Subject: [perl #23672] Math::BigInit POD
5103 From: "abigail@abigail.nl (via RT)" <perlbug-followup@perl.org>
5104 Date: 1 Sep 2003 08:47:39 -0000
5105 Message-ID: <rt-23672-64035.19.2973991993763@rt.perl.org>
5106 Branch: perl
5107 ! lib/Math/BigInt.pm
5108____________________________________________________________________________
5109[ 20997] By: jhi on 2003/09/02 14:58:21
5110 Log: Subject: [PATCH perlfaq6.pod] Explain \Q better
5111 From: Mark Jason Dominus <mjd@plover.com>
5112 Date: Mon, 01 Sep 2003 16:19:20 -0400
5113 Message-ID: <20030901201920.3929.qmail@plover.com>
5114 Branch: perl
5115 ! pod/perlfaq6.pod
5116____________________________________________________________________________
5117[ 20996] By: jhi on 2003/09/02 14:56:29
5118 Log: Subject: [PATCH] grok_(number|numeric_radix) added to Devel::PPPort
5119 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
5120 Date: Tue, 02 Sep 2003 11:27:19 +0200
5121 Message-id: <20030902092719.GA18075@ethan>
5122 Branch: perl
5123 ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
5124 ! ext/Devel/PPPort/t/test.t
5125____________________________________________________________________________
5126[ 20995] By: jhi on 2003/09/02 14:43:45
5127 Log: Subject: [perl #23679] perl-5.8.1-RC4 perldelta typo
5128 From: "mcharity@vendian.org (via RT)" <perlbug-followup@perl.org>
5129 Date: 1 Sep 2003 22:11:00 -0000
5130 Message-ID: <rt-23679-64048.6.59087677001438@rt.perl.org>
5131 Branch: maint-5.8/perl
5132 ! pod/perldelta.pod
5133____________________________________________________________________________
5134[ 20994] By: jhi on 2003/09/02 14:42:10
5135 Log: Add some pressure for Enache :-)
5136 Branch: maint-5.8/perl
5137 ! pod/perldelta.pod
5138____________________________________________________________________________
5139[ 20993] By: jhi on 2003/09/02 14:40:54
5140 Log: Subject: [PATCH] Re: ByteLoader and MSWin32
5141 From: Enache Adrian <enache@rdslink.ro>
5142 Date: Tue, 2 Sep 2003 03:45:11 +0300
5143 Message-ID: <20030902004511.GA1442@ratsnest.hole>
5144 Branch: perl
5145 ! embed.fnc embed.h ext/ByteLoader/bytecode.h global.sym op.c
5146 ! op.h proto.h t/TEST
5147____________________________________________________________________________
5148[ 20992] By: jhi on 2003/09/02 06:33:48
5149 Log: Update Changes.
5150 Branch: maint-5.8/perl
5151 ! Changes patchlevel.h
5152____________________________________________________________________________
5153[ 20991] By: jhi on 2003/09/02 04:39:23
5154 Log: Integrate:
5155 [ 20978]
5156 Subject: [PATCH@20959] some WinCE compilers require a little correction
5157 From: Vadim Konovalov <vkonovalov@peterstar.ru>
5158 Date: Mon, 1 Sep 2003 02:57:33 +0400
5159 Message-ID: <1091134912500.20030901025733@peterstar.ru>
5160
5161 [ 20979]
5162 Ultrix VAX is like VMS VAX in floating point.
5163
5164 [ 20980]
5165 Subject: glob() bug
5166 From: Gurusamy Sarathy <gsar@ActiveState.com>
5167 Date: Mon, 01 Sep 2003 02:25:41 -0700
5168 Message-Id: <200309010925.h819Pf0X011457@smtp3.ActiveState.com>
5169
5170 [ 20981]
5171 Subject: [DOC PATCH] perlfaq4.pod
5172 Date: Mon, 1 Sep 2003 12:38:50 +0200
5173 From: Elizabeth Mattijsen <liz@dijkmat.nl>
5174 Message-Id: <p05111b19bb78d1d7aa70@[192.168.56.4]>
5175
5176 [ 20982]
5177 Configure -r in AIX bad.
5178
5179 [ 20983]
5180 From Craig Berry, following the example of the other podxxx.PL
5181 in relying on basename($0, '.PL') to Do The Right Thing with
5182 regard to the case of the extension, which could be either
5183 .pl or .PL on VMS depending on version-specific features.
5184
5185 [ 20989]
5186 Subject: [PATCH Porting/valgrindpp.pl] more options for valgrindpp.pl
5187 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5188 Date: Mon, 1 Sep 2003 22:28:58 +0200
5189 Message-ID: <007701c370c7$acb85430$0c2f1fac@R2D2>
5190
5191 [ 20990]
5192 Upgrade to Unicode::Collate 0.27.
5193 Branch: maint-5.8/perl
5194 +> lib/Unicode/Collate/t/hangul.t
5195 !> MANIFEST Porting/valgrindpp.pl README.aix
5196 !> lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
5197 !> lib/Unicode/Collate/README op.c pod/perlfaq4.pod
5198 !> pod/pod2usage.PL pod/podselect.PL t/op/sprintf.t
5199 !> t/run/fresh_perl.t wince/Makefile.ce wince/wince.c
5200____________________________________________________________________________
5201[ 20990] By: jhi on 2003/09/02 04:29:45
5202 Log: Upgrade to Unicode::Collate 0.27.
5203 Branch: perl
5204 + lib/Unicode/Collate/t/hangul.t
5205 ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
5206 ! lib/Unicode/Collate/README
5207____________________________________________________________________________
5208[ 20989] By: jhi on 2003/09/02 04:23:20
5209 Log: Subject: [PATCH Porting/valgrindpp.pl] more options for valgrindpp.pl
5210 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5211 Date: Mon, 1 Sep 2003 22:28:58 +0200
5212 Message-ID: <007701c370c7$acb85430$0c2f1fac@R2D2>
5213 Branch: perl
5214 ! Porting/valgrindpp.pl
5215____________________________________________________________________________
5216[ 20988] By: rgs on 2003/09/01 21:40:00
5217 Log: README.dos update :
5218 Subject: Re: Perl 5.6.1 and DJGPP: some build fixes, some bug fixes
5219 From: Richard Dawe <rich@phekda.freeserve.co.uk>
5220 Date: Sat, 23 Aug 2003 23:17:19 +0100
5221 Message-ID: <3F47E7EF.834E9F31@phekda.freeserve.co.uk>
5222 Branch: maint-5.6
5223 ! perl-5.6.2/README.dos
5224____________________________________________________________________________
5225[ 20987] By: rgs on 2003/09/01 21:19:37
5226 Log: Add Changes5.6 in the MANIFEST
5227 Branch: maint-5.6
5228 ! perl-5.6.2/MANIFEST
5229____________________________________________________________________________
5230[ 20986] By: rgs on 2003/09/01 21:11:09
5231 Log: Update Changes : move the 5.6.[01] changes to Changes5.6,
5232 while the changes in this new branch //depot/maint-5.6/perl-5.6.2
5233 go in a new Changes file. Upgrade patchlevel.h.
5234 Branch: maint-5.6
5235 +> perl-5.6.2/Changes5.6
5236 ! perl-5.6.2/Changes perl-5.6.2/patchlevel.h
5237____________________________________________________________________________
5238[ 20985] By: rgs on 2003/09/01 20:38:12
5239 Log: Tabify and sort MANIFEST
5240 Branch: maint-5.6
5241 ! perl-5.6.2/MANIFEST
5242____________________________________________________________________________
5243[ 20984] By: rgs on 2003/09/01 20:10:41
5244 Log: Integrate ExtUtils::MakeMaker 6.16.
5245 Update the various makefiles utilities so the Makefile.PLs are
5246 invoked with PERL_CORE=1.
5247 Branch: maint-5.6
5248 + perl-5.6.2/lib/ExtUtils/Changes
5249 + perl-5.6.2/lib/ExtUtils/Command/MM.pm
5250 + perl-5.6.2/lib/ExtUtils/Liblist/Kid.pm
5251 + perl-5.6.2/lib/ExtUtils/MANIFEST.SKIP
5252 + perl-5.6.2/lib/ExtUtils/META.yml perl-5.6.2/lib/ExtUtils/MM.pm
5253 + perl-5.6.2/lib/ExtUtils/MM_Any.pm
5254 + perl-5.6.2/lib/ExtUtils/MM_BeOS.pm
5255 + perl-5.6.2/lib/ExtUtils/MM_DOS.pm
5256 + perl-5.6.2/lib/ExtUtils/MM_MacOS.pm
5257 + perl-5.6.2/lib/ExtUtils/MM_NW5.pm
5258 + perl-5.6.2/lib/ExtUtils/MM_UWIN.pm
5259 + perl-5.6.2/lib/ExtUtils/MM_Win95.pm
5260 + perl-5.6.2/lib/ExtUtils/MY.pm
5261 + perl-5.6.2/lib/ExtUtils/MakeMaker/FAQ.pod
5262 + perl-5.6.2/lib/ExtUtils/MakeMaker/Tutorial.pod
5263 + perl-5.6.2/lib/ExtUtils/MakeMaker/bytes.pm
5264 + perl-5.6.2/lib/ExtUtils/MakeMaker/vmsish.pm
5265 + perl-5.6.2/lib/ExtUtils/NOTES perl-5.6.2/lib/ExtUtils/PATCHING
5266 + perl-5.6.2/lib/ExtUtils/README perl-5.6.2/lib/ExtUtils/TODO
5267 + perl-5.6.2/lib/ExtUtils/instmodsh
5268 + perl-5.6.2/lib/ExtUtils/t/00compile.t
5269 + perl-5.6.2/lib/ExtUtils/t/00setup_dummy.t
5270 + perl-5.6.2/lib/ExtUtils/t/Command.t
5271 + perl-5.6.2/lib/ExtUtils/t/INST.t
5272 + perl-5.6.2/lib/ExtUtils/t/INST_PREFIX.t
5273 + perl-5.6.2/lib/ExtUtils/t/Install.t
5274 + perl-5.6.2/lib/ExtUtils/t/Installed.t
5275 + perl-5.6.2/lib/ExtUtils/t/Liblist.t
5276 + perl-5.6.2/lib/ExtUtils/t/MM_Any.t
5277 + perl-5.6.2/lib/ExtUtils/t/MM_BeOS.t
5278 + perl-5.6.2/lib/ExtUtils/t/MM_Cygwin.t
5279 + perl-5.6.2/lib/ExtUtils/t/MM_NW5.t
5280 + perl-5.6.2/lib/ExtUtils/t/MM_OS2.t
5281 + perl-5.6.2/lib/ExtUtils/t/MM_Unix.t
5282 + perl-5.6.2/lib/ExtUtils/t/MM_VMS.t
5283 + perl-5.6.2/lib/ExtUtils/t/MM_Win32.t
5284 + perl-5.6.2/lib/ExtUtils/t/Manifest.t
5285 + perl-5.6.2/lib/ExtUtils/t/Mkbootstrap.t
5286 + perl-5.6.2/lib/ExtUtils/t/Packlist.t
5287 + perl-5.6.2/lib/ExtUtils/t/VERSION_FROM.t
5288 + perl-5.6.2/lib/ExtUtils/t/backwards.t
5289 + perl-5.6.2/lib/ExtUtils/t/basic.t
5290 + perl-5.6.2/lib/ExtUtils/t/bytes.t
5291 + perl-5.6.2/lib/ExtUtils/t/hints.t
5292 + perl-5.6.2/lib/ExtUtils/t/oneliner.t
5293 + perl-5.6.2/lib/ExtUtils/t/postamble.t
5294 + perl-5.6.2/lib/ExtUtils/t/prefixify.t
5295 + perl-5.6.2/lib/ExtUtils/t/prereq_print.t
5296 + perl-5.6.2/lib/ExtUtils/t/problems.t
5297 + perl-5.6.2/lib/ExtUtils/t/prompt.t
5298 + perl-5.6.2/lib/ExtUtils/t/recurs.t
5299 + perl-5.6.2/lib/ExtUtils/t/split_command.t
5300 + perl-5.6.2/lib/ExtUtils/t/testlib.t
5301 + perl-5.6.2/lib/ExtUtils/t/vmsish.t
5302 + perl-5.6.2/lib/ExtUtils/t/writemakefile_args.t
5303 + perl-5.6.2/lib/ExtUtils/t/zz_cleanup_dummy.t
5304 + perl-5.6.2/t/lib/MakeMaker/Test/Setup/Recurs.pm
5305 + perl-5.6.2/t/lib/MakeMaker/Test/Utils.pm
5306 + perl-5.6.2/t/lib/TieIn.pm
5307 - perl-5.6.2/lib/ExtUtils/inst
5308 ! perl-5.6.2/MANIFEST perl-5.6.2/configure.com
5309 ! perl-5.6.2/ext/util/make_ext
5310 ! perl-5.6.2/lib/ExtUtils/Command.pm
5311 ! perl-5.6.2/lib/ExtUtils/Embed.pm
5312 ! perl-5.6.2/lib/ExtUtils/Install.pm
5313 ! perl-5.6.2/lib/ExtUtils/Installed.pm
5314 ! perl-5.6.2/lib/ExtUtils/Liblist.pm
5315 ! perl-5.6.2/lib/ExtUtils/MM_Cygwin.pm
5316 ! perl-5.6.2/lib/ExtUtils/MM_OS2.pm
5317 ! perl-5.6.2/lib/ExtUtils/MM_Unix.pm
5318 ! perl-5.6.2/lib/ExtUtils/MM_VMS.pm
5319 ! perl-5.6.2/lib/ExtUtils/MM_Win32.pm
5320 ! perl-5.6.2/lib/ExtUtils/MakeMaker.pm
5321 ! perl-5.6.2/lib/ExtUtils/Manifest.pm
5322 ! perl-5.6.2/lib/ExtUtils/Mkbootstrap.pm
5323 ! perl-5.6.2/lib/ExtUtils/Mksymlists.pm
5324 ! perl-5.6.2/lib/ExtUtils/Packlist.pm
5325 ! perl-5.6.2/lib/ExtUtils/testlib.pm perl-5.6.2/os2/Makefile.SHs
5326 ! perl-5.6.2/win32/Makefile perl-5.6.2/win32/makefile.mk
5327____________________________________________________________________________
5328[ 20983] By: jhi on 2003/09/01 14:14:49
5329 Log: From Craig Berry, following the example of the other podxxx.PL
5330 in relying on basename($0, '.PL') to Do The Right Thing with
5331 regard to the case of the extension, which could be either
5332 .pl or .PL on VMS depending on version-specific features.
5333 Branch: perl
5334 ! pod/pod2usage.PL pod/podselect.PL
5335____________________________________________________________________________
5336[ 20982] By: jhi on 2003/09/01 13:01:49
5337 Log: Configure -r in AIX bad.
5338 Branch: perl
5339 ! README.aix
5340____________________________________________________________________________
5341[ 20981] By: jhi on 2003/09/01 11:28:35
5342 Log: Subject: [DOC PATCH] perlfaq4.pod
5343 Date: Mon, 1 Sep 2003 12:38:50 +0200
5344 From: Elizabeth Mattijsen <liz@dijkmat.nl>
5345 Message-Id: <p05111b19bb78d1d7aa70@[192.168.56.4]>
5346 Branch: perl
5347 ! pod/perlfaq4.pod
5348____________________________________________________________________________
5349[ 20980] By: jhi on 2003/09/01 08:49:02
5350 Log: Subject: glob() bug
5351 From: Gurusamy Sarathy <gsar@ActiveState.com>
5352 Date: Mon, 01 Sep 2003 02:25:41 -0700
5353 Message-Id: <200309010925.h819Pf0X011457@smtp3.ActiveState.com>
5354 Branch: perl
5355 ! op.c t/run/fresh_perl.t
5356____________________________________________________________________________
5357[ 20979] By: jhi on 2003/09/01 06:32:01
5358 Log: Ultrix VAX is like VMS VAX in floating point.
5359 Branch: perl
5360 ! t/op/sprintf.t
5361____________________________________________________________________________
5362[ 20978] By: jhi on 2003/09/01 05:44:25
5363 Log: Subject: [PATCH@20959] some WinCE compilers require a little correction
5364 From: Vadim Konovalov <vkonovalov@peterstar.ru>
5365 Date: Mon, 1 Sep 2003 02:57:33 +0400
5366 Message-ID: <1091134912500.20030901025733@peterstar.ru>
5367 Branch: perl
5368 ! wince/Makefile.ce wince/wince.c
5369____________________________________________________________________________
5370[ 20977] By: rgs on 2003/08/31 20:54:16
5371 Log: Integrate change 11744 from bleadperl :
5372 Subject: [PATCH bleadperl] quiet down VC++ warnings in a2py.c and walk.c
5373 From: Nikola Knezevic <indy@tesla.rcub.bg.ac.yu>
5374 Date: Fri, 24 Aug 2001 22:10:42 +0200
5375 Message-Id: <1065978076.20010824221042@tesla.rcub.bg.ac.yu>
5376
5377 and apply the last round of warnings hunting on Win32:
5378 Subject: [PATCH 5.6.2] MSWin32 test & compilation warning fixes
5379 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5380 Date: Sun, 31 Aug 2003 13:54:58 +0200
5381 Message-ID: <005801c36fb6$c26b5190$9b00a8c0@R2D2>
5382 Branch: maint-5.6
5383 ! perl-5.6.2/ext/POSIX/POSIX.xs perl-5.6.2/x2p/a2py.c
5384 !> perl-5.6.2/x2p/walk.c
5385____________________________________________________________________________
5386[ 20976] By: rgs on 2003/08/31 20:47:11
5387 Log: Integrate from bleadperl :
5388
5389 10526: Cleanup the a2p.c for -Wall.
5390
5391 10537: One less -Wall whine (found under DEBUGGING).
5392 Branch: maint-5.6
5393 !> perl-5.6.2/x2p/Makefile.SH perl-5.6.2/x2p/a2p.c
5394____________________________________________________________________________
5395[ 20975] By: rgs on 2003/08/31 20:35:00
5396 Log: Integrate change 10684 from bleadperl (as suggested by Marcus
5397 Holland-Moritz) :
5398 Guard the SysV IPC tests against being invoked in
5399 SysV-IPC-less places.
5400 Branch: maint-5.6
5401 !> perl-5.6.2/ext/IPC/SysV/t/msg.t
5402 !> perl-5.6.2/ext/IPC/SysV/t/sem.t
5403____________________________________________________________________________
5404[ 20974] By: jhi on 2003/08/31 15:40:42
5405 Log: Integrate:
5406 [ 20970]
5407 List the switches tested in switches.t.
5408
5409 [ 20971]
5410 Add test for -v.
5411
5412 [ 20972]
5413 Add tests for -h and (unknown) -z.
5414
5415 [ 20973]
5416 Add test for -i.
5417 Branch: maint-5.8/perl
5418 !> MANIFEST installperl t/run/switches.t
5419____________________________________________________________________________
5420[ 20973] By: jhi on 2003/08/31 15:34:43
5421 Log: Add test for -i.
5422 Branch: perl
5423 ! MANIFEST t/run/switches.t
5424____________________________________________________________________________
5425[ 20972] By: jhi on 2003/08/31 15:12:10
5426 Log: Add tests for -h and (unknown) -z.
5427 Branch: perl
5428 ! MANIFEST t/run/switches.t
5429____________________________________________________________________________
5430[ 20971] By: jhi on 2003/08/31 15:03:42
5431 Log: Add test for -v.
5432 Branch: perl
5433 ! MANIFEST t/run/switches.t
5434____________________________________________________________________________
5435[ 20970] By: jhi on 2003/08/31 14:55:54
5436 Log: List the switches tested in switches.t.
5437 Branch: perl
5438 ! t/run/switches.t
5439____________________________________________________________________________
5440[ 20969] By: jhi on 2003/08/31 14:51:19
5441 Log: Subject: [PATCH: perl@20898] have installperl install perl_setup.com and dbga2p.exe for VMS
5442 From: PPrymmer@factset.com
5443 Message-ID: <OF0394CB1E.C7646793-ON85256D93.004D75D4-85256D93.004E01F2@factset.com>
5444 Date: Sun, 31 Aug 2003 10:11:54 -0400
5445 Branch: perl
5446 ! installperl
5447____________________________________________________________________________
5448[ 20968] By: jhi on 2003/08/31 13:24:10
5449 Log: Subject: [PATCH sv.c] Re: [PATCH] add "$lexical not available" warning in C<for my $lex ()>
5450 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5451 Date: Sun, 31 Aug 2003 15:21:17 +0200
5452 Message-ID: <038401c36fc2$d01b1440$9b00a8c0@R2D2>
5453 Branch: perl
5454 ! sv.c
5455____________________________________________________________________________
5456[ 20967] By: jhi on 2003/08/31 09:13:01
5457 Log: Restore also fields.pm to @20959 state.
5458 Branch: maint-5.8/perl
5459 ! lib/fields.pm
5460____________________________________________________________________________
5461[ 20966] By: jhi on 2003/08/31 08:58:09
5462 Log: Integrate:
5463 [ 20965]
5464 Ouch. Upgrading to base 2.0 made the threads tests very unhappy
5465 both in blead and maint, lots of "Attempt to free non-existent
5466 shared string" and "Unbalanced string table refcount" errors.
5467 Retract #20960 (and #20963).
5468 Branch: maint-5.8/perl
5469 - lib/base/t/base.t lib/base/t/fb18784.t lib/base/t/fb20922.t
5470 - lib/base/t/fields.t lib/base/t/fp560.t lib/base/t/fp580.t
5471 !> MANIFEST lib/base.pm lib/fields.pm
5472____________________________________________________________________________
5473[ 20965] By: jhi on 2003/08/31 08:55:59
5474 Log: Ouch. Upgrading to base 2.0 made the threads tests very unhappy
5475 both in blead and maint, lots of "Attempt to free non-existent
5476 shared string" and "Unbalanced string table refcount" errors.
5477 Retract #20960 (and #20963).
5478 Branch: perl
5479 - lib/base/t/base.t lib/base/t/fb18784.t lib/base/t/fb20922.t
5480 - lib/base/t/fields.t lib/base/t/fp560.t lib/base/t/fp580.t
5481 ! MANIFEST lib/base.pm lib/fields.pm
5482____________________________________________________________________________
5483[ 20964] By: jhi on 2003/08/31 08:17:43
5484 Log: Integrate from maint:
5485 [ 20963]
5486 Muffle the 'Pseudo-hashes are deprecated' warning for maint.
5487 Branch: perl
5488 !> lib/base/t/fp560.t
5489____________________________________________________________________________
5490[ 20963] By: jhi on 2003/08/31 08:16:04
5491 Log: Muffle the 'Pseudo-hashes are deprecated' warning for maint.
5492 Branch: maint-5.8/perl
5493 ! lib/base/t/fp560.t
5494____________________________________________________________________________
5495[ 20962] By: jhi on 2003/08/31 08:12:31
5496 Log: Integrate:
5497 [ 20960]
5498 Upgrade to base.pm 2.0.
5499
5500 (Rename the tests around a bit to be more 8.3-friendly.)
5501
5502 [ 20961]
5503 De-cargo-cult.
5504 Branch: maint-5.8/perl
5505 +> lib/base/t/base.t lib/base/t/fb18784.t lib/base/t/fb20922.t
5506 +> lib/base/t/fields.t lib/base/t/fp560.t lib/base/t/fp580.t
5507 !> MANIFEST ext/DynaLoader/t/XSLoader.t ext/SDBM_File/t/sdbm.t
5508 !> lib/base.pm lib/fields.pm
5509____________________________________________________________________________
5510[ 20961] By: jhi on 2003/08/31 08:09:21
5511 Log: De-cargo-cult.
5512 Branch: perl
5513 ! ext/DynaLoader/t/XSLoader.t ext/SDBM_File/t/sdbm.t
5514____________________________________________________________________________
5515[ 20960] By: jhi on 2003/08/31 08:07:43
5516 Log: Upgrade to base.pm 2.0.
5517
5518 (Rename the tests around a bit to be more 8.3-friendly.)
5519 Branch: perl
5520 + lib/base/t/base.t lib/base/t/fb18784.t lib/base/t/fb20922.t
5521 + lib/base/t/fields.t lib/base/t/fp560.t lib/base/t/fp580.t
5522 ! MANIFEST lib/base.pm lib/fields.pm
5523____________________________________________________________________________
5524[ 20959] By: jhi on 2003/08/30 19:57:03
5525 Log: Update Changes.
5526 Branch: maint-5.8/perl
5527 ! Changes patchlevel.h
5528____________________________________________________________________________
5529[ 20958] By: jhi on 2003/08/30 18:55:20
5530 Log: Integrate:
5531 [ 20956]
5532 This is probably a wrong fix for
5533 [perl #23645] tell with perlio on appended files
5534 but maybe this gets NI-S agitated enough to present the correct fix :-)
5535
5536 [ 20957]
5537 Fewer naked char constants.
5538 Branch: maint-5.8/perl
5539 !> doio.c perlio.c sv.h t/io/tell.t
5540____________________________________________________________________________
5541[ 20957] By: jhi on 2003/08/30 18:47:02
5542 Log: Fewer naked char constants.
5543 Branch: perl
5544 ! doio.c perlio.c sv.h
5545____________________________________________________________________________
5546[ 20956] By: jhi on 2003/08/30 18:38:05
5547 Log: This is probably a wrong fix for
5548 [perl #23645] tell with perlio on appended files
5549 but maybe this gets NI-S agitated enough to present the correct fix :-)
5550 Branch: perl
5551 ! perlio.c t/io/tell.t
5552____________________________________________________________________________
5553[ 20955] By: jhi on 2003/08/30 17:17:57
5554 Log: Integrate:
5555 [ 20952]
5556 Tweak XSLoader.t.
5557 XSLoader is supposed to work even for extensions that
5558 are statically linked. So only check that the extension we
5559 test for is actually available. (This test is not supposed
5560 to be run by miniperl.)
5561
5562 [ 20953]
5563 In maint unpack is ($$), not ($;$).
5564
5565 [ 20954]
5566 A new try at
5567
5568 Subject: [PATCH] maint / blead tweaks in perlio.c for Cygwin
5569 From: "Gerrit P. Haase" <gp@familiehaase.de>
5570 Date: Thu, 28 Aug 2003 08:18:51 +0200
5571 Message-ID: <4157199551.20030828081851@familiehaase.de>
5572
5573 (this time Cygwin only)
5574 Branch: maint-5.8/perl
5575 !> ext/DynaLoader/t/XSLoader.t perlio.c
5576____________________________________________________________________________
5577[ 20954] By: jhi on 2003/08/30 17:14:19
5578 Log: A new try at
5579
5580 Subject: [PATCH] maint / blead tweaks in perlio.c for Cygwin
5581 From: "Gerrit P. Haase" <gp@familiehaase.de>
5582 Date: Thu, 28 Aug 2003 08:18:51 +0200
5583 Message-ID: <4157199551.20030828081851@familiehaase.de>
5584
5585 (this time Cygwin only)
5586 Branch: perl
5587 ! perlio.c
5588____________________________________________________________________________
5589[ 20953] By: jhi on 2003/08/30 17:02:07
5590 Log: In maint unpack is ($$), not ($;$).
5591 Branch: maint-5.8/perl
5592 ! t/op/cproto.t
5593____________________________________________________________________________
5594[ 20952] By: rgs on 2003/08/30 15:20:48
5595 Log: Tweak XSLoader.t.
5596 XSLoader is supposed to work even for extensions that
5597 are statically linked. So only check that the extension we
5598 test for is actually available. (This test is not supposed
5599 to be run by miniperl.)
5600 Branch: perl
5601 ! ext/DynaLoader/t/XSLoader.t
5602____________________________________________________________________________
5603[ 20951] By: jhi on 2003/08/30 06:51:09
5604 Log: Integrate:
5605 [ 20950]
5606 Something went wrong in change #20929;
5607 linux 2.4.18-bf2.4 didn't like it:
5608 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01992.html
5609 and similar failure pattern also seen in Solaris 8.
5610 Branch: maint-5.8/perl
5611 !> perlio.c
5612____________________________________________________________________________
5613[ 20950] By: jhi on 2003/08/30 06:49:31
5614 Log: Something went wrong in change #20929;
5615 linux 2.4.18-bf2.4 didn't like it:
5616 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01992.html
5617 and similar failure pattern also seen in Solaris 8.
5618 Branch: perl
5619 ! perlio.c
5620____________________________________________________________________________
5621[ 20949] By: jhi on 2003/08/30 06:09:31
5622 Log: Integrate:
5623 [ 20948]
5624 Setup @INC.
5625 Branch: maint-5.8/perl
5626 !> t/op/cproto.t
5627____________________________________________________________________________
5628[ 20948] By: jhi on 2003/08/30 06:08:57
5629 Log: Setup @INC.
5630 Branch: perl
5631 ! t/op/cproto.t
5632____________________________________________________________________________
5633[ 20947] By: jhi on 2003/08/30 06:07:56
5634 Log: Integrate:
5635 [ 20940]
5636 Add a new test, to ensure that we don't unexpectedly change
5637 prototypes of builtins.
5638
5639 [ 20941]
5640 Subject: [patch sv.h api doc] SvTAINTED_on does its craft only under -T
5641 From: Stas Bekman <stas@stason.org>
5642 Date: Fri, 29 Aug 2003 17:11:41 -0700
5643 Message-ID: <3F4FEBBD.8000901@stason.org>
5644
5645 [ 20942]
5646 Subject: [PATCH: perl@20898] fix File::Spec->abs2rel() to return absolute $path more often for VMS
5647 From: PPrymmer@factset.com
5648 Date: Sat, 30 Aug 2003 00:57:28 -0400
5649 Message-ID: <OFD8AE5D6D.EA3FBE7D-ON85256D92.001A31FE-85256D92.001B3BE5@factset.com>
5650
5651 [ 20943]
5652 Missed from #20942.
5653
5654 [ 20944]
5655 Subject: [PATCH] XSLoader nits and tests
5656 From: Michael G Schwern <schwern@pobox.com>
5657 Date: Fri, 29 Aug 2003 22:55:07 -0700
5658 Message-ID: <20030830055507.GI25970@windhund.schwern.org>
5659
5660 [ 20945]
5661 Make XSLoader.t more robust (and sdbm.t more verbose)
5662
5663 [ 20946]
5664 Tabify and re-sort MANIFEST.
5665 Branch: maint-5.8/perl
5666 +> ext/DynaLoader/t/XSLoader.t t/op/cproto.t
5667 !> MANIFEST ext/DynaLoader/XSLoader_pm.PL ext/SDBM_File/t/sdbm.t
5668 !> lib/File/Spec.pm lib/File/Spec/VMS.pm lib/File/Spec/t/Spec.t
5669 !> pod/perlapi.pod sv.h
5670____________________________________________________________________________
5671[ 20946] By: jhi on 2003/08/30 06:00:09
5672 Log: Tabify and re-sort MANIFEST.
5673 Branch: perl
5674 ! MANIFEST
5675____________________________________________________________________________
5676[ 20945] By: jhi on 2003/08/30 05:57:04
5677 Log: Make XSLoader.t more robust (and sdbm.t more verbose)
5678 Branch: perl
5679 ! ext/DynaLoader/t/XSLoader.t ext/SDBM_File/t/sdbm.t
5680____________________________________________________________________________
5681[ 20944] By: jhi on 2003/08/30 05:50:41
5682 Log: Subject: [PATCH] XSLoader nits and tests
5683 From: Michael G Schwern <schwern@pobox.com>
5684 Date: Fri, 29 Aug 2003 22:55:07 -0700
5685 Message-ID: <20030830055507.GI25970@windhund.schwern.org>
5686 Branch: perl
5687 + ext/DynaLoader/t/XSLoader.t
5688 ! MANIFEST ext/DynaLoader/XSLoader_pm.PL
5689____________________________________________________________________________
5690[ 20943] By: jhi on 2003/08/30 05:44:02
5691 Log: Missed from #20942.
5692 Branch: perl
5693 ! lib/File/Spec/VMS.pm
5694____________________________________________________________________________
5695[ 20942] By: jhi on 2003/08/30 05:41:59
5696 Log: Subject: [PATCH: perl@20898] fix File::Spec->abs2rel() to return absolute $path more often for VMS
5697 From: PPrymmer@factset.com
5698 Date: Sat, 30 Aug 2003 00:57:28 -0400
5699 Message-ID: <OFD8AE5D6D.EA3FBE7D-ON85256D92.001A31FE-85256D92.001B3BE5@factset.com>
5700 Branch: perl
5701 ! lib/File/Spec.pm lib/File/Spec/t/Spec.t
5702____________________________________________________________________________
5703[ 20941] By: jhi on 2003/08/30 05:37:13
5704 Log: Subject: [patch sv.h api doc] SvTAINTED_on does its craft only under -T
5705 From: Stas Bekman <stas@stason.org>
5706 Date: Fri, 29 Aug 2003 17:11:41 -0700
5707 Message-ID: <3F4FEBBD.8000901@stason.org>
5708 Branch: perl
5709 ! pod/perlapi.pod sv.h
5710____________________________________________________________________________
5711[ 20940] By: rgs on 2003/08/29 21:17:59
5712 Log: Add a new test, to ensure that we don't unexpectedly change
5713 prototypes of builtins.
5714 Branch: perl
5715 + t/op/cproto.t
5716 ! MANIFEST
5717____________________________________________________________________________
5718[ 20939] By: jhi on 2003/08/29 20:28:49
5719 Log: Integrate:
5720 [ 20935]
5721 Tiny doc tweak from Shannon -jj Behrens.
5722
5723 [ 20936]
5724 Some perluniintro tweaks.
5725
5726 [ 20937]
5727 Subject: [PATCH] Re: all 9007199254740992s are equal, but some are more equal than others
5728 From: Nicholas Clark <nick@ccl4.org>
5729 Date: Wed, 27 Aug 2003 22:59:55 +0100
5730 Message-ID: <20030827225955.E558@plum.flirble.org>
5731 Branch: maint-5.8/perl
5732 !> pod/perluniintro.pod pp.c
5733____________________________________________________________________________
5734[ 20938] By: rgs on 2003/08/29 20:22:21
5735 Log: Don't cast PL_multiline to bool : you may loose important bits.
5736 Branch: perl
5737 ! pp.c pp_hot.c
5738____________________________________________________________________________
5739[ 20937] By: jhi on 2003/08/29 17:22:11
5740 Log: Subject: [PATCH] Re: all 9007199254740992s are equal, but some are more equal than others
5741 From: Nicholas Clark <nick@ccl4.org>
5742 Date: Wed, 27 Aug 2003 22:59:55 +0100
5743 Message-ID: <20030827225955.E558@plum.flirble.org>
5744 Branch: perl
5745 ! pp.c
5746____________________________________________________________________________
5747[ 20936] By: jhi on 2003/08/29 17:17:16
5748 Log: Some perluniintro tweaks.
5749 Branch: perl
5750 ! pod/perluniintro.pod
5751____________________________________________________________________________
5752[ 20935] By: jhi on 2003/08/29 17:07:25
5753 Log: Tiny doc tweak from Shannon -jj Behrens.
5754 Branch: perl
5755 ! pod/perluniintro.pod
5756____________________________________________________________________________
5757[ 20934] By: jhi on 2003/08/29 15:12:24
5758 Log: Integrate:
5759 [ 20927]
5760 MPE/iX gcc 3.3.1 changes from Mark Klein and Mark Bixby.
5761
5762 [ 20928]
5763 Subject: RE: [PATCH] Pod::InputObjects performance de-pessimization
5764 From: marek.rouchal@infineon.com
5765 Date: Wed, 27 Aug 2003 17:25:28 +0200
5766 Message-ID: <9843A649BAD7FB4686F6FCBC840D600E08381508@mucse001.eu.infineon.com>
5767
5768 PodParser-1.25 prerelease.
5769
5770 [ 20929]
5771 Subject: [PATCH] maint / blead tweaks in perlio.c for Cygwin
5772 From: "Gerrit P. Haase" <gp@familiehaase.de>
5773 Date: Thu, 28 Aug 2003 08:18:51 +0200
5774 Message-ID: <4157199551.20030828081851@familiehaase.de>
5775
5776 (changed so that the 'b' is always appended)
5777
5778 [ 20930]
5779 Subject: [PATCH op.c] Perl_newCONSTSUB() related memory leaks
5780 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5781 Date: Thu, 28 Aug 2003 21:47:22 +0200
5782 Message-ID: <006301c36d9d$335976a0$e400a8c0@R2D2>
5783
5784 [ 20931]
5785 Some Ultrix test dodgings.
5786
5787 [ 20932]
5788 Better skip() explicit number of tests, test counts getting
5789 out of sync less likely that way.
5790
5791 (in the change #20989 podchecker.PL changes were ignored since
5792 the maint change #18402 is missing from the blead)
5793 Branch: maint-5.8/perl
5794 !> ext/DynaLoader/dl_mpeix.xs lib/Pod/Checker.pm lib/Pod/Find.pm
5795 !> lib/Pod/InputObjects.pm lib/Pod/Parser.pm mpeix/mpeix.c op.c
5796 !> perlio.c pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
5797 !> t/base/num.t t/op/arith.t t/op/pack.t t/pod/find.t
5798 !> t/pod/poderrs.xr
5799____________________________________________________________________________
5800[ 20933] By: jhi on 2003/08/29 13:25:18
5801 Log: Comparing an int to a U32 makes VC6 nervous.
5802 Branch: perl
5803 ! pp.c pp_hot.c
5804____________________________________________________________________________
5805[ 20932] By: jhi on 2003/08/29 13:06:06
5806 Log: Better skip() explicit number of tests, test counts getting
5807 out of sync less likely that way.
5808 Branch: perl
5809 ! t/op/pack.t
5810____________________________________________________________________________
5811[ 20931] By: jhi on 2003/08/29 12:59:32
5812 Log: Some Ultrix test dodgings.
5813 Branch: perl
5814 ! t/base/num.t t/op/arith.t t/op/pack.t
5815____________________________________________________________________________
5816[ 20930] By: jhi on 2003/08/29 12:57:07
5817 Log: Subject: [PATCH op.c] Perl_newCONSTSUB() related memory leaks
5818 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5819 Date: Thu, 28 Aug 2003 21:47:22 +0200
5820 Message-ID: <006301c36d9d$335976a0$e400a8c0@R2D2>
5821 Branch: perl
5822 ! op.c
5823____________________________________________________________________________
5824[ 20929] By: jhi on 2003/08/29 12:55:12
5825 Log: Subject: [PATCH] maint / blead tweaks in perlio.c for Cygwin
5826 From: "Gerrit P. Haase" <gp@familiehaase.de>
5827 Date: Thu, 28 Aug 2003 08:18:51 +0200
5828 Message-ID: <4157199551.20030828081851@familiehaase.de>
5829
5830 (changed so that the 'b' is always appended)
5831 Branch: perl
5832 ! perlio.c
5833____________________________________________________________________________
5834[ 20928] By: jhi on 2003/08/29 07:04:17
5835 Log: Subject: RE: [PATCH] Pod::InputObjects performance de-pessimization
5836 From: marek.rouchal@infineon.com
5837 Date: Wed, 27 Aug 2003 17:25:28 +0200
5838 Message-ID: <9843A649BAD7FB4686F6FCBC840D600E08381508@mucse001.eu.infineon.com>
5839
5840 PodParser-1.25 prerelease.
5841 Branch: perl
5842 ! lib/Pod/Checker.pm lib/Pod/Find.pm lib/Pod/InputObjects.pm
5843 ! lib/Pod/Parser.pm pod/pod2usage.PL pod/podchecker.PL
5844 ! pod/podselect.PL t/pod/find.t t/pod/poderrs.xr
5845____________________________________________________________________________
5846[ 20927] By: jhi on 2003/08/28 18:53:45
5847 Log: MPE/iX gcc 3.3.1 changes from Mark Klein and Mark Bixby.
5848 Branch: perl
5849 ! ext/DynaLoader/dl_mpeix.xs mpeix/mpeix.c
5850____________________________________________________________________________
5851[ 20926] By: jhi on 2003/08/28 16:45:10
5852 Log: Integrate:
5853 [ 20920]
5854 Add the valgrindpp.pl script from Marcus Holland-Moritz.
5855
5856 [ 20921]
5857 Configure is doing fine in Ultrix, operator error.
5858
5859 [ 20922]
5860 Add caveats and tests for Symbol::delete_package().
5861
5862 [ 20923]
5863 Subject: Re: Another oddity in lib/ExtUtils/MakeMaker/Tutorial.pod
5864 From: Michael G Schwern <schwern@pobox.com>
5865 Date: Wed, 27 Aug 2003 15:05:20 -0700
5866 Message-ID: <20030827220520.GD7300@windhund.schwern.org>
5867
5868 [ 20924]
5869 Subject: [PATCH] Quieten more warnings in Deparse.pm
5870 From: Paul Johnson <paul@pjcj.net>
5871 Date: Thu, 28 Aug 2003 00:13:59 +0200
5872 Message-ID: <20030827221359.GE28396@pjcj.net>
5873
5874 [ 20925]
5875 Subject: [PATCH] valgrindpp.pl
5876 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5877 Date: Thu, 28 Aug 2003 09:43:49 +0200
5878 Message-ID: <002701c36d38$1edb71c0$ae4eeed9@R2D2>
5879 Branch: maint-5.8/perl
5880 +> Porting/valgrindpp.pl
5881 !> MANIFEST ext/B/B/Deparse.pm hints/ultrix_4.sh
5882 !> lib/ExtUtils/MakeMaker/Tutorial.pod lib/Symbol.pm lib/Symbol.t
5883____________________________________________________________________________
5884[ 20925] By: jhi on 2003/08/28 16:15:47
5885 Log: Subject: [PATCH] valgrindpp.pl
5886 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
5887 Date: Thu, 28 Aug 2003 09:43:49 +0200
5888 Message-ID: <002701c36d38$1edb71c0$ae4eeed9@R2D2>
5889 Branch: perl
5890 ! Porting/valgrindpp.pl
5891____________________________________________________________________________
5892[ 20924] By: jhi on 2003/08/28 16:12:08
5893 Log: Subject: [PATCH] Quieten more warnings in Deparse.pm
5894 From: Paul Johnson <paul@pjcj.net>
5895 Date: Thu, 28 Aug 2003 00:13:59 +0200
5896 Message-ID: <20030827221359.GE28396@pjcj.net>
5897 Branch: perl
5898 ! ext/B/B/Deparse.pm
5899____________________________________________________________________________
5900[ 20923] By: jhi on 2003/08/28 01:45:51
5901 Log: Subject: Re: Another oddity in lib/ExtUtils/MakeMaker/Tutorial.pod
5902 From: Michael G Schwern <schwern@pobox.com>
5903 Date: Wed, 27 Aug 2003 15:05:20 -0700
5904 Message-ID: <20030827220520.GD7300@windhund.schwern.org>
5905 Branch: perl
5906 ! lib/ExtUtils/MakeMaker/Tutorial.pod
5907____________________________________________________________________________
5908[ 20922] By: rgs on 2003/08/27 19:52:27
5909 Log: Add caveats and tests for Symbol::delete_package().
5910 Branch: perl
5911 ! lib/Symbol.pm lib/Symbol.t
5912____________________________________________________________________________
5913[ 20921] By: jhi on 2003/08/27 17:12:56
5914 Log: Configure is doing fine in Ultrix, operator error.
5915 Branch: perl
5916 ! hints/ultrix_4.sh
5917____________________________________________________________________________
5918[ 20920] By: jhi on 2003/08/27 16:49:22
5919 Log: Add the valgrindpp.pl script from Marcus Holland-Moritz.
5920 Branch: perl
5921 + Porting/valgrindpp.pl
5922 ! MANIFEST
5923____________________________________________________________________________
5924[ 20919] By: jhi on 2003/08/27 13:46:42
5925 Log: Integrate:
5926 [ 20913]
5927 Integrate two DJGPP portability patches from the 5.6.2 branch :
5928
5929 [20859]
5930 Two portability patches for DJGPP from Richard Dawe
5931 <rich@phekda.freeserve.co.uk>.
5932 Message-Id: <E19qfNh-0000Zq-00@phekda.freeserve.co.uk>
5933
5934 [20911]
5935 Don't uppercase automatically all environment variables on DJGPP.
5936 (reported by Richard Dawe, this breaks portability of Unix
5937 scripts.) Don't change the behaviour on plain MS/DOS.
5938 Branch: maint-5.8/perl
5939 !> djgpp/djgppsed.sh dosish.h perl.c
5940____________________________________________________________________________
5941[ 20918] By: jhi on 2003/08/27 13:15:45
5942 Log: Integrate:
5943 [ 20907]
5944 Maintainer catch from Rafael.
5945
5946 [ 20908]
5947 Subject: [PATCH] minor File::Spec testing cleanup
5948 From: Ken Williams <ken@mathforum.org>
5949 Date: Thu, 21 Aug 2003 22:47:51 -0500
5950 Message-Id: <67C30B63-D453-11D7-8495-003065F6D85A@mathforum.org>
5951
5952 [ 20910]
5953 Change the internal prototype of the pop() and shift() builtins
5954 to (;\@), to reflect that their array argument is optional.
5955
5956 [ 20912]
5957 perlapi.pod tweaks, based on :
5958 Subject: misdocumented return value for sv_setref*
5959 From: Joe Schaefer <joe+perl@sunstarsys.com>
5960 Date: 12 Aug 2003 13:21:42 -0400
5961 Message-ID: <m3adae94gp.fsf@sol.sunstarsys.com>
5962
5963 [ 20916]
5964 Ultrix tweaks: <string.h> must not be included twice
5965 (otherwise one gets prototype conflicts between the <string.h>
5966 and proto.h because Ultrix thinks e.g. Perl_ninstr has been
5967 define in <string.h>...); and Configure misprobes some features.
5968
5969 [ 20917]
5970 Subject: disturbing, disruptive typo in Tutorial.pod [PATCH]
5971 From: "John P. Linderman" <jpl@research.att.com>
5972 Date: Wed, 27 Aug 2003 08:10:12 -0400 (EDT)
5973 Message-Id: <200308271210.IAA23907@raptor.research.att.com>
5974
5975 Subject: typo in pod/perlnewmod.pod [PATCH]
5976 From: "John P. Linderman" <jpl@research.att.com>
5977 Date: Wed, 27 Aug 2003 09:07:12 -0400 (EDT)
5978 Message-Id: <200308271307.JAA46955@raptor.research.att.com>
5979
5980 Subject: [PATCH] document the location of byacc
5981 From: Dave Mitchell <davem@fdgroup.com>
5982 Date: Wed, 27 Aug 2003 14:26:50 +0100
5983 Message-ID: <20030827132650.GA23144@fdgroup.com>
5984 Branch: maint-5.8/perl
5985 !> Porting/Maintainers.pl Porting/pumpkin.pod ext/POSIX/POSIX.xs
5986 !> ext/SDBM_File/sdbm/sdbm.c ext/SDBM_File/sdbm/sdbm.h
5987 !> ext/Socket/Socket.xs hints/ultrix_4.sh
5988 !> lib/ExtUtils/MakeMaker/Tutorial.pod
5989 !> lib/File/Spec/t/rel2abs2rel.t opcode.h opcode.pl perl.h
5990 !> pod/perlapi.pod pod/perlnewmod.pod sv.c
5991____________________________________________________________________________
5992[ 20917] By: jhi on 2003/08/27 13:09:33
5993 Log: Subject: disturbing, disruptive typo in Tutorial.pod [PATCH]
5994 From: "John P. Linderman" <jpl@research.att.com>
5995 Date: Wed, 27 Aug 2003 08:10:12 -0400 (EDT)
5996 Message-Id: <200308271210.IAA23907@raptor.research.att.com>
5997
5998 Subject: typo in pod/perlnewmod.pod [PATCH]
5999 From: "John P. Linderman" <jpl@research.att.com>
6000 Date: Wed, 27 Aug 2003 09:07:12 -0400 (EDT)
6001 Message-Id: <200308271307.JAA46955@raptor.research.att.com>
6002
6003 Subject: [PATCH] document the location of byacc
6004 From: Dave Mitchell <davem@fdgroup.com>
6005 Date: Wed, 27 Aug 2003 14:26:50 +0100
6006 Message-ID: <20030827132650.GA23144@fdgroup.com>
6007 Branch: perl
6008 ! Porting/pumpkin.pod lib/ExtUtils/MakeMaker/Tutorial.pod
6009 ! pod/perlnewmod.pod
6010____________________________________________________________________________
6011[ 20916] By: jhi on 2003/08/27 13:01:26
6012 Log: Ultrix tweaks: <string.h> must not be included twice
6013 (otherwise one gets prototype conflicts between the <string.h>
6014 and proto.h because Ultrix thinks e.g. Perl_ninstr has been
6015 define in <string.h>...); and Configure misprobes some features.
6016 Branch: perl
6017 ! ext/POSIX/POSIX.xs ext/SDBM_File/sdbm/sdbm.c
6018 ! ext/SDBM_File/sdbm/sdbm.h ext/Socket/Socket.xs
6019 ! hints/ultrix_4.sh
6020____________________________________________________________________________
6021[ 20915] By: jhi on 2003/08/27 05:37:34
6022 Log: Urk. In Mac OS X byteorder is not one of the "known ones",
6023 but instead it is 0xFFFF. So retract #20914.
6024 Branch: perl
6025 ! perl.h
6026____________________________________________________________________________
6027[ 20914] By: jhi on 2003/08/27 05:17:44
6028 Log: Sanity check for BYTEORDER.
6029 Branch: perl
6030 ! perl.h
6031____________________________________________________________________________
6032[ 20913] By: rgs on 2003/08/26 20:34:48
6033 Log: Integrate two DJGPP portability patches from the 5.6.2 branch :
6034
6035 [20859]
6036 Two portability patches for DJGPP from Richard Dawe
6037 <rich@phekda.freeserve.co.uk>.
6038 Message-Id: <E19qfNh-0000Zq-00@phekda.freeserve.co.uk>
6039
6040 [20911]
6041 Don't uppercase automatically all environment variables on DJGPP.
6042 (reported by Richard Dawe, this breaks portability of Unix
6043 scripts.) Don't change the behaviour on plain MS/DOS.
6044 Branch: perl
6045 ! perl.c
6046 !> djgpp/djgppsed.sh dosish.h
6047____________________________________________________________________________
6048[ 20912] By: rgs on 2003/08/26 20:15:40
6049 Log: perlapi.pod tweaks, based on :
6050 Subject: misdocumented return value for sv_setref*
6051 From: Joe Schaefer <joe+perl@sunstarsys.com>
6052 Date: 12 Aug 2003 13:21:42 -0400
6053 Message-ID: <m3adae94gp.fsf@sol.sunstarsys.com>
6054 Branch: perl
6055 ! pod/perlapi.pod sv.c
6056____________________________________________________________________________
6057[ 20911] By: rgs on 2003/08/26 20:01:16
6058 Log: Don't uppercase automatically all environment variables on DJGPP.
6059 (reported by Richard Dawe, this breaks portability of Unix
6060 scripts.) Don't change the behaviour on plain MS/DOS.
6061 Branch: maint-5.6
6062 ! perl-5.6.2/perl.c
6063____________________________________________________________________________
6064[ 20910] By: rgs on 2003/08/26 19:37:29
6065 Log: Change the internal prototype of the pop() and shift() builtins
6066 to (;\@), to reflect that their array argument is optional.
6067 Branch: perl
6068 ! opcode.h opcode.pl
6069____________________________________________________________________________
6070[ 20909] By: rgs on 2003/08/26 19:13:39
6071 Log: Subject: [PATCH] improved 19064 (local $_[0] problems)
6072 From: Dave Mitchell <davem@fdgroup.com>
6073 Date: Sun, 24 Aug 2003 15:52:00 +0100
6074 Message-ID: <20030824145159.GA12210@fdgroup.com>
6075 Branch: perl
6076 ! pp_ctl.c pp_hot.c scope.c t/op/args.t
6077____________________________________________________________________________
6078[ 20908] By: rgs on 2003/08/26 18:40:50
6079 Log: Subject: [PATCH] minor File::Spec testing cleanup
6080 From: Ken Williams <ken@mathforum.org>
6081 Date: Thu, 21 Aug 2003 22:47:51 -0500
6082 Message-Id: <67C30B63-D453-11D7-8495-003065F6D85A@mathforum.org>
6083 Branch: perl
6084 ! lib/File/Spec/t/rel2abs2rel.t
6085____________________________________________________________________________
6086[ 20907] By: jhi on 2003/08/26 12:12:14
6087 Log: Maintainer catch from Rafael.
6088 Branch: perl
6089 ! Porting/Maintainers.pl
6090____________________________________________________________________________
6091[ 20906] By: jhi on 2003/08/26 09:38:57
6092 Log: Integrate:
6093 [ 20899]
6094 [perl #23577] fix syscall() prototype description in
6095 perlfunc.pod, as suggested by Lukas Mai.
6096
6097 [ 20900]
6098 More memory lane.
6099
6100 [ 20901]
6101 Subject: Re: [PATCH] valgrind and /#/x
6102 From: Enache Adrian <enache@rdslink.ro>
6103 Date: Tue, 26 Aug 2003 08:11:07 +0300
6104 Message-ID: <20030826051107.GA1086@ratsnest.hole>
6105
6106 [ 20902]
6107 CGI::Carp from CGI.pm 3.00 was missing.
6108
6109 [ 20903]
6110 PerlIO on EBCDIC on BS2000 advice from Thomas Dorner.
6111 (This information looks interesting enough to be mentioned
6112 elsewhere, too.)
6113
6114 [ 20904]
6115 No dynaloading at all in Ultrix.
6116
6117 [ 20905]
6118 Take a cutdown version of the change #20903 also to perlebcdic.
6119 Branch: maint-5.8/perl
6120 !> README.bs2000 hints/ultrix_4.sh lib/CGI/Carp.pm
6121 !> pod/perlebcdic.pod pod/perlfunc.pod regcomp.c t/op/re_tests
6122 !> t/run/fresh_perl.t toke.c
6123____________________________________________________________________________
6124[ 20905] By: jhi on 2003/08/26 09:36:22
6125 Log: Take a cutdown version of the change #20903 also to perlebcdic.
6126 Branch: perl
6127 ! pod/perlebcdic.pod
6128____________________________________________________________________________
6129[ 20904] By: jhi on 2003/08/26 09:29:49
6130 Log: No dynaloading at all in Ultrix.
6131 Branch: perl
6132 ! hints/ultrix_4.sh
6133____________________________________________________________________________
6134[ 20903] By: jhi on 2003/08/26 08:54:02
6135 Log: PerlIO on EBCDIC on BS2000 advice from Thomas Dorner.
6136 (This information looks interesting enough to be mentioned
6137 elsewhere, too.)
6138 Branch: perl
6139 ! README.bs2000
6140____________________________________________________________________________
6141[ 20902] By: jhi on 2003/08/26 08:36:36
6142 Log: CGI::Carp from CGI.pm 3.00 was missing.
6143 Branch: perl
6144 ! lib/CGI/Carp.pm
6145____________________________________________________________________________
6146[ 20901] By: jhi on 2003/08/26 05:18:15
6147 Log: Subject: Re: [PATCH] valgrind and /#/x
6148 From: Enache Adrian <enache@rdslink.ro>
6149 Date: Tue, 26 Aug 2003 08:11:07 +0300
6150 Message-ID: <20030826051107.GA1086@ratsnest.hole>
6151 Branch: perl
6152 ! regcomp.c t/op/re_tests t/run/fresh_perl.t toke.c
6153____________________________________________________________________________
6154[ 20900] By: jhi on 2003/08/26 04:53:09
6155 Log: More memory lane.
6156 Branch: perl
6157 ! hints/ultrix_4.sh
6158____________________________________________________________________________
6159[ 20899] By: rgs on 2003/08/25 21:05:57
6160 Log: fix syscall() prototype description in
6161 perlfunc.pod, as suggested by Lukas Mai.
6162 Branch: perl
6163 ! pod/perlfunc.pod
6164____________________________________________________________________________
6165[ 20898] By: jhi on 2003/08/25 19:59:49
6166 Log: Update Changes.
6167 Branch: maint-5.8/perl
6168 ! Changes patchlevel.h
6169____________________________________________________________________________
6170[ 20897] By: jhi on 2003/08/25 19:56:08
6171 Log: Integrate:
6172 [ 20886]
6173 SunOS 4.1.4 is working, too.
6174
6175 [ 20887]
6176 pat.t -> charnames -> UCD -> Storable,
6177 not good for static builds and minitest.
6178
6179 [ 20888]
6180 The #20887 didn't go over that well;
6181 and add a few more tests from UTS#18.
6182
6183 [ 20889]
6184 More SunOS 4.x info.
6185
6186 [ 20890]
6187 Subject: [5.8.1] maint @ 20845 OK on aix 4.2
6188 From: Jose.auguste-etienne@cgss-guyane.fr
6189 Date: Mon, 25 Aug 2003 14:35:45 -0300
6190 Message-ID: <OF1EF867E8.4A2A43A1-ON03256D8D.005DFE9A@Cgss-Guyane.fr>
6191
6192 AIX Configure advice.
6193
6194 [ 20891]
6195 The new tests of #20888 didn't really test what they claimed to.
6196
6197 [ 20892]
6198 More ptags tweakage from Stas; now add 'fullpath'
6199 option to get absolute paths.
6200
6201 [ 20893]
6202 Subject: more valgrinding: select problem?
6203 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
6204 Date: Mon, 25 Aug 2003 22:02:17 +0200
6205 Message-ID: <008301c36b43$cfe26f10$0c2f1fac@R2D2>
6206
6207 In glibc, just use the __FD_SETSIZE since that's
6208 the size of the buffer (usually 1024 bits, much
6209 more than the selectminbits of 32).
6210
6211 [ 20894]
6212 Subject: [PATCH@20512] make backspace key work for WinCE users
6213 From: Vadim Konovalov <vkonovalov@peterstar.ru>
6214 Date: Tue, 26 Aug 2003 00:10:29 +0400
6215 Message-ID: <135606488000.20030826001029@peterstar.ru>
6216
6217 [ 20895]
6218 Even more SunOS 4 info.
6219
6220 [ 20896]
6221 Tiny doc tweak.
6222 Branch: maint-5.8/perl
6223 !> README.aix README.solaris emacs/ptags hints/sunos_4_1.sh
6224 !> pp_sys.c t/op/pat.t wince/perlmain.c
6225____________________________________________________________________________
6226[ 20896] By: jhi on 2003/08/25 19:52:48
6227 Log: Tiny doc tweak.
6228 Branch: perl
6229 ! README.solaris
6230____________________________________________________________________________
6231[ 20895] By: jhi on 2003/08/25 19:46:31
6232 Log: Even more SunOS 4 info.
6233 Branch: perl
6234 ! README.solaris
6235____________________________________________________________________________
6236[ 20894] By: jhi on 2003/08/25 19:37:00
6237 Log: Subject: [PATCH@20512] make backspace key work for WinCE users
6238 From: Vadim Konovalov <vkonovalov@peterstar.ru>
6239 Date: Tue, 26 Aug 2003 00:10:29 +0400
6240 Message-ID: <135606488000.20030826001029@peterstar.ru>
6241 Branch: perl
6242 ! wince/perlmain.c
6243____________________________________________________________________________
6244[ 20893] By: jhi on 2003/08/25 19:25:08
6245 Log: Subject: more valgrinding: select problem?
6246 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
6247 Date: Mon, 25 Aug 2003 22:02:17 +0200
6248 Message-ID: <008301c36b43$cfe26f10$0c2f1fac@R2D2>
6249
6250 In glibc, just use the __FD_SETSIZE since that's
6251 the size of the buffer (usually 1024 bits, much
6252 more than the selectminbits of 32).
6253 Branch: perl
6254 ! pp_sys.c
6255____________________________________________________________________________
6256[ 20892] By: jhi on 2003/08/25 19:11:32
6257 Log: More ptags tweakage from Stas; now add 'fullpath'
6258 option to get absolute paths.
6259 Branch: perl
6260 ! emacs/ptags
6261____________________________________________________________________________
6262[ 20891] By: jhi on 2003/08/25 18:35:03
6263 Log: The new tests of #20888 didn't really test what they claimed to.
6264 Branch: perl
6265 ! t/op/pat.t
6266____________________________________________________________________________
6267[ 20890] By: jhi on 2003/08/25 18:14:33
6268 Log: Subject: [5.8.1] maint @ 20845 OK on aix 4.2
6269 From: Jose.auguste-etienne@cgss-guyane.fr
6270 Date: Mon, 25 Aug 2003 14:35:45 -0300
6271 Message-ID: <OF1EF867E8.4A2A43A1-ON03256D8D.005DFE9A@Cgss-Guyane.fr>
6272
6273 AIX Configure advice.
6274 Branch: perl
6275 ! README.aix
6276____________________________________________________________________________
6277[ 20889] By: jhi on 2003/08/25 18:08:42
6278 Log: More SunOS 4.x info.
6279 Branch: perl
6280 ! README.solaris
6281____________________________________________________________________________
6282[ 20888] By: jhi on 2003/08/25 17:53:32
6283 Log: The #20887 didn't go over that well;
6284 and add a few more tests from UTS#18.
6285 Branch: perl
6286 ! t/op/pat.t
6287____________________________________________________________________________
6288[ 20887] By: jhi on 2003/08/25 16:40:51
6289 Log: pat.t -> charnames -> UCD -> Storable,
6290 not good for static builds and minitest.
6291 Branch: perl
6292 ! t/op/pat.t
6293____________________________________________________________________________
6294[ 20886] By: jhi on 2003/08/25 16:35:26
6295 Log: SunOS 4.1.4 is working, too.
6296 Branch: perl
6297 ! README.solaris hints/sunos_4_1.sh
6298____________________________________________________________________________
6299[ 20885] By: jhi on 2003/08/25 16:13:44
6300 Log: Regen perlmodlib, perltoc.
6301 Branch: maint-5.8/perl
6302 ! pod/perlmodlib.pod pod/perltoc.pod
6303____________________________________________________________________________
6304[ 20884] By: jhi on 2003/08/25 16:05:18
6305 Log: Regen perlmodlib, perltoc.
6306 Branch: perl
6307 ! pod/perlmodlib.pod pod/perltoc.pod
6308____________________________________________________________________________
6309[ 20883] By: jhi on 2003/08/25 15:49:41
6310 Log: Integrate:
6311 [ 20875]
6312 Upgrade to CGI.pm 3.00.
6313
6314 [ 20876]
6315 Keep the CGI::Util VERSION at 1.31 since there have been changes
6316 since Perl 5.8.0.
6317
6318 [ 20877]
6319 Change the VERSION since there are now changes since Perl 5.8.0.
6320
6321 [ 20878]
6322 Document even more ways of affecting your "utf8ness".
6323
6324 [ 20879]
6325 Subject: Please update my address
6326 From: Ed Avis <ed@membled.com>
6327 Date: Mon, 25 Aug 2003 13:16:45 +0100 (BST)
6328 Message-ID: <Pine.LNX.4.20L2.0308251314530.29902-100000@budvar.future-i.net>
6329
6330 (Just the AUTHORS part, though, I don't think retroactively
6331 updating the Changes* is useful.)
6332
6333 [ 20880]
6334 Subject: [PATCH] valgrind and /#/x
6335 From: Dave Mitchell <davem@fdgroup.com>
6336 Date: Mon, 25 Aug 2003 13:27:49 +0100
6337 Message-ID: <20030825122748.GA15560@fdgroup.com>
6338
6339 [ 20881]
6340 UVSIZE is not yet defined when it would be needed
6341 by MULTIARCH. So go back to LONGSIZE, and (belt-
6342 and-suspenders-and-rope style) later in UVSIZE
6343 possibly redefine BYTEORDER.
6344 Branch: maint-5.8/perl
6345 !> AUTHORS Configure config_h.SH ext/I18N/Langinfo/Langinfo.pm
6346 !> lib/CGI.pm lib/CGI/Util.pm lib/utf8.pm regcomp.c
6347____________________________________________________________________________
6348[ 20882] By: jhi on 2003/08/25 15:46:22
6349 Log: metaconfig changes for #20881.
6350 Branch: metaconfig
6351 ! U/compline/byteorder.U
6352 Branch: metaconfig/U/perl
6353 ! perlxv.U
6354____________________________________________________________________________
6355[ 20881] By: jhi on 2003/08/25 15:45:51
6356 Log: UVSIZE is not yet defined when it would be needed
6357 by MULTIARCH. So go back to LONGSIZE, and (belt-
6358 and-suspenders-and-rope style) later in UVSIZE
6359 possibly redefine BYTEORDER.
6360 Branch: perl
6361 ! Configure config_h.SH
6362____________________________________________________________________________
6363[ 20880] By: jhi on 2003/08/25 11:28:45
6364 Log: Subject: [PATCH] valgrind and /#/x
6365 From: Dave Mitchell <davem@fdgroup.com>
6366 Date: Mon, 25 Aug 2003 13:27:49 +0100
6367 Message-ID: <20030825122748.GA15560@fdgroup.com>
6368 Branch: perl
6369 ! regcomp.c
6370____________________________________________________________________________
6371[ 20879] By: jhi on 2003/08/25 11:16:29
6372 Log: Subject: Please update my address
6373 From: Ed Avis <ed@membled.com>
6374 Date: Mon, 25 Aug 2003 13:16:45 +0100 (BST)
6375 Message-ID: <Pine.LNX.4.20L2.0308251314530.29902-100000@budvar.future-i.net>
6376
6377 (Just the AUTHORS part, though, I don't think retroactively
6378 updating the Changes* is useful.)
6379 Branch: perl
6380 ! AUTHORS
6381____________________________________________________________________________
6382[ 20878] By: jhi on 2003/08/25 11:14:26
6383 Log: Document even more ways of affecting your "utf8ness".
6384 Branch: perl
6385 ! lib/utf8.pm
6386____________________________________________________________________________
6387[ 20877] By: jhi on 2003/08/25 11:11:40
6388 Log: Change the VERSION since there are now changes since Perl 5.8.0.
6389 Branch: perl
6390 ! ext/I18N/Langinfo/Langinfo.pm
6391____________________________________________________________________________
6392[ 20876] By: jhi on 2003/08/25 11:11:13
6393 Log: Keep the CGI::Util VERSION at 1.31 since there have been changes
6394 since Perl 5.8.0.
6395 Branch: perl
6396 ! lib/CGI/Util.pm
6397____________________________________________________________________________
6398[ 20875] By: jhi on 2003/08/25 11:09:49
6399 Log: Upgrade to CGI.pm 3.00.
6400 Branch: perl
6401 ! lib/CGI.pm lib/CGI/Util.pm
6402____________________________________________________________________________
6403[ 20874] By: jhi on 2003/08/25 09:40:24
6404 Log: Update Changes.
6405 Branch: maint-5.8/perl
6406 ! Changes patchlevel.h
6407____________________________________________________________________________
6408[ 20873] By: jhi on 2003/08/25 09:07:58
6409 Log: Integrate:
6410 [ 20864]
6411 s/rationale/rational/g on bigrats.
6412
6413 [ 20865]
6414 An imperfect last resort in case there is no strtoul() but
6415 there is strtol() (like e.g. SunOS 4) because of the Atoul()
6416 in Perl_get_hash_seed()). The only true fix would be to
6417 implement Perl_my_strtoul() (and Perl_my_strtol(), I guess)
6418 in numeric.c.
6419
6420 [ 20866]
6421 IRIX 5.3 is 99.90% okay.
6422
6423 [ 20867]
6424 Various tweaks for getting Perl to compile on SunOS 4.x.
6425 Doesn't work well yet, something broken in DynaLoader/XSLoader?
6426
6427 [ 20868]
6428 MPE/iX doc tweak from Mark Bixby.
6429
6430 [ 20870]
6431 Subject: [patch emacs/ptags] allow xemacs to be used
6432 From: Stas Bekman <stas@stason.org>
6433 Date: Sun, 24 Aug 2003 22:05:00 -0700
6434 Message-ID: <3F4998FC.3090401@stason.org>
6435
6436 [ 20871]
6437 Subject: [PATCH] valgrind memcpy warnings (Re: [PATCH] Re: valgrind as a leak hound?)
6438 From: Nicholas Clark <nick@ccl4.org>
6439 Date: Sun, 24 Aug 2003 16:48:53 +0100
6440 Message-ID: <20030824164851.E558@plum.flirble.org>
6441
6442 [ 20872]
6443 Subject: [PATCH] valgrind update
6444 From: Marcus Holland-Moritz <mhx-perl@gmx.net>
6445 Date: Mon, 25 Aug 2003 09:51:57 +0200 (MEST)
6446 Message-ID: <21671.1061797917@www38.gmx.net>
6447 Branch: maint-5.8/perl
6448 !> README.irix README.mpeix README.solaris doop.c emacs/ptags
6449 !> ext/IO/poll.c hints/irix_5.sh hints/sunos_4_1.sh
6450 !> lib/Math/BigRat.pm lib/bigrat.pm perl.h t/TEST t/op/magic.t
6451____________________________________________________________________________
6452[ 20872] By: jhi on 2003/08/25 09:03:44
6453 Log: Subject: [PATCH] valgrind update
6454 From: Marcus Holland-Moritz <mhx-perl@gmx.net>
6455 Date: Mon, 25 Aug 2003 09:51:57 +0200 (MEST)
6456 Message-ID: <21671.1061797917@www38.gmx.net>
6457 Branch: perl
6458 ! t/TEST t/op/magic.t
6459____________________________________________________________________________
6460[ 20871] By: jhi on 2003/08/25 05:16:02
6461 Log: Subject: [PATCH] valgrind memcpy warnings (Re: [PATCH] Re: valgrind as a leak hound?)
6462 From: Nicholas Clark <nick@ccl4.org>
6463 Date: Sun, 24 Aug 2003 16:48:53 +0100
6464 Message-ID: <20030824164851.E558@plum.flirble.org>
6465 Branch: perl
6466 ! doop.c
6467____________________________________________________________________________
6468[ 20870] By: jhi on 2003/08/25 05:14:04
6469 Log: Subject: [patch emacs/ptags] allow xemacs to be used
6470 From: Stas Bekman <stas@stason.org>
6471 Date: Sun, 24 Aug 2003 22:05:00 -0700
6472 Message-ID: <3F4998FC.3090401@stason.org>
6473 Branch: perl
6474 ! emacs/ptags
6475____________________________________________________________________________
6476[ 20869] By: jhi on 2003/08/25 05:09:45
6477 Log: Cygwin 1.5.x looking better.
6478 Branch: maint-5.8/perl
6479 ! pod/perldelta.pod
6480____________________________________________________________________________
6481[ 20868] By: jhi on 2003/08/24 13:20:03
6482 Log: MPE/iX doc tweak from Mark Bixby.
6483 Branch: perl
6484 ! README.mpeix
6485____________________________________________________________________________
6486[ 20867] By: jhi on 2003/08/24 10:46:42
6487 Log: Various tweaks for getting Perl to compile on SunOS 4.x.
6488 Doesn't work well yet, something broken in DynaLoader/XSLoader?
6489 Branch: perl
6490 ! README.solaris ext/IO/poll.c hints/sunos_4_1.sh
6491____________________________________________________________________________
6492[ 20866] By: jhi on 2003/08/24 10:00:59
6493 Log: IRIX 5.3 is 99.90% okay.
6494 Branch: perl
6495 ! README.irix hints/irix_5.sh
6496____________________________________________________________________________
6497[ 20865] By: jhi on 2003/08/24 08:24:46
6498 Log: An imperfect last resort in case there is no strtoul() but
6499 there is strtol() (like e.g. SunOS 4) because of the Atoul()
6500 in Perl_get_hash_seed()). The only true fix would be to
6501 implement Perl_my_strtoul() (and Perl_my_strtol(), I guess)
6502 in numeric.c.
6503 Branch: perl
6504 ! perl.h
6505____________________________________________________________________________
6506[ 20864] By: jhi on 2003/08/24 07:45:47
6507 Log: s/rationale/rational/g on bigrats.
6508 Branch: perl
6509 ! lib/Math/BigRat.pm lib/bigrat.pm
6510____________________________________________________________________________
6511[ 20863] By: jhi on 2003/08/24 06:43:00
6512 Log: Integrate:
6513 [ 20860]
6514 Bad quote day, noticed by Philip Newton.
6515
6516 [ 20861]
6517 gcc -O3 and Storable in Linux do not like each other.
6518
6519 [ 20862]
6520 Update the CPAN mirrors list.
6521 Branch: maint-5.8/perl
6522 !> ext/Storable/hints/linux.pl hints/dos_djgpp.sh
6523 !> pod/perlmodlib.PL pod/perlmodlib.pod
6524____________________________________________________________________________
6525[ 20862] By: jhi on 2003/08/24 06:41:17
6526 Log: Update the CPAN mirrors list.
6527 Branch: perl
6528 ! pod/perlmodlib.PL pod/perlmodlib.pod
6529____________________________________________________________________________
6530[ 20861] By: jhi on 2003/08/24 06:13:13
6531 Log: gcc -O3 and Storable in Linux do not like each other.
6532 Branch: perl
6533 ! ext/Storable/hints/linux.pl
6534____________________________________________________________________________
6535[ 20860] By: jhi on 2003/08/24 05:34:56
6536 Log: Bad quote day, noticed by Philip Newton.
6537 Branch: perl
6538 ! hints/dos_djgpp.sh
6539____________________________________________________________________________
6540[ 20859] By: rgs on 2003/08/23 20:02:36
6541 Log: Two portability patches for DJGPP from Richard Dawe
6542 <rich@phekda.freeserve.co.uk>.
6543 Message-Id: <E19qfNh-0000Zq-00@phekda.freeserve.co.uk>
6544 Branch: maint-5.6
6545 ! perl-5.6.2/djgpp/djgppsed.sh perl-5.6.2/dosish.h
6546____________________________________________________________________________
6547[ 20858] By: jhi on 2003/08/23 09:21:09
6548 Log: Integrate:
6549 [ 20850]
6550 Subject: [PATCH] Re: valgrind as a leak hound?
6551 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
6552 Date: Fri, 22 Aug 2003 23:28:18 +0200
6553 Message-ID: <002201c368f4$4e5a5e40$0c2f1fac@R2D2>
6554
6555 Add the leak detection to valgrind testing.
6556
6557 [ 20851]
6558 Doc tweaks on perlhack.
6559
6560 [ 20853]
6561 Move the note about known eval leaks earlier.
6562
6563 [ 20854]
6564 More data points about the Storable optimization problem
6565 in Linux. (It might be that also non-Debians are affected,
6566 waiting for more information.)
6567
6568 [ 20855]
6569 Add more comments so that one can see what is supposed to happen.
6570
6571 [ 20856]
6572 Subject: Re: bytecode.t & OS X "Invalid bytecode for this architecture"
6573 From: Enache Adrian <enache@rdslink.ro>
6574 Date: Mon, 4 Aug 2003 16:20:19 +0300
6575 Message-ID: <20030804132019.GA6764@ratsnest.hole>
6576 Branch: maint-5.8/perl
6577 +> t/perl.supp
6578 !> Configure MANIFEST config_h.SH ext/Storable/hints/linux.pl
6579 !> pod/perlhack.pod t/TEST t/op/lc.t
6580____________________________________________________________________________
6581[ 20857] By: jhi on 2003/08/23 09:15:29
6582 Log: metaconfig unit change for #20856.
6583 Branch: metaconfig
6584 ! U/compline/byteorder.U
6585____________________________________________________________________________
6586[ 20856] By: jhi on 2003/08/23 09:15:15
6587 Log: Subject: Re: bytecode.t & OS X "Invalid bytecode for this architecture"
6588 From: Enache Adrian <enache@rdslink.ro>
6589 Date: Mon, 4 Aug 2003 16:20:19 +0300
6590 Message-ID: <20030804132019.GA6764@ratsnest.hole>
6591 Branch: perl
6592 ! Configure config_h.SH
6593____________________________________________________________________________
6594[ 20855] By: jhi on 2003/08/23 07:51:32
6595 Log: Add more comments so that one can see what is supposed to happen.
6596 Branch: perl
6597 ! t/op/lc.t
6598____________________________________________________________________________
6599[ 20854] By: jhi on 2003/08/23 07:41:11
6600 Log: More data points about the Storable optimization problem
6601 in Linux. (It might be that also non-Debians are affected,
6602 waiting for more information.)
6603 Branch: perl
6604 ! ext/Storable/hints/linux.pl
6605____________________________________________________________________________
6606[ 20853] By: jhi on 2003/08/23 07:37:41
6607 Log: Move the note about known eval leaks earlier.
6608 Branch: perl
6609 ! pod/perlhack.pod
6610____________________________________________________________________________
6611[ 20852] By: jhi on 2003/08/23 07:15:58
6612 Log: Forgot to regen byterun.c.
6613 Branch: perl
6614 ! ext/ByteLoader/byterun.c
6615____________________________________________________________________________
6616[ 20851] By: jhi on 2003/08/23 07:13:29
6617 Log: Doc tweaks on perlhack.
6618 Branch: perl
6619 ! pod/perlhack.pod
6620____________________________________________________________________________
6621[ 20850] By: jhi on 2003/08/23 06:54:58
6622 Log: Subject: [PATCH] Re: valgrind as a leak hound?
6623 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
6624 Date: Fri, 22 Aug 2003 23:28:18 +0200
6625 Message-ID: <002201c368f4$4e5a5e40$0c2f1fac@R2D2>
6626
6627 Add the leak detection to valgrind testing.
6628 Branch: perl
6629 + t/perl.supp
6630 ! MANIFEST pod/perlhack.pod t/TEST
6631____________________________________________________________________________
6632[ 20849] By: rgs on 2003/08/22 21:45:20
6633 Log: Integrate Test::More, Test::Builder and Test::Simple,
6634 from bleadperl. Pulling in dependencies, I had to integrate if.pm
6635 as well (it's used in some tests.)
6636 Branch: maint-5.6
6637 + perl-5.6.2/lib/Test/Builder.pm perl-5.6.2/lib/Test/More.pm
6638 + perl-5.6.2/lib/Test/Simple.pm
6639 + perl-5.6.2/lib/Test/Simple/Changes
6640 + perl-5.6.2/lib/Test/Simple/README
6641 + perl-5.6.2/lib/Test/Simple/t/Builder.t
6642 + perl-5.6.2/lib/Test/Simple/t/More.t
6643 + perl-5.6.2/lib/Test/Simple/t/bad_plan.t
6644 + perl-5.6.2/lib/Test/Simple/t/buffer.t
6645 + perl-5.6.2/lib/Test/Simple/t/curr_test.t
6646 + perl-5.6.2/lib/Test/Simple/t/details.t
6647 + perl-5.6.2/lib/Test/Simple/t/diag.t
6648 + perl-5.6.2/lib/Test/Simple/t/exit.t
6649 + perl-5.6.2/lib/Test/Simple/t/extra.t
6650 + perl-5.6.2/lib/Test/Simple/t/fail-like.t
6651 + perl-5.6.2/lib/Test/Simple/t/fail-more.t
6652 + perl-5.6.2/lib/Test/Simple/t/fail.t
6653 + perl-5.6.2/lib/Test/Simple/t/filehandles.t
6654 + perl-5.6.2/lib/Test/Simple/t/fork.t
6655 + perl-5.6.2/lib/Test/Simple/t/has_plan.t
6656 + perl-5.6.2/lib/Test/Simple/t/has_plan2.t
6657 + perl-5.6.2/lib/Test/Simple/t/import.t
6658 + perl-5.6.2/lib/Test/Simple/t/is_deeply.t
6659 + perl-5.6.2/lib/Test/Simple/t/maybe_regex.t
6660 + perl-5.6.2/lib/Test/Simple/t/missing.t
6661 + perl-5.6.2/lib/Test/Simple/t/no_ending.t
6662 + perl-5.6.2/lib/Test/Simple/t/no_header.t
6663 + perl-5.6.2/lib/Test/Simple/t/no_plan.t
6664 + perl-5.6.2/lib/Test/Simple/t/ok_obj.t
6665 + perl-5.6.2/lib/Test/Simple/t/output.t
6666 + perl-5.6.2/lib/Test/Simple/t/plan.t
6667 + perl-5.6.2/lib/Test/Simple/t/plan_is_noplan.t
6668 + perl-5.6.2/lib/Test/Simple/t/plan_no_plan.t
6669 + perl-5.6.2/lib/Test/Simple/t/plan_skip_all.t
6670 + perl-5.6.2/lib/Test/Simple/t/simple.t
6671 + perl-5.6.2/lib/Test/Simple/t/skip.t
6672 + perl-5.6.2/lib/Test/Simple/t/skipall.t
6673 + perl-5.6.2/lib/Test/Simple/t/strays.t
6674 + perl-5.6.2/lib/Test/Simple/t/threads.t
6675 + perl-5.6.2/lib/Test/Simple/t/todo.t
6676 + perl-5.6.2/lib/Test/Simple/t/undef.t
6677 + perl-5.6.2/lib/Test/Simple/t/use_ok.t
6678 + perl-5.6.2/lib/Test/Simple/t/useing.t
6679 + perl-5.6.2/lib/Test/Tutorial.pod perl-5.6.2/lib/if.pm
6680 + perl-5.6.2/lib/if.t perl-5.6.2/t/lib/Test/Simple/Catch.pm
6681 + perl-5.6.2/t/lib/Test/Simple/sample_tests/death.plx
6682 + perl-5.6.2/t/lib/Test/Simple/sample_tests/death_in_eval.plx
6683 + perl-5.6.2/t/lib/Test/Simple/sample_tests/extras.plx
6684 + perl-5.6.2/t/lib/Test/Simple/sample_tests/five_fail.plx
6685 + perl-5.6.2/t/lib/Test/Simple/sample_tests/last_minute_death.pl
6686 + x perl-5.6.2/t/lib/Test/Simple/sample_tests/one_fail.plx
6687 + perl-5.6.2/t/lib/Test/Simple/sample_tests/pre_plan_death.plx
6688 + perl-5.6.2/t/lib/Test/Simple/sample_tests/require.plx
6689 + perl-5.6.2/t/lib/Test/Simple/sample_tests/success.plx
6690 + perl-5.6.2/t/lib/Test/Simple/sample_tests/too_few.plx
6691 + perl-5.6.2/t/lib/Test/Simple/sample_tests/two_fail.plx
6692 + perl-5.6.2/t/lib/TieOut.pm
6693 ! perl-5.6.2/MANIFEST
6694____________________________________________________________________________
6695[ 20848] By: rgs on 2003/08/22 20:51:02
6696 Log: Upgrade to Test 1.24 (from bleadperl)
6697 Branch: maint-5.6
6698 + perl-5.6.2/lib/Test/t/fail.t perl-5.6.2/lib/Test/t/mix.t
6699 + perl-5.6.2/lib/Test/t/onfail.t perl-5.6.2/lib/Test/t/qr.t
6700 + perl-5.6.2/lib/Test/t/skip.t perl-5.6.2/lib/Test/t/success.t
6701 + perl-5.6.2/lib/Test/t/todo.t
6702 ! perl-5.6.2/MANIFEST perl-5.6.2/lib/Test.pm
6703____________________________________________________________________________
6704[ 20847] By: rgs on 2003/08/22 20:07:32
6705 Log: Two tests were failing after the Test::Harness upgrade, because
6706 they use Test, that loads Test::Harness, that doesn't load FileHandle
6707 anymore.
6708 Branch: maint-5.6
6709 ! perl-5.6.2/t/lib/ftmp-mktemp.t perl-5.6.2/t/lib/ftmp-posix.t
6710____________________________________________________________________________
6711[ 20846] By: rgs on 2003/08/22 20:05:52
6712 Log: Upgrade to Test::Harness 2.30, and get t/harness from bleadperl
6713 (more or less, due to the different set of directories to scan
6714 for tests)
6715 Branch: maint-5.6
6716 + perl-5.6.2/lib/Test/Harness/Assert.pm
6717 + perl-5.6.2/lib/Test/Harness/Changes
6718 + perl-5.6.2/lib/Test/Harness/Iterator.pm
6719 + perl-5.6.2/lib/Test/Harness/Straps.pm
6720 + perl-5.6.2/lib/Test/Harness/t/00compile.t
6721 + perl-5.6.2/lib/Test/Harness/t/assert.t
6722 + perl-5.6.2/lib/Test/Harness/t/base.t
6723 + perl-5.6.2/lib/Test/Harness/t/callback.t
6724 + perl-5.6.2/lib/Test/Harness/t/nonumbers.t
6725 + perl-5.6.2/lib/Test/Harness/t/ok.t
6726 + perl-5.6.2/lib/Test/Harness/t/pod.t
6727 + perl-5.6.2/lib/Test/Harness/t/strap-analyze.t
6728 + perl-5.6.2/lib/Test/Harness/t/strap.t
6729 + perl-5.6.2/lib/Test/Harness/t/test-harness.t
6730 + perl-5.6.2/t/lib/sample-tests/bailout
6731 + perl-5.6.2/t/lib/sample-tests/bignum
6732 + perl-5.6.2/t/lib/sample-tests/combined
6733 + perl-5.6.2/t/lib/sample-tests/descriptive
6734 + perl-5.6.2/t/lib/sample-tests/die
6735 + perl-5.6.2/t/lib/sample-tests/die_head_end
6736 + perl-5.6.2/t/lib/sample-tests/die_last_minute
6737 + perl-5.6.2/t/lib/sample-tests/duplicates
6738 + perl-5.6.2/t/lib/sample-tests/head_end
6739 + perl-5.6.2/t/lib/sample-tests/head_fail
6740 + perl-5.6.2/t/lib/sample-tests/lone_not_bug
6741 + perl-5.6.2/t/lib/sample-tests/no_nums
6742 + perl-5.6.2/t/lib/sample-tests/no_output
6743 + perl-5.6.2/t/lib/sample-tests/out_of_order
6744 + perl-5.6.2/t/lib/sample-tests/segfault
6745 + perl-5.6.2/t/lib/sample-tests/shbang_misparse
6746 + perl-5.6.2/t/lib/sample-tests/simple
6747 + perl-5.6.2/t/lib/sample-tests/simple_fail
6748 + perl-5.6.2/t/lib/sample-tests/skip
6749 + perl-5.6.2/t/lib/sample-tests/skip_nomsg
6750 + perl-5.6.2/t/lib/sample-tests/skipall
6751 + perl-5.6.2/t/lib/sample-tests/skipall_nomsg
6752 + perl-5.6.2/t/lib/sample-tests/switches
6753 + perl-5.6.2/t/lib/sample-tests/taint
6754 + perl-5.6.2/t/lib/sample-tests/todo
6755 + perl-5.6.2/t/lib/sample-tests/todo_inline
6756 + perl-5.6.2/t/lib/sample-tests/too_many
6757 + perl-5.6.2/t/lib/sample-tests/vms_nit
6758 + perl-5.6.2/t/lib/sample-tests/with_comments
6759 ! perl-5.6.2/MANIFEST perl-5.6.2/lib/Test/Harness.pm
6760 ! perl-5.6.2/t/harness
6761____________________________________________________________________________
6762[ 20845] By: jhi on 2003/08/22 15:23:12
6763 Log: Update Changes.
6764 Branch: maint-5.8/perl
6765 ! Changes patchlevel.h
6766____________________________________________________________________________
6767[ 20844] By: jhi on 2003/08/22 15:07:15
6768 Log: Integrate:
6769 [ 20842]
6770 Try to dodge getspnam() in AIX.
6771
6772 [ 20843]
6773 Oops. Why can't C comments nest?
6774 Branch: maint-5.8/perl
6775 !> pp_sys.c
6776____________________________________________________________________________
6777[ 20843] By: jhi on 2003/08/22 15:05:39
6778 Log: Oops. Why can't C comments nest?
6779 Branch: perl
6780 ! pp_sys.c
6781____________________________________________________________________________
6782[ 20842] By: jhi on 2003/08/22 14:57:09
6783 Log: Try to dodge getspnam() in AIX.
6784 Branch: perl
6785 ! pp_sys.c
6786____________________________________________________________________________
6787[ 20841] By: jhi on 2003/08/22 13:53:37
6788 Log: Integrate:
6789 [ 20839]
6790 Subject: [PATCH] for File::Temp::tempdir(CLEANUP => 1)
6791 From: Slaven Rezic <slaven@rezic.de>
6792 Date: Sun, 17 Aug 2003 12:52:47 +0200 (CEST)
6793 Message-Id: <200308171052.h7HAqlfo026317@vran.herceg.de>
6794
6795 [ 20840]
6796 Subject: Re: mysterious bytecode.t failure
6797 From: Enache Adrian <enache@rdslink.ro>
6798 Date: Fri, 22 Aug 2003 11:49:34 +0300
6799 Message-ID: <20030822084934.GA1257@ratsnest.hole>
6800 Branch: maint-5.8/perl
6801 !> lib/File/Temp.pm lib/File/Temp/t/tempfile.t t/base/lex.t
6802____________________________________________________________________________
6803[ 20840] By: jhi on 2003/08/22 13:52:26
6804 Log: Subject: Re: mysterious bytecode.t failure
6805 From: Enache Adrian <enache@rdslink.ro>
6806 Date: Fri, 22 Aug 2003 11:49:34 +0300
6807 Message-ID: <20030822084934.GA1257@ratsnest.hole>
6808 Branch: perl
6809 ! t/base/lex.t
6810____________________________________________________________________________
6811[ 20839] By: jhi on 2003/08/22 13:51:44
6812 Log: Subject: [PATCH] for File::Temp::tempdir(CLEANUP => 1)
6813 From: Slaven Rezic <slaven@rezic.de>
6814 Date: Sun, 17 Aug 2003 12:52:47 +0200 (CEST)
6815 Message-Id: <200308171052.h7HAqlfo026317@vran.herceg.de>
6816 Branch: perl
6817 ! lib/File/Temp.pm lib/File/Temp/t/tempfile.t
6818____________________________________________________________________________
6819[ 20838] By: jhi on 2003/08/22 13:43:19
6820 Log: Integrate:
6821 [ 20837]
6822 Just #.
6823 Branch: maint-5.8/perl
6824 !> pod/buildtoc pod/perltoc.pod
6825____________________________________________________________________________
6826[ 20837] By: jhi on 2003/08/22 13:42:24
6827 Log: Just #.
6828 Branch: perl
6829 ! pod/buildtoc pod/perltoc.pod
6830____________________________________________________________________________
6831[ 20836] By: jhi on 2003/08/22 13:34:08
6832 Log: Integrate:
6833 [ 20831]
6834 Rafael spotted that vms/perlvms.pod was still referred to.
6835
6836 [ 20832]
6837 Retract #20826 and #20831; things are done differently
6838 in VMS, it seems. Maybe the vms/descrip_mms.template
6839 needs to be changed?
6840
6841 [ 20833]
6842 In the vms/descrip_mms.template the perlvms.pod must
6843 be copied from vms/, err, [.vms], not [.pod].
6844
6845 [ 20834]
6846 Also MANIFEST the vms/perlvms restoration.
6847
6848 [ 20835]
6849 Regen toc.
6850 Branch: maint-5.8/perl
6851 +> vms/perlvms.pod
6852 - pod/perlvms.pod
6853 !> MANIFEST Makefile.SH pod/buildtoc pod/perltoc.pod
6854 !> vms/descrip_mms.template
6855____________________________________________________________________________
6856[ 20835] By: jhi on 2003/08/22 13:32:12
6857 Log: Regen toc.
6858 Branch: perl
6859 ! pod/perltoc.pod
6860____________________________________________________________________________
6861[ 20834] By: jhi on 2003/08/22 13:28:36
6862 Log: Also MANIFEST the vms/perlvms restoration.
6863 Branch: perl
6864 ! MANIFEST
6865____________________________________________________________________________
6866[ 20833] By: jhi on 2003/08/22 13:22:02
6867 Log: In the vms/descrip_mms.template the perlvms.pod must
6868 be copied from vms/, err, [.vms], not [.pod].
6869 Branch: perl
6870 ! pod/buildtoc vms/descrip_mms.template
6871____________________________________________________________________________
6872[ 20832] By: jhi on 2003/08/22 13:15:35
6873 Log: Retract #20826 and #20831; things are done differently
6874 in VMS, it seems. Maybe the vms/descrip_mms.template
6875 needs to be changed?
6876 Branch: perl
6877 + vms/perlvms.pod
6878 - pod/perlvms.pod
6879 ! MANIFEST Makefile.SH
6880____________________________________________________________________________
6881[ 20831] By: jhi on 2003/08/22 13:04:47
6882 Log: Rafael spotted that vms/perlvms.pod was still referred to.
6883 Branch: perl
6884 ! Makefile.SH
6885____________________________________________________________________________
6886[ 20830] By: jhi on 2003/08/22 12:28:15
6887 Log: Integrate:
6888 [ 20819]
6889 Subject: [PATCH] grok_* symbols missing in Devel::PPPort (2nd attempt)
6890 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
6891 Date: Fri, 22 Aug 2003 09:01:09 +0200
6892 Message-id: <20030822070109.GA1029@ethan>
6893
6894 [ 20820]
6895 Advertise the encoding pragma at the utf8 pragma.
6896
6897 [ 20821]
6898 Put the tests of the change #19064 back, but disable them.
6899
6900 [ 20822]
6901 Try to make the use of utf8 as clear as possible.
6902
6903 [ 20823]
6904 Subject: Re: [perl #23463]: compiler version on sparc/netbsd
6905 From: alian@cpan.org (Alian)
6906 Date: Wed, 20 Aug 2003 20:39:17 +0200
6907 Message-ID: <3F43C055.6030709@jupiter.alianet>
6908
6909 [ 20824]
6910 Subject: [PATCH] Re: [perl #23463] compiler version on sparc/netbsd
6911 From: Nicholas Clark <nick@ccl4.org>
6912 Date: Thu, 21 Aug 2003 22:26:18 +0100
6913 Message-ID: <20030821222618.T558@plum.flirble.org>
6914
6915 [ 20825]
6916 Lower Storable.xs optimization to -O2 on certain
6917 known platforms.
6918
6919 [ 20826]
6920 perlvms moving day, from Craig Berry.
6921
6922 [ 20828]
6923 Subject: [PATCH: lib/File/Path.t] Re: maint @ 20803
6924 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
6925 Date: Fri, 22 Aug 2003 14:57:09 +0200
6926 Message-ID: <00dd01c368ac$e69146d0$0c2f1fac@R2D2>
6927
6928 [ 20829]
6929 The change #20809 opened up a code path that might leave s unset.
6930 Branch: maint-5.8/perl
6931 +> ext/Storable/hints/linux.pl pod/perlvms.pod
6932 - vms/perlvms.pod
6933 !> MANIFEST ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
6934 !> ext/Devel/PPPort/t/test.t lib/File/Path.t lib/utf8.pm mg.c
6935 !> t/op/args.t t/op/pack.t
6936____________________________________________________________________________
6937[ 20829] By: jhi on 2003/08/22 12:22:04
6938 Log: The change #20809 opened up a code path that might leave s unset.
6939 Branch: perl
6940 ! mg.c
6941____________________________________________________________________________
6942[ 20828] By: jhi on 2003/08/22 12:17:49
6943 Log: Subject: [PATCH: lib/File/Path.t] Re: maint @ 20803
6944 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
6945 Date: Fri, 22 Aug 2003 14:57:09 +0200
6946 Message-ID: <00dd01c368ac$e69146d0$0c2f1fac@R2D2>
6947 Branch: perl
6948 ! lib/File/Path.t
6949____________________________________________________________________________
6950[ 20827] By: jhi on 2003/08/22 12:17:01
6951 Log: Test the correct longness; from Enache.
6952 Branch: perl
6953 ! ext/B/t/assembler.t
6954____________________________________________________________________________
6955[ 20826] By: jhi on 2003/08/22 12:15:28
6956 Log: perlvms moving day, from Craig Berry.
6957 Branch: perl
6958 + pod/perlvms.pod
6959 - vms/perlvms.pod
6960 ! MANIFEST
6961____________________________________________________________________________
6962[ 20825] By: jhi on 2003/08/22 12:14:14
6963 Log: Lower Storable.xs optimization to -O2 on certain
6964 known platforms.
6965 Branch: perl
6966 + ext/Storable/hints/linux.pl
6967 ! MANIFEST
6968____________________________________________________________________________
6969[ 20824] By: jhi on 2003/08/22 08:20:15
6970 Log: Subject: [PATCH] Re: [perl #23463] compiler version on sparc/netbsd
6971 From: Nicholas Clark <nick@ccl4.org>
6972 Date: Thu, 21 Aug 2003 22:26:18 +0100
6973 Message-ID: <20030821222618.T558@plum.flirble.org>
6974 Branch: perl
6975 ! t/op/pack.t
6976____________________________________________________________________________
6977[ 20823] By: jhi on 2003/08/22 08:16:47
6978 Log: Subject: Re: [perl #23463]: compiler version on sparc/netbsd
6979 From: alian@cpan.org (Alian)
6980 Date: Wed, 20 Aug 2003 20:39:17 +0200
6981 Message-ID: <3F43C055.6030709@jupiter.alianet>
6982 Branch: perl
6983 ! t/op/pack.t
6984____________________________________________________________________________
6985[ 20822] By: jhi on 2003/08/22 08:01:57
6986 Log: Try to make the use of utf8 as clear as possible.
6987 Branch: perl
6988 ! lib/utf8.pm
6989____________________________________________________________________________
6990[ 20821] By: jhi on 2003/08/22 07:51:21
6991 Log: Put the tests of the change #19064 back, but disable them.
6992 Branch: perl
6993 ! t/op/args.t
6994____________________________________________________________________________
6995[ 20820] By: jhi on 2003/08/22 06:47:50
6996 Log: Advertise the encoding pragma at the utf8 pragma.
6997 Branch: perl
6998 ! lib/utf8.pm
6999____________________________________________________________________________
7000[ 20819] By: jhi on 2003/08/22 06:31:29
7001 Log: Subject: [PATCH] grok_* symbols missing in Devel::PPPort (2nd attempt)
7002 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
7003 Date: Fri, 22 Aug 2003 09:01:09 +0200
7004 Message-id: <20030822070109.GA1029@ethan>
7005 Branch: perl
7006 ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
7007 ! ext/Devel/PPPort/t/test.t
7008____________________________________________________________________________
7009[ 20818] By: jhi on 2003/08/22 05:54:24
7010 Log: Integrate:
7011 [ 20804]
7012 Fix the syswrite downgrade bug of
7013 [perl #23428] Somethings rotten in unicode semantics
7014
7015 [ 20805]
7016 Subject: [PATCH] utf8 variable names scrambled in error messages
7017 From: Enache Adrian <enache@rdslink.ro>
7018 Date: Thu, 21 Aug 2003 21:17:26 +0300
7019 Message-ID: <20030821181726.GA1241@ratsnest.hole>
7020
7021 [ 20806]
7022 Subject: [perluniintro.pod] pod markup fix
7023 From: Stas Bekman <stas@stason.org>
7024 Date: Thu, 21 Aug 2003 11:41:01 -0700
7025 Message-ID: <3F45123D.8020805@stason.org>
7026
7027 [ 20807]
7028 Must close so that unlink works portably.
7029
7030 [ 20808]
7031 Mention the Unicode UTR #18 version referenced.
7032
7033 [ 20809]
7034 The magic variables that alter STDOUT have a tendancy to segfault
7035 when accessed if STDOUT is undefined. Protect them.
7036
7037 [ 20811]
7038 No need to E<gt>.
7039
7040 [ 20812]
7041 Somehow missed 0.14 from the maint.
7042
7043 [ 20813]
7044 Subject: [PATCH] Re: pod cleanup
7045 From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
7046 Date: Thu, 21 Aug 2003 17:09:17 -0400
7047 Message-ID: <20030821210917.GB164965@linguist.thayer.dartmouth.edu>
7048
7049 (the pod part)
7050
7051 [ 20814]
7052 Do not edit perltoc since it is autogenerated.
7053
7054 [ 20815]
7055 Subject: Re: pod cleanup
7056 From: Ken Williams <ken@mathforum.org>
7057 Date: Thu, 21 Aug 2003 21:24:57 -0500
7058 Message-Id: <D2C0AA31-D447-11D7-8495-003065F6D85A@mathforum.org>
7059
7060 [ 20817]
7061 Subject: [PATCH] perl-5.8.0, langinfo.h and YESSTR
7062 From: insecure <insecure@mail.od.ua>
7063 Date: Thu, 21 Aug 2003 21:37:56 +0300
7064 Message-Id: <200308212137.57016.insecure@mail.od.ua>
7065 Branch: maint-5.8/perl
7066 !> ext/I18N/Langinfo/Langinfo.xs gv.c lib/File/Spec/Cygwin.pm
7067 !> lib/File/Spec/OS2.pm mg.c pod/buildtoc pod/perl5005delta.pod
7068 !> pod/perlfaq4.pod pod/perlhack.pod pod/perlipc.pod
7069 !> pod/perlpacktut.pod pod/perlunicode.pod pod/perluniintro.pod
7070 !> pp_sys.c t/io/utf8.t t/op/die.t
7071____________________________________________________________________________
7072[ 20817] By: jhi on 2003/08/22 05:18:53
7073 Log: Subject: [PATCH] perl-5.8.0, langinfo.h and YESSTR
7074 From: insecure <insecure@mail.od.ua>
7075 Date: Thu, 21 Aug 2003 21:37:56 +0300
7076 Message-Id: <200308212137.57016.insecure@mail.od.ua>
7077 Branch: perl
7078 ! ext/I18N/Langinfo/Langinfo.xs
7079____________________________________________________________________________
7080[ 20816] By: jhi on 2003/08/22 05:15:30
7081 Log: More bytecode patching from Enache.
7082 Branch: perl
7083 ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
7084 ! ext/B/B/Disassembler.pm ext/ByteLoader/bytecode.h
7085____________________________________________________________________________
7086[ 20815] By: jhi on 2003/08/22 05:06:58
7087 Log: Subject: Re: pod cleanup
7088 From: Ken Williams <ken@mathforum.org>
7089 Date: Thu, 21 Aug 2003 21:24:57 -0500
7090 Message-Id: <D2C0AA31-D447-11D7-8495-003065F6D85A@mathforum.org>
7091 Branch: perl
7092 ! lib/File/Spec/Cygwin.pm lib/File/Spec/OS2.pm
7093____________________________________________________________________________
7094[ 20814] By: jhi on 2003/08/22 05:05:52
7095 Log: Do not edit perltoc since it is autogenerated.
7096 Branch: perl
7097 ! pod/buildtoc
7098____________________________________________________________________________
7099[ 20813] By: jhi on 2003/08/22 04:57:12
7100 Log: Subject: [PATCH] Re: pod cleanup
7101 From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
7102 Date: Thu, 21 Aug 2003 17:09:17 -0400
7103 Message-ID: <20030821210917.GB164965@linguist.thayer.dartmouth.edu>
7104
7105 (the pod part)
7106 Branch: perl
7107 ! pod/perl5005delta.pod pod/perlfaq4.pod pod/perlhack.pod
7108 ! pod/perlipc.pod pod/perlpacktut.pod
7109____________________________________________________________________________
7110[ 20812] By: jhi on 2003/08/22 04:49:11
7111 Log: Somehow missed 0.14 from the maint.
7112 Branch: maint-5.8/perl
7113 +> lib/File/Temp/t/object.t
7114 !> MANIFEST lib/File/Temp.pm
7115____________________________________________________________________________
7116[ 20811] By: jhi on 2003/08/22 04:46:58
7117 Log: No need to E<gt>.
7118 Branch: perl
7119 ! pod/perluniintro.pod
7120____________________________________________________________________________
7121[ 20810] By: jhi on 2003/08/22 04:46:01
7122 Log: Add File::Temp's OO test.
7123 Branch: perl
7124 + lib/File/Temp/t/object.t
7125 ! MANIFEST
7126____________________________________________________________________________
7127[ 20809] By: rgs on 2003/08/21 19:07:22
7128 Log: The magic variables that alter STDOUT have a tendancy to segfault
7129 when accessed if STDOUT is undefined. Protect them.
7130 Branch: perl
7131 ! mg.c
7132____________________________________________________________________________
7133[ 20808] By: jhi on 2003/08/21 18:39:36
7134 Log: Mention the Unicode UTR #18 version referenced.
7135 Branch: perl
7136 ! pod/perlunicode.pod
7137____________________________________________________________________________
7138[ 20807] By: jhi on 2003/08/21 18:22:22
7139 Log: Must close so that unlink works portably.
7140 Branch: perl
7141 ! t/io/utf8.t
7142____________________________________________________________________________
7143[ 20806] By: jhi on 2003/08/21 18:15:07
7144 Log: Subject: [perluniintro.pod] pod markup fix
7145 From: Stas Bekman <stas@stason.org>
7146 Date: Thu, 21 Aug 2003 11:41:01 -0700
7147 Message-ID: <3F45123D.8020805@stason.org>
7148 Branch: perl
7149 ! pod/perluniintro.pod
7150____________________________________________________________________________
7151[ 20805] By: jhi on 2003/08/21 18:11:30
7152 Log: Subject: [PATCH] utf8 variable names scrambled in error messages
7153 From: Enache Adrian <enache@rdslink.ro>
7154 Date: Thu, 21 Aug 2003 21:17:26 +0300
7155 Message-ID: <20030821181726.GA1241@ratsnest.hole>
7156 Branch: perl
7157 ! gv.c t/op/die.t
7158____________________________________________________________________________
7159[ 20804] By: jhi on 2003/08/21 18:09:10
7160 Log: Fix the syswrite downgrade bug of
7161 [perl #23428] Somethings rotten in unicode semantics
7162 Branch: perl
7163 ! pp_sys.c t/io/utf8.t
7164____________________________________________________________________________
7165[ 20803] By: jhi on 2003/08/21 15:34:44
7166 Log: Update Changes.
7167 Branch: maint-5.8/perl
7168 ! Changes patchlevel.h
7169____________________________________________________________________________
7170[ 20802] By: jhi on 2003/08/21 15:07:17
7171 Log: Integrate:
7172 [ 20801]
7173 No more public cwd(), use private _cwd().
7174 Branch: maint-5.8/perl
7175 !> lib/File/Spec/t/Spec.t
7176____________________________________________________________________________
7177[ 20801] By: jhi on 2003/08/21 15:06:16
7178 Log: No more public cwd(), use private _cwd().
7179 Branch: perl
7180 ! lib/File/Spec/t/Spec.t
7181____________________________________________________________________________
7182[ 20800] By: jhi on 2003/08/21 14:35:19
7183 Log: Integrate:
7184 [ 20797]
7185 Subject: Re: [PATCH: perl@20760] clean up quotation issue for use with MMS on VMS
7186 From: PPrymmer@factset.com
7187 Message-ID: <OF261B78F0.19FBE242-ON85256D88.00091B48-85256D88.000A179D@factset.com>
7188 Date: Tue, 19 Aug 2003 21:50:12 -0400
7189
7190 [ 20798]
7191 Rename the internal cwd() to _cwd() (it's not curdir).
7192
7193 [ 20799]
7194 Underline the fact that abs2rel() makes no sense
7195 if it spans multiple roots.
7196 Branch: maint-5.8/perl
7197 !> lib/ExtUtils/MM_Unix.pm lib/File/Spec.pm
7198 !> lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
7199 !> lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
7200 !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
7201 !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
7202____________________________________________________________________________
7203[ 20799] By: jhi on 2003/08/21 14:20:04
7204 Log: Underline the fact that abs2rel() makes no sense
7205 if it spans multiple roots.
7206 Branch: perl
7207 ! lib/File/Spec.pm lib/File/Spec/Unix.pm
7208____________________________________________________________________________
7209[ 20798] By: jhi on 2003/08/21 14:12:29
7210 Log: Rename the internal cwd() to _cwd() (it's not curdir).
7211 Branch: perl
7212 ! lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
7213 ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
7214 ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
7215 ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
7216____________________________________________________________________________
7217[ 20797] By: jhi on 2003/08/21 14:05:18
7218 Log: Subject: Re: [PATCH: perl@20760] clean up quotation issue for use with MMS on VMS
7219 From: PPrymmer@factset.com
7220 Message-ID: <OF261B78F0.19FBE242-ON85256D88.00091B48-85256D88.000A179D@factset.com>
7221 Date: Tue, 19 Aug 2003 21:50:12 -0400
7222 Branch: perl
7223 ! lib/ExtUtils/MM_Unix.pm
7224____________________________________________________________________________
7225[ 20796] By: jhi on 2003/08/21 04:51:00
7226 Log: Integrate:
7227 [ 20785]
7228 Manifest.t.ation of Schwern.
7229
7230 [ 20786]
7231 t/TEST fails to fail when it can't find tests.
7232
7233 [ 20789]
7234 Patch from Enache for the crashing of bytecode.t in Tru64.
7235
7236 [ 20790]
7237 Upgrade to Encode 1.98.
7238
7239 [ 20791]
7240 Subject: [PATCH perl@20760] Remove redundant targets from Win32 Makefile
7241 From: Steve Hay <steve.hay@uk.radan.com>
7242 Date: Wed, 20 Aug 2003 10:54:46 +0100
7243 Message-ID: <3F434566.3030602@uk.radan.com>
7244
7245 [ 20793]
7246 Subject: Re: untieing your victim during the act
7247 From: Dave Mitchell <davem@fdgroup.com>
7248 Date: Wed, 20 Aug 2003 20:44:53 +0100
7249 Message-ID: <20030820194453.GD27719@fdgroup.com>
7250
7251 [ 20794]
7252 MPE/iX does not have nanosleep() (the test makes
7253 a wrong conclusion of the linking succeeding)
7254
7255 [ 20795]
7256 Retract #19064, broke mod_perl flushing (localisation of $|).
7257 http://public.activestate.com/cgi-bin/perlbrowse?patch=19064
7258 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01466.html
7259 Branch: maint-5.8/perl
7260 !> (integrate 26 files)
7261____________________________________________________________________________
7262[ 20795] By: jhi on 2003/08/21 04:42:56
7263 Log: Retract #19064, broke mod_perl flushing (localisation of $|).
7264 http://public.activestate.com/cgi-bin/perlbrowse?patch=19064
7265 http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-08/msg01466.html
7266 Branch: perl
7267 ! pp_ctl.c pp_hot.c scope.c t/op/args.t
7268____________________________________________________________________________
7269[ 20794] By: jhi on 2003/08/21 04:35:54
7270 Log: MPE/iX does not have nanosleep() (the test makes
7271 a wrong conclusion of the linking succeeding)
7272 Branch: perl
7273 ! ext/Time/HiRes/Makefile.PL
7274____________________________________________________________________________
7275[ 20793] By: jhi on 2003/08/21 04:35:05
7276 Log: Subject: Re: untieing your victim during the act
7277 From: Dave Mitchell <davem@fdgroup.com>
7278 Date: Wed, 20 Aug 2003 20:44:53 +0100
7279 Message-ID: <20030820194453.GD27719@fdgroup.com>
7280 Branch: perl
7281 ! mg.c
7282____________________________________________________________________________
7283[ 20792] By: jhi on 2003/08/21 04:30:54
7284 Log: Byteloader patching from Enache continues;
7285 PADOFFSET handling was wrong.
7286 Branch: perl
7287 ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
7288 ! ext/B/t/assembler.t ext/ByteLoader/bytecode.h
7289 ! ext/ByteLoader/byterun.c
7290____________________________________________________________________________
7291[ 20791] By: jhi on 2003/08/20 13:55:35
7292 Log: Subject: [PATCH perl@20760] Remove redundant targets from Win32 Makefile
7293 From: Steve Hay <steve.hay@uk.radan.com>
7294 Date: Wed, 20 Aug 2003 10:54:46 +0100
7295 Message-ID: <3F434566.3030602@uk.radan.com>
7296 Branch: perl
7297 ! win32/Makefile win32/makefile.mk
7298____________________________________________________________________________
7299[ 20790] By: jhi on 2003/08/20 11:01:52
7300 Log: Upgrade to Encode 1.98.
7301 Branch: perl
7302 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
7303 ! ext/Encode/META.yml ext/Encode/bin/enc2xs
7304 ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
7305 ! ext/Encode/lib/Encode/MIME/Header.pm ext/Encode/t/enc_eucjp.t
7306 ! ext/Encode/t/enc_utf8.t ext/Encode/t/mime-header.t
7307 ! ext/Encode/ucm/macArabic.ucm ext/Encode/ucm/macFarsi.ucm
7308 ! ext/Encode/ucm/macHebrew.ucm
7309____________________________________________________________________________
7310[ 20789] By: jhi on 2003/08/20 10:49:51
7311 Log: Patch from Enache for the crashing of bytecode.t in Tru64.
7312 Branch: perl
7313 ! ext/B/B/Bytecode.pm ext/ByteLoader/bytecode.h
7314____________________________________________________________________________
7315[ 20788] By: rgs on 2003/08/19 21:20:04
7316 Log: As in 5.8.0, rename the non-standard 5005 thread tests
7317 so that they don't get run by the test harnesses.
7318 Branch: maint-5.6
7319 +> perl-5.6.2/ext/Thread/create.tx perl-5.6.2/ext/Thread/die.tx
7320 +> perl-5.6.2/ext/Thread/die2.tx perl-5.6.2/ext/Thread/io.tx
7321 +> perl-5.6.2/ext/Thread/join.tx perl-5.6.2/ext/Thread/join2.tx
7322 +> perl-5.6.2/ext/Thread/list.tx perl-5.6.2/ext/Thread/lock.tx
7323 +> perl-5.6.2/ext/Thread/queue.tx
7324 +> perl-5.6.2/ext/Thread/specific.tx
7325 +> perl-5.6.2/ext/Thread/sync.tx perl-5.6.2/ext/Thread/sync2.tx
7326 +> perl-5.6.2/ext/Thread/unsync.tx
7327 +> perl-5.6.2/ext/Thread/unsync2.tx
7328 +> perl-5.6.2/ext/Thread/unsync3.tx
7329 +> perl-5.6.2/ext/Thread/unsync4.tx
7330 - perl-5.6.2/ext/Thread/create.t perl-5.6.2/ext/Thread/die.t
7331 - perl-5.6.2/ext/Thread/die2.t perl-5.6.2/ext/Thread/io.t
7332 - perl-5.6.2/ext/Thread/join.t perl-5.6.2/ext/Thread/join2.t
7333 - perl-5.6.2/ext/Thread/list.t perl-5.6.2/ext/Thread/lock.t
7334 - perl-5.6.2/ext/Thread/queue.t perl-5.6.2/ext/Thread/specific.t
7335 - perl-5.6.2/ext/Thread/sync.t perl-5.6.2/ext/Thread/sync2.t
7336 - perl-5.6.2/ext/Thread/unsync.t perl-5.6.2/ext/Thread/unsync2.t
7337 - perl-5.6.2/ext/Thread/unsync3.t
7338 - perl-5.6.2/ext/Thread/unsync4.t
7339 ! perl-5.6.2/MANIFEST perl-5.6.2/README.threads
7340____________________________________________________________________________
7341[ 20787] By: rgs on 2003/08/19 21:13:30
7342 Log: Roughly integrate t/TEST from bleadperl.
7343 This means that t/UTEST can probably be suppressed, but that
7344 implies some makefile adjustments.
7345 Branch: maint-5.6
7346 + perl-5.6.2/t/TestInit.pm
7347 ! perl-5.6.2/MANIFEST perl-5.6.2/t/TEST perl-5.6.2/t/op/eval.t
7348 ! perl-5.6.2/t/op/regexp_noamp.t perl-5.6.2/t/op/subst_wamp.t
7349____________________________________________________________________________
7350[ 20786] By: rgs on 2003/08/19 20:22:07
7351 Log: t/TEST fails to fail when it can't find tests.
7352 Branch: perl
7353 ! t/TEST
7354____________________________________________________________________________
7355[ 20785] By: jhi on 2003/08/19 19:34:18
7356 Log: Manifest.t.ation of Schwern.
7357 Branch: perl
7358 ! lib/ExtUtils/t/Manifest.t
7359____________________________________________________________________________
7360[ 20784] By: jhi on 2003/08/19 19:26:43
7361 Log: Integrate:
7362 [ 20783]
7363 Nick's podulator was right, I just hadn't read the manual...
7364 the vms\perlvms.pod lines needed to be moved.
7365 Branch: maint-5.8/perl
7366 !> win32/Makefile win32/makefile.mk
7367____________________________________________________________________________
7368[ 20783] By: jhi on 2003/08/19 19:24:00
7369 Log: Nick's podulator was right, I just hadn't read the manual...
7370 the vms\perlvms.pod lines needed to be moved.
7371 Branch: perl
7372 ! win32/Makefile win32/makefile.mk
7373____________________________________________________________________________
7374[ 20782] By: jhi on 2003/08/19 17:24:25
7375 Log: Integrate:
7376 [ 20761]
7377 Use the base class cwd() method.
7378
7379 [ 20762]
7380 Subject: [PATCH: perl@20760] clean up quotation issue for use with MMS on VMS
7381 From: PPrymmer@factset.com
7382 Date: Mon, 18 Aug 2003 14:28:22 -0400
7383 Message-ID: <OFAF7796C8.7F204EDE-ON85256D86.0063976D-85256D86.006578B0@factset.com>
7384
7385 [ 20763]
7386 Subject: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
7387 From: PPrymmer@factset.com
7388 Date: Mon, 18 Aug 2003 15:57:12 -0400
7389 Message-ID: <OF314202D4.49371ADF-ON85256D86.006CEBE2-85256D86.006D9AA7@factset.com>
7390
7391 [ 20764]
7392 Typo tweaks from Gerrit P. Haase. Fcntl, fcntl, fcntl.
7393
7394 [ 20765]
7395 Pod tweaks for NEXT from Alan Ferrency.
7396
7397 [ 20766]
7398 Nick Clark's podulator. The win32 makefile
7399 generation doesn't seem to be working yet.
7400
7401 [ 20767]
7402 Try to unify the MANIFEST sorting.
7403
7404 [ 20768]
7405 Still trying to unify MANIFEST sorting.
7406
7407 [ 20769]
7408 Update the history records.
7409
7410 [ 20770]
7411 Subject: [PATCH] maintperl - File::Spec cwd() stuff
7412 From: Ken Williams <ken@mathforum.org>
7413 Date: Mon, 18 Aug 2003 17:07:43 -0500
7414 Message-Id: <645E5A7D-D1C8-11D7-84BF-003065F6D85A@mathforum.org>
7415
7416 [ 20771]
7417 Subject: [PATCH] Re: [PATCH] maintperl - File::Spec cwd() stuff
7418 From: Michael G Schwern <schwern@pobox.com>
7419 Date: Mon, 18 Aug 2003 18:02:08 -0700
7420 Message-ID: <20030819010208.GI14782@windhund.schwern.org>
7421
7422 [ 20772]
7423 Replace #20763 with
7424
7425 Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
7426 From: Michael G Schwern <schwern@pobox.com>
7427 Date: Mon, 18 Aug 2003 17:07:30 -0700
7428 Message-ID: <20030819000729.GG14782@windhund.schwern.org>
7429
7430 [ 20773]
7431 These are kind of important.
7432
7433 [ 20774]
7434 's buildtoc now.
7435
7436 [ 20776]
7437 Replace #20772 with
7438
7439 Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
7440 From: PPrymmer@factset.com
7441 Message-ID: <OFE22C35CE.D5CB1A7F-ON85256D87.004E3BCA-85256D87.004F9EF2@factset.com>
7442 Date: Tue, 19 Aug 2003 10:29:44 -0400
7443
7444 [ 20777]
7445 One less failure.
7446
7447 [ 20778]
7448 Unnecessary whitespace diff.
7449
7450 [ 20779]
7451 Subject: Re: [PATCH] Re: [PATCH] maintperl - File::Spec cwd() stuff
7452 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
7453 Date: Tue, 19 Aug 2003 08:28:14 -0700
7454 Message-ID: <20030819152814.GA15441@math.berkeley.edu>
7455
7456 [ 20780]
7457 Subject: [PATCH] Can't build thread on openbsd sparc64 => B.c:5078: virtual memory exhausted
7458 From: alian <alian@cpan.org>
7459 Date: Tue, 19 Aug 2003 18:18:03 +0200
7460 Message-ID: <20030819161650.65754.qmail@onion.perl.org>
7461
7462 [ 20781]
7463 Subject: Re: [perl #23304] Installing perl breaks redhat-config scripts[was: New (well known) printer won't install in RH-9]
7464 From: Andy Dougherty <doughera@lafayette.edu>
7465 Date: Tue, 19 Aug 2003 10:45:24 -0400 (EDT)
7466 Message-ID: <Pine.SOL.4.53.0308191027250.6665@maxwell.phys.lafayette.edu>
7467 Branch: maint-5.8/perl
7468 +> ext/B/hints/openbsd.pl pod.lst pod/buildtoc
7469 - pod/buildtoc.PL
7470 ! MANIFEST pod/perl.pod pod/perltoc.pod vms/descrip_mms.template
7471 ! win32/pod.mak
7472 !> INSTALL Makefile.SH README.cygwin ext/Fcntl/Fcntl.pm
7473 !> lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/Manifest.t
7474 !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
7475 !> lib/File/Spec/VMS.pm lib/File/Spec/t/Spec.t lib/NEXT.pm
7476 !> pod/Makefile.SH pod/perlfunc.pod pod/perlhist.pod t/io/utf8.t
7477____________________________________________________________________________
7478[ 20781] By: jhi on 2003/08/19 16:59:49
7479 Log: Subject: Re: [perl #23304] Installing perl breaks redhat-config scripts[was: New (well known) printer won't install in RH-9]
7480 From: Andy Dougherty <doughera@lafayette.edu>
7481 Date: Tue, 19 Aug 2003 10:45:24 -0400 (EDT)
7482 Message-ID: <Pine.SOL.4.53.0308191027250.6665@maxwell.phys.lafayette.edu>
7483 Branch: perl
7484 ! INSTALL
7485____________________________________________________________________________
7486[ 20780] By: jhi on 2003/08/19 16:54:48
7487 Log: Subject: [PATCH] Can't build thread on openbsd sparc64 => B.c:5078: virtual memory exhausted
7488 From: alian <alian@cpan.org>
7489 Date: Tue, 19 Aug 2003 18:18:03 +0200
7490 Message-ID: <20030819161650.65754.qmail@onion.perl.org>
7491 Branch: perl
7492 + ext/B/hints/openbsd.pl
7493 ! MANIFEST
7494____________________________________________________________________________
7495[ 20779] By: jhi on 2003/08/19 16:49:22
7496 Log: Subject: Re: [PATCH] Re: [PATCH] maintperl - File::Spec cwd() stuff
7497 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
7498 Date: Tue, 19 Aug 2003 08:28:14 -0700
7499 Message-ID: <20030819152814.GA15441@math.berkeley.edu>
7500 Branch: perl
7501 ! lib/File/Spec/OS2.pm
7502____________________________________________________________________________
7503[ 20778] By: jhi on 2003/08/19 15:09:30
7504 Log: Unnecessary whitespace diff.
7505 Branch: perl
7506 ! lib/ExtUtils/MakeMaker.pm
7507____________________________________________________________________________
7508[ 20777] By: jhi on 2003/08/19 15:05:18
7509 Log: One less failure.
7510 Branch: perl
7511 ! lib/ExtUtils/t/Manifest.t
7512____________________________________________________________________________
7513[ 20776] By: jhi on 2003/08/19 13:36:03
7514 Log: Replace #20772 with
7515
7516 Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
7517 From: PPrymmer@factset.com
7518 Message-ID: <OFE22C35CE.D5CB1A7F-ON85256D87.004E3BCA-85256D87.004F9EF2@factset.com>
7519 Date: Tue, 19 Aug 2003 10:29:44 -0400
7520 Branch: perl
7521 ! lib/ExtUtils/t/Manifest.t
7522____________________________________________________________________________
7523[ 20775] By: jhi on 2003/08/19 13:29:13
7524 Log: (From Enache) Keep bytecode files (.plc) around in case
7525 of failures. (Currently Tru64 is reliably barfing.)
7526 Branch: perl
7527 ! ext/B/t/bytecode.t
7528____________________________________________________________________________
7529[ 20774] By: jhi on 2003/08/19 13:20:59
7530 Log: 's buildtoc now.
7531 Branch: perl
7532 ! README.cygwin
7533____________________________________________________________________________
7534[ 20773] By: jhi on 2003/08/19 13:19:24
7535 Log: These are kind of important.
7536 Branch: perl
7537 ! MANIFEST
7538____________________________________________________________________________
7539[ 20772] By: jhi on 2003/08/19 13:13:26
7540 Log: Replace #20763 with
7541
7542 Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
7543 From: Michael G Schwern <schwern@pobox.com>
7544 Date: Mon, 18 Aug 2003 17:07:30 -0700
7545 Message-ID: <20030819000729.GG14782@windhund.schwern.org>
7546 Branch: perl
7547 ! lib/ExtUtils/t/Manifest.t
7548____________________________________________________________________________
7549[ 20771] By: jhi on 2003/08/19 13:10:42
7550 Log: Subject: [PATCH] Re: [PATCH] maintperl - File::Spec cwd() stuff
7551 From: Michael G Schwern <schwern@pobox.com>
7552 Date: Mon, 18 Aug 2003 18:02:08 -0700
7553 Message-ID: <20030819010208.GI14782@windhund.schwern.org>
7554 Branch: perl
7555 ! lib/File/Spec/OS2.pm
7556____________________________________________________________________________
7557[ 20770] By: jhi on 2003/08/19 13:08:45
7558 Log: Subject: [PATCH] maintperl - File::Spec cwd() stuff
7559 From: Ken Williams <ken@mathforum.org>
7560 Date: Mon, 18 Aug 2003 17:07:43 -0500
7561 Message-Id: <645E5A7D-D1C8-11D7-84BF-003065F6D85A@mathforum.org>
7562 Branch: perl
7563 ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
7564 ! lib/File/Spec/t/Spec.t
7565____________________________________________________________________________
7566[ 20769] By: jhi on 2003/08/19 12:25:07
7567 Log: Update the history records.
7568 Branch: perl
7569 ! pod/perlhist.pod
7570____________________________________________________________________________
7571[ 20768] By: jhi on 2003/08/19 12:15:58
7572 Log: Still trying to unify MANIFEST sorting.
7573 Branch: perl
7574 ! MANIFEST pod/buildtoc
7575____________________________________________________________________________
7576[ 20767] By: jhi on 2003/08/19 12:10:00
7577 Log: Try to unify the MANIFEST sorting.
7578 Branch: perl
7579 ! MANIFEST Makefile.SH pod/buildtoc
7580____________________________________________________________________________
7581[ 20766] By: jhi on 2003/08/19 12:04:22
7582 Log: Nick Clark's podulator. The win32 makefile
7583 generation doesn't seem to be working yet.
7584 Branch: perl
7585 + pod.lst pod/buildtoc
7586 - pod/buildtoc.PL
7587 ! MANIFEST Makefile.SH pod/Makefile.SH pod/perl.pod
7588 ! pod/perltoc.pod vms/descrip_mms.template win32/pod.mak
7589____________________________________________________________________________
7590[ 20765] By: jhi on 2003/08/19 03:10:57
7591 Log: Pod tweaks for NEXT from Alan Ferrency.
7592 Branch: perl
7593 ! lib/NEXT.pm
7594____________________________________________________________________________
7595[ 20764] By: jhi on 2003/08/18 19:34:16
7596 Log: Typo tweaks from Gerrit P. Haase. Fcntl, fcntl, fcntl.
7597 Branch: perl
7598 ! ext/Fcntl/Fcntl.pm pod/perlfunc.pod t/io/utf8.t
7599____________________________________________________________________________
7600[ 20763] By: jhi on 2003/08/18 19:01:33
7601 Log: Subject: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
7602 From: PPrymmer@factset.com
7603 Date: Mon, 18 Aug 2003 15:57:12 -0400
7604 Message-ID: <OF314202D4.49371ADF-ON85256D86.006CEBE2-85256D86.006D9AA7@factset.com>
7605 Branch: perl
7606 ! lib/ExtUtils/t/Manifest.t
7607____________________________________________________________________________
7608[ 20762] By: jhi on 2003/08/18 18:57:22
7609 Log: Subject: [PATCH: perl@20760] clean up quotation issue for use with MMS on VMS
7610 From: PPrymmer@factset.com
7611 Date: Mon, 18 Aug 2003 14:28:22 -0400
7612 Message-ID: <OFAF7796C8.7F204EDE-ON85256D86.0063976D-85256D86.006578B0@factset.com>
7613 Branch: perl
7614 ! vms/descrip_mms.template
7615____________________________________________________________________________
7616[ 20761] By: jhi on 2003/08/18 18:53:05
7617 Log: Use the base class cwd() method.
7618 Branch: perl
7619 ! lib/File/Spec/VMS.pm
7620____________________________________________________________________________
7621[ 20760] By: jhi on 2003/08/18 10:03:40
7622 Log: Update Changes.
7623 Branch: maint-5.8/perl
7624 ! Changes patchlevel.h
7625____________________________________________________________________________
7626[ 20759] By: jhi on 2003/08/18 09:53:18
7627 Log: Integrate:
7628 [ 20758]
7629 Subject: [PATCH] Uppercase globals in Pod::Html
7630 From: Michael G Schwern <schwern@pobox.com>
7631 Date: Mon, 18 Aug 2003 03:29:09 -0700
7632 Message-ID: <20030818102909.GJ823@windhund.schwern.org>
7633 Branch: maint-5.8/perl
7634 !> lib/Pod/Html.pm
7635____________________________________________________________________________
7636[ 20758] By: jhi on 2003/08/18 09:37:22
7637 Log: Subject: [PATCH] Uppercase globals in Pod::Html
7638 From: Michael G Schwern <schwern@pobox.com>
7639 Date: Mon, 18 Aug 2003 03:29:09 -0700
7640 Message-ID: <20030818102909.GJ823@windhund.schwern.org>
7641 Branch: perl
7642 ! lib/Pod/Html.pm
7643____________________________________________________________________________
7644[ 20757] By: jhi on 2003/08/18 09:30:25
7645 Log: Integrate:
7646 [ 20749]
7647 Subject: [PATCH] Taint safe Cwd::_qnx_abs_path()
7648 From: Michael G Schwern <schwern@pobox.com>
7649 Date: Sat, 16 Aug 2003 14:58:25 -0700
7650 Message-ID: <20030816215824.GF5859@windhund.schwern.org>
7651
7652 (plus local *REALPATH)
7653
7654 [ 20750]
7655 Subject: [PATCH] Pod::Html test clean-up (was Re: maint @ 20617 (on VMS))
7656 From: "Craig A. Berry" <craigberry@mac.com>
7657 Date: Sun, 17 Aug 2003 23:28:21 -0500
7658 Message-ID: <3F4055E5.2070407@mac.com>
7659
7660 [ 20751]
7661 utf8::is_utf8() wasn't there in 5.8.0.
7662
7663 [ 20752]
7664 I could have sworn the base class method was there.
7665
7666 [ 20753]
7667 Subject: Re: [PATCH] Pod::Html test clean-up (was Re: maint @ 20617 (on VMS))
7668 From: Michael G Schwern <schwern@pobox.com>
7669 Date: Mon, 18 Aug 2003 01:34:34 -0700
7670 Message-ID: <20030818083433.GB823@windhund.schwern.org>
7671
7672 [ 20754]
7673 Upgrade to ExtUtils::MakeMaker 6.16.
7674
7675 [ 20755]
7676 Warn about the slowness of memory debuggers.
7677
7678 [ 20756]
7679 Subject: [PATCH] Pod::Html unifying global variable declaration and initialization
7680 From: Michael G Schwern <schwern@pobox.com>
7681 Date: Mon, 18 Aug 2003 02:44:31 -0700
7682 Message-ID: <20030818094431.GG823@windhund.schwern.org>
7683 Branch: maint-5.8/perl
7684 +> lib/ExtUtils/t/prereq_print.t
7685 !> MANIFEST lib/Cwd.pm lib/ExtUtils/Changes
7686 !> lib/ExtUtils/Installed.pm lib/ExtUtils/MANIFEST.SKIP
7687 !> lib/ExtUtils/META.yml lib/ExtUtils/MM_Win32.pm
7688 !> lib/ExtUtils/MM_Win95.pm lib/ExtUtils/MakeMaker.pm
7689 !> lib/ExtUtils/Manifest.pm lib/ExtUtils/t/00setup_dummy.t
7690 !> lib/ExtUtils/t/Manifest.t lib/File/Spec/Unix.pm
7691 !> lib/Pod/Html.pm lib/Pod/t/pod2html-lib.pl lib/utf8.pm
7692 !> pod/perlhack.pod
7693____________________________________________________________________________
7694[ 20756] By: jhi on 2003/08/18 08:46:52
7695 Log: Subject: [PATCH] Pod::Html unifying global variable declaration and initialization
7696 From: Michael G Schwern <schwern@pobox.com>
7697 Date: Mon, 18 Aug 2003 02:44:31 -0700
7698 Message-ID: <20030818094431.GG823@windhund.schwern.org>
7699 Branch: perl
7700 ! lib/Pod/Html.pm
7701____________________________________________________________________________
7702[ 20755] By: jhi on 2003/08/18 08:41:24
7703 Log: Warn about the slowness of memory debuggers.
7704 Branch: perl
7705 ! pod/perlhack.pod
7706____________________________________________________________________________
7707[ 20754] By: jhi on 2003/08/18 08:34:00
7708 Log: Upgrade to ExtUtils::MakeMaker 6.16.
7709 Branch: perl
7710 + lib/ExtUtils/t/prereq_print.t
7711 ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Installed.pm
7712 ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/META.yml
7713 ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
7714 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
7715 ! lib/ExtUtils/t/00setup_dummy.t lib/ExtUtils/t/Manifest.t
7716____________________________________________________________________________
7717[ 20753] By: jhi on 2003/08/18 08:21:36
7718 Log: Subject: Re: [PATCH] Pod::Html test clean-up (was Re: maint @ 20617 (on VMS))
7719 From: Michael G Schwern <schwern@pobox.com>
7720 Date: Mon, 18 Aug 2003 01:34:34 -0700
7721 Message-ID: <20030818083433.GB823@windhund.schwern.org>
7722 Branch: perl
7723 ! lib/Pod/Html.pm lib/Pod/t/pod2html-lib.pl
7724____________________________________________________________________________
7725[ 20752] By: jhi on 2003/08/18 07:01:16
7726 Log: I could have sworn the base class method was there.
7727 Branch: perl
7728 ! lib/File/Spec/Unix.pm
7729____________________________________________________________________________
7730[ 20751] By: jhi on 2003/08/18 05:09:34
7731 Log: utf8::is_utf8() wasn't there in 5.8.0.
7732 Branch: perl
7733 ! lib/utf8.pm
7734____________________________________________________________________________
7735[ 20750] By: jhi on 2003/08/18 04:53:22
7736 Log: Subject: [PATCH] Pod::Html test clean-up (was Re: maint @ 20617 (on VMS))
7737 From: "Craig A. Berry" <craigberry@mac.com>
7738 Date: Sun, 17 Aug 2003 23:28:21 -0500
7739 Message-ID: <3F4055E5.2070407@mac.com>
7740 Branch: perl
7741 ! lib/Pod/Html.pm lib/Pod/t/pod2html-lib.pl
7742____________________________________________________________________________
7743[ 20749] By: jhi on 2003/08/17 19:27:03
7744 Log: Subject: [PATCH] Taint safe Cwd::_qnx_abs_path()
7745 From: Michael G Schwern <schwern@pobox.com>
7746 Date: Sat, 16 Aug 2003 14:58:25 -0700
7747 Message-ID: <20030816215824.GF5859@windhund.schwern.org>
7748
7749 (plus local *REALPATH)
7750 Branch: perl
7751 ! lib/Cwd.pm
7752____________________________________________________________________________
7753[ 20748] By: jhi on 2003/08/17 08:46:49
7754 Log: Integrate:
7755 [ 20747]
7756 Subject: [PATCH] Re: [BUG] string loses its utf8 flag on die
7757 From: Enache Adrian <enache@rdslink.ro>
7758 Date: Sat, 16 Aug 2003 16:03:16 +0300
7759 Message-ID: <20030816130316.GA1654@ratsnest.hole>
7760
7761 Subject: Re: [PATCH] Re: [BUG] string loses its utf8 flag on die
7762 From: Enache Adrian <enache@rdslink.ro>
7763 Date: Sun, 17 Aug 2003 04:42:22 +0300
7764 Message-ID: <20030817014222.GA1287@ratsnest.hole>
7765
7766 (I need a Romanian dictionary)
7767 Branch: maint-5.8/perl
7768 !> t/op/die.t util.c
7769____________________________________________________________________________
7770[ 20747] By: jhi on 2003/08/17 08:44:18
7771 Log: Subject: [PATCH] Re: [BUG] string loses its utf8 flag on die
7772 From: Enache Adrian <enache@rdslink.ro>
7773 Date: Sat, 16 Aug 2003 16:03:16 +0300
7774 Message-ID: <20030816130316.GA1654@ratsnest.hole>
7775
7776 Subject: Re: [PATCH] Re: [BUG] string loses its utf8 flag on die
7777 From: Enache Adrian <enache@rdslink.ro>
7778 Date: Sun, 17 Aug 2003 04:42:22 +0300
7779 Message-ID: <20030817014222.GA1287@ratsnest.hole>
7780 Branch: perl
7781 ! t/op/die.t util.c
7782____________________________________________________________________________
7783[ 20746] By: jhi on 2003/08/17 07:59:42
7784 Log: Integrate:
7785 [ 20744]
7786 The "reduce memory footprint and increase speed by not
7787 unconditionally pulling in Cwd" part of
7788
7789 Subject: [PATCH] File::Spec on diet
7790 From: Tels <perl_dummy@bloodgate.com>
7791 Date: Mon, 7 Jul 2003 22:41:42 +0200
7792 Message-Id: <200307072235.03364@bloodgate.com>
7793
7794 was still valid.
7795
7796 [ 20745]
7797 The lib/Cwd.pm diet part of
7798
7799 Subject: [PATCH] File::Spec on diet
7800 From: Tels <perl_dummy@bloodgate.com>
7801 Date: Mon, 7 Jul 2003 22:41:42 +0200
7802 Message-Id: <200307072235.03364@bloodgate.com>
7803 Branch: maint-5.8/perl
7804 !> lib/Cwd.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
7805 !> lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
7806 !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
7807 !> lib/File/Spec/Win32.pm
7808____________________________________________________________________________
7809[ 20745] By: jhi on 2003/08/17 07:52:47
7810 Log: The lib/Cwd.pm diet part of
7811
7812 Subject: [PATCH] File::Spec on diet
7813 From: Tels <perl_dummy@bloodgate.com>
7814 Date: Mon, 7 Jul 2003 22:41:42 +0200
7815 Message-Id: <200307072235.03364@bloodgate.com>
7816 Branch: perl
7817 ! lib/Cwd.pm
7818____________________________________________________________________________
7819[ 20744] By: jhi on 2003/08/17 07:50:00
7820 Log: The "reduce memory footprint and increase speed by not
7821 unconditionally pulling in Cwd" part of
7822
7823 Subject: [PATCH] File::Spec on diet
7824 From: Tels <perl_dummy@bloodgate.com>
7825 Date: Mon, 7 Jul 2003 22:41:42 +0200
7826 Message-Id: <200307072235.03364@bloodgate.com>
7827
7828 was still valid.
7829 Branch: perl
7830 ! lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
7831 ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
7832 ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
7833 ! lib/File/Spec/Win32.pm
7834____________________________________________________________________________
7835[ 20743] By: jhi on 2003/08/17 07:10:24
7836 Log: Subject: Re: [PATCH] Taint problems in Cwd::abs_path
7837 From: Michael G Schwern <schwern@pobox.com>
7838 Date: Sat, 16 Aug 2003 14:45:26 -0700
7839 Message-ID: <20030816214526.GE5859@windhund.schwern.org>
7840 Branch: maint-5.8/perl
7841 ! ext/Cwd/t/taint.t
7842____________________________________________________________________________
7843[ 20742] By: jhi on 2003/08/17 07:09:33
7844 Log: Integrate:
7845 [ 20734]
7846 Subject: [PATCH] Taint problems in Cwd::abs_path
7847 From: Michael G Schwern <schwern@pobox.com>
7848 Date: Fri, 15 Aug 2003 18:43:45 -0700
7849 Message-ID: <20030816014345.GE4023@windhund.schwern.org>
7850
7851 [ 20736]
7852 Avoid a "Subroutine Cwd::fastcwd redefined" warning when
7853 loading Cwd. Undefing &Cwd::fastcwd beforehand is inconvenient
7854 because loading the XS part of Cwd might fail.
7855
7856 (but not the ext/Cwd/t/taint.t bits)
7857 Branch: maint-5.8/perl
7858 !> lib/Cwd.pm
7859____________________________________________________________________________
7860[ 20741] By: jhi on 2003/08/17 06:53:07
7861 Log: File::Temp 0.14 from Tim Jenness, now with OO interface.
7862 Branch: perl
7863 ! lib/File/Temp.pm
7864____________________________________________________________________________
7865[ 20740] By: jhi on 2003/08/16 21:13:53
7866 Log: Integrate:
7867 [ 20726]
7868 Clarify the E flag.
7869
7870 [ 20727]
7871 Upgrade to File::Temp 0.13 from CPAN--
7872 but since we had a '0.13' already in 5.8.0, make this
7873 still a '0.131'.
7874
7875 [ 20728]
7876 Subject: [PATCH] Small test tweak for Memoize/t/error.t
7877 From: Andreas J Koenig <andreas.koenig@anima.de>
7878 Date: Fri, 15 Aug 2003 11:55:22 +0200
7879 Message-ID: <87smo39red.fsf@franz.ak.mind.de>
7880
7881 [ 20729]
7882 README.macosx updates about known problems.
7883
7884 [ 20730]
7885 Remove a useless vstring reference in perlnumber.pod.
7886
7887 [ 20731]
7888 More networking negativity.
7889
7890 [ 20732]
7891 Add valgrind testing target.
7892
7893 [ 20733]
7894 No ODBM for Mac OS X, even if we have Fink GDBM libraries.
7895
7896 [ 20735]
7897 Subject: [patch lib/utf8.pm] doc tweaks
7898 From: Stas Bekman <stas@stason.org>
7899 Date: Sat, 16 Aug 2003 13:30:28 -0700
7900 Message-ID: <3F3E9464.3030202@stason.org>
7901
7902 [ 20737]
7903 valgrind --help didn't return a happy exit status.
7904
7905 [ 20738]
7906 Update to Filter::Util::Call 1.6 from CPAN, but keep our
7907 $VERSION at 1.601 so that we are different in version
7908 than 5.8.0 since the module is different (one doc tweak).
7909
7910 [ 20739]
7911 Subject: [PATCH: perl@20724] fixes for installperl and the vmsdebug build on VMS
7912 From: PPrymmer@factset.com
7913 Date: Sat, 16 Aug 2003 11:55:58 -0400
7914 Message-ID: <OFA82C9B0A.6463DD81-ON85256D84.0056DF1B-85256D84.005784F2@factset.com>
7915 Branch: maint-5.8/perl
7916 !> Makefile.SH README.macosx embed.fnc
7917 !> ext/Filter/Util/Call/Call.pm hints/darwin.sh installperl
7918 !> lib/File/Temp.pm lib/File/Temp/t/mktemp.t
7919 !> lib/File/Temp/t/posix.t lib/File/Temp/t/security.t
7920 !> lib/File/Temp/t/tempfile.t lib/Memoize/t/errors.t lib/utf8.pm
7921 !> pod/perlhack.pod pod/perlnumber.pod pod/perlport.pod t/TEST
7922____________________________________________________________________________
7923[ 20739] By: jhi on 2003/08/16 21:03:07
7924 Log: Subject: [PATCH: perl@20724] fixes for installperl and the vmsdebug build on VMS
7925 From: PPrymmer@factset.com
7926 Date: Sat, 16 Aug 2003 11:55:58 -0400
7927 Message-ID: <OFA82C9B0A.6463DD81-ON85256D84.0056DF1B-85256D84.005784F2@factset.com>
7928 Branch: perl
7929 ! installperl
7930____________________________________________________________________________
7931[ 20738] By: jhi on 2003/08/16 20:39:47
7932 Log: Update to Filter::Util::Call 1.6 from CPAN, but keep our
7933 $VERSION at 1.601 so that we are different in version
7934 than 5.8.0 since the module is different (one doc tweak).
7935 Branch: perl
7936 ! ext/Filter/Util/Call/Call.pm
7937____________________________________________________________________________
7938[ 20737] By: jhi on 2003/08/16 20:25:21
7939 Log: valgrind --help didn't return a happy exit status.
7940 Branch: perl
7941 ! Makefile.SH
7942____________________________________________________________________________
7943[ 20736] By: rgs on 2003/08/16 19:54:43
7944 Log: Avoid a "Subroutine Cwd::fastcwd redefined" warning when
7945 loading Cwd. Undefing &Cwd::fastcwd beforehand is inconvenient
7946 because loading the XS part of Cwd might fail.
7947 Branch: perl
7948 ! lib/Cwd.pm
7949____________________________________________________________________________
7950[ 20735] By: rgs on 2003/08/16 19:39:39
7951 Log: Subject: [patch lib/utf8.pm] doc tweaks
7952 From: Stas Bekman <stas@stason.org>
7953 Date: Sat, 16 Aug 2003 13:30:28 -0700
7954 Message-ID: <3F3E9464.3030202@stason.org>
7955 Branch: perl
7956 ! lib/utf8.pm
7957____________________________________________________________________________
7958[ 20734] By: rgs on 2003/08/16 19:32:05
7959 Log: Subject: [PATCH] Taint problems in Cwd::abs_path
7960 From: Michael G Schwern <schwern@pobox.com>
7961 Date: Fri, 15 Aug 2003 18:43:45 -0700
7962 Message-ID: <20030816014345.GE4023@windhund.schwern.org>
7963 Branch: perl
7964 ! ext/Cwd/t/taint.t lib/Cwd.pm
7965____________________________________________________________________________
7966[ 20733] By: jhi on 2003/08/16 17:03:15
7967 Log: No ODBM for Mac OS X, even if we have Fink GDBM libraries.
7968 Branch: perl
7969 ! hints/darwin.sh
7970____________________________________________________________________________
7971[ 20732] By: jhi on 2003/08/16 16:52:50
7972 Log: Add valgrind testing target.
7973 Branch: perl
7974 ! Makefile.SH pod/perlhack.pod t/TEST
7975____________________________________________________________________________
7976[ 20731] By: jhi on 2003/08/16 14:37:33
7977 Log: More networking negativity.
7978 Branch: perl
7979 ! pod/perlport.pod
7980____________________________________________________________________________
7981[ 20730] By: rgs on 2003/08/16 12:12:43
7982 Log: Remove a useless vstring reference in perlnumber.pod.
7983 Branch: perl
7984 ! pod/perlnumber.pod
7985____________________________________________________________________________
7986[ 20729] By: jhi on 2003/08/16 10:11:30
7987 Log: README.macosx updates about known problems.
7988 Branch: perl
7989 ! README.macosx
7990____________________________________________________________________________
7991[ 20728] By: jhi on 2003/08/16 08:32:04
7992 Log: Subject: [PATCH] Small test tweak for Memoize/t/error.t
7993 From: Andreas J Koenig <andreas.koenig@anima.de>
7994 Date: Fri, 15 Aug 2003 11:55:22 +0200
7995 Message-ID: <87smo39red.fsf@franz.ak.mind.de>
7996 Branch: perl
7997 ! lib/Memoize/t/errors.t
7998____________________________________________________________________________
7999[ 20727] By: jhi on 2003/08/16 07:25:08
8000 Log: Upgrade to File::Temp 0.13 from CPAN--
8001 but since we had a '0.13' already in 5.8.0, make this
8002 still a '0.131'.
8003 Branch: perl
8004 ! lib/File/Temp.pm lib/File/Temp/t/mktemp.t
8005 ! lib/File/Temp/t/posix.t lib/File/Temp/t/security.t
8006 ! lib/File/Temp/t/tempfile.t
8007____________________________________________________________________________
8008[ 20726] By: jhi on 2003/08/15 20:29:10
8009 Log: Clarify the E flag.
8010 Branch: perl
8011 ! embed.fnc
8012____________________________________________________________________________
8013[ 20725] By: jhi on 2003/08/15 15:37:36
8014 Log: Integrate from maint:
8015 [ 20724]
8016 No peeking before the buffer.
8017 (This was probably the random failure showing up
8018 in Solaris with t/uni/tr_7jis.t)
8019 Branch: perl
8020 !> toke.c
8021____________________________________________________________________________
8022[ 20724] By: jhi on 2003/08/15 15:32:39
8023 Log: No peeking before the buffer.
8024 (This was probably the random failure showing up
8025 in Solaris with t/uni/tr_7jis.t)
8026 Branch: maint-5.8/perl
8027 ! toke.c
8028____________________________________________________________________________
8029[ 20723] By: jhi on 2003/08/15 15:03:35
8030 Log: Lingering nanosleep.
8031 Branch: maint-5.8/perl
8032 ! Configure config_h.SH vos/config.alpha.def vos/config.alpha.h
8033 ! vos/config.ga.def vos/config.ga.h
8034____________________________________________________________________________
8035[ 20722] By: jhi on 2003/08/15 08:46:15
8036 Log: Integrate:
8037 [ 20721]
8038 Subject: [PATCH] TEST script (Was: Not ok 20712ff)
8039 From: Andreas J Koenig <andreas.koenig@anima.de>
8040 Date: Fri, 15 Aug 2003 11:37:29 +0200
8041 Message-ID: <87wudf9s86.fsf_-_@franz.ak.mind.de>
8042 Branch: maint-5.8/perl
8043 !> t/TEST
8044____________________________________________________________________________
8045[ 20721] By: jhi on 2003/08/15 08:44:42
8046 Log: Subject: [PATCH] TEST script (Was: Not ok 20712ff)
8047 From: Andreas J Koenig <andreas.koenig@anima.de>
8048 Date: Fri, 15 Aug 2003 11:37:29 +0200
8049 Message-ID: <87wudf9s86.fsf_-_@franz.ak.mind.de>
8050 Branch: perl
8051 ! t/TEST
8052____________________________________________________________________________
8053[ 20720] By: jhi on 2003/08/15 08:40:07
8054 Log: Integrate from maint:
8055 [ 20719]
8056 no_plan is not a good plan until TEST is fixed.
8057 Branch: perl
8058 !> lib/NEXT/t/actual.t lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
8059____________________________________________________________________________
8060[ 20719] By: jhi on 2003/08/15 08:38:50
8061 Log: no_plan is not a good plan until TEST is fixed.
8062 Branch: maint-5.8/perl
8063 ! lib/NEXT/t/actual.t lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
8064____________________________________________________________________________
8065[ 20718] By: jhi on 2003/08/15 05:16:34
8066 Log: Integrate:
8067 [ 20710]
8068 Subject: PATCH RC4 IO::Dir
8069 From: Mark Jason Dominus <mjd@plover.com>
8070 Date: Thu, 14 Aug 2003 12:02:59 -0400
8071 Message-ID: <20030814160259.27586.qmail@plover.com>
8072
8073 [ 20711]
8074 perlcheat is a reference, not tutorial.
8075
8076 [ 20712]
8077 Upgrade to NEXT 0.60.
8078
8079 [ 20713]
8080 Upgrade to PerlIO::via::Quoted 0.05.
8081
8082 [ 20714]
8083 Add PerlIO::via::QuotedPrint to Maintainers.
8084
8085 [ 20715]
8086 Damian replied that he'll make a CPAN Switch 2.10
8087 out of 5.8.1 Switch 2.10.
8088
8089 [ 20716]
8090 Upgrade to Test::Harness 2.30.
8091
8092 [ 20717]
8093 Up the F::S subpackage versions; up the JPL JNI.pm version
8094 (the JPL cvs seems to be out of order), the only real change
8095 (in JNI.xs) seems to have been CRLF->LF conversion.
8096 Branch: maint-5.8/perl
8097 !> Porting/Maintainers.pl ext/IO/lib/IO/Dir.pm jpl/JNI/JNI.pm
8098 !> lib/File/Spec/Cygwin.pm lib/File/Spec/Unix.pm lib/NEXT.pm
8099 !> lib/NEXT/Changes lib/NEXT/README lib/NEXT/t/actual.t
8100 !> lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
8101 !> lib/PerlIO/via/QuotedPrint.pm lib/PerlIO/via/t/QuotedPrint.t
8102 !> lib/Switch.pm lib/Test/Harness.pm lib/Test/Harness/Changes
8103 !> lib/Test/Harness/Straps.pm lib/Test/Harness/t/pod.t
8104 !> pod/perl.pod
8105____________________________________________________________________________
8106[ 20717] By: jhi on 2003/08/15 05:06:39
8107 Log: Up the F::S subpackage versions; up the JPL JNI.pm version
8108 (the JPL cvs seems to be out of order), the only real change
8109 (in JNI.xs) seems to have been CRLF->LF conversion.
8110 Branch: perl
8111 ! jpl/JNI/JNI.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Unix.pm
8112____________________________________________________________________________
8113[ 20716] By: jhi on 2003/08/15 04:58:34
8114 Log: Upgrade to Test::Harness 2.30.
8115 Branch: perl
8116 ! lib/Test/Harness.pm lib/Test/Harness/Changes
8117 ! lib/Test/Harness/Straps.pm lib/Test/Harness/t/pod.t
8118____________________________________________________________________________
8119[ 20715] By: jhi on 2003/08/15 04:41:37
8120 Log: Damian replied that he'll make a CPAN Switch 2.10
8121 out of 5.8.1 Switch 2.10.
8122 Branch: perl
8123 ! lib/Switch.pm
8124____________________________________________________________________________
8125[ 20714] By: jhi on 2003/08/14 18:35:07
8126 Log: Add PerlIO::via::QuotedPrint to Maintainers.
8127 Branch: perl
8128 ! Porting/Maintainers.pl
8129____________________________________________________________________________
8130[ 20713] By: jhi on 2003/08/14 18:33:06
8131 Log: Upgrade to PerlIO::via::Quoted 0.05.
8132 Branch: perl
8133 ! lib/PerlIO/via/QuotedPrint.pm lib/PerlIO/via/t/QuotedPrint.t
8134____________________________________________________________________________
8135[ 20712] By: jhi on 2003/08/14 18:29:19
8136 Log: Upgrade to NEXT 0.60.
8137 Branch: perl
8138 ! lib/NEXT.pm lib/NEXT/Changes lib/NEXT/README
8139 ! lib/NEXT/t/actual.t lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
8140____________________________________________________________________________
8141[ 20711] By: jhi on 2003/08/14 17:31:55
8142 Log: perlcheat is a reference, not tutorial.
8143 Branch: perl
8144 ! pod/perl.pod
8145____________________________________________________________________________
8146[ 20710] By: jhi on 2003/08/14 16:48:34
8147 Log: Subject: PATCH RC4 IO::Dir
8148 From: Mark Jason Dominus <mjd@plover.com>
8149 Date: Thu, 14 Aug 2003 12:02:59 -0400
8150 Message-ID: <20030814160259.27586.qmail@plover.com>
8151 Branch: perl
8152 ! ext/IO/lib/IO/Dir.pm
8153____________________________________________________________________________
8154[ 20709] By: jhi on 2003/08/14 14:47:24
8155 Log: Integrate:
8156 [ 20708]
8157 win32/fcrypt.c was forgotten.
8158 Branch: maint-5.8/perl
8159 !> MANIFEST
8160____________________________________________________________________________
8161[ 20708] By: jhi on 2003/08/14 14:45:20
8162 Log: win32/fcrypt.c was forgotten.
8163 Branch: perl
8164 ! MANIFEST
8165____________________________________________________________________________
8166[ 20707] By: jhi on 2003/08/14 14:41:47
8167 Log: Integrate:
8168 [ 20704]
8169 XS contents changes versus VERSION non-changes.
8170
8171 [ 20705]
8172 One more XS change versus no VERSION change.
8173 (Remaining in JNI.pm/xs, don't know what to about that
8174 since JNI is kind of "stable".)
8175
8176 [ 20706]
8177 Not so great a version bump, let Paul release 0.17.
8178 Branch: maint-5.8/perl
8179 !> ext/Filter/Util/Call/Call.pm ext/NDBM_File/NDBM_File.pm
8180 !> ext/ODBM_File/ODBM_File.pm ext/PerlIO/scalar/scalar.pm
8181 !> ext/SDBM_File/SDBM_File.pm ext/Socket/Socket.pm
8182____________________________________________________________________________
8183[ 20706] By: jhi on 2003/08/14 14:40:30
8184 Log: Not so great a version bump, let Paul release 0.17.
8185 Branch: perl
8186 ! ext/Filter/Util/Call/Call.pm
8187____________________________________________________________________________
8188[ 20705] By: jhi on 2003/08/14 14:38:40
8189 Log: One more XS change versus no VERSION change.
8190 (Remaining in JNI.pm/xs, don't know what to about that
8191 since JNI is kind of "stable".)
8192 Branch: perl
8193 ! ext/Filter/Util/Call/Call.pm
8194____________________________________________________________________________
8195[ 20704] By: jhi on 2003/08/14 14:36:45
8196 Log: XS contents changes versus VERSION non-changes.
8197 Branch: perl
8198 ! ext/NDBM_File/NDBM_File.pm ext/ODBM_File/ODBM_File.pm
8199 ! ext/PerlIO/scalar/scalar.pm ext/SDBM_File/SDBM_File.pm
8200 ! ext/Socket/Socket.pm
8201____________________________________________________________________________
8202[ 20703] By: jhi on 2003/08/14 14:31:11
8203 Log: Integrate:
8204 [ 20694]
8205 Regen warnings.
8206
8207 [ 20696]
8208 Tweak from Slaven to catch also changed .xs files
8209 (.pm -> .xs name equivalence is assumed)
8210
8211 [ 20699]
8212 All the authors of these modules have now been contacted;
8213 but assuming no CPAN updates are upcoming, here are 'fake'
8214 version updates to make us different from 5.8.0.
8215 (List::Util+Scalar::Util will soon be updated;
8216 File::Spec CPAN release will be made based on 5.8.1.)
8217
8218 [ 20700]
8219 Update to Scalar-List-Utils 1.12
8220
8221 [ 20701]
8222 Subject: [DOC PATCH] warnings.pl
8223 From: Elizabeth Mattijsen <liz@dijkmat.nl>
8224 Date: Thu, 14 Aug 2003 13:12:55 +0200
8225 Message-id: <p05111b00bb611e8835e0@[192.168.56.3]>
8226
8227 (some rewording)
8228
8229 [ 20702]
8230 Subject: [PATCH perl@20684] Include fcrypt.c for crypt() on Windows
8231 From: Steve Hay <steve.hay@uk.radan.com>
8232 Date: Thu, 14 Aug 2003 15:39:16 +0100
8233 Message-ID: <3F3B9F14.4040609@uk.radan.com>
8234
8235 (Sarathy okayed the idea.)
8236 Branch: maint-5.8/perl
8237 +> win32/fcrypt.c
8238 - win32/des_fcrypt.patch
8239 !> MANIFEST Porting/cmpVERSION.pl README.win32
8240 !> ext/Data/Dumper/Dumper.pm ext/List/Util/ChangeLog
8241 !> ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
8242 !> ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/reduce.t
8243 !> lib/CGI/Fast.pm lib/CGI/Util.pm lib/File/Temp.pm
8244 !> lib/Locale/Country.pm lib/Locale/Currency.pm
8245 !> lib/Locale/Language.pm lib/Locale/Script.pm lib/Switch.pm
8246 !> lib/Test/Harness/Straps.pm lib/Text/Wrap.pm lib/warnings.pm
8247 !> warnings.pl win32/Makefile win32/makefile.mk
8248____________________________________________________________________________
8249[ 20702] By: jhi on 2003/08/14 14:24:40
8250 Log: Subject: [PATCH perl@20684] Include fcrypt.c for crypt() on Windows
8251 From: Steve Hay <steve.hay@uk.radan.com>
8252 Date: Thu, 14 Aug 2003 15:39:16 +0100
8253 Message-ID: <3F3B9F14.4040609@uk.radan.com>
8254
8255 (Sarathy okayed the idea.)
8256 Branch: perl
8257 + win32/fcrypt.c
8258 - win32/des_fcrypt.patch
8259 ! MANIFEST README.win32 win32/Makefile win32/makefile.mk
8260____________________________________________________________________________
8261[ 20701] By: jhi on 2003/08/14 14:17:42
8262 Log: Subject: [DOC PATCH] warnings.pl
8263 From: Elizabeth Mattijsen <liz@dijkmat.nl>
8264 Date: Thu, 14 Aug 2003 13:12:55 +0200
8265 Message-id: <p05111b00bb611e8835e0@[192.168.56.3]>
8266
8267 (some rewording)
8268 Branch: perl
8269 ! lib/warnings.pm warnings.pl
8270____________________________________________________________________________
8271[ 20700] By: gbarr on 2003/08/14 14:12:45
8272 Log: Update to Scalar-List-Utils 1.12
8273 Branch: perl
8274 ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
8275 ! ext/List/Util/lib/List/Util.pm
8276 ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/reduce.t
8277____________________________________________________________________________
8278[ 20699] By: jhi on 2003/08/14 13:16:27
8279 Log: All the authors of these modules have now been contacted;
8280 but assuming no CPAN updates are upcoming, here are 'fake'
8281 version updates to make us different from 5.8.0.
8282 (List::Util+Scalar::Util will soon be updated;
8283 File::Spec CPAN release will be made based on 5.8.1.)
8284 Branch: perl
8285 ! ext/Data/Dumper/Dumper.pm lib/CGI/Fast.pm lib/CGI/Util.pm
8286 ! lib/File/Temp.pm lib/Locale/Country.pm lib/Locale/Currency.pm
8287 ! lib/Locale/Language.pm lib/Locale/Script.pm lib/Switch.pm
8288 ! lib/Test/Harness/Straps.pm lib/Text/Wrap.pm
8289____________________________________________________________________________
8290[ 20698] By: jhi on 2003/08/14 07:06:03
8291 Log: ...than the maint versions.
8292 Branch: maint-5.8/perl
8293 ! bytecode.pl ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
8294____________________________________________________________________________
8295[ 20697] By: jhi on 2003/08/14 07:05:48
8296 Log: Make the blead versions of these be newer...
8297 Branch: perl
8298 ! ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
8299____________________________________________________________________________
8300[ 20696] By: jhi on 2003/08/14 06:51:34
8301 Log: Tweak from Slaven to catch also changed .xs files
8302 (.pm -> .xs name equivalence is assumed)
8303 Branch: perl
8304 ! Porting/cmpVERSION.pl
8305____________________________________________________________________________
8306[ 20695] By: jhi on 2003/08/14 06:44:10
8307 Log: Diffs-sans-version-diffs between blead and maint.
8308 Branch: perl
8309 ! ext/B/B.pm ext/B/B/C.pm ext/B/B/Concise.pm ext/B/B/Deparse.pm
8310 ! ext/Devel/PPPort/PPPort.pm lib/English.pm lib/overload.pm
8311 ! lib/warnings.pm warnings.pl
8312____________________________________________________________________________
8313[ 20694] By: jhi on 2003/08/14 05:36:20
8314 Log: Regen warnings.
8315 Branch: maint-5.8/perl
8316 ! lib/warnings.pm
8317____________________________________________________________________________
8318[ 20693] By: jhi on 2003/08/14 05:35:13
8319 Log: Integrate:
8320 [ 20685]
8321 Subject: Re: script wanted
8322 From: Enache Adrian <enache@rdslink.ro>
8323 Date: Wed, 13 Aug 2003 22:31:18 +0300
8324 Message-ID: <20030813193118.GA1273@ratsnest.hole>
8325
8326 [ 20686]
8327 Subject: Re: script wanted
8328 From: Nicholas Clark <nick@ccl4.org>
8329 Date: Wed, 13 Aug 2003 20:46:09 +0100
8330 Message-ID: <20030813204609.G20130@plum.flirble.org>
8331
8332 [ 20687]
8333 Alpha version numbers noticed by Schwern.
8334 (These hacks are no more needed since the PAUSE indexer no
8335 more indexes the insides of Perl distributions, says Andreas.)
8336
8337 [ 20688]
8338 A swath of VERSION patches from Nick Clark.
8339
8340 [ 20691]
8341 Add a known exception.
8342
8343 [ 20692]
8344 One more VERSION bump.
8345 Branch: maint-5.8/perl
8346 !> (integrate 61 files)
8347____________________________________________________________________________
8348[ 20692] By: jhi on 2003/08/14 05:23:58
8349 Log: One more VERSION bump.
8350 Branch: perl
8351 ! lib/SelfLoader.pm
8352____________________________________________________________________________
8353[ 20691] By: jhi on 2003/08/14 05:21:20
8354 Log: Add a known exception.
8355 Branch: perl
8356 ! Porting/cmpVERSION.pl
8357____________________________________________________________________________
8358[ 20690] By: jhi on 2003/08/14 05:18:30
8359 Log: Integrate:
8360 [ 20578]
8361 Fix from Dave Mitchell to the recent from lib/Devel/SelfStubber.t:
8362 Variable "$nested" is not available at (re_eval 4) line 2, <DATA> line 8.
8363 which was on old bug unearthed by the change #20559.
8364 Basically, qr// + (??{$lexical}) combination is very, VERY broken.
8365 Workaround is not to use lexicals.
8366
8367 [ 20583]
8368 Change #20578 to SelfLoader is probably also useful to AutoSplit.
8369
8370 (Strictly speaking these would no be necessary (yet) for maint
8371 since the more recent lexical patches have not yet been merged,
8372 but since the qr// + (??{$lexical}) combination is dubious in
8373 any case, let's.)
8374 Branch: maint-5.8/perl
8375 !> lib/AutoSplit.pm lib/SelfLoader.pm
8376____________________________________________________________________________
8377[ 20689] By: jhi on 2003/08/14 04:54:18
8378 Log: The blead version has got the dor.
8379 Branch: perl
8380 ! ext/Opcode/Opcode.pm
8381____________________________________________________________________________
8382[ 20688] By: jhi on 2003/08/14 04:51:30
8383 Log: A swath of VERSION patches from Nick Clark.
8384 Branch: perl
8385 ! lib/AutoSplit.pm lib/CPAN/Nox.pm lib/Cwd.pm lib/English.pm
8386 ! lib/File/Basename.pm lib/File/Copy.pm lib/File/Path.pm
8387 ! lib/Hash/Util.pm lib/Net/hostent.pm lib/Net/servent.pm
8388 ! lib/Text/Abbrev.pm lib/Thread/Semaphore.pm lib/Tie/Array.pm
8389 ! lib/Tie/RefHash.pm lib/UNIVERSAL.pm lib/Unicode/UCD.pm
8390 ! lib/attributes.pm lib/base.pm lib/diagnostics.pm lib/fields.pm
8391 ! lib/filetest.pm lib/open.pm lib/overload.pm lib/utf8.pm
8392 ! lib/vmsish.pm os2/OS2/Process/Process.pm
8393 ! os2/OS2/REXX/DLL/DLL.pm t/TestInit.pm
8394 ! t/lib/MakeMaker/Test/Utils.pm t/lib/Math/BigInt/BareCalc.pm
8395 ! vms/ext/Filespec.pm warnings.pl
8396____________________________________________________________________________
8397[ 20687] By: jhi on 2003/08/13 18:53:15
8398 Log: Alpha version numbers noticed by Schwern.
8399 (These hacks are no more needed since the PAUSE indexer no
8400 more indexes the insides of Perl distributions, says Andreas.)
8401 Branch: perl
8402 ! ext/Devel/DProf/DProf.pm ext/Devel/Peek/Peek.pm
8403 ! ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/Handle.pm
8404 ! ext/IO/lib/IO/Seekable.pm ext/IO/lib/IO/Socket/UNIX.pm
8405 ! ext/IPC/SysV/Msg.pm ext/IPC/SysV/Semaphore.pm
8406 ! ext/IPC/SysV/SysV.pm
8407____________________________________________________________________________
8408[ 20686] By: jhi on 2003/08/13 18:42:50
8409 Log: Subject: Re: script wanted
8410 From: Nicholas Clark <nick@ccl4.org>
8411 Date: Wed, 13 Aug 2003 20:46:09 +0100
8412 Message-ID: <20030813204609.G20130@plum.flirble.org>
8413 Branch: perl
8414 ! ext/B/B.pm ext/B/B/Bblock.pm ext/B/B/C.pm ext/B/B/Debug.pm
8415 ! ext/B/B/Lint.pm ext/Fcntl/Fcntl.pm ext/File/Glob/Glob.pm
8416 ! ext/IO/IO.pm ext/IO/lib/IO/File.pm ext/IO/lib/IO/Handle.pm
8417 ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
8418 ! ext/IO/lib/IO/Socket/INET.pm ext/IPC/SysV/Msg.pm
8419 ! ext/IPC/SysV/Semaphore.pm ext/POSIX/POSIX.pm
8420 ! ext/Sys/Hostname/Hostname.pm ext/Sys/Syslog/Syslog.pm
8421 ! ext/re/re.pm ext/threads/shared/shared.pm
8422 ! ext/threads/threads.pm
8423____________________________________________________________________________
8424[ 20685] By: jhi on 2003/08/13 18:24:50
8425 Log: Subject: Re: script wanted
8426 From: Enache Adrian <enache@rdslink.ro>
8427 Date: Wed, 13 Aug 2003 22:31:18 +0300
8428 Message-ID: <20030813193118.GA1273@ratsnest.hole>
8429 Branch: perl
8430 ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
8431 ! ext/B/B/Disassembler.pm
8432____________________________________________________________________________
8433[ 20684] By: jhi on 2003/08/13 17:28:40
8434 Log: Even my scripts rebel.
8435 Branch: maint-5.8/perl
8436 ! patchlevel.h
8437____________________________________________________________________________
8438[ 20683] By: jhi on 2003/08/13 17:28:00
8439 Log: Update Changes.
8440 Branch: maint-5.8/perl
8441 ! Changes patchlevel.h
8442____________________________________________________________________________
8443[ 20682] By: jhi on 2003/08/13 17:19:03
8444 Log: Integrate:
8445 [ 20680]
8446 Subject: [PATCH] GNU Public General Public General GNU Public License License
8447 From: Michael G Schwern <schwern@pobox.com>
8448 Date: Wed, 13 Aug 2003 11:15:40 -0700
8449 Message-ID: <20030813181539.GA22658@windhund.schwern.org>
8450
8451 [ 20681]
8452 Subject: [PATCH lib/lib_pm.PL utils/perlcc.PL utils/h2xs.PL] RE: script wanted
8453 From: Robin Barker <Robin.Barker@npl.co.uk>
8454 Date: Wed, 13 Aug 2003 18:05:38 +0100
8455 Message-ID: <533D273D4014D411AB1D00062938C4D904046637@hotel.npl.co.uk>
8456 Branch: maint-5.8/perl
8457 !> lib/lib_pm.PL pod/perlartistic.pod pod/perlgpl.pod
8458 !> utils/h2xs.PL utils/perlcc.PL
8459____________________________________________________________________________
8460[ 20681] By: jhi on 2003/08/13 17:13:12
8461 Log: Subject: [PATCH lib/lib_pm.PL utils/perlcc.PL utils/h2xs.PL] RE: script wanted
8462 From: Robin Barker <Robin.Barker@npl.co.uk>
8463 Date: Wed, 13 Aug 2003 18:05:38 +0100
8464 Message-ID: <533D273D4014D411AB1D00062938C4D904046637@hotel.npl.co.uk>
8465 Branch: perl
8466 ! lib/lib_pm.PL utils/h2xs.PL utils/perlcc.PL
8467____________________________________________________________________________
8468[ 20680] By: jhi on 2003/08/13 17:11:38
8469 Log: Subject: [PATCH] GNU Public General Public General GNU Public License License
8470 From: Michael G Schwern <schwern@pobox.com>
8471 Date: Wed, 13 Aug 2003 11:15:40 -0700
8472 Message-ID: <20030813181539.GA22658@windhund.schwern.org>
8473 Branch: perl
8474 ! pod/perlartistic.pod pod/perlgpl.pod
8475____________________________________________________________________________
8476[ 20679] By: jhi on 2003/08/13 13:55:52
8477 Log: Integrate:
8478 [ 20678]
8479 Add cmpVERSION.pl from Slaven for comparing two
8480 Perl source trees for modules that have changed
8481 but have the same version numbers.
8482 Branch: maint-5.8/perl
8483 +> Porting/cmpVERSION.pl
8484 !> MANIFEST
8485____________________________________________________________________________
8486[ 20678] By: jhi on 2003/08/13 13:46:18
8487 Log: Add cmpVERSION.pl from Slaven for comparing two
8488 Perl source trees for modules that have changed
8489 but have the same version numbers.
8490 Branch: perl
8491 + Porting/cmpVERSION.pl
8492 ! MANIFEST
8493____________________________________________________________________________
8494[ 20677] By: jhi on 2003/08/13 13:10:04
8495 Log: Integrate:
8496 [ 20668]
8497 perlipc thinko by John P. Linderman.
8498
8499 [ 20669]
8500 More don't:s for nyetworking.
8501
8502 [ 20670]
8503 Subject: [PATCH Tie::File] turn the alarm off in the tests (was Re: maint @ 20617 (on VMS))
8504 From: "Craig A. Berry" <craigberry@mac.com>
8505 Date: Tue, 12 Aug 2003 21:12:00 -0500
8506 Message-ID: <3F399E70.4050607@mac.com>
8507
8508 [ 20671]
8509 Subject: [PATCH] another VMS pod nit
8510 From: "Craig A. Berry" <craigberry@mac.com>
8511 Date: Wed, 13 Aug 2003 01:01:46 -0500
8512 Message-ID: <3F39D44A.4010207@mac.com>
8513
8514 [ 20672]
8515 One tweak for microperl in OS/2.
8516
8517 [ 20673]
8518 One tweak from Dave Mitchell.
8519
8520 [ 20674]
8521 Make (hopefully) the Windows CR CR LF bug go away
8522 by making the CRLF layer repel any other CRLF layers.
8523 In other words: binmode(FH, ":crlf") in e.g. Win32
8524 is effectively a no-op since there already is one
8525 CRLF layer in the stack by default.
8526
8527 [ 20675]
8528 Bye bye, bug.
8529
8530 [ 20676]
8531 Make Johan's confusion go away, but there are no doubt more
8532 similar cases.
8533 Branch: maint-5.8/perl
8534 !> lib/File/Find.pm lib/Tie/File/t/24_cache_loop.t
8535 !> lib/Tie/File/t/29_downcopy.t lib/Tie/File/t/29a_upcopy.t
8536 !> perl.h perlio.c pod/perlipc.pod pod/perlport.pod
8537 !> pod/perlrun.pod t/io/crlf.t t/io/layers.t
8538 !> vms/descrip_mms.template
8539____________________________________________________________________________
8540[ 20676] By: jhi on 2003/08/13 12:03:08
8541 Log: Make Johan's confusion go away, but there are no doubt more
8542 similar cases.
8543 Branch: perl
8544 ! lib/File/Find.pm
8545____________________________________________________________________________
8546[ 20675] By: jhi on 2003/08/13 11:58:31
8547 Log: Bye bye, bug.
8548 Branch: maint-5.8/perl
8549 ! pod/perldelta.pod
8550____________________________________________________________________________
8551[ 20674] By: jhi on 2003/08/13 11:57:47
8552 Log: Make (hopefully) the Windows CR CR LF bug go away
8553 by making the CRLF layer repel any other CRLF layers.
8554 In other words: binmode(FH, ":crlf") in e.g. Win32
8555 is effectively a no-op since there already is one
8556 CRLF layer in the stack by default.
8557 Branch: perl
8558 ! perlio.c pod/perlrun.pod t/io/crlf.t t/io/layers.t
8559____________________________________________________________________________
8560[ 20673] By: jhi on 2003/08/13 10:29:56
8561 Log: One tweak from Dave Mitchell.
8562 Branch: perl
8563 ! pod/perlport.pod
8564____________________________________________________________________________
8565[ 20672] By: jhi on 2003/08/13 10:27:54
8566 Log: One tweak for microperl in OS/2.
8567 Branch: perl
8568 ! perl.h
8569____________________________________________________________________________
8570[ 20671] By: merijn on 2003/08/13 08:57:27
8571 Log: Subject: [PATCH] another VMS pod nit
8572 From: "Craig A. Berry" <craigberry@mac.com>
8573 Date: Wed, 13 Aug 2003 01:01:46 -0500
8574 Message-ID: <3F39D44A.4010207@mac.com>
8575 Branch: perl
8576 ! vms/descrip_mms.template
8577____________________________________________________________________________
8578[ 20670] By: merijn on 2003/08/13 08:54:45
8579 Log: Subject: [PATCH Tie::File] turn the alarm off in the tests (was Re: maint @ 20617 (on VMS))
8580 From: "Craig A. Berry" <craigberry@mac.com>
8581 Date: Tue, 12 Aug 2003 21:12:00 -0500
8582 Message-ID: <3F399E70.4050607@mac.com>
8583 Branch: perl
8584 ! lib/Tie/File/t/24_cache_loop.t lib/Tie/File/t/29_downcopy.t
8585 ! lib/Tie/File/t/29a_upcopy.t
8586____________________________________________________________________________
8587[ 20669] By: jhi on 2003/08/13 06:06:39
8588 Log: More don't:s for nyetworking.
8589 Branch: perl
8590 ! pod/perlport.pod
8591____________________________________________________________________________
8592[ 20668] By: rgs on 2003/08/12 20:27:41
8593 Log: perlipc thinko by John P. Linderman.
8594 Branch: perl
8595 ! pod/perlipc.pod
8596____________________________________________________________________________
8597[ 20667] By: jhi on 2003/08/12 20:04:53
8598 Log: Integrate:
8599 [ 20659]
8600 Document the known CR CR LF issue in Win32.
8601
8602 [ 20660]
8603 A better patch from Yitzchak Scott-Thoennes for [perl #23287].
8604
8605 [ 20661]
8606 perlreref tweaks from SADAHIRO Tomoyuki and Ian Truskett.
8607
8608 [ 20662]
8609 Subject: [PATCH: perl@20617] add handling for new perlreref.pod file to VMS build.
8610 From: PPrymmer@factset.com
8611 Date: Tue, 12 Aug 2003 16:24:21 -0400
8612 Message-ID: <OF26F453CA.0F963A91-ON85256D80.006F991A-85256D80.007017F2@factset.com>
8613
8614 [ 20663]
8615 More missing pods for VMS.
8616
8617 [ 20664]
8618 Do some updates also on pod.mak -- which seems to
8619 be badly out of date.
8620
8621 [ 20665]
8622 README.cygwin updates from Gerrit P. Haase.
8623 Branch: maint-5.8/perl
8624 !> README.cygwin lib/ExtUtils/Installed.pm pod/perlreref.pod
8625 !> pp_sys.c vms/descrip_mms.template win32/pod.mak
8626____________________________________________________________________________
8627[ 20666] By: jhi on 2003/08/12 20:02:13
8628 Log: Subject: Re: maint @ 20617 [PATCH]
8629 From: =?iso-8859-1?q?Sreeji=20K=20Das?= <sreeji_k@yahoo.com>
8630 Date: Tue, 12 Aug 2003 13:19:00 +0100 (BST)
8631 Message-ID: <20030812121900.26127.qmail@web10501.mail.yahoo.com>
8632 Branch: perl
8633 ! lib/ExtUtils/Installed.pm
8634____________________________________________________________________________
8635[ 20665] By: jhi on 2003/08/12 19:59:54
8636 Log: README.cygwin updates from Gerrit P. Haase.
8637 Branch: perl
8638 ! README.cygwin
8639____________________________________________________________________________
8640[ 20664] By: jhi on 2003/08/12 19:57:53
8641 Log: Do some updates also on pod.mak -- which seems to
8642 be badly out of date.
8643 Branch: perl
8644 ! win32/pod.mak
8645____________________________________________________________________________
8646[ 20663] By: jhi on 2003/08/12 19:48:01
8647 Log: More missing pods for VMS.
8648 Branch: perl
8649 ! vms/descrip_mms.template
8650____________________________________________________________________________
8651[ 20662] By: jhi on 2003/08/12 19:43:46
8652 Log: Subject: [PATCH: perl@20617] add handling for new perlreref.pod file to VMS build.
8653 From: PPrymmer@factset.com
8654 Date: Tue, 12 Aug 2003 16:24:21 -0400
8655 Message-ID: <OF26F453CA.0F963A91-ON85256D80.006F991A-85256D80.007017F2@factset.com>
8656 Branch: perl
8657 ! vms/descrip_mms.template
8658____________________________________________________________________________
8659[ 20661] By: jhi on 2003/08/12 19:41:50
8660 Log: perlreref tweaks from SADAHIRO Tomoyuki and Ian Truskett.
8661 Branch: perl
8662 ! pod/perlreref.pod
8663____________________________________________________________________________
8664[ 20660] By: jhi on 2003/08/12 18:44:27
8665 Log: A better patch from Yitzchak Scott-Thoennes for [perl #23287].
8666 Branch: perl
8667 ! pp_sys.c
8668____________________________________________________________________________
8669[ 20659] By: jhi on 2003/08/12 18:39:09
8670 Log: Document the known CR CR LF issue in Win32.
8671 Branch: maint-5.8/perl
8672 ! pod/perldelta.pod
8673____________________________________________________________________________
8674[ 20658] By: jhi on 2003/08/12 13:57:58
8675 Log: Integrate:
8676 [ 20657]
8677 Multiline one-liners are a bit too much to ask.
8678 Branch: maint-5.8/perl
8679 !> t/op/closure.t
8680____________________________________________________________________________
8681[ 20657] By: jhi on 2003/08/12 13:55:56
8682 Log: Multiline one-liners are a bit too much to ask.
8683 Branch: perl
8684 ! t/op/closure.t
8685____________________________________________________________________________
8686[ 20656] By: jhi on 2003/08/12 13:27:44
8687 Log: Integrate:
8688 [ 20650]
8689 Subject: [PATCH 5.8.1 @20218] xsubpp: wrong code
8690 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
8691 Date: Sun, 3 Aug 2003 06:19:02 -0700
8692 Message-ID: <20030803131902.GA5146@math.berkeley.edu>
8693
8694 [ 20651]
8695 Microperl expects C89 (like the rest of Perl).
8696
8697 [ 20652]
8698 Subject: perlcheat
8699 From: Juerd <juerd@cpan.org>
8700 Date: Mon, 11 Aug 2003 20:24:34 +0200
8701 Message-Id: <20030811182434.GI17748@c3.convolution.nl>
8702
8703 [ 20653]
8704 Retract #20644 and #20643; on non-microperl non-fcntl
8705 systems Wrong Thing would be done. (And as Sarathy
8706 points out, closing both ends of a pipe is rather
8707 identical to never opening it...)
8708
8709 [ 20654]
8710 Add perlcheat to the toc and perl.pod; regen toc.
8711
8712 [ 20655]
8713 Advertise perlcheat.
8714 Branch: maint-5.8/perl
8715 +> pod/perlcheat.pod
8716 !> MANIFEST README.micro pod/buildtoc.PL pod/perl.pod
8717 !> pod/perltoc.pod pp_sys.c util.c
8718____________________________________________________________________________
8719[ 20655] By: jhi on 2003/08/12 13:24:21
8720 Log: Advertise perlcheat.
8721 Branch: maint-5.8/perl
8722 ! pod/perldelta.pod
8723____________________________________________________________________________
8724[ 20654] By: jhi on 2003/08/12 13:23:00
8725 Log: Add perlcheat to the toc and perl.pod; regen toc.
8726 Branch: perl
8727 ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
8728____________________________________________________________________________
8729[ 20653] By: jhi on 2003/08/12 13:15:17
8730 Log: Retract #20644 and #20643; on non-microperl non-fcntl
8731 systems Wrong Thing would be done. (And as Sarathy
8732 points out, closing both ends of a pipe is rather
8733 identical to never opening it...)
8734 Branch: perl
8735 ! pp_sys.c util.c
8736____________________________________________________________________________
8737[ 20652] By: ams on 2003/08/12 13:06:40
8738 Log: Subject: perlcheat
8739 From: Juerd <juerd@cpan.org>
8740 Date: Mon, 11 Aug 2003 20:24:34 +0200
8741 Message-Id: <20030811182434.GI17748@c3.convolution.nl>
8742 Branch: perl
8743 + pod/perlcheat.pod
8744 ! MANIFEST
8745____________________________________________________________________________
8746[ 20651] By: jhi on 2003/08/12 12:52:09
8747 Log: Microperl expects C89 (like the rest of Perl).
8748 Branch: perl
8749 ! README.micro
8750____________________________________________________________________________
8751[ 20650] By: jhi on 2003/08/12 12:32:29
8752 Log: Subject: [PATCH 5.8.1 @20218] xsubpp: wrong code
8753 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
8754 Date: Sun, 3 Aug 2003 06:19:02 -0700
8755 Message-ID: <20030803131902.GA5146@math.berkeley.edu>
8756 Branch: perl
8757 ! lib/ExtUtils/xsubpp
8758____________________________________________________________________________
8759[ 20649] By: jhi on 2003/08/12 12:14:31
8760 Log: Integrate:
8761 [ 20639]
8762 No dor in maint.
8763
8764 [ 20640]
8765 returning would be good, too.
8766
8767 [ 20643]
8768 A generally useful hunk from Ilya's microperl patch.
8769 (If no fcntl F_SETFD, fake it the best we can.)
8770
8771 [ 20644]
8772 More microperlish faking in case no fcntl F_SETFD for pipes.
8773
8774 [ 20645]
8775 Localize PARENT (based on Ilya's microperl patch).
8776
8777 [ 20646]
8778 Apply much of Ilya's microperl patch, but instead of
8779 implementing the opendir()/readdir()/closedir() using
8780 external commands give up "ANSI-pureness" and define them
8781 in uconfig.sh, also define other stuff like rename() and putenv().
8782 Leave out the $| emulation in my_fork() since we are
8783 not supposed to have fork() under microperl.
8784
8785 [ 20647]
8786 Oops.
8787
8788 [ 20648]
8789 If we are void we cannot return a value.
8790 Branch: maint-5.8/perl
8791 !> Makefile.micro README.micro doio.c lib/Cwd.pm mg.c perl.c
8792 !> perl.h perlvars.h pp_sys.c sv.c uconfig.h uconfig.sh util.c
8793____________________________________________________________________________
8794[ 20648] By: jhi on 2003/08/12 11:56:52
8795 Log: If we are void we cannot return a value.
8796 Branch: perl
8797 ! mg.c
8798____________________________________________________________________________
8799[ 20647] By: jhi on 2003/08/12 11:54:32
8800 Log: Oops.
8801 Branch: perl
8802 ! perl.c
8803____________________________________________________________________________
8804[ 20646] By: jhi on 2003/08/12 11:51:25
8805 Log: Apply much of Ilya's microperl patch, but instead of
8806 implementing the opendir()/readdir()/closedir() using
8807 external commands give up "ANSI-pureness" and define them
8808 in uconfig.sh, also define other stuff like rename() and putenv().
8809 Leave out the $| emulation in my_fork() since we are
8810 not supposed to have fork() under microperl.
8811 Branch: perl
8812 ! Makefile.micro README.micro doio.c mg.c perl.c perl.h
8813 ! perlvars.h pp_sys.c sv.c uconfig.h uconfig.sh util.c
8814____________________________________________________________________________
8815[ 20645] By: jhi on 2003/08/12 10:40:54
8816 Log: Localize PARENT (based on Ilya's microperl patch).
8817 Branch: perl
8818 ! lib/Cwd.pm
8819____________________________________________________________________________
8820[ 20644] By: jhi on 2003/08/12 10:37:55
8821 Log: More microperlish faking in case no fcntl F_SETFD for pipes.
8822 Branch: perl
8823 ! util.c
8824____________________________________________________________________________
8825[ 20643] By: jhi on 2003/08/12 10:13:53
8826 Log: A generally useful hunk from Ilya's microperl patch.
8827 (If no fcntl F_SETFD, fake it the best we can.)
8828 Branch: perl
8829 ! pp_sys.c
8830____________________________________________________________________________
8831[ 20642] By: jhi on 2003/08/12 10:04:55
8832 Log: Drop problematic test for now.
8833 Branch: maint-5.8/perl
8834 - ext/Safe/t/safeops.t
8835 ! MANIFEST
8836____________________________________________________________________________
8837[ 20641] By: jhi on 2003/08/12 10:03:56
8838 Log: Retract #20640 and #20639; easier just to not have this
8839 test in maint (it seems dependent on opcode.pl, urgh.)
8840 Branch: maint-5.8/perl
8841 !> ext/Safe/t/safeops.t
8842____________________________________________________________________________
8843[ 20640] By: jhi on 2003/08/12 09:59:16
8844 Log: returning would be good, too.
8845 Branch: perl
8846 ! ext/Safe/t/safeops.t
8847____________________________________________________________________________
8848[ 20639] By: jhi on 2003/08/12 09:57:07
8849 Log: No dor in maint.
8850 Branch: perl
8851 ! ext/Safe/t/safeops.t
8852____________________________________________________________________________
8853[ 20638] By: jhi on 2003/08/12 09:45:10
8854 Log: Clarify information about the HP-UX cc warning.
8855 Branch: maint-5.8/perl
8856 ! pod/perldelta.pod
8857____________________________________________________________________________
8858[ 20637] By: jhi on 2003/08/12 09:36:26
8859 Log: Looked funny in harness output.
8860 Branch: maint-5.8/perl
8861 ! t/op/closure.t
8862____________________________________________________________________________
8863[ 20636] By: jhi on 2003/08/12 08:58:28
8864 Log: Integrate:
8865 [ 20620]
8866 Subject: [PATCH] [@20616] perlreref.pod incorrectly describes \c
8867 From: merlyn@stonehenge.com (Randal L. Schwartz)
8868 Date: 11 Aug 2003 09:45:29 -0700
8869 Message-ID: <86isp4kus6.fsf@blue.stonehenge.com>
8870
8871 Subject: [PATCH] perlreref.pod tweaks
8872 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
8873 Date: Mon, 11 Aug 2003 13:19:51 -0400
8874 Message-ID: <20030811171951.GA332851@linguist.thayer.dartmouth.edu>
8875
8876 Plus a note about {,n} not being a quantifier.
8877
8878 [ 20621]
8879 perldelta tweaks.
8880
8881 [ 20622]
8882 [perl #23274] B::Deparse wasn't handling correctly builtins that
8883 have two filehandles in their prototypes (pipe, socketpair,
8884 accept) when non-bareword prototypes were used.
8885
8886 [ 20623]
8887 Add a new regression test for Safe : tests that all ops
8888 can be trapped by a Safe compartement (except for the ones
8889 that can't.)
8890
8891 [ 20625]
8892 Subject: Re: [PATCH] perlreref.pod tweaks
8893 From: Iain Truskett <spoon@cpan.org>
8894 Date: Tue, 12 Aug 2003 13:59:27 +1000
8895 Message-ID: <20030812035927.GJ7914@gytha.anu.edu.au>
8896
8897 plus explain "Titlecase".
8898
8899 [ 20626]
8900 head2-ify many of the head1s, will probably make this look
8901 better in HTML.
8902
8903 [ 20627]
8904 Gotta Get'em Cases Right.
8905
8906 [ 20628]
8907 Too enthusiastic head2-ing.
8908
8909 [ 20629]
8910 =head2 ALL CAPS
8911
8912 [ 20630]
8913 Fix for [perl #23287] segfault in untie.
8914 (Well, at least no more coredump.)
8915
8916 [ 20631]
8917 A new try from Dave Mitchell for [perl #23265].
8918
8919 [ 20632]
8920 The Debian people have expressed a wish for the boilerplate
8921 being specific about the Perl version; patch from Nick Clark.
8922
8923 [ 20633]
8924 Subject: [PATCH h2xs] produce Foo-Bar/lib/Foo/Bar.pm
8925 From: Michael G Schwern <schwern@pobox.com>
8926 Date: Sat, 9 Aug 2003 15:03:02 -0700
8927 Message-ID: <20030809220301.GE24919@windhund.schwern.org>
8928
8929 (plus one extra catfile() in h2xs.t)
8930
8931 [ 20634]
8932 Subject: [PATCH 5.8.1 @19053] XSLoader revisted
8933 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
8934 Date: Mon, 21 Apr 2003 22:44:37 -0700
8935 Message-ID: <20030422054437.GA8297@math.berkeley.edu>
8936
8937 (the XSLoader doc hunk; the h2xs looks like a behavioural change)
8938
8939 [ 20635]
8940 Advertise neo-h2xs.
8941 Branch: maint-5.8/perl
8942 +> ext/Safe/t/safeops.t
8943 !> MANIFEST ext/B/B/Deparse.pm ext/DynaLoader/XSLoader_pm.PL
8944 !> lib/h2xs.t pad.c pod/perlreref.pod pp_sys.c t/op/closure.t
8945 !> t/op/tie.t utils/h2xs.PL
8946____________________________________________________________________________
8947[ 20635] By: jhi on 2003/08/12 08:48:56
8948 Log: Advertise neo-h2xs.
8949 Branch: maint-5.8/perl
8950 ! pod/perldelta.pod
8951____________________________________________________________________________
8952[ 20634] By: jhi on 2003/08/12 08:41:49
8953 Log: Subject: [PATCH 5.8.1 @19053] XSLoader revisted
8954 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
8955 Date: Mon, 21 Apr 2003 22:44:37 -0700
8956 Message-ID: <20030422054437.GA8297@math.berkeley.edu>
8957
8958 (the XSLoader doc hunk; the h2xs looks like a behavioural change)
8959 Branch: perl
8960 ! ext/DynaLoader/XSLoader_pm.PL
8961____________________________________________________________________________
8962[ 20633] By: jhi on 2003/08/12 08:31:01
8963 Log: Subject: [PATCH h2xs] produce Foo-Bar/lib/Foo/Bar.pm
8964 From: Michael G Schwern <schwern@pobox.com>
8965 Date: Sat, 9 Aug 2003 15:03:02 -0700
8966 Message-ID: <20030809220301.GE24919@windhund.schwern.org>
8967
8968 (plus one extra catfile() in h2xs.t)
8969 Branch: perl
8970 ! lib/h2xs.t utils/h2xs.PL
8971____________________________________________________________________________
8972[ 20632] By: jhi on 2003/08/12 08:11:08
8973 Log: The Debian people have expressed a wish for the boilerplate
8974 being specific about the Perl version; patch from Nick Clark.
8975 Branch: perl
8976 ! utils/h2xs.PL
8977____________________________________________________________________________
8978[ 20631] By: jhi on 2003/08/12 08:09:43
8979 Log: A new try from Dave Mitchell for [perl #23265].
8980 Branch: perl
8981 ! pad.c t/op/closure.t
8982____________________________________________________________________________
8983[ 20630] By: jhi on 2003/08/12 07:59:22
8984 Log: Fix for [perl #23287] segfault in untie.
8985 (Well, at least no more coredump.)
8986 Branch: perl
8987 ! pp_sys.c t/op/tie.t
8988____________________________________________________________________________
8989[ 20629] By: jhi on 2003/08/12 06:24:32
8990 Log: =head2 ALL CAPS
8991 Branch: perl
8992 ! pod/perlreref.pod
8993____________________________________________________________________________
8994[ 20628] By: jhi on 2003/08/12 06:22:25
8995 Log: Too enthusiastic head2-ing.
8996 Branch: perl
8997 ! pod/perlreref.pod
8998____________________________________________________________________________
8999[ 20627] By: jhi on 2003/08/12 05:17:14
9000 Log: Gotta Get'em Cases Right.
9001 Branch: perl
9002 ! pod/perlreref.pod
9003____________________________________________________________________________
9004[ 20626] By: jhi on 2003/08/12 05:04:02
9005 Log: head2-ify many of the head1s, will probably make this look
9006 better in HTML.
9007 Branch: perl
9008 ! pod/perlreref.pod
9009____________________________________________________________________________
9010[ 20625] By: jhi on 2003/08/12 04:55:32
9011 Log: Subject: Re: [PATCH] perlreref.pod tweaks
9012 From: Iain Truskett <spoon@cpan.org>
9013 Date: Tue, 12 Aug 2003 13:59:27 +1000
9014 Message-ID: <20030812035927.GJ7914@gytha.anu.edu.au>
9015
9016 plus explain "Titlecase".
9017 Branch: perl
9018 ! pod/perlreref.pod
9019____________________________________________________________________________
9020[ 20624] By: rgs on 2003/08/11 21:12:02
9021 Log: Grab perlbug from bleadperl (@18698)
9022 Branch: maint-5.6
9023 ! perl-5.6.2/utils/perlbug.PL
9024____________________________________________________________________________
9025[ 20623] By: rgs on 2003/08/11 19:59:17
9026 Log: Add a new regression test for Safe : tests that all ops
9027 can be trapped by a Safe compartement (except for the ones
9028 that can't.)
9029 Branch: perl
9030 + ext/Safe/t/safeops.t
9031 ! MANIFEST
9032____________________________________________________________________________
9033[ 20622] By: rgs on 2003/08/11 18:33:06
9034 Log: B::Deparse wasn't handling correctly builtins that
9035 have two filehandles in their prototypes (pipe, socketpair,
9036 accept) when non-bareword prototypes were used.
9037 Branch: perl
9038 ! ext/B/B/Deparse.pm
9039____________________________________________________________________________
9040[ 20621] By: jhi on 2003/08/11 17:38:23
9041 Log: perldelta tweaks.
9042 Branch: maint-5.8/perl
9043 ! pod/perldelta.pod
9044____________________________________________________________________________
9045[ 20620] By: jhi on 2003/08/11 17:08:29
9046 Log: Subject: [PATCH] [@20616] perlreref.pod incorrectly describes \c
9047 From: merlyn@stonehenge.com (Randal L. Schwartz)
9048 Date: 11 Aug 2003 09:45:29 -0700
9049 Message-ID: <86isp4kus6.fsf@blue.stonehenge.com>
9050
9051 Subject: [PATCH] perlreref.pod tweaks
9052 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
9053 Date: Mon, 11 Aug 2003 13:19:51 -0400
9054 Message-ID: <20030811171951.GA332851@linguist.thayer.dartmouth.edu>
9055
9056 Plus a note about {,n} not being a quantifier.
9057 Branch: perl
9058 ! pod/perlreref.pod
9059____________________________________________________________________________
9060[ 20619] By: jhi on 2003/08/11 15:50:34
9061 Log: Integrate:
9062 [ 20618]
9063 $* is not yet fully gone in 5.8.1.
9064 Branch: perl
9065 !> pod/perlreref.pod
9066____________________________________________________________________________
9067[ 20618] By: jhi on 2003/08/11 15:49:27
9068 Log: $* is not yet fully gone in 5.8.1.
9069 Branch: maint-5.8/perl
9070 ! pod/perlreref.pod
9071____________________________________________________________________________
9072[ 20617] By: jhi on 2003/08/11 12:29:51
9073 Log: Update Changes.
9074 Branch: maint-5.8/perl
9075 ! Changes patchlevel.h
9076____________________________________________________________________________
9077[ 20616] By: jhi on 2003/08/11 12:25:29
9078 Log: Advertise the PerlIO::via UTF8 method.
9079 Branch: maint-5.8/perl
9080 ! pod/perldelta.pod
9081____________________________________________________________________________
9082[ 20615] By: jhi on 2003/08/11 12:23:17
9083 Log: Integrate:
9084 [ 20611]
9085 Typo fix from Boris Zentner.
9086
9087 [ 20612]
9088 VC6 warning: result still unsigned.
9089
9090 [ 20614]
9091 Allow via layer to affect the PERLIO_F_UTF8 flag.
9092 Branch: maint-5.8/perl
9093 !> ext/PerlIO/via/via.pm ext/PerlIO/via/via.xs pod/perlfaq5.pod
9094 !> regexec.c
9095____________________________________________________________________________
9096[ 20614] By: nick on 2003/08/11 12:14:55
9097 Log: Allow via layer to affect the PERLIO_F_UTF8 flag.
9098 Branch: perl
9099 ! ext/PerlIO/via/via.pm ext/PerlIO/via/via.xs
9100____________________________________________________________________________
9101[ 20613] By: nick on 2003/08/11 11:50:08
9102 Log: Integrate mainline
9103 Branch: perlio
9104 +> pod/perlreref.pod
9105 !> (integrate 61 files)
9106____________________________________________________________________________
9107[ 20612] By: jhi on 2003/08/11 10:55:19
9108 Log: VC6 warning: result still unsigned.
9109 Branch: perl
9110 ! regexec.c
9111____________________________________________________________________________
9112[ 20611] By: jhi on 2003/08/11 08:33:13
9113 Log: Typo fix from Boris Zentner.
9114 Branch: perl
9115 ! pod/perlfaq5.pod
9116____________________________________________________________________________
9117[ 20610] By: jhi on 2003/08/11 06:37:13
9118 Log: Integrate:
9119 [ 20607]
9120 Subject: Re: killing for vital signs [PATCH]
9121 From: "John P. Linderman" <jpl@research.att.com>
9122 Date: Sun, 10 Aug 2003 15:44:33 -0400 (EDT)
9123 Message-Id: <200308101944.PAA96547@raptor.research.att.com>
9124
9125 [ 20608]
9126 Explain the 'Wide character in print' a bit more.
9127
9128 [ 20609]
9129 Subject: [perl #23273] warnings in Unicode::UCD
9130 From: Lukas Mai (via RT) <perlbug-followup@perl.org>
9131 Date: 10 Aug 2003 22:37:41 -0000
9132 Message-ID: <rt-23273-62473.18.6967347513833@rt.perl.org>
9133 Branch: maint-5.8/perl
9134 !> lib/Unicode/UCD.pm lib/Unicode/UCD.t pod/perldiag.pod
9135 !> pod/perlfunc.pod pod/perlipc.pod
9136____________________________________________________________________________
9137[ 20609] By: jhi on 2003/08/11 04:28:29
9138 Log: Subject: [perl #23273] warnings in Unicode::UCD
9139 From: Lukas Mai (via RT) <perlbug-followup@perl.org>
9140 Date: 10 Aug 2003 22:37:41 -0000
9141 Message-ID: <rt-23273-62473.18.6967347513833@rt.perl.org>
9142 Branch: perl
9143 ! lib/Unicode/UCD.pm lib/Unicode/UCD.t
9144____________________________________________________________________________
9145[ 20608] By: jhi on 2003/08/11 04:24:34
9146 Log: Explain the 'Wide character in print' a bit more.
9147 Branch: perl
9148 ! pod/perldiag.pod
9149____________________________________________________________________________
9150[ 20607] By: rgs on 2003/08/10 20:44:23
9151 Log: Subject: Re: killing for vital signs [PATCH]
9152 From: "John P. Linderman" <jpl@research.att.com>
9153 Date: Sun, 10 Aug 2003 15:44:33 -0400 (EDT)
9154 Message-Id: <200308101944.PAA96547@raptor.research.att.com>
9155 Branch: perl
9156 ! pod/perlfunc.pod pod/perlipc.pod
9157____________________________________________________________________________
9158[ 20606] By: jhi on 2003/08/10 20:43:47
9159 Log: Integrate:
9160 [ 20604]
9161 Clarify the format checking instructions.
9162
9163 [ 20605]
9164 gcc -ansi -pedantic cleanup; and a seemingly forgotten
9165 sv_placeholder hunk.
9166 Branch: maint-5.8/perl
9167 !> Porting/pumpkin.pod perl.h sv.h
9168____________________________________________________________________________
9169[ 20605] By: jhi on 2003/08/10 20:38:39
9170 Log: gcc -ansi -pedantic cleanup; and a seemingly forgotten
9171 sv_placeholder hunk.
9172 Branch: perl
9173 ! perl.h sv.h
9174____________________________________________________________________________
9175[ 20604] By: jhi on 2003/08/10 20:14:28
9176 Log: Clarify the format checking instructions.
9177 Branch: perl
9178 ! Porting/pumpkin.pod
9179____________________________________________________________________________
9180[ 20603] By: jhi on 2003/08/10 19:48:42
9181 Log: Retract #20597, too many resulting core dumps.
9182 Branch: maint-5.8/perl
9183 ! pad.c t/op/closure.t
9184____________________________________________________________________________
9185[ 20602] By: jhi on 2003/08/10 19:45:45
9186 Log: Retract #20597, too many resulting core dumps.
9187 Branch: perl
9188 ! pad.c t/op/closure.t
9189____________________________________________________________________________
9190[ 20601] By: jhi on 2003/08/10 19:38:36
9191 Log: Two different test harnesses, mmmm.
9192 Branch: maint-5.8/perl
9193 ! t/op/closure.t
9194____________________________________________________________________________
9195[ 20600] By: jhi on 2003/08/10 18:32:49
9196 Log: Regen perlapi, perltoc.
9197 Branch: maint-5.8/perl
9198 ! pod/perlapi.pod pod/perltoc.pod
9199____________________________________________________________________________
9200[ 20599] By: jhi on 2003/08/10 18:32:16
9201 Log: Advertise perlreref.
9202 Branch: maint-5.8/perl
9203 ! pod/perldelta.pod
9204____________________________________________________________________________
9205[ 20598] By: jhi on 2003/08/10 18:29:12
9206 Log: Integrate:
9207 [ 20586]
9208 Subject: [PATCH perlmodinstall.pod] Installation on Win32
9209 From: Michael G Schwern <schwern@pobox.com>
9210 Date: Fri, 8 Aug 2003 18:35:51 -0700
9211 Message-ID: <20030809013550.GS1587@windhund.schwern.org>
9212
9213 [ 20587]
9214 hv_fetch_{ent,flags} failed to set HvHASKFLAGS on a hash where a
9215 normal key was replaced by its UTF-8 equivalent. This caused the
9216 "Storable problem" RT3 users reported under RH9.
9217
9218 [ 20588]
9219 Update Jon Orwant's email address as he wants it,
9220 drop TPJ URL; upate also Doug MacEachern's address.
9221
9222 [ 20589]
9223 Subject: [PATCH t/lib/1_compile.t] Removing tested modules
9224 From: Michael G Schwern <schwern@pobox.com>
9225 Date: Sat, 9 Aug 2003 13:36:59 -0700
9226 Message-ID: <20030809203659.GB24919@windhund.schwern.org>
9227
9228 [ 20593]
9229 Add the perlreref manpage, by Iain Truskett
9230 (regular expressions quick reference.)
9231 Regenerate the table of contents.
9232
9233 [ 20594]
9234 Further tweaks on perlreref.pod (by Iain Truskett)
9235
9236 [ 20595]
9237 One more PL_csighandlerp.
9238
9239 [ 20596]
9240 Try simple workaround for the POSIX autosplit.ix warning.
9241
9242 [ 20597]
9243 Subject: Re: [perl #23265] Nested anonymous subs
9244 From: Dave Mitchell <davem@fdgroup.com>
9245 Date: Sun, 10 Aug 2003 01:35:30 +0100
9246 Message-ID: <20030810003530.GB6547@fdgroup.com>
9247 Branch: maint-5.8/perl
9248 +> pod/perlreref.pod
9249 !> MANIFEST ext/POSIX/POSIX.pm ext/POSIX/POSIX.xs hv.c pad.c
9250 !> pod/buildtoc.PL pod/perl.pod pod/perlembed.pod
9251 !> pod/perlmodinstall.pod pod/perltoc.pod t/lib/1_compile.t
9252 !> t/op/closure.t
9253____________________________________________________________________________
9254[ 20597] By: jhi on 2003/08/10 17:55:03
9255 Log: Subject: Re: [perl #23265] Nested anonymous subs
9256 From: Dave Mitchell <davem@fdgroup.com>
9257 Date: Sun, 10 Aug 2003 01:35:30 +0100
9258 Message-ID: <20030810003530.GB6547@fdgroup.com>
9259 Branch: perl
9260 ! pad.c t/op/closure.t
9261____________________________________________________________________________
9262[ 20596] By: jhi on 2003/08/10 17:38:35
9263 Log: Try simple workaround for the POSIX autosplit.ix warning.
9264 Branch: perl
9265 ! ext/POSIX/POSIX.pm
9266____________________________________________________________________________
9267[ 20595] By: jhi on 2003/08/10 17:33:12
9268 Log: One more PL_csighandlerp.
9269 Branch: perl
9270 ! ext/POSIX/POSIX.xs
9271____________________________________________________________________________
9272[ 20594] By: rgs on 2003/08/10 13:30:11
9273 Log: Further tweaks on perlreref.pod (by Iain Truskett)
9274 Branch: perl
9275 ! pod/perlreref.pod
9276____________________________________________________________________________
9277[ 20593] By: rgs on 2003/08/10 12:32:47
9278 Log: Add the perlreref manpage, by Iain Truskett
9279 (regular expressions quick reference.)
9280 Regenerate the table of contents.
9281 Branch: perl
9282 + pod/perlreref.pod
9283 ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
9284____________________________________________________________________________
9285[ 20592] By: rgs on 2003/08/09 21:13:27
9286 Log: Remove ByteLoader from the list of modules whose compilability should
9287 be tested : it's loaded (at runtime) by ext/B/t/bytecode.t (as Enache
9288 pointed out.)
9289 Branch: perl
9290 ! t/lib/1_compile.t
9291____________________________________________________________________________
9292[ 20591] By: rgs on 2003/08/09 21:08:59
9293 Log: Subject: [PATCH] add "$lexical not available" warning in C<for my $lex ()>
9294 From: Dave Mitchell <davem@fdgroup.com>
9295 Date: Sat, 9 Aug 2003 14:51:44 +0100
9296 Message-ID: <20030809135144.GC4997@fdgroup.com>
9297 Branch: perl
9298 ! embed.fnc embed.h global.sym op.c pp_ctl.c proto.h scope.c
9299 ! scope.h t/lib/warnings/pad
9300____________________________________________________________________________
9301[ 20590] By: rgs on 2003/08/09 21:02:21
9302 Log: Regenerate perlapi.pod.
9303 Branch: perl
9304 ! pod/perlapi.pod
9305____________________________________________________________________________
9306[ 20589] By: rgs on 2003/08/09 20:26:28
9307 Log: Subject: [PATCH t/lib/1_compile.t] Removing tested modules
9308 From: Michael G Schwern <schwern@pobox.com>
9309 Date: Sat, 9 Aug 2003 13:36:59 -0700
9310 Message-ID: <20030809203659.GB24919@windhund.schwern.org>
9311 Branch: perl
9312 ! t/lib/1_compile.t
9313____________________________________________________________________________
9314[ 20588] By: jhi on 2003/08/09 18:13:07
9315 Log: Update Jon Orwant's email address as he wants it,
9316 drop TPJ URL; upate also Doug MacEachern's address.
9317 Branch: perl
9318 ! pod/perlembed.pod pod/perlmodinstall.pod
9319____________________________________________________________________________
9320[ 20587] By: ams on 2003/08/09 18:09:34
9321 Log: hv_fetch_{ent,flags} failed to set HvHASKFLAGS on a hash where a
9322 normal key was replaced by its UTF-8 equivalent. This caused the
9323 "Storable problem" RT3 users reported under RH9.
9324 Branch: perl
9325 ! hv.c
9326____________________________________________________________________________
9327[ 20586] By: jhi on 2003/08/09 18:08:20
9328 Log: Subject: [PATCH perlmodinstall.pod] Installation on Win32
9329 From: Michael G Schwern <schwern@pobox.com>
9330 Date: Fri, 8 Aug 2003 18:35:51 -0700
9331 Message-ID: <20030809013550.GS1587@windhund.schwern.org>
9332 Branch: perl
9333 ! pod/perlmodinstall.pod
9334____________________________________________________________________________
9335[ 20585] By: jhi on 2003/08/09 18:06:11
9336 Log: Reintroduce the U_32-ification to pad.c,
9337 suggested by Dave Mitchell.
9338 Branch: maint-5.8/perl
9339 ! pad.c
9340____________________________________________________________________________
9341[ 20584] By: jhi on 2003/08/09 18:05:22
9342 Log: Reintroduce the U_32-ification to pad.c,
9343 suggested by Dave Mitchell.
9344 Branch: perl
9345 ! pad.c
9346____________________________________________________________________________
9347[ 20583] By: rgs on 2003/08/09 12:43:50
9348 Log: Change #20578 to SelfLoader is probably also useful to AutoSplit.
9349 Branch: perl
9350 ! lib/AutoSplit.pm
9351____________________________________________________________________________
9352[ 20582] By: jhi on 2003/08/09 08:52:37
9353 Log: Update Changes.
9354 Branch: maint-5.8/perl
9355 ! Changes patchlevel.h
9356____________________________________________________________________________
9357[ 20581] By: jhi on 2003/08/09 08:45:18
9358 Log: Update on the cygwin situation. (I'm wishfully thinking
9359 that the sigaction.t failure was fixed by (blead) #20565.)
9360 Branch: maint-5.8/perl
9361 ! pod/perldelta.pod
9362____________________________________________________________________________
9363[ 20580] By: jhi on 2003/08/09 08:32:25
9364 Log: Integrate:
9365 [ 20570]
9366 Two more tests for #20566/#20568.
9367
9368 [ 20571]
9369 Subject: [PATCH] Re: [PATCH] Re: Storing &PL_sv_undef as a hash key with perl-5.8.x
9370 From: Nicholas Clark <nick@ccl4.org>
9371 Date: Fri, 8 Aug 2003 23:30:00 +0100
9372 Message-ID: <20030808233000.B20130@plum.flirble.org>
9373
9374 [ 20572]
9375 Subject: [PATCH] kill 'INT' doesn't work on Windows
9376 From: Jan Dubois <jand@ActiveState.com>
9377 Date: Fri, 08 Aug 2003 17:49:03 -0700
9378 Message-ID: <ite8jvgjgcfm8e9dhl6f4dtstrbmn1vmpk@4ax.com>
9379
9380 [ 20573]
9381 Subject: Re: [PATCH] perlfaq8.pod and MakeMaker's PREFIX=
9382 From: Michael G Schwern <schwern@pobox.com>
9383 Date: Fri, 8 Aug 2003 13:59:50 -0700
9384 Message-ID: <20030808205950.GJ1587@windhund.schwern.org>
9385
9386 [ 20574]
9387 Subject: [ PATCH] Re: strange destruction problem on VMS
9388 From: Dave Mitchell <davem@fdgroup.com>
9389 Date: Fri, 8 Aug 2003 22:28:48 +0100
9390 Message-ID: <20030808212848.GA2628@fdgroup.com>
9391
9392 [ 20577]
9393 The libcygipc doesn't really work with the Perl SysV IPC tests
9394 so no much point in adding it yet.
9395
9396 [ 20579]
9397 Some updates for the memory use debugging section:
9398 -DL is obsolete, mention Devel::Size, and Purify and valgrind.
9399 Branch: maint-5.8/perl
9400 !> ext/Storable/Storable.xs hints/cygwin.sh pod/perldebguts.pod
9401 !> pod/perlfaq8.pod sv.c t/op/pat.t win32/win32.c
9402____________________________________________________________________________
9403[ 20579] By: jhi on 2003/08/09 08:07:22
9404 Log: Some updates for the memory use debugging section:
9405 -DL is obsolete, mention Devel::Size, and Purify and valgrind.
9406 Branch: perl
9407 ! pod/perldebguts.pod
9408____________________________________________________________________________
9409[ 20578] By: jhi on 2003/08/09 07:34:16
9410 Log: Fix from Dave Mitchell to the recent from lib/Devel/SelfStubber.t:
9411 Variable "$nested" is not available at (re_eval 4) line 2, <DATA> line 8.
9412 which was on old bug unearthed by the change #20559.
9413 Basically, qr// + (??{$lexical}) combination is very, VERY broken.
9414 Workaround is not to use lexicals.
9415 Branch: perl
9416 ! lib/SelfLoader.pm
9417____________________________________________________________________________
9418[ 20577] By: jhi on 2003/08/09 07:28:41
9419 Log: The libcygipc doesn't really work with the Perl SysV IPC tests
9420 so no much point in adding it yet.
9421 Branch: perl
9422 ! hints/cygwin.sh
9423____________________________________________________________________________
9424[ 20576] By: jhi on 2003/08/09 07:25:52
9425 Log: Retract #20525 since it was due to broken INT32_MIN in
9426 Cygwin 1.5's stdint.h.
9427 Branch: maint-5.8/perl
9428 ! pad.c
9429____________________________________________________________________________
9430[ 20575] By: jhi on 2003/08/09 07:24:43
9431 Log: Retract #20524 since it was due to broken INT32_MIN in
9432 Cygwin 1.5's stdint.h.
9433 Branch: perl
9434 ! pad.c
9435____________________________________________________________________________
9436[ 20574] By: jhi on 2003/08/09 07:11:32
9437 Log: Subject: [ PATCH] Re: strange destruction problem on VMS
9438 From: Dave Mitchell <davem@fdgroup.com>
9439 Date: Fri, 8 Aug 2003 22:28:48 +0100
9440 Message-ID: <20030808212848.GA2628@fdgroup.com>
9441 Branch: perl
9442 ! sv.c
9443____________________________________________________________________________
9444[ 20573] By: jhi on 2003/08/09 07:09:07
9445 Log: Subject: Re: [PATCH] perlfaq8.pod and MakeMaker's PREFIX=
9446 From: Michael G Schwern <schwern@pobox.com>
9447 Date: Fri, 8 Aug 2003 13:59:50 -0700
9448 Message-ID: <20030808205950.GJ1587@windhund.schwern.org>
9449 Branch: perl
9450 ! pod/perlfaq8.pod
9451____________________________________________________________________________
9452[ 20572] By: jhi on 2003/08/09 07:06:37
9453 Log: Subject: [PATCH] kill 'INT' doesn't work on Windows
9454 From: Jan Dubois <jand@ActiveState.com>
9455 Date: Fri, 08 Aug 2003 17:49:03 -0700
9456 Message-ID: <ite8jvgjgcfm8e9dhl6f4dtstrbmn1vmpk@4ax.com>
9457 Branch: perl
9458 ! win32/win32.c
9459____________________________________________________________________________
9460[ 20571] By: jhi on 2003/08/09 06:53:54
9461 Log: Subject: [PATCH] Re: [PATCH] Re: Storing &PL_sv_undef as a hash key with perl-5.8.x
9462 From: Nicholas Clark <nick@ccl4.org>
9463 Date: Fri, 8 Aug 2003 23:30:00 +0100
9464 Message-ID: <20030808233000.B20130@plum.flirble.org>
9465 Branch: perl
9466 ! ext/Storable/Storable.xs
9467____________________________________________________________________________
9468[ 20570] By: jhi on 2003/08/09 06:52:36
9469 Log: Two more tests for #20566/#20568.
9470 Branch: perl
9471 ! t/op/pat.t
9472____________________________________________________________________________
9473[ 20569] By: jhi on 2003/08/08 21:07:09
9474 Log: Integrate:
9475 [ 20568]
9476 Subject: [PATCH] Re: UNICODE regexp bug
9477 From: Nick Ing-Simmons <nick@ing-simmons.net>
9478 Date: Fri, 08 Aug 2003 23:05:49 +0100
9479 Message-Id: <20030808220549.5109.4@llama.ni-s.u-net.com>
9480
9481 Better patch (than #20566) from NI-S, one more test
9482 (introduce another variable rather than reuse the tmp, though)
9483 Branch: maint-5.8/perl
9484 !> regexec.c t/op/pat.t
9485____________________________________________________________________________
9486[ 20568] By: jhi on 2003/08/08 21:05:24
9487 Log: Subject: [PATCH] Re: UNICODE regexp bug
9488 From: Nick Ing-Simmons <nick@ing-simmons.net>
9489 Date: Fri, 08 Aug 2003 23:05:49 +0100
9490 Message-Id: <20030808220549.5109.4@llama.ni-s.u-net.com>
9491
9492 Better patch (than #20566) from NI-S, one more test
9493 (introduce another variable rather than reuse the tmp, though)
9494 Branch: perl
9495 ! regexec.c t/op/pat.t
9496____________________________________________________________________________
9497[ 20567] By: jhi on 2003/08/08 19:51:22
9498 Log: Integrate:
9499 [ 20563]
9500 Subject: [PATCH] maintperl & bleadperl for Cygwin: include libgdbm_compat & libcygipc in searchlist
9501 From: "Gerrit P. Haase" <gp@familiehaase.de>
9502 Date: Fri, 8 Aug 2003 13:44:51 +0200
9503 Message-ID: <1621817486657.20030808134451@familiehaase.de>
9504
9505 [ 20564]
9506 Subject: [PATCH] Re: main@20537: WinXP build failed op/time.t test 2
9507 From: Steve Hay <steve.hay@uk.radan.com>
9508 Date: Fri, 08 Aug 2003 12:42:28 +0100
9509 Message-ID: <3F338CA4.3010503@uk.radan.com>
9510
9511 [ 20565]
9512 Move the csighandler to be a data variable so that
9513 things like DLL trampolines can't mess up the code
9514 variables the Perl_csighandler (seen in Cygwin:
9515 Perl_csighandler in POSIX extension was different
9516 than in main executable).
9517
9518 [ 20566]
9519 Subject: UNICODE regexp bug
9520 From: Nick Ing-Simmons <nick@ing-simmons.net>
9521 Date: Fri, 08 Aug 2003 20:36:56 +0100
9522 Message-Id: <20030808193656.5109.1@llama.ni-s.u-net.com>
9523 Branch: maint-5.8/perl
9524 !> embedvar.h ext/NDBM_File/hints/cygwin.pl
9525 !> ext/ODBM_File/hints/cygwin.pl ext/POSIX/POSIX.xs
9526 !> hints/cygwin.sh mg.c perlapi.h perlvars.h regexec.c t/op/pat.t
9527 !> t/op/time.t
9528____________________________________________________________________________
9529[ 20566] By: jhi on 2003/08/08 19:47:45
9530 Log: Subject: UNICODE regexp bug
9531 From: Nick Ing-Simmons <nick@ing-simmons.net>
9532 Date: Fri, 08 Aug 2003 20:36:56 +0100
9533 Message-Id: <20030808193656.5109.1@llama.ni-s.u-net.com>
9534 Branch: perl
9535 ! regexec.c t/op/pat.t
9536____________________________________________________________________________
9537[ 20565] By: jhi on 2003/08/08 18:59:40
9538 Log: Move the csighandler to be a data variable so that
9539 things like DLL trampolines can't mess up the code
9540 variables the Perl_csighandler (seen in Cygwin:
9541 Perl_csighandler in POSIX extension was different
9542 than in main executable).
9543 Branch: perl
9544 ! embedvar.h ext/POSIX/POSIX.xs mg.c perlapi.h perlvars.h
9545____________________________________________________________________________
9546[ 20564] By: jhi on 2003/08/08 13:12:19
9547 Log: Subject: [PATCH] Re: main@20537: WinXP build failed op/time.t test 2
9548 From: Steve Hay <steve.hay@uk.radan.com>
9549 Date: Fri, 08 Aug 2003 12:42:28 +0100
9550 Message-ID: <3F338CA4.3010503@uk.radan.com>
9551 Branch: perl
9552 ! t/op/time.t
9553____________________________________________________________________________
9554[ 20563] By: jhi on 2003/08/08 13:09:00
9555 Log: Subject: [PATCH] maintperl & bleadperl for Cygwin: include libgdbm_compat & libcygipc in searchlist
9556 From: "Gerrit P. Haase" <gp@familiehaase.de>
9557 Date: Fri, 8 Aug 2003 13:44:51 +0200
9558 Message-ID: <1621817486657.20030808134451@familiehaase.de>
9559 Branch: perl
9560 ! ext/NDBM_File/hints/cygwin.pl ext/ODBM_File/hints/cygwin.pl
9561 ! hints/cygwin.sh
9562____________________________________________________________________________
9563[ 20562] By: jhi on 2003/08/08 11:55:24
9564 Log: Retract #20479 (was part of #20493) from maint.
9565 Branch: maint-5.8/perl
9566 ! scope.c t/op/local.t
9567____________________________________________________________________________
9568[ 20561] By: jhi on 2003/08/08 11:45:58
9569 Log: Integrate:
9570 [ 20560]
9571 Retract PASTHRU* changes as recommended by Schwern.
9572 Branch: maint-5.8/perl
9573 !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
9574 !> lib/ExtUtils/t/MM_Win32.t
9575____________________________________________________________________________
9576[ 20560] By: jhi on 2003/08/08 04:28:44
9577 Log: Retract PASTHRU* changes as recommended by Schwern.
9578 Branch: perl
9579 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
9580 ! lib/ExtUtils/t/MM_Win32.t
9581____________________________________________________________________________
9582[ 20559] By: rgs on 2003/08/07 19:59:18
9583 Log: Subject: Fwd: Re: [PATCH] flags set incorrectly on abandoned lexicals
9584 From: Dave Mitchell <davem@fdgroup.com>
9585 Date: Thu, 7 Aug 2003 15:53:35 +0100
9586 Message-ID: <20030807145335.GF26683@fdgroup.com>
9587 Branch: perl
9588 ! scope.c t/lib/warnings/pad
9589____________________________________________________________________________
9590[ 20558] By: jhi on 2003/08/07 18:21:11
9591 Log: Update Changes.
9592 Branch: maint-5.8/perl
9593 ! Changes patchlevel.h
9594____________________________________________________________________________
9595[ 20557] By: jhi on 2003/08/07 18:15:57
9596 Log: Integrate:
9597 [ 20556]
9598 The #20546 was too ambitious, broke the test.
9599 Branch: maint-5.8/perl
9600 !> lib/Benchmark.pm lib/Benchmark.t
9601____________________________________________________________________________
9602[ 20556] By: jhi on 2003/08/07 18:14:41
9603 Log: The #20546 was too ambitious, broke the test.
9604 Branch: perl
9605 ! lib/Benchmark.pm lib/Benchmark.t
9606____________________________________________________________________________
9607[ 20555] By: jhi on 2003/08/07 17:36:20
9608 Log: Integrate:
9609 [ 20550]
9610 Allow hinting d_semctl_semun and d_semctl_semid_ds.
9611
9612 [ 20552]
9613 Hint away the semid_ds test in NetBSD/sparc.
9614
9615 [ 20553]
9616 Some AUTHORS updates.
9617
9618 [ 20554]
9619 Subject: Fw: [PATCH: perl@20512] DBG build tweaks for VMS.
9620 From: PPrymmer@factset.com
9621 Date: Thu, 7 Aug 2003 14:02:02 -0400
9622 Message-ID: <OFA59024FD.170B3227-ON85256D7B.00630753-85256D7B.00631048@factset.com>
9623 Branch: maint-5.8/perl
9624 !> AUTHORS Configure hints/netbsd.sh vms/descrip_mms.template
9625____________________________________________________________________________
9626[ 20554] By: jhi on 2003/08/07 17:00:03
9627 Log: Subject: Fw: [PATCH: perl@20512] DBG build tweaks for VMS.
9628 From: PPrymmer@factset.com
9629 Date: Thu, 7 Aug 2003 14:02:02 -0400
9630 Message-ID: <OFA59024FD.170B3227-ON85256D7B.00630753-85256D7B.00631048@factset.com>
9631 Branch: perl
9632 ! vms/descrip_mms.template
9633____________________________________________________________________________
9634[ 20553] By: jhi on 2003/08/07 16:45:25
9635 Log: Some AUTHORS updates.
9636 Branch: perl
9637 ! AUTHORS
9638____________________________________________________________________________
9639[ 20552] By: jhi on 2003/08/07 15:45:03
9640 Log: Hint away the semid_ds test in NetBSD/sparc.
9641 Branch: perl
9642 ! hints/netbsd.sh
9643____________________________________________________________________________
9644[ 20551] By: jhi on 2003/08/07 15:40:35
9645 Log: metaconfig unit change for #20550.
9646 Branch: metaconfig
9647 ! U/modified/d_union_semun.U
9648____________________________________________________________________________
9649[ 20550] By: jhi on 2003/08/07 15:39:53
9650 Log: Allow hinting d_semctl_semun and d_semctl_semid_ds.
9651 Branch: perl
9652 ! Configure
9653____________________________________________________________________________
9654[ 20549] By: jhi on 2003/08/07 15:07:48
9655 Log: Integrate:
9656 [ 20538]
9657 Subject: Re: [perl #23030] Error in negative lookahead with alternations
9658 From: hv@crypt.org
9659 Date: Thu, 07 Aug 2003 02:44:23 +0100
9660 Message-Id: <200308070144.h771iN906446@zen.crypt.org>
9661
9662 [ 20541]
9663 Subject: Re: maint @ 20537
9664 From: Philip Newton <Philip.Newton@gmx.net>
9665 Date: Thu, 07 Aug 2003 09:05:17 +0200
9666 Message-ID: <s0l3jvo4mju2uu4f6pkq18istk02hme6j9@4ax.com>
9667
9668 [ 20542]
9669 If no alarm(), skip the subtests.
9670
9671 [ 20546]
9672 Subject: [PATCH 5.8.1] Benchmark problem
9673 From: Radu Greab <rgreab@fx.ro>
9674 Date: Thu, 07 Aug 2003 16:18:25 +0300 (EEST)
9675 Message-Id: <20030807.161825.106541372.radu@yx.primIT.ro>
9676
9677 Subject: Re: [PATCH 5.8.1] Benchmark problem
9678 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
9679 Date: Thu, 7 Aug 2003 15:48:38 +0200
9680 Message-Id: <20030807154838.5d240dbb.rgarciasuarez@free.fr>
9681
9682 [ 20548]
9683 Subject: [PATCH] Test::More
9684 From: Fergal Daly <fergal@esatclear.ie>
9685 Date: Thu, 7 Aug 2003 15:52:11 +0100
9686 Message-Id: <200308071552.11873.fergal@esatclear.ie>
9687 Branch: maint-5.8/perl
9688 !> ext/Socket/Socket.xs ext/Time/HiRes/t/HiRes.t
9689 !> hints/dos_djgpp.sh lib/Benchmark.pm lib/Benchmark.t
9690 !> lib/Test/More.pm regexec.c t/op/re_tests
9691____________________________________________________________________________
9692[ 20548] By: jhi on 2003/08/07 14:48:27
9693 Log: Subject: [PATCH] Test::More
9694 From: Fergal Daly <fergal@esatclear.ie>
9695 Date: Thu, 7 Aug 2003 15:52:11 +0100
9696 Message-Id: <200308071552.11873.fergal@esatclear.ie>
9697 Branch: perl
9698 ! lib/Test/More.pm
9699____________________________________________________________________________
9700[ 20547] By: jhi on 2003/08/07 14:45:22
9701 Log: Integrate from maint:
9702 [ 20543]
9703 Workround for SuSE8.2's -lndbm hack
9704 Branch: perl
9705 !> hints/linux.sh
9706____________________________________________________________________________
9707[ 20546] By: jhi on 2003/08/07 14:43:57
9708 Log: Subject: [PATCH 5.8.1] Benchmark problem
9709 From: Radu Greab <rgreab@fx.ro>
9710 Date: Thu, 07 Aug 2003 16:18:25 +0300 (EEST)
9711 Message-Id: <20030807.161825.106541372.radu@yx.primIT.ro>
9712
9713 Subject: Re: [PATCH 5.8.1] Benchmark problem
9714 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
9715 Date: Thu, 7 Aug 2003 15:48:38 +0200
9716 Message-Id: <20030807154838.5d240dbb.rgarciasuarez@free.fr>
9717 Branch: perl
9718 ! lib/Benchmark.pm lib/Benchmark.t
9719____________________________________________________________________________
9720[ 20545] By: nick on 2003/08/07 14:40:50
9721 Log: Integrate mainline
9722 Branch: perlio
9723 +> (branch 54 files)
9724 - ext/Devel/DProf/DProf.t ext/Devel/Peek/Peek.t
9725 - ext/Errno/Errno.t ext/GDBM_File/gdbm.t
9726 - ext/I18N/Langinfo/Langinfo.t ext/IO/lib/IO/t/IO.t
9727 - ext/IO/lib/IO/t/io_const.t ext/IO/lib/IO/t/io_dir.t
9728 - ext/IO/lib/IO/t/io_dup.t ext/IO/lib/IO/t/io_linenum.t
9729 - ext/IO/lib/IO/t/io_multihomed.t ext/IO/lib/IO/t/io_pipe.t
9730 - ext/IO/lib/IO/t/io_poll.t ext/IO/lib/IO/t/io_sel.t
9731 - ext/IO/lib/IO/t/io_sock.t ext/IO/lib/IO/t/io_taint.t
9732 - ext/IO/lib/IO/t/io_tell.t ext/IO/lib/IO/t/io_udp.t
9733 - ext/IO/lib/IO/t/io_unix.t ext/IO/lib/IO/t/io_utf8.t
9734 - ext/IO/lib/IO/t/io_xs.t ext/IPC/SysV/ipcsysv.t
9735 - ext/NDBM_File/ndbm.t ext/ODBM_File/odbm.t ext/Opcode/Opcode.t
9736 - ext/Opcode/ops.t ext/PerlIO/PerlIO.t ext/SDBM_File/sdbm.t
9737 - ext/Safe/safe1.t ext/Safe/safe2.t ext/Safe/safe3.t
9738 - ext/Socket/Socket.t ext/Socket/socketpair.t
9739 - ext/Sys/Hostname/Hostname.t ext/Sys/Syslog/syslog.t
9740 - ext/Time/HiRes/HiRes.t ext/XS/Typemap/Typemap.t ext/attrs.t
9741 - ext/re/re.t lib/I18N/LangTags/test.pl wince/README.compile
9742 - wince/include/netdb.h
9743 !> (integrate 262 files)
9744____________________________________________________________________________
9745[ 20544] By: jhi on 2003/08/07 14:25:25
9746 Log: Retract #20359: too wide a brush.
9747 Branch: perl
9748 ! hints/netbsd.sh
9749____________________________________________________________________________
9750[ 20543] By: nick on 2003/08/07 08:44:20
9751 Log: Workround for SuSE8.2's -lndbm hack
9752 Branch: maint-5.8/perl
9753 ! hints/linux.sh
9754____________________________________________________________________________
9755[ 20542] By: jhi on 2003/08/07 06:24:23
9756 Log: If no alarm(), skip the subtests.
9757 Branch: perl
9758 ! ext/Time/HiRes/t/HiRes.t
9759____________________________________________________________________________
9760[ 20541] By: jhi on 2003/08/07 06:15:54
9761 Log: Subject: Re: maint @ 20537
9762 From: Philip Newton <Philip.Newton@gmx.net>
9763 Date: Thu, 07 Aug 2003 09:05:17 +0200
9764 Message-ID: <s0l3jvo4mju2uu4f6pkq18istk02hme6j9@4ax.com>
9765 Branch: perl
9766 ! ext/Socket/Socket.xs
9767____________________________________________________________________________
9768[ 20540] By: jhi on 2003/08/07 06:13:19
9769 Log: Subject: Re: maint @ 20537
9770 From: Philip Newton <Philip.Newton@gmx.net>
9771 Date: Thu, 07 Aug 2003 09:05:17 +0200
9772 Message-ID: <s0l3jvo4mju2uu4f6pkq18istk02hme6j9@4ax.com>
9773 Branch: perl
9774 ! hints/dos_djgpp.sh
9775____________________________________________________________________________
9776[ 20539] By: jhi on 2003/08/07 05:17:56
9777 Log: NetBSD for Sparc (at least 1.5.3 and 1.6.1) seem to have
9778 broken SysV semaphores.
9779 Branch: perl
9780 ! hints/netbsd.sh
9781____________________________________________________________________________
9782[ 20538] By: jhi on 2003/08/07 05:08:14
9783 Log: Subject: Re: [perl #23030] Error in negative lookahead with alternations
9784 From: hv@crypt.org
9785 Date: Thu, 07 Aug 2003 02:44:23 +0100
9786 Message-Id: <200308070144.h771iN906446@zen.crypt.org>
9787 Branch: perl
9788 ! regexec.c t/op/re_tests
9789____________________________________________________________________________
9790[ 20537] By: jhi on 2003/08/06 19:16:43
9791 Log: Update Changes.
9792 Branch: maint-5.8/perl
9793 ! Changes patchlevel.h
9794____________________________________________________________________________
9795[ 20536] By: jhi on 2003/08/06 19:07:34
9796 Log: Integrate:
9797 [ 20535]
9798 ESUCCESS = 0 is not true, but exists.
9799 Branch: maint-5.8/perl
9800 !> ext/Errno/t/Errno.t
9801____________________________________________________________________________
9802[ 20535] By: jhi on 2003/08/06 19:05:18
9803 Log: ESUCCESS = 0 is not true, but exists.
9804 Branch: perl
9805 ! ext/Errno/t/Errno.t
9806____________________________________________________________________________
9807[ 20534] By: jhi on 2003/08/06 18:46:41
9808 Log: Integrate:
9809 [ 20529]
9810 Various tweaks to help DJGPP builds.
9811
9812 [ 20530]
9813 Make code agree with documentation (from Wolfgang Friebel)
9814
9815 [ 20533]
9816 Subject: [pathc] Sys:Syslog.pm::syslog() - Better error message
9817 From: jari.aalto@poboxes.com (Jari Aalto)
9818 Date: Wed, 06 Aug 2003 14:24:42 +0300
9819 Message-ID: <ekzzowp1.fsf@blue.sea.net>
9820 Branch: maint-5.8/perl
9821 !> djgpp/djgppsed.sh ext/Sys/Syslog/Syslog.pm hints/dos_djgpp.sh
9822 !> lib/ExtUtils/MakeMaker.pm
9823____________________________________________________________________________
9824[ 20533] By: jhi on 2003/08/06 18:39:49
9825 Log: Subject: [pathc] Sys:Syslog.pm::syslog() - Better error message
9826 From: jari.aalto@poboxes.com (Jari Aalto)
9827 Date: Wed, 06 Aug 2003 14:24:42 +0300
9828 Message-ID: <ekzzowp1.fsf@blue.sea.net>
9829 Branch: perl
9830 ! ext/Sys/Syslog/Syslog.pm
9831____________________________________________________________________________
9832[ 20532] By: jhi on 2003/08/06 18:37:49
9833 Log: Andreas says the current PAUSE indexer will
9834 handle 5.8.1 fine without META.yml, and the
9835 spec of META is far from solid yet.
9836 Branch: maint-5.8/perl
9837 - META.yml
9838 ! MANIFEST
9839____________________________________________________________________________
9840[ 20531] By: jhi on 2003/08/06 18:35:02
9841 Log: Some goat entrails.
9842 Branch: maint-5.8/perl
9843 ! pod/perldelta.pod
9844____________________________________________________________________________
9845[ 20530] By: jhi on 2003/08/06 18:24:56
9846 Log: Make code agree with documentation (from Wolfgang Friebel)
9847 Branch: perl
9848 ! lib/ExtUtils/MakeMaker.pm
9849____________________________________________________________________________
9850[ 20529] By: jhi on 2003/08/06 18:20:31
9851 Log: Various tweaks to help DJGPP builds.
9852 Branch: perl
9853 ! djgpp/djgppsed.sh hints/dos_djgpp.sh
9854____________________________________________________________________________
9855[ 20528] By: jhi on 2003/08/06 15:03:43
9856 Log: Integrate:
9857 [ 20513]
9858 Subject: [PATCH] dprofpp.PL again -- #20488 thinko
9859 From: "Craig A. Berry" <craigberry@mac.com>
9860 Date: Wed, 06 Aug 2003 00:18:36 -0500
9861 Message-ID: <3F308FAC.4090409@mac.com>
9862
9863 (from vmsperl list)
9864
9865 [ 20514]
9866 Subject: Re: [PATCH pod/perlfaq2.pod] update Friedl book listing for 2nd edition
9867 From: Tim Jenness <t.jenness@jach.hawaii.edu>
9868 Date: Tue, 5 Aug 2003 17:21:46 -1000 (HST)
9869 Message-ID: <Pine.LNX.4.44.0308051720280.8532-100000@lapaki>
9870
9871 [ 20520]
9872 Subject: [PATCH] Re: [PATCH] Re: MakeMaker doesn't pasthru DEFINE command-line args to subdirs on Win32
9873 From: Steve Hay <steve.hay@uk.radan.com>
9874 Date: Wed, 06 Aug 2003 10:56:44 +0100
9875 Message-ID: <3F30D0DC.20700@uk.radan.com>
9876
9877 [ 20523]
9878 Subject: maint @ 20512
9879 From: Robin Barker <Robin.Barker@npl.co.uk>
9880 Date: Wed, 6 Aug 2003 15:31:33 +0100
9881 Message-ID: <533D273D4014D411AB1D00062938C4D904046625@hotel.npl.co.uk>
9882
9883 [ 20526]
9884 Cast away gcc 3.3 type conversion pickiness.
9885
9886 [ 20527]
9887 More PASTHRU patching from Steve Hay.
9888 Branch: maint-5.8/perl
9889 !> MANIFEST Porting/Maintainers.pl ext/threads/threads.xs
9890 !> lib/ExtUtils/MM_Unix.pm pad.c pod/perlfaq2.pod
9891 !> utils/dprofpp.PL
9892____________________________________________________________________________
9893[ 20527] By: jhi on 2003/08/06 14:57:22
9894 Log: More PASTHRU patching from Steve Hay.
9895 Branch: perl
9896 ! lib/ExtUtils/MM_Unix.pm
9897____________________________________________________________________________
9898[ 20526] By: jhi on 2003/08/06 13:53:01
9899 Log: Cast away gcc 3.3 type conversion pickiness.
9900 Branch: perl
9901 ! ext/threads/threads.xs
9902____________________________________________________________________________
9903[ 20525] By: jhi on 2003/08/06 13:40:23
9904 Log: Subject: perl with cygwin 1.5, need help
9905 From: "Gerrit P. Haase" <gp@familiehaase.de>
9906 Date: Sun, 3 Aug 2003 10:57:32 +0200
9907 Message-ID: <561375447098.20030803105732@familiehaase.de>
9908
9909 (needed manual fitting)
9910 Branch: maint-5.8/perl
9911 ! pad.c
9912____________________________________________________________________________
9913[ 20524] By: jhi on 2003/08/06 13:36:44
9914 Log: Subject: Re: perl with cygwin 1.5, need help
9915 From: "Gerrit P. Haase" <gp@familiehaase.de>
9916 Date: Tue, 5 Aug 2003 14:36:55 +0200
9917 Message-ID: <71561410910.20030805143655@familiehaase.de>
9918
9919 (needed manual fitting)
9920 Branch: perl
9921 ! pad.c
9922____________________________________________________________________________
9923[ 20523] By: jhi on 2003/08/06 13:30:42
9924 Log: Subject: maint @ 20512
9925 From: Robin Barker <Robin.Barker@npl.co.uk>
9926 Date: Wed, 6 Aug 2003 15:31:33 +0100
9927 Message-ID: <533D273D4014D411AB1D00062938C4D904046625@hotel.npl.co.uk>
9928 Branch: perl
9929 ! MANIFEST Porting/Maintainers.pl
9930____________________________________________________________________________
9931[ 20522] By: jhi on 2003/08/06 13:29:26
9932 Log: Restore everything regarding "v-string deprecation"
9933 back the way it was, because trying to implement what Larry
9934 wants (use 1.2.3 and use Module 1.2.3 should work without
9935 warnings, note that the latter means that also
9936 $VERSION = 1.2.3 should work without warnings) while
9937 trying to warn for 'improper' uses of, seems to be
9938 easier said than done.
9939
9940 Only the deprecation message work and related doc changes
9941 are retracted, not John Peacock's internal v-strings
9942 cleanup work.
9943
9944 Also the %h=(v65=>42) fix stays since Larry okayed it.
9945
9946 In addition, one warning introduced in 5.8.0 is removed
9947 ("v-string in use/require non-portable.") since that
9948 obviously doesn't work well with Larry's vision.
9949 Branch: maint-5.8/perl
9950 ! configpm embedvar.h ext/Encode/t/at-cn.t ext/Encode/t/at-tw.t
9951 ! intrpvar.h perlapi.h pod/perldata.pod pod/perldelta.pod
9952 ! pod/perldiag.pod pod/perlfunc.pod pod/perlvar.pod pp_ctl.c
9953 ! pp_hot.c t/lib/warnings/pp_ctl t/lib/warnings/toke t/op/pack.t
9954 ! toke.c
9955____________________________________________________________________________
9956[ 20521] By: jhi on 2003/08/06 11:59:35
9957 Log: In addition to #20519.
9958 Branch: maint-5.8/perl
9959 ! pod/perldiag.pod
9960____________________________________________________________________________
9961[ 20520] By: jhi on 2003/08/06 11:38:46
9962 Log: Subject: [PATCH] Re: [PATCH] Re: MakeMaker doesn't pasthru DEFINE command-line args to subdirs on Win32
9963 From: Steve Hay <steve.hay@uk.radan.com>
9964 Date: Wed, 06 Aug 2003 10:56:44 +0100
9965 Message-ID: <3F30D0DC.20700@uk.radan.com>
9966 Branch: perl
9967 ! lib/ExtUtils/MM_Unix.pm
9968____________________________________________________________________________
9969[ 20519] By: jhi on 2003/08/06 11:35:18
9970 Log: In case I misunderstood and v1.2.3 is still cool.
9971 Branch: maint-5.8/perl
9972 ! pod/perldiag.pod pod/perlfunc.pod pod/perlvar.pod
9973 ! t/lib/warnings/toke toke.c
9974____________________________________________________________________________
9975[ 20518] By: jhi on 2003/08/06 11:26:56
9976 Log: Rework the version strings/objects documentation.
9977 Branch: maint-5.8/perl
9978 ! pod/perldata.pod pod/perlfunc.pod pod/perlvar.pod
9979____________________________________________________________________________
9980[ 20517] By: jhi on 2003/08/06 11:06:04
9981 Log: Don't warn in the v65 => case about the leading 'v'.
9982 Branch: maint-5.8/perl
9983 ! toke.c
9984____________________________________________________________________________
9985[ 20516] By: jhi on 2003/08/06 10:47:28
9986 Log: Retract #20472.
9987 Branch: maint-5.8/perl
9988 ! pod/perldata.pod pod/perldelta.pod pod/perldiag.pod
9989 ! pod/perlfunc.pod pod/perlvar.pod
9990____________________________________________________________________________
9991[ 20515] By: jhi on 2003/08/06 10:44:50
9992 Log: v-strings saga continues.
9993 - use/require 1.2.3 is okay, do not warn
9994 - however, v1.2.3 is warnable offense
9995 - as is e.g. '$a = 1.2.3'
9996 - remove the 'v-strings in use/require non-portable' warning
9997
9998 Next I need to bring back the recently removed or reworked
9999 v-strings documentation and rework all that to talk of
10000 'version objects'.
10001 Branch: maint-5.8/perl
10002 ! embedvar.h intrpvar.h perlapi.h pod/perldiag.pod pp_ctl.c
10003 ! t/lib/warnings/toke toke.c
10004____________________________________________________________________________
10005[ 20514] By: jhi on 2003/08/06 05:22:29
10006 Log: Subject: Re: [PATCH pod/perlfaq2.pod] update Friedl book listing for 2nd edition
10007 From: Tim Jenness <t.jenness@jach.hawaii.edu>
10008 Date: Tue, 5 Aug 2003 17:21:46 -1000 (HST)
10009 Message-ID: <Pine.LNX.4.44.0308051720280.8532-100000@lapaki>
10010 Branch: perl
10011 ! pod/perlfaq2.pod
10012____________________________________________________________________________
10013[ 20513] By: jhi on 2003/08/06 05:18:32
10014 Log: Subject: [PATCH] dprofpp.PL again -- #20488 thinko
10015 From: "Craig A. Berry" <craigberry@mac.com>
10016 Date: Wed, 06 Aug 2003 00:18:36 -0500
10017 Message-ID: <3F308FAC.4090409@mac.com>
10018
10019 (from vmsperl list)
10020 Branch: perl
10021 ! utils/dprofpp.PL
10022____________________________________________________________________________
10023[ 20512] By: jhi on 2003/08/05 20:08:02
10024 Log: Update Changes.
10025 Branch: maint-5.8/perl
10026 ! Changes patchlevel.h
10027____________________________________________________________________________
10028[ 20511] By: jhi on 2003/08/05 19:29:26
10029 Log: Integrate:
10030 [ 20510]
10031 Subject: [PATCH pod/perlfaq2.pod] BETTER update Friedl book listing for 2nd edition
10032 From: mjd@plover.com
10033 Date: 5 Aug 2003 19:23:46 -0000
10034 Message-ID: <20030805192346.25911.qmail@plover.com>
10035 Branch: maint-5.8/perl
10036 !> pod/perlfaq2.pod
10037____________________________________________________________________________
10038[ 20510] By: jhi on 2003/08/05 19:01:08
10039 Log: Subject: [PATCH pod/perlfaq2.pod] BETTER update Friedl book listing for 2nd edition
10040 From: mjd@plover.com
10041 Date: 5 Aug 2003 19:23:46 -0000
10042 Message-ID: <20030805192346.25911.qmail@plover.com>
10043 Branch: perl
10044 ! pod/perlfaq2.pod
10045____________________________________________________________________________
10046[ 20509] By: jhi on 2003/08/05 18:42:33
10047 Log: Integrate:
10048 [ 20508]
10049 Continue #20506.
10050 Branch: maint-5.8/perl
10051 !> lib/ExtUtils/MM_Unix.pm
10052____________________________________________________________________________
10053[ 20508] By: jhi on 2003/08/05 18:36:38
10054 Log: Continue #20506.
10055 Branch: perl
10056 ! lib/ExtUtils/MM_Unix.pm
10057____________________________________________________________________________
10058[ 20507] By: jhi on 2003/08/05 18:01:26
10059 Log: Integrate:
10060 [ 20506]
10061 Try to fix the INC in PASTHRU.
10062 Branch: maint-5.8/perl
10063 !> lib/ExtUtils/MM_Unix.pm
10064____________________________________________________________________________
10065[ 20506] By: jhi on 2003/08/05 17:58:01
10066 Log: Try to fix the INC in PASTHRU.
10067 Branch: perl
10068 ! lib/ExtUtils/MM_Unix.pm
10069____________________________________________________________________________
10070[ 20505] By: jhi on 2003/08/05 16:16:28
10071 Log: Update Changes.
10072 Branch: maint-5.8/perl
10073 ! Changes patchlevel.h
10074____________________________________________________________________________
10075[ 20504] By: jhi on 2003/08/05 16:12:30
10076 Log: Integrate:
10077 [ 20494]
10078 Add some known cases to Maintainers.
10079
10080 [ 20495]
10081 Subject: Re: [perl #23202] [RESOLVED] coredump on ext/POSIX/t/posix with NetBSD-1.6
10082 From: alian <alian@cpan.org>
10083 Date: Tue, 05 Aug 2003 12:21:42 +0200
10084 Message-ID: <3F2F8536.1090702@jupiter.alianet>
10085
10086 [ 20497]
10087 This is necessary to get things building for the VMS debugger.
10088 (Craig Berry)
10089
10090 [ 20498]
10091 Subject: [PATCH RC4] AUTHORS + Maintainers.pl
10092 From: Robin Barker <Robin.Barker@npl.co.uk>
10093 Date: Tue, 5 Aug 2003 15:32:36 +0100
10094 Message-ID: <533D273D4014D411AB1D00062938C4D90404661C@hotel.npl.co.uk>
10095
10096 [ 20499]
10097 A suggested perlio doc addition from Stas.
10098
10099 [ 20500]
10100 Subject: [PATCH-5.8.1-RC4] WinCE more implemented functions
10101 From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
10102 Date: Tue, 5 Aug 2003 20:12:18 +0400
10103 Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200E66@cio-test001.spb.lucent.com>
10104
10105 [ 20501]
10106 Reinstate #11125, hopefully making MakeMaker to pass
10107 DEFINE and INCLUDE to subdirs (NI-S says he'll work
10108 around any problems caused seen Tk if necessary).
10109 Also (document and) reorder the PASTHRU_INC and PASTHRU_DEFINE
10110 to be _after_ the directory-specific INC and DEFINE as suggested
10111 by NI-S (Tk probably being the only "user" of the said macros).
10112
10113 [ 20502]
10114 Subject: [PATCH] Re: MakeMaker doesn't pasthru DEFINE command-line args to subdirs on Win32
10115 From: Steve Hay <steve.hay@uk.radan.com>
10116 Date: Tue, 05 Aug 2003 10:43:49 +0100
10117 Message-ID: <3F2F7C55.9020808@uk.radan.com>
10118
10119 (The MM_Unix.pm part was dealt with in #20501.)
10120
10121 [ 20503]
10122 Subject: Re: [perl #23083] [5.8.0-Bug?] backtick returns empty value when $SIG{CHLD} defined.
10123 From: Chip Salzenberg <chip@pobox.com>
10124 Date: Tue, 5 Aug 2003 11:39:24 -0400
10125 Message-ID: <20030805153924.GO1751@perlsupport.com
10126 Branch: maint-5.8/perl
10127 - wince/include/netdb.h
10128 !> AUTHORS MANIFEST Porting/Maintainers.pl ext/POSIX/t/posix.t
10129 !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
10130 !> lib/ExtUtils/t/MM_Win32.t perlio.c pod/perliol.pod
10131 !> vms/descrip_mms.template wince/Makefile.ce wince/win32.h
10132 !> wince/win32io.c wince/wince.c
10133____________________________________________________________________________
10134[ 20503] By: jhi on 2003/08/05 16:02:14
10135 Log: Subject: Re: [perl #23083] [5.8.0-Bug?] backtick returns empty value when $SIG{CHLD} defined.
10136 From: Chip Salzenberg <chip@pobox.com>
10137 Date: Tue, 5 Aug 2003 11:39:24 -0400
10138 Message-ID: <20030805153924.GO1751@perlsupport.com
10139 Branch: perl
10140 ! perlio.c
10141____________________________________________________________________________
10142[ 20502] By: jhi on 2003/08/05 15:32:39
10143 Log: Subject: [PATCH] Re: MakeMaker doesn't pasthru DEFINE command-line args to subdirs on Win32
10144 From: Steve Hay <steve.hay@uk.radan.com>
10145 Date: Tue, 05 Aug 2003 10:43:49 +0100
10146 Message-ID: <3F2F7C55.9020808@uk.radan.com>
10147
10148 (The MM_Unix.pm part was dealt with in #20501.)
10149 Branch: perl
10150 ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/t/MM_Win32.t
10151____________________________________________________________________________
10152[ 20501] By: jhi on 2003/08/05 15:28:17
10153 Log: Reinstate #11125, hopefully making MakeMaker to pass
10154 DEFINE and INCLUDE to subdirs (NI-S says he'll work
10155 around any problems caused seen Tk if necessary).
10156 Also (document and) reorder the PASTHRU_INC and PASTHRU_DEFINE
10157 to be _after_ the directory-specific INC and DEFINE as suggested
10158 by NI-S (Tk probably being the only "user" of the said macros).
10159 Branch: perl
10160 ! lib/ExtUtils/MM_Unix.pm
10161____________________________________________________________________________
10162[ 20500] By: jhi on 2003/08/05 15:14:35
10163 Log: Subject: [PATCH-5.8.1-RC4] WinCE more implemented functions
10164 From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
10165 Date: Tue, 5 Aug 2003 20:12:18 +0400
10166 Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200E66@cio-test001.spb.lucent.com>
10167 Branch: perl
10168 - wince/include/netdb.h
10169 ! MANIFEST wince/Makefile.ce wince/win32.h wince/win32io.c
10170 ! wince/wince.c
10171____________________________________________________________________________
10172[ 20499] By: jhi on 2003/08/05 14:03:43
10173 Log: A suggested perlio doc addition from Stas.
10174 Branch: perl
10175 ! pod/perliol.pod
10176____________________________________________________________________________
10177[ 20498] By: jhi on 2003/08/05 13:32:59
10178 Log: Subject: [PATCH RC4] AUTHORS + Maintainers.pl
10179 From: Robin Barker <Robin.Barker@npl.co.uk>
10180 Date: Tue, 5 Aug 2003 15:32:36 +0100
10181 Message-ID: <533D273D4014D411AB1D00062938C4D90404661C@hotel.npl.co.uk>
10182 Branch: perl
10183 ! AUTHORS Porting/Maintainers.pl
10184____________________________________________________________________________
10185[ 20497] By: jhi on 2003/08/05 12:23:04
10186 Log: This is necessary to get things building for the VMS debugger.
10187 (Craig Berry)
10188 Branch: perl
10189 ! vms/descrip_mms.template
10190____________________________________________________________________________
10191[ 20496] By: jhi on 2003/08/05 10:52:16
10192 Log: Various perldelta updates.
10193 Branch: maint-5.8/perl
10194 ! pod/perldelta.pod
10195____________________________________________________________________________
10196[ 20495] By: jhi on 2003/08/05 09:23:24
10197 Log: Subject: Re: [perl #23202] [RESOLVED] coredump on ext/POSIX/t/posix with NetBSD-1.6
10198 From: alian <alian@cpan.org>
10199 Date: Tue, 05 Aug 2003 12:21:42 +0200
10200 Message-ID: <3F2F8536.1090702@jupiter.alianet>
10201 Branch: perl
10202 ! ext/POSIX/t/posix.t
10203____________________________________________________________________________
10204[ 20494] By: jhi on 2003/08/05 09:03:57
10205 Log: Add some known cases to Maintainers.
10206 Branch: perl
10207 ! Porting/Maintainers.pl
10208____________________________________________________________________________
10209[ 20493] By: jhi on 2003/08/05 08:43:49
10210 Log: Integrate:
10211 [ 20473]
10212 Subject: [PATCH] Re: Can't usemymalloc on OS X
10213 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
10214 Date: Mon, 4 Aug 2003 10:35:12 +0200
10215 Message-Id: <20030804103512.61a9661c.rgarciasuarez@free.fr>
10216
10217 [ 20474]
10218 Oops.
10219
10220 [ 20475]
10221 Rename DEBUG() and DEB() to PERL_DEBUG() and PERL_DEB().
10222
10223 [ 20479]
10224 Fix bug #23141 : localization of readonly magic scalars
10225 now produces an error "Modification of a read-only value
10226 attempted", instead of silently failing.
10227
10228 [ 20480]
10229 Subject: [PATCH] Re: [perl #23210] parser error with 'print $HANDLE func(@args)'
10230 From: Steve Grazzini <grazz@pobox.com>
10231 Date: Mon, 4 Aug 2003 16:01:45 -0400
10232 Message-ID: <20030804200145.GB21699@grazzini.net>
10233
10234 Prevent the warning "Bareword found where operator expected" in
10235 the case "print $fh foo()" where foo() is an undefined function.
10236
10237 [ 20482]
10238 Nit in INSTALL about the svr?.sh hint files.
10239
10240 [ 20483]
10241 Subject: [Patch 5.8.1 Encode.pm] v-strings deprecated
10242 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
10243 Date: Tue, 05 Aug 2003 00:27:10 +0900
10244 Message-Id: <20030805002313.9880.BQW10602@nifty.com>
10245
10246 [ 20484]
10247 Upgrade to Digest::MD5 2.27.
10248
10249 [ 20486]
10250 Subject: [PATCH] typos in encoding.pm
10251 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10252 Date: Mon, 4 Aug 2003 20:09:35 +0200
10253 Message-ID: <005001c35ab3$9225c320$0c2f1fac@R2D2>
10254
10255 [ 20488]
10256 Subject: [PATCH utils/dprofpp.PL] (was Re: DProf tests with -p broken on VMS)
10257 From: "Craig A. Berry" <craigberry@mac.com>
10258 Date: Mon, 04 Aug 2003 19:29:51 -0500
10259 Message-ID: <3F2EFA7F.6070801@mac.com>
10260
10261 [ 20489]
10262 Subject: PerlIO_{read,write} return value doc patch
10263 From: Gisle Aas <gisle@ActiveState.com>
10264 Date: 04 Aug 2003 13:25:28 -0700
10265 Message-ID: <lr4r0xuq4n.fsf@caliper.activestate.com>
10266
10267 [ 20490]
10268 [perl #23216] ext/IPC/SysV/t/sem.t don't remove semaphore on NetBSD sparc
10269 Try to remove the created message queues and semaphores
10270 even in the case of failures.
10271
10272 [ 20491]
10273 Add META.yml and Stas' makemeta (plus extensive reworking
10274 of the Maintainers utility)
10275
10276 [ 20492]
10277 Subject: [PATCH] perlthrtut.pod
10278 From: Elizabeth Mattijsen <liz@dijkmat.nl>
10279 Date: Tue, 5 Aug 2003 11:26:04 +0200
10280 Message-Id: <p05111b0abb5525e65401@[80.127.186.62]>
10281 Branch: maint-5.8/perl
10282 +> META.yml Porting/Maintainers.pm Porting/makemeta
10283 !> INSTALL MANIFEST Makefile.SH Porting/Maintainers
10284 !> Porting/Maintainers.pl ext/Digest/MD5/Changes
10285 !> ext/Digest/MD5/MD5.pm ext/Digest/MD5/t/files.t
10286 !> ext/Encode/encoding.pm ext/Encode/t/at-cn.t
10287 !> ext/Encode/t/at-tw.t ext/IPC/SysV/t/msg.t ext/IPC/SysV/t/sem.t
10288 !> hints/darwin.sh hints/rhapsody.sh perl.c perl.h
10289 !> pod/perlapio.pod pod/perlthrtut.pod scope.c t/op/local.t
10290 !> toke.c utils/dprofpp.PL
10291____________________________________________________________________________
10292[ 20492] By: jhi on 2003/08/05 08:34:34
10293 Log: Subject: [PATCH] perlthrtut.pod
10294 From: Elizabeth Mattijsen <liz@dijkmat.nl>
10295 Date: Tue, 5 Aug 2003 11:26:04 +0200
10296 Message-Id: <p05111b0abb5525e65401@[80.127.186.62]>
10297 Branch: perl
10298 ! pod/perlthrtut.pod
10299____________________________________________________________________________
10300[ 20491] By: jhi on 2003/08/05 08:31:29
10301 Log: Add META.yml and Stas' makemeta (plus extensive reworking
10302 of the Maintainers utility)
10303 Branch: perl
10304 + META.yml Porting/Maintainers.pm Porting/makemeta
10305 ! MANIFEST Makefile.SH Porting/Maintainers
10306 ! Porting/Maintainers.pl
10307____________________________________________________________________________
10308[ 20490] By: jhi on 2003/08/05 06:28:06
10309 Log: ext/IPC/SysV/t/sem.t don't remove semaphore on NetBSD sparc
10310 Try to remove the created message queues and semaphores
10311 even in the case of failures.
10312 Branch: perl
10313 ! ext/IPC/SysV/t/msg.t ext/IPC/SysV/t/sem.t
10314____________________________________________________________________________
10315[ 20489] By: jhi on 2003/08/05 06:21:47
10316 Log: Subject: PerlIO_{read,write} return value doc patch
10317 From: Gisle Aas <gisle@ActiveState.com>
10318 Date: 04 Aug 2003 13:25:28 -0700
10319 Message-ID: <lr4r0xuq4n.fsf@caliper.activestate.com>
10320 Branch: perl
10321 ! pod/perlapio.pod
10322____________________________________________________________________________
10323[ 20488] By: jhi on 2003/08/05 06:12:07
10324 Log: Subject: [PATCH utils/dprofpp.PL] (was Re: DProf tests with -p broken on VMS)
10325 From: "Craig A. Berry" <craigberry@mac.com>
10326 Date: Mon, 04 Aug 2003 19:29:51 -0500
10327 Message-ID: <3F2EFA7F.6070801@mac.com>
10328 Branch: perl
10329 ! utils/dprofpp.PL
10330____________________________________________________________________________
10331[ 20487] By: jhi on 2003/08/05 06:09:33
10332 Log: Subject: 5.8.0 -> 5.8.1 ?
10333 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10334 Date: Mon, 4 Aug 2003 20:27:02 +0200
10335 Message-ID: <05ee01c35ab6$008c2c80$0c2f1fac@R2D2>
10336 Branch: maint-5.8/perl
10337 ! NetWare/Makefile epoc/createpkg.pl ext/Devel/PPPort/PPPort.pm
10338 ! plan9/config.plan9 vos/build.cm vos/config.alpha.def
10339 ! vos/config.alpha.h vos/config.ga.def vos/config.ga.h
10340 ! vos/install_perl.cm wince/Makefile.ce
10341____________________________________________________________________________
10342[ 20486] By: jhi on 2003/08/05 06:05:53
10343 Log: Subject: [PATCH] typos in encoding.pm
10344 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10345 Date: Mon, 4 Aug 2003 20:09:35 +0200
10346 Message-ID: <005001c35ab3$9225c320$0c2f1fac@R2D2>
10347 Branch: perl
10348 ! ext/Encode/encoding.pm
10349____________________________________________________________________________
10350[ 20485] By: jhi on 2003/08/05 05:29:11
10351 Log: Bytecode patching from Enache.
10352 Branch: perl
10353 ! ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
10354 ! ext/B/t/bytecode.t ext/ByteLoader/bytecode.h t/TEST
10355____________________________________________________________________________
10356[ 20484] By: jhi on 2003/08/05 05:26:32
10357 Log: Upgrade to Digest::MD5 2.27.
10358 Branch: perl
10359 ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
10360 ! ext/Digest/MD5/t/files.t
10361____________________________________________________________________________
10362[ 20483] By: jhi on 2003/08/05 05:15:16
10363 Log: Subject: [Patch 5.8.1 Encode.pm] v-strings deprecated
10364 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
10365 Date: Tue, 05 Aug 2003 00:27:10 +0900
10366 Message-Id: <20030805002313.9880.BQW10602@nifty.com>
10367 Branch: perl
10368 ! ext/Encode/t/at-cn.t ext/Encode/t/at-tw.t
10369____________________________________________________________________________
10370[ 20482] By: rgs on 2003/08/04 22:06:46
10371 Log: Nit in INSTALL about the svr?.sh hint files.
10372 Branch: perl
10373 ! INSTALL
10374____________________________________________________________________________
10375[ 20481] By: rgs on 2003/08/04 21:39:01
10376 Log: AUTHORS update.
10377 Branch: maint-5.6
10378 ! perl-5.6.2/AUTHORS
10379____________________________________________________________________________
10380[ 20480] By: rgs on 2003/08/04 21:30:25
10381 Log: Subject: [PATCH] Re: [perl #23210] parser error with 'print $HANDLE func(@args)'
10382 From: Steve Grazzini <grazz@pobox.com>
10383 Date: Mon, 4 Aug 2003 16:01:45 -0400
10384 Message-ID: <20030804200145.GB21699@grazzini.net>
10385
10386 Prevent the warning "Bareword found where operator expected" in
10387 the case "print $fh foo()" where foo() is an undefined function.
10388 Branch: perl
10389 ! toke.c
10390____________________________________________________________________________
10391[ 20479] By: rgs on 2003/08/04 20:26:17
10392 Log: Fix bug #23141 : localization of readonly magic scalars
10393 now produces an error "Modification of a read-only value
10394 attempted", instead of silently failing.
10395 Branch: perl
10396 ! scope.c t/op/local.t
10397____________________________________________________________________________
10398[ 20478] By: rgs on 2003/08/04 20:10:52
10399 Log: Revert change #19282 : it caused problems for some -Duseshrplib
10400 builds. On the other hand, make sure that your C compiler isn't
10401 a perl script !
10402 Branch: perl
10403 ! Makefile.SH
10404____________________________________________________________________________
10405[ 20477] By: jhi on 2003/08/04 13:37:09
10406 Log: Advice on testing the $].
10407 Branch: maint-5.8/perl
10408 ! pod/perlvar.pod
10409____________________________________________________________________________
10410[ 20476] By: jhi on 2003/08/04 12:58:02
10411 Log: Mention the renaming of DEBUG() and DEB().
10412 Branch: maint-5.8/perl
10413 ! pod/perldelta.pod
10414____________________________________________________________________________
10415[ 20475] By: jhi on 2003/08/04 09:35:55
10416 Log: Rename DEBUG() and DEB() to PERL_DEBUG() and PERL_DEB().
10417 Branch: perl
10418 ! perl.c perl.h
10419____________________________________________________________________________
10420[ 20474] By: jhi on 2003/08/04 08:41:55
10421 Log: Oops.
10422 Branch: perl
10423 ! hints/darwin.sh hints/rhapsody.sh
10424____________________________________________________________________________
10425[ 20473] By: jhi on 2003/08/04 07:58:36
10426 Log: Subject: [PATCH] Re: Can't usemymalloc on OS X
10427 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
10428 Date: Mon, 4 Aug 2003 10:35:12 +0200
10429 Message-Id: <20030804103512.61a9661c.rgarciasuarez@free.fr>
10430 Branch: perl
10431 ! hints/darwin.sh
10432____________________________________________________________________________
10433[ 20472] By: jhi on 2003/08/04 07:01:58
10434 Log: Assuming v-strings deprecation proceeds as planned,
10435 here are some more doc changes.
10436 Branch: maint-5.8/perl
10437 ! pod/perldata.pod pod/perldelta.pod pod/perldiag.pod
10438 ! pod/perlfunc.pod pod/perlvar.pod
10439____________________________________________________________________________
10440[ 20471] By: jhi on 2003/08/04 06:31:30
10441 Log: Integrate:
10442 [ 20469]
10443 Subject: [PATCH] maint, Win32, GCC 3.2
10444 From: Mattia Barbon <mbarbon@dsi.unive.it>
10445 Date: Sat, 2 Aug 2003 10:31:07 +0200 (ora legale Europa occidentale)
10446 Message-ID: <Mahogany-0.64.2-624-20030802-103107.00@rbnet.it>
10447
10448 [ 20470]
10449 Test count adjustment from Rafael.
10450 Branch: maint-5.8/perl
10451 !> ext/Errno/Errno_pm.PL lib/Test/Simple/t/is_deeply.t
10452____________________________________________________________________________
10453[ 20470] By: jhi on 2003/08/04 06:30:05
10454 Log: Test count adjustment from Rafael.
10455 Branch: perl
10456 ! lib/Test/Simple/t/is_deeply.t
10457____________________________________________________________________________
10458[ 20469] By: jhi on 2003/08/04 06:23:26
10459 Log: Subject: [PATCH] maint, Win32, GCC 3.2
10460 From: Mattia Barbon <mbarbon@dsi.unive.it>
10461 Date: Sat, 2 Aug 2003 10:31:07 +0200 (ora legale Europa occidentale)
10462 Message-ID: <Mahogany-0.64.2-624-20030802-103107.00@rbnet.it>
10463 Branch: perl
10464 ! ext/Errno/Errno_pm.PL
10465____________________________________________________________________________
10466[ 20468] By: jhi on 2003/08/04 05:16:18
10467 Log: Integrate:
10468 [ 20461]
10469 Subject: Re: [perl #23202] coredump on ext/POSIX/t/posix with NetBSD-1.6
10470 From: alian <alian@cpan.org>
10471 Date: Sat, 02 Aug 2003 16:19:25 +0200
10472 Message-ID: <3F2BC86D.2050400@jupiter.alianet>
10473
10474 Plus, un-mark a test as TODO for darwin >= 6.6 (by M. Schwern)
10475
10476 [ 20462]
10477 Subject: [PATCH] Re: [perl #23207] persistant sideffect involving bitwise xor and substr
10478 From: Enache Adrian <enache@rdslink.ro>
10479 Date: Sun, 3 Aug 2003 18:00:05 +0300
10480 Message-ID: <20030803150005.GA1319@ratsnest.hole>
10481
10482 [ 20463]
10483 Subject: Re: [PATCH] Re: [perl #23206] Benchmark::cmpthese usage message wrong
10484 From: Michael G Schwern <schwern@pobox.com>
10485 Date: Sun, 3 Aug 2003 16:12:35 -0700
10486 Message-ID: <20030803231235.GJ24350@windhund.schwern.org>
10487
10488 [ 20464]
10489 Upgrade to ExtUtils::MakeMaker 6.15.
10490
10491 [ 20465]
10492 Subject: [PATCH] 4 bugs in Test::More
10493 From: Fergal Daly <fergal@esatclear.ie> (by way of Fergal Daly <fergal@esatclear.ie>)
10494 Date: Fri, 21 Mar 2003 10:57:31 +0000
10495 Message-Id: <200303211057.31879.fergal@esatclear.ie>
10496
10497 [ 20466]
10498 Subject: Debian patch that skips podless modules
10499 From: Alexey Tourbin <at@altlinux.ru>
10500 Date: Sun, 3 Aug 2003 21:33:00 +0400
10501 Message-ID: <20030803173300.GC2076@julia.office.altlinux.ru>
10502
10503 (plus Schwern's and Robert's nits)
10504
10505 [ 20467]
10506 Apparently the newly introduce -DDARWIN did conflict with
10507 some Apple definition, how ironic...
10508 Branch: maint-5.8/perl
10509 !> ext/POSIX/t/posix.t hints/darwin.sh installman
10510 !> lib/Benchmark.pm lib/Benchmark.t lib/ExtUtils/Changes
10511 !> lib/ExtUtils/META.yml lib/ExtUtils/MM_Any.pm
10512 !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
10513 !> lib/ExtUtils/t/MM_Unix.t lib/Test/More.pm
10514 !> lib/Test/Simple/t/More.t lib/Test/Simple/t/is_deeply.t perl.h
10515 !> pp.c t/op/substr.t
10516____________________________________________________________________________
10517[ 20467] By: jhi on 2003/08/04 05:10:57
10518 Log: Apparently the newly introduce -DDARWIN did conflict with
10519 some Apple definition, how ironic...
10520 Branch: perl
10521 ! hints/darwin.sh perl.h
10522____________________________________________________________________________
10523[ 20466] By: jhi on 2003/08/04 05:03:30
10524 Log: Subject: Debian patch that skips podless modules
10525 From: Alexey Tourbin <at@altlinux.ru>
10526 Date: Sun, 3 Aug 2003 21:33:00 +0400
10527 Message-ID: <20030803173300.GC2076@julia.office.altlinux.ru>
10528
10529 (plus Schwern's and Robert's nits)
10530 Branch: perl
10531 ! installman
10532____________________________________________________________________________
10533[ 20465] By: jhi on 2003/08/04 05:00:04
10534 Log: Subject: [PATCH] 4 bugs in Test::More
10535 From: Fergal Daly <fergal@esatclear.ie> (by way of Fergal Daly <fergal@esatclear.ie>)
10536 Date: Fri, 21 Mar 2003 10:57:31 +0000
10537 Message-Id: <200303211057.31879.fergal@esatclear.ie>
10538 Branch: perl
10539 ! lib/Test/More.pm lib/Test/Simple/t/More.t
10540 ! lib/Test/Simple/t/is_deeply.t
10541____________________________________________________________________________
10542[ 20464] By: jhi on 2003/08/04 04:44:08
10543 Log: Upgrade to ExtUtils::MakeMaker 6.15.
10544 Branch: perl
10545 ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
10546 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
10547 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/MM_Unix.t
10548____________________________________________________________________________
10549[ 20463] By: jhi on 2003/08/04 04:37:25
10550 Log: Subject: Re: [PATCH] Re: [perl #23206] Benchmark::cmpthese usage message wrong
10551 From: Michael G Schwern <schwern@pobox.com>
10552 Date: Sun, 3 Aug 2003 16:12:35 -0700
10553 Message-ID: <20030803231235.GJ24350@windhund.schwern.org>
10554 Branch: perl
10555 ! lib/Benchmark.pm lib/Benchmark.t
10556____________________________________________________________________________
10557[ 20462] By: rgs on 2003/08/03 22:26:10
10558 Log: Subject: [PATCH] Re: [perl #23207] persistant sideffect involving bitwise xor and substr
10559 From: Enache Adrian <enache@rdslink.ro>
10560 Date: Sun, 3 Aug 2003 18:00:05 +0300
10561 Message-ID: <20030803150005.GA1319@ratsnest.hole>
10562 Branch: perl
10563 ! pp.c t/op/substr.t
10564____________________________________________________________________________
10565[ 20461] By: rgs on 2003/08/03 21:50:11
10566 Log: Subject: Re: [perl #23202] coredump on ext/POSIX/t/posix with NetBSD-1.6
10567 From: alian <alian@cpan.org>
10568 Date: Sat, 02 Aug 2003 16:19:25 +0200
10569 Message-ID: <3F2BC86D.2050400@jupiter.alianet>
10570
10571 Plus, un-mark a test as TODO for darwin >= 6.6 (by M. Schwern)
10572 Branch: perl
10573 ! ext/POSIX/t/posix.t
10574____________________________________________________________________________
10575[ 20460] By: jhi on 2003/08/03 19:09:33
10576 Log: Integrate:
10577 [ 20450]
10578 Subject: [PATCH 5.8.1 @20218] Shell.t
10579 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
10580 Date: Sun, 3 Aug 2003 06:21:41 -0700
10581 Message-ID: <20030803132141.GA5156@math.berkeley.edu>
10582
10583 [ 20451]
10584 Subject: [PATCH Net::Ping] on VMS, set non-blocking with ioctl, not fcntl
10585 From: "Craig A. Berry" <craigberry@mac.com>
10586 Date: Sat, 02 Aug 2003 10:25:44 -0500
10587 Message-ID: <3F2BD7F8.8090003@mac.com>
10588
10589 [ 20452]
10590 Upgrade to Unicode::Collate 0.26.
10591
10592 [ 20453]
10593 Subject: [PATCH] Storable and uninitalized array values
10594 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10595 Date: Sat, 2 Aug 2003 13:40:16 +0200
10596 Message-ID: <00ab01c358ea$d940a5b0$0c2f1fac@R2D2>
10597
10598 [ 20454]
10599 Subject: [PATCH 5.8.1 @20218] OS/2 build
10600 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
10601 Date: Sat, 2 Aug 2003 09:38:50 -0700
10602 Message-ID: <20030802163850.GA4712@math.berkeley.edu>
10603
10604 [ 20455]
10605 Subject: [PATCH] Re: win32.c bug - handle leak
10606 From: Jan Dubois <jand@ActiveState.com>
10607 Date: Sat, 02 Aug 2003 10:25:05 -0700
10608 Message-ID: <9gsnivssuml394bttjb3mfsmdgfn9l6kh9@4ax.com>
10609
10610 [ 20456]
10611 Subject: [PATCH Time::HiRes docs] Grammar, punctuation, formatting edits
10612 From: mjd@plover.com
10613 Date: 3 Aug 2003 19:37:49 -0000
10614 Message-ID: <20030803193749.3733.qmail@plover.com>
10615
10616 [ 20457]
10617 Subject: [PATCH perlreftut.pod] Minor edits
10618 From: mjd@plover.com
10619 Date: 3 Aug 2003 17:46:08 -0000
10620 Message-ID: <20030803174608.15792.qmail@plover.com>
10621
10622 [ 20458]
10623 Subject: [PATCH-for-5.8.1-RC4] wince distribution
10624 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
10625 Date: Mon, 4 Aug 2003 00:01:08 +0400
10626 Message-ID: <039c01c359fa$1e755d50$195ec3d9@vad>
10627 Branch: maint-5.8/perl
10628 !> ext/Storable/Storable.xs ext/Storable/t/freeze.t
10629 !> ext/Time/HiRes/HiRes.pm lib/Net/Ping.pm lib/Shell.t
10630 !> lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
10631 !> lib/Unicode/Collate/README lib/Unicode/Collate/t/index.t
10632 !> lib/Unicode/Collate/t/test.t os2/os2ish.h pod/perlreftut.pod
10633 !> win32/win32.c wince/makedist.pl
10634____________________________________________________________________________
10635[ 20459] By: jhi on 2003/08/03 19:04:42
10636 Log: 5.8.1, not 5.9.0.
10637 Branch: maint-5.8/perl
10638 ! win32/Makefile win32/config_H.bc win32/config_H.gc
10639 ! win32/config_H.vc win32/config_H.vc64 win32/makefile.mk
10640____________________________________________________________________________
10641[ 20458] By: jhi on 2003/08/03 19:01:08
10642 Log: Subject: [PATCH-for-5.8.1-RC4] wince distribution
10643 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
10644 Date: Mon, 4 Aug 2003 00:01:08 +0400
10645 Message-ID: <039c01c359fa$1e755d50$195ec3d9@vad>
10646 Branch: perl
10647 ! wince/makedist.pl
10648____________________________________________________________________________
10649[ 20457] By: jhi on 2003/08/03 18:59:10
10650 Log: Subject: [PATCH perlreftut.pod] Minor edits
10651 From: mjd@plover.com
10652 Date: 3 Aug 2003 17:46:08 -0000
10653 Message-ID: <20030803174608.15792.qmail@plover.com>
10654 Branch: perl
10655 ! pod/perlreftut.pod
10656____________________________________________________________________________
10657[ 20456] By: jhi on 2003/08/03 18:52:16
10658 Log: Subject: [PATCH Time::HiRes docs] Grammar, punctuation, formatting edits
10659 From: mjd@plover.com
10660 Date: 3 Aug 2003 19:37:49 -0000
10661 Message-ID: <20030803193749.3733.qmail@plover.com>
10662 Branch: perl
10663 ! ext/Time/HiRes/HiRes.pm
10664____________________________________________________________________________
10665[ 20455] By: jhi on 2003/08/03 18:47:13
10666 Log: Subject: [PATCH] Re: win32.c bug - handle leak
10667 From: Jan Dubois <jand@ActiveState.com>
10668 Date: Sat, 02 Aug 2003 10:25:05 -0700
10669 Message-ID: <9gsnivssuml394bttjb3mfsmdgfn9l6kh9@4ax.com>
10670 Branch: perl
10671 ! win32/win32.c
10672____________________________________________________________________________
10673[ 20454] By: jhi on 2003/08/03 18:45:53
10674 Log: Subject: [PATCH 5.8.1 @20218] OS/2 build
10675 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
10676 Date: Sat, 2 Aug 2003 09:38:50 -0700
10677 Message-ID: <20030802163850.GA4712@math.berkeley.edu>
10678 Branch: perl
10679 ! os2/os2ish.h
10680____________________________________________________________________________
10681[ 20453] By: jhi on 2003/08/03 18:44:29
10682 Log: Subject: [PATCH] Storable and uninitalized array values
10683 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10684 Date: Sat, 2 Aug 2003 13:40:16 +0200
10685 Message-ID: <00ab01c358ea$d940a5b0$0c2f1fac@R2D2>
10686 Branch: perl
10687 ! ext/Storable/Storable.xs ext/Storable/t/freeze.t
10688____________________________________________________________________________
10689[ 20452] By: jhi on 2003/08/03 18:27:47
10690 Log: Upgrade to Unicode::Collate 0.26.
10691 Branch: perl
10692 ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
10693 ! lib/Unicode/Collate/README lib/Unicode/Collate/t/index.t
10694 ! lib/Unicode/Collate/t/test.t
10695____________________________________________________________________________
10696[ 20451] By: jhi on 2003/08/03 18:24:18
10697 Log: Subject: [PATCH Net::Ping] on VMS, set non-blocking with ioctl, not fcntl
10698 From: "Craig A. Berry" <craigberry@mac.com>
10699 Date: Sat, 02 Aug 2003 10:25:44 -0500
10700 Message-ID: <3F2BD7F8.8090003@mac.com>
10701 Branch: perl
10702 ! lib/Net/Ping.pm
10703____________________________________________________________________________
10704[ 20450] By: rgs on 2003/08/03 12:50:07
10705 Log: Subject: [PATCH 5.8.1 @20218] Shell.t
10706 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
10707 Date: Sun, 3 Aug 2003 06:21:41 -0700
10708 Message-ID: <20030803132141.GA5156@math.berkeley.edu>
10709 Branch: perl
10710 ! lib/Shell.t
10711____________________________________________________________________________
10712[ 20449] By: rgs on 2003/08/02 19:22:34
10713 Log: Integrate change #19805 from bleadperl :
10714
10715 Subject: /ext/DynaLoader/dl_dyld.xs
10716 From: "Peter O'Gorman" <peter@pogma.com>
10717 Date: Tue, 17 Jun 2003 23:45:47 +0900
10718 Message-Id: <619B6B53-A0D2-11D7-BAF7-003065F6C222@pogma.com>
10719
10720 No need to see dlclose() and dlsym() outside the dl_dyld.xs
10721 (Mac OS X, NeXT), and seeing them is harmful for libdlcompat
10722 of OpenDarwin.
10723 Branch: maint-5.6
10724 !> perl-5.6.2/ext/DynaLoader/dl_dyld.xs
10725____________________________________________________________________________
10726[ 20448] By: jhi on 2003/08/02 07:28:33
10727 Log: Integrate:
10728 [ 20447]
10729 C++ (or C99) sneak attack ("inline" function keyword).
10730 Branch: maint-5.8/perl
10731 !> ext/Devel/DProf/DProf.xs
10732____________________________________________________________________________
10733[ 20447] By: jhi on 2003/08/02 07:26:58
10734 Log: C++ (or C99) sneak attack ("inline" function keyword).
10735 Branch: perl
10736 ! ext/Devel/DProf/DProf.xs
10737____________________________________________________________________________
10738[ 20446] By: jhi on 2003/08/02 06:26:56
10739 Log: Integrate:
10740 [ 20443]
10741 Add a message about the LC_ALL=C workaround (for non-core builds);
10742 update Changes.
10743
10744 [ 20444]
10745 Only show the message if the locale settings look risky.
10746
10747 [ 20445]
10748 Subject: [PATCH] Re: [perl #23185] perl crash with File::Glob
10749 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10750 Date: Fri, 1 Aug 2003 13:12:14 +0200
10751 Message-ID: <00dc01c3581d$c3412c30$0c2f1fac@R2D2>
10752 Branch: maint-5.8/perl
10753 !> ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
10754 !> ext/File/Glob/t/basic.t ext/Time/HiRes/Changes
10755 !> ext/Time/HiRes/Makefile.PL
10756____________________________________________________________________________
10757[ 20445] By: jhi on 2003/08/02 06:24:30
10758 Log: Subject: [PATCH] Re: [perl #23185] perl crash with File::Glob
10759 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
10760 Date: Fri, 1 Aug 2003 13:12:14 +0200
10761 Message-ID: <00dc01c3581d$c3412c30$0c2f1fac@R2D2>
10762 Branch: perl
10763 ! ext/File/Glob/Glob.pm ext/File/Glob/bsd_glob.c
10764 ! ext/File/Glob/t/basic.t
10765____________________________________________________________________________
10766[ 20444] By: jhi on 2003/08/02 06:17:28
10767 Log: Only show the message if the locale settings look risky.
10768 Branch: perl
10769 ! ext/Time/HiRes/Makefile.PL
10770____________________________________________________________________________
10771[ 20443] By: jhi on 2003/08/02 06:01:27
10772 Log: Add a message about the LC_ALL=C workaround (for non-core builds);
10773 update Changes.
10774 Branch: perl
10775 ! ext/Time/HiRes/Changes ext/Time/HiRes/Makefile.PL
10776____________________________________________________________________________
10777[ 20442] By: jhi on 2003/08/02 05:43:01
10778 Log: Integrate:
10779 [ 20435]
10780 Missed this bit in the last update: couldn't answer ''
10781 or ' ' to get 'none'.
10782
10783 [ 20437]
10784 Hugo's second thoughts: drop the relatively rare and
10785 slow optimization for now.
10786
10787 [ 20438]
10788 Subject: [PATCH] argv case nit for VMS
10789 From: "Craig A. Berry" <craigberry@mac.com>
10790 Date: Fri, 01 Aug 2003 19:16:30 -0500
10791 Message-ID: <3F2B02DE.10207@mac.com>
10792
10793 [ 20439]
10794 Subject: [PATCH] ioctl for VMS
10795 From: "Craig A. Berry" <craigberry@mac.com>
10796 Date: Fri, 01 Aug 2003 23:34:31 -0500
10797 Message-ID: <3F2B3F57.4050609@mac.com>
10798
10799 [ 20440]
10800 Subject: [PATCH @20348] Re: [PATCH @19834] DProf fixes
10801 From: Radu Greab <rgreab@fx.ro>
10802 Date: Sat, 02 Aug 2003 00:17:49 +0300 (EEST)
10803 Message-Id: <20030802.001749.101708736.radu@yx.primIT.ro>
10804 Branch: maint-5.8/perl
10805 !> Configure configure.com ext/Devel/DProf/Changes
10806 !> ext/Devel/DProf/DProf.pm ext/Devel/DProf/DProf.xs
10807 !> ext/Encode/bin/enc2xs pod/pod2usage.PL pod/podselect.PL
10808 !> regexec.c t/lib/dprof/test8_t t/lib/dprof/test8_v vms/vmsish.h
10809____________________________________________________________________________
10810[ 20441] By: jhi on 2003/08/02 05:37:37
10811 Log: Subject: [PATCH] Small nit to pad.c
10812 From: Enache Adrian <enache@rdslink.ro>
10813 Date: Sat, 2 Aug 2003 01:50:40 +0300
10814 Message-ID: <20030801225040.GB1281@ratsnest.hole>
10815 Branch: perl
10816 ! pad.c
10817____________________________________________________________________________
10818[ 20440] By: jhi on 2003/08/02 05:12:13
10819 Log: Subject: [PATCH @20348] Re: [PATCH @19834] DProf fixes
10820 From: Radu Greab <rgreab@fx.ro>
10821 Date: Sat, 02 Aug 2003 00:17:49 +0300 (EEST)
10822 Message-Id: <20030802.001749.101708736.radu@yx.primIT.ro>
10823 Branch: perl
10824 ! ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
10825 ! ext/Devel/DProf/DProf.xs t/lib/dprof/test8_t
10826 ! t/lib/dprof/test8_v
10827____________________________________________________________________________
10828[ 20439] By: jhi on 2003/08/02 05:06:43
10829 Log: Subject: [PATCH] ioctl for VMS
10830 From: "Craig A. Berry" <craigberry@mac.com>
10831 Date: Fri, 01 Aug 2003 23:34:31 -0500
10832 Message-ID: <3F2B3F57.4050609@mac.com>
10833 Branch: perl
10834 ! configure.com vms/vmsish.h
10835____________________________________________________________________________
10836[ 20438] By: jhi on 2003/08/02 05:05:40
10837 Log: Subject: [PATCH] argv case nit for VMS
10838 From: "Craig A. Berry" <craigberry@mac.com>
10839 Date: Fri, 01 Aug 2003 19:16:30 -0500
10840 Message-ID: <3F2B02DE.10207@mac.com>
10841 Branch: perl
10842 ! ext/Encode/bin/enc2xs pod/pod2usage.PL pod/podselect.PL
10843____________________________________________________________________________
10844[ 20437] By: jhi on 2003/08/01 22:00:30
10845 Log: Hugo's second thoughts: drop the relatively rare and
10846 slow optimization for now.
10847 Branch: perl
10848 ! regexec.c
10849____________________________________________________________________________
10850[ 20436] By: jhi on 2003/08/01 21:55:50
10851 Log: metaconfig unit changes for #20435.
10852 Branch: metaconfig
10853 ! U/installdirs/siteman1dir.U U/installdirs/siteman3dir.U
10854____________________________________________________________________________
10855[ 20435] By: jhi on 2003/08/01 21:55:19
10856 Log: Missed this bit in the last update: couldn't answer ''
10857 or ' ' to get 'none'.
10858 Branch: perl
10859 ! Configure
10860____________________________________________________________________________
10861[ 20434] By: jhi on 2003/08/01 13:56:19
10862 Log: "Out of memory" errors with this recently added test
10863 in IRIX -Duse64bitall, dropping the test for 5.8.1.
10864 (It's testing a feature that has been broken for
10865 a long while, anyway.)
10866
10867 (This is also the RC4.)
10868 Branch: maint-5.8/perl
10869 - ext/B/t/bytecode.t
10870 ! MANIFEST
10871____________________________________________________________________________
10872[ 20433] By: jhi on 2003/08/01 13:48:38
10873 Log: Integrate:
10874 [ 20432]
10875 Encode pre-1.98 update from Dan Kogai, sent from
10876 the ashes of his smoldering motherboard.
10877 Branch: maint-5.8/perl
10878 !> ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/META.yml
10879 !> ext/Encode/lib/Encode/Alias.pm ext/Encode/t/Aliases.t
10880 !> ext/Encode/t/perlio.t ext/Encode/ucm/macArabic.ucm
10881 !> ext/Encode/ucm/macFarsi.ucm ext/Encode/ucm/macHebrew.ucm
10882____________________________________________________________________________
10883[ 20432] By: jhi on 2003/08/01 13:45:10
10884 Log: Encode pre-1.98 update from Dan Kogai, sent from
10885 the ashes of his smoldering motherboard.
10886 Branch: perl
10887 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/META.yml
10888 ! ext/Encode/lib/Encode/Alias.pm ext/Encode/t/Aliases.t
10889 ! ext/Encode/t/perlio.t ext/Encode/ucm/macArabic.ucm
10890 ! ext/Encode/ucm/macFarsi.ucm ext/Encode/ucm/macHebrew.ucm
10891____________________________________________________________________________
10892[ 20431] By: jhi on 2003/08/01 13:34:28
10893 Log: More runperl(switches => ...) finds (bleadperl only).
10894 Branch: perl
10895 ! t/op/readline.t
10896____________________________________________________________________________
10897[ 20430] By: jhi on 2003/08/01 12:50:52
10898 Log: Time to go RC4.
10899 Branch: maint-5.8/perl
10900 ! patchlevel.h
10901____________________________________________________________________________
10902[ 20429] By: jhi on 2003/08/01 12:50:31
10903 Log: Update the record.
10904 Branch: maint-5.8/perl
10905 ! pod/perlhist.pod
10906____________________________________________________________________________
10907[ 20428] By: jhi on 2003/08/01 12:48:03
10908 Log: Regen perltoc.
10909 Branch: maint-5.8/perl
10910 ! pod/perltoc.pod
10911____________________________________________________________________________
10912[ 20427] By: jhi on 2003/08/01 12:46:35
10913 Log: Integrate:
10914 [ 20425]
10915 pod likes whitespace.
10916 Branch: maint-5.8/perl
10917 !> ext/ByteLoader/ByteLoader.pm
10918____________________________________________________________________________
10919[ 20426] By: jhi on 2003/08/01 12:45:19
10920 Log: Regen perltoc.
10921 Branch: perl
10922 ! pod/perltoc.pod
10923____________________________________________________________________________
10924[ 20425] By: jhi on 2003/08/01 12:44:16
10925 Log: pod likes whitespace.
10926 Branch: perl
10927 ! ext/ByteLoader/ByteLoader.pm
10928____________________________________________________________________________
10929[ 20424] By: jhi on 2003/08/01 12:43:46
10930 Log: perldelta polishing.
10931 Branch: maint-5.8/perl
10932 ! pod/perldelta.pod
10933____________________________________________________________________________
10934[ 20423] By: jhi on 2003/08/01 11:39:16
10935 Log: Integrate:
10936 [ 20422]
10937 Faulty check.
10938 Branch: maint-5.8/perl
10939 !> t/test.pl
10940____________________________________________________________________________
10941[ 20422] By: jhi on 2003/08/01 11:37:53
10942 Log: Faulty check.
10943 Branch: perl
10944 ! t/test.pl
10945____________________________________________________________________________
10946[ 20421] By: jhi on 2003/08/01 11:14:04
10947 Log: Integrate:
10948 [ 20410]
10949 Regen Configure for the new *dir installation variables.
10950 If these don't work, ask Schwern.
10951
10952 [ 20411]
10953 More for the *dir changes.
10954
10955 [ 20413]
10956 Regen Configure to use the *html*dir files.
10957 (installhtml uses none of that, though)
10958
10959 [ 20416]
10960 Argument sanity checking.
10961
10962 [ 20417]
10963 Fix the options.
10964
10965 [ 20418]
10966 Now the test should be really testing what it's supposed to.
10967
10968 [ 20419]
10969 Regen Glossary et al.
10970
10971 [ 20420]
10972 Update INSTALL on the *dir.
10973
10974 (Configure, Glossary, et al regenerated)
10975 Branch: maint-5.8/perl
10976 ! Configure Policy_sh.SH Porting/Glossary Porting/config.sh
10977 ! Porting/config_H config_h.SH
10978 !> INSTALL ext/B/t/bytecode.t hints/darwin.sh t/test.pl
10979____________________________________________________________________________
10980[ 20420] By: jhi on 2003/08/01 11:06:54
10981 Log: Update INSTALL on the *dir.
10982 Branch: perl
10983 ! INSTALL
10984____________________________________________________________________________
10985[ 20419] By: jhi on 2003/08/01 11:04:55
10986 Log: Regen Glossary et al.
10987 Branch: perl
10988 ! Porting/Glossary Porting/config.sh Porting/config_H
10989____________________________________________________________________________
10990[ 20418] By: jhi on 2003/08/01 10:58:23
10991 Log: Now the test should be really testing what it's supposed to.
10992 Branch: perl
10993 ! ext/B/t/bytecode.t
10994____________________________________________________________________________
10995[ 20417] By: jhi on 2003/08/01 10:45:57
10996 Log: Fix the options.
10997 Branch: perl
10998 ! ext/B/t/bytecode.t
10999____________________________________________________________________________
11000[ 20416] By: jhi on 2003/08/01 10:44:19
11001 Log: Argument sanity checking.
11002 Branch: perl
11003 ! t/test.pl
11004____________________________________________________________________________
11005[ 20415] By: jhi on 2003/08/01 10:37:58
11006 Log: The new metaconfig *dir installation directory units.
11007 Branch: metaconfig
11008 + U/installdirs/vendorhtml1dir.U U/installdirs/vendorhtml3dir.U
11009 + U/installdirs/vendorman1dir.U U/installdirs/vendorman3dir.U
11010____________________________________________________________________________
11011[ 20414] By: jhi on 2003/08/01 10:37:34
11012 Log: metaconfig unit changes for #20413.
11013 Branch: metaconfig
11014 ! U/installdirs/sitehtml1dir.U U/installdirs/sitehtml3dir.U
11015____________________________________________________________________________
11016[ 20413] By: jhi on 2003/08/01 10:37:09
11017 Log: Regen Configure to use the *html*dir files.
11018 (installhtml uses none of that, though)
11019 Branch: perl
11020 ! Configure Policy_sh.SH config_h.SH
11021____________________________________________________________________________
11022[ 20412] By: jhi on 2003/08/01 10:10:28
11023 Log: metaconfig unit changes for #20410.
11024 Branch: metaconfig
11025 ! U/installdirs/siteman1dir.U U/installdirs/siteman3dir.U
11026____________________________________________________________________________
11027[ 20411] By: jhi on 2003/08/01 10:10:05
11028 Log: More for the *dir changes.
11029 Branch: perl
11030 ! Policy_sh.SH config_h.SH hints/darwin.sh
11031____________________________________________________________________________
11032[ 20410] By: jhi on 2003/08/01 10:09:38
11033 Log: Regen Configure for the new *dir installation variables.
11034 If these don't work, ask Schwern.
11035 Branch: perl
11036 ! Configure
11037____________________________________________________________________________
11038[ 20409] By: jhi on 2003/08/01 05:38:16
11039 Log: Integrate:
11040 [ 20404]
11041 Subject: [PATCH] LotR quote for perlapi.c
11042 From: Autrijus Tang <autrijus@autrijus.org>
11043 Date: Fri, 1 Aug 2003 10:00:29 +0800
11044 Message-Id: <20030801020029.GA28241@not.autrijus.org>
11045
11046 [ 20405]
11047 Subject: [PATCH] Re: utf8+regex bug in 5.8.1-RC2
11048 From: Dave Mitchell <davem@fdgroup.com>
11049 Date: Fri, 1 Aug 2003 01:16:31 +0100
11050 Message-ID: <20030801001631.GA11233@fdgroup.com>
11051
11052 [ 20406]
11053 Regen perlapi.
11054
11055 [ 20407]
11056 JAPH patch :-) from Abigail.
11057
11058 [ 20408]
11059 Upgrade to MakeMaker 6.13.
11060 Branch: maint-5.8/perl
11061 !> embed.pl lib/ExtUtils/Changes lib/ExtUtils/META.yml
11062 !> lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
11063 !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
11064 !> lib/ExtUtils/t/basic.t perlapi.c regcomp.c t/japh/abigail.t
11065 !> t/op/pat.t
11066____________________________________________________________________________
11067[ 20408] By: jhi on 2003/08/01 05:27:48
11068 Log: Upgrade to MakeMaker 6.13.
11069 Branch: perl
11070 ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
11071 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
11072 ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
11073 ! lib/ExtUtils/t/basic.t
11074____________________________________________________________________________
11075[ 20407] By: jhi on 2003/08/01 05:21:36
11076 Log: JAPH patch :-) from Abigail.
11077 Branch: perl
11078 ! t/japh/abigail.t
11079____________________________________________________________________________
11080[ 20406] By: jhi on 2003/08/01 05:10:30
11081 Log: Regen perlapi.
11082 Branch: perl
11083 ! perlapi.c
11084____________________________________________________________________________
11085[ 20405] By: jhi on 2003/08/01 05:09:23
11086 Log: Subject: [PATCH] Re: utf8+regex bug in 5.8.1-RC2
11087 From: Dave Mitchell <davem@fdgroup.com>
11088 Date: Fri, 1 Aug 2003 01:16:31 +0100
11089 Message-ID: <20030801001631.GA11233@fdgroup.com>
11090 Branch: perl
11091 ! regcomp.c t/op/pat.t
11092____________________________________________________________________________
11093[ 20404] By: ams on 2003/08/01 03:28:17
11094 Log: Subject: [PATCH] LotR quote for perlapi.c
11095 From: Autrijus Tang <autrijus@autrijus.org>
11096 Date: Fri, 1 Aug 2003 10:00:29 +0800
11097 Message-Id: <20030801020029.GA28241@not.autrijus.org>
11098 Branch: perl
11099 ! embed.pl
11100____________________________________________________________________________
11101[ 20403] By: rgs on 2003/07/31 22:00:47
11102 Log: When adding files, update MANIFEST.
11103 Branch: maint-5.6
11104 ! perl-5.6.2/MANIFEST
11105____________________________________________________________________________
11106[ 20402] By: rgs on 2003/07/31 21:53:23
11107 Log: Forgot to add those files from DB_File 1.806.
11108 Branch: maint-5.6
11109 + perl-5.6.2/ext/DB_File/config.in
11110 + perl-5.6.2/ext/DB_File/fallback.h
11111 + perl-5.6.2/ext/DB_File/fallback.xs
11112 + perl-5.6.2/ext/DB_File/ppport.h
11113____________________________________________________________________________
11114[ 20401] By: jhi on 2003/07/31 21:00:00
11115 Log: Integrate:
11116 [ 20399]
11117 Backport doc patch #20396 (Document in INSTALL that
11118 -Uinstallusrbinperl is now the default.) (goes with
11119 change #20382.)
11120 Branch: maint-5.8/perl
11121 !> INSTALL
11122____________________________________________________________________________
11123[ 20400] By: rgs on 2003/07/31 20:58:37
11124 Log: Discourage from using threads in INSTALL.
11125 Branch: maint-5.6
11126 ! perl-5.6.2/INSTALL
11127____________________________________________________________________________
11128[ 20399] By: rgs on 2003/07/31 20:42:45
11129 Log: Backport doc patch #20396 (Document in INSTALL that
11130 -Uinstallusrbinperl is now the default.) (goes with
11131 change #20382.)
11132 Branch: maint-5.6
11133 ! perl-5.6.2/INSTALL
11134____________________________________________________________________________
11135[ 20398] By: jhi on 2003/07/31 20:42:10
11136 Log: Mention perlmacosx (README.macosx).
11137 Branch: maint-5.8/perl
11138 ! pod/perldelta.pod
11139____________________________________________________________________________
11140[ 20397] By: jhi on 2003/07/31 20:41:00
11141 Log: Integrate:
11142 [ 20386]
11143 Make consistent with installperl (and working in MPE/iX)
11144 (Mark Bixby)
11145
11146 [ 20387]
11147 Subject: Re: [perl #23171] Regex too selfish
11148 From: hv@crypt.org
11149 Date: Thu, 31 Jul 2003 18:59:43 +0100
11150 Message-Id: <200307311759.h6VHxhn06664@zen.crypt.org>
11151
11152 (choose the second code patch)
11153
11154 [ 20388]
11155 Subject: [DOC PATCH] pod/perlguts.pod
11156 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
11157 Date: Thu, 31 Jul 2003 22:39:01 +0200
11158 Message-ID: <004a01c357a3$c71f9f50$0c2f1fac@R2D2>
11159
11160 [ 20389]
11161 Yet another bytecode tweak from Enache.
11162
11163 [ 20391]
11164 Introduce a '_test' make target, equivalent to 'test',
11165 to please Test::Smoke. In the future, backporting change
11166 9217 would be nice.
11167
11168 [ 20392]
11169 Enache again.
11170
11171 [ 20393]
11172 Unportable subtest needs rethink.
11173
11174 [ 20394]
11175 README.macosx from Sherm Pendley.
11176
11177 [ 20395]
11178 Integrate README.macosx more.
11179
11180 (perltoc regenerated)
11181 Branch: maint-5.8/perl
11182 +> README.macosx
11183 !> MANIFEST ext/B/B/Bytecode.pm ext/B/t/bytecode.t
11184 !> ext/ByteLoader/bytecode.h installman pod/buildtoc.PL
11185 !> pod/perl.pod pod/perlguts.pod pod/perlport.pod pod/perltoc.pod
11186 !> regexec.c t/op/re_tests win32/Makefile win32/makefile.mk
11187____________________________________________________________________________
11188[ 20396] By: rgs on 2003/07/31 20:37:50
11189 Log: Document in INSTALL that -Uinstallusrbinperl is now the default.
11190 Branch: perl
11191 ! INSTALL
11192____________________________________________________________________________
11193[ 20395] By: jhi on 2003/07/31 20:32:30
11194 Log: Integrate README.macosx more.
11195 Branch: perl
11196 ! pod/buildtoc.PL pod/perl.pod pod/perlport.pod pod/perltoc.pod
11197 ! win32/Makefile win32/makefile.mk
11198____________________________________________________________________________
11199[ 20394] By: jhi on 2003/07/31 20:31:49
11200 Log: README.macosx from Sherm Pendley.
11201 Branch: perl
11202 + README.macosx
11203 ! MANIFEST
11204____________________________________________________________________________
11205[ 20393] By: jhi on 2003/07/31 20:31:08
11206 Log: Unportable subtest needs rethink.
11207 Branch: perl
11208 ! ext/B/t/bytecode.t
11209____________________________________________________________________________
11210[ 20392] By: jhi on 2003/07/31 20:22:03
11211 Log: Enache again.
11212 Branch: perl
11213 ! ext/ByteLoader/bytecode.h
11214____________________________________________________________________________
11215[ 20391] By: rgs on 2003/07/31 20:20:48
11216 Log: Introduce a '_test' make target, equivalent to 'test',
11217 to please Test::Smoke. In the future, backporting change
11218 9217 would be nice.
11219 Branch: maint-5.6
11220 ! perl-5.6.2/Makefile.SH
11221____________________________________________________________________________
11222[ 20390] By: jhi on 2003/07/31 20:20:28
11223 Log: Retract #20385.
11224 Branch: perl
11225 ! ext/ByteLoader/bytecode.h
11226____________________________________________________________________________
11227[ 20389] By: jhi on 2003/07/31 20:14:06
11228 Log: Yet another bytecode tweak from Enache.
11229 Branch: perl
11230 ! ext/B/B/Bytecode.pm
11231____________________________________________________________________________
11232[ 20388] By: jhi on 2003/07/31 20:11:21
11233 Log: Subject: [DOC PATCH] pod/perlguts.pod
11234 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
11235 Date: Thu, 31 Jul 2003 22:39:01 +0200
11236 Message-ID: <004a01c357a3$c71f9f50$0c2f1fac@R2D2>
11237 Branch: perl
11238 ! pod/perlguts.pod
11239____________________________________________________________________________
11240[ 20387] By: jhi on 2003/07/31 19:57:36
11241 Log: Subject: Re: [perl #23171] Regex too selfish
11242 From: hv@crypt.org
11243 Date: Thu, 31 Jul 2003 18:59:43 +0100
11244 Message-Id: <200307311759.h6VHxhn06664@zen.crypt.org>
11245
11246 (choose the second code patch)
11247 Branch: perl
11248 ! regexec.c t/op/re_tests
11249____________________________________________________________________________
11250[ 20386] By: jhi on 2003/07/31 19:48:17
11251 Log: Make consistent with installperl (and working in MPE/iX)
11252 (Mark Bixby)
11253 Branch: perl
11254 ! installman
11255____________________________________________________________________________
11256[ 20385] By: jhi on 2003/07/31 19:46:14
11257 Log: (retracted by #20390)
11258 Branch: perl
11259 ! ext/ByteLoader/bytecode.h
11260____________________________________________________________________________
11261[ 20384] By: jhi on 2003/07/31 19:38:44
11262 Log: Integrate:
11263 [ 20383]
11264 Upgrade to real CPAN.pm 1.76.
11265 Branch: maint-5.8/perl
11266 +> lib/CPAN/META.yml lib/CPAN/PAUSE2003.pub lib/CPAN/SIGNATURE
11267 +> lib/CPAN/t/signature.t
11268 !> MANIFEST lib/CPAN.pm
11269____________________________________________________________________________
11270[ 20383] By: jhi on 2003/07/31 19:37:22
11271 Log: Upgrade to real CPAN.pm 1.76.
11272 Branch: perl
11273 + lib/CPAN/META.yml lib/CPAN/PAUSE2003.pub lib/CPAN/SIGNATURE
11274 + lib/CPAN/t/signature.t
11275 ! MANIFEST lib/CPAN.pm
11276____________________________________________________________________________
11277[ 20382] By: rgs on 2003/07/31 19:33:36
11278 Log: Backport change #17926 : make installusrbinperl optional
11279 (that's probably better nowadays)
11280 Branch: maint-5.6
11281 ! perl-5.6.2/Configure
11282____________________________________________________________________________
11283[ 20381] By: rgs on 2003/07/31 18:41:29
11284 Log: Reintegrate change #11115 from the main branch :
11285 allow trailing whitespace when parsing /lib/syscalls.exp
11286 in AIX. Fixes detection of pipes and times syscalls on AIX 5.
11287 Branch: maint-5.6
11288 ! perl-5.6.2/Configure
11289____________________________________________________________________________
11290[ 20380] By: jhi on 2003/07/31 12:55:18
11291 Log: Integrate:
11292 [ 20375]
11293 We are change #20316 ahead of 1.75.
11294
11295 [ 20376]
11296 Document the requirements for Module::Signature a bit.
11297
11298 [ 20377]
11299 This test is pretty useless as it stands.
11300
11301 [ 20378]
11302 The new PKI system is far too untested and rough yet
11303 (think machines with no network, machines behind firewalls,
11304 corporate and national encryption policies). It cannot be
11305 considered useable at this stage.
11306
11307 Therefore, create a fake CPAN 1.76.
11308
11309 [ 20379]
11310 One more tweak for Mac OS X hints.
11311 Branch: maint-5.8/perl
11312 - lib/CPAN/t/signature.t
11313 !> MANIFEST hints/darwin.sh lib/CPAN.pm
11314____________________________________________________________________________
11315[ 20379] By: jhi on 2003/07/31 12:32:31
11316 Log: One more tweak for Mac OS X hints.
11317 Branch: perl
11318 ! hints/darwin.sh
11319____________________________________________________________________________
11320[ 20378] By: jhi on 2003/07/31 11:39:31
11321 Log: The new PKI system is far too untested and rough yet
11322 (think machines with no network, machines behind firewalls,
11323 corporate and national encryption policies). It cannot be
11324 considered useable at this stage.
11325
11326 Therefore, create a fake CPAN 1.76.
11327 Branch: perl
11328 ! lib/CPAN.pm
11329____________________________________________________________________________
11330[ 20377] By: jhi on 2003/07/31 11:28:58
11331 Log: This test is pretty useless as it stands.
11332 Branch: perl
11333 - lib/CPAN/t/signature.t
11334 ! MANIFEST
11335____________________________________________________________________________
11336[ 20376] By: jhi on 2003/07/31 10:30:08
11337 Log: Document the requirements for Module::Signature a bit.
11338 Branch: perl
11339 ! lib/CPAN.pm
11340____________________________________________________________________________
11341[ 20375] By: jhi on 2003/07/31 09:37:44
11342 Log: We are change #20316 ahead of 1.75.
11343 Branch: perl
11344 ! lib/CPAN.pm
11345____________________________________________________________________________
11346[ 20374] By: jhi on 2003/07/31 08:25:30
11347 Log: Various perldelta tweaks.
11348 Branch: maint-5.8/perl
11349 ! pod/perldelta.pod
11350____________________________________________________________________________
11351[ 20373] By: jhi on 2003/07/31 07:35:11
11352 Log: Integrate from maint:
11353 [ 20359]
11354 No more wince/README.compile here, either.
11355 Branch: perl
11356 !> Porting/makerel
11357____________________________________________________________________________
11358[ 20372] By: jhi on 2003/07/31 05:43:15
11359 Log: Integrate:
11360 [ 20362]
11361 Upgrade to NEXT 0.52.
11362
11363 [ 20364]
11364 Silence spurious noise from MakeMaker :
11365 hint files shouldn't return undef and have set $!.
11366
11367 [ 20366]
11368 Subject: [PATCH] test for B::Bytecode/ByteLoader
11369 From: Enache Adrian <enache@rdslink.ro>
11370 Date: Thu, 31 Jul 2003 03:49:40 +0300
11371 Message-ID: <20030731004940.GB1266@ratsnest.hole>
11372
11373 (but use test.pl:run_perl() instead of manual `$^X ...`)
11374
11375 [ 20367]
11376 Subject: [PATCH Tie::RefHash] added support for overloaded ""
11377 From: Xavier Noria <fxn@hashref.com>
11378 Date: Thu, 31 Jul 2003 00:29:13 +0200
11379 Message-Id: <200307310029.13567.fxn@hashref.com>
11380
11381 [ 20368]
11382 Tests for change #20367 (and change use overload; to
11383 just require overload;)
11384
11385 [ 20369]
11386 Final touches to "Apple-like" installation directories.
11387
11388 [ 20370]
11389 Schwern says this is most probably an old VMS MakeMaker
11390 bug workaround that can go now.
11391
11392 [ 20371]
11393 ext/SDBM_File/sdbm's auto directory ended up in ext/SDBM_File.
11394 (Schwern)
11395 Branch: maint-5.8/perl
11396 +> ext/B/t/bytecode.t
11397 !> MANIFEST ext/DynaLoader/hints/linux.pl
11398 !> ext/SDBM_File/sdbm/Makefile.PL hints/darwin.sh
11399 !> lib/ExtUtils/MakeMaker.pm lib/NEXT.pm lib/NEXT/Changes
11400 !> lib/NEXT/README lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
11401 !> lib/Tie/RefHash.pm lib/Tie/RefHash.t
11402____________________________________________________________________________
11403[ 20371] By: jhi on 2003/07/31 05:41:56
11404 Log: ext/SDBM_File/sdbm's auto directory ended up in ext/SDBM_File.
11405 (Schwern)
11406 Branch: perl
11407 ! lib/ExtUtils/MakeMaker.pm
11408____________________________________________________________________________
11409[ 20370] By: jhi on 2003/07/31 05:39:11
11410 Log: Schwern says this is most probably an old VMS MakeMaker
11411 bug workaround that can go now.
11412 Branch: perl
11413 ! ext/SDBM_File/sdbm/Makefile.PL
11414____________________________________________________________________________
11415[ 20369] By: jhi on 2003/07/31 05:32:15
11416 Log: Final touches to "Apple-like" installation directories.
11417 Branch: perl
11418 ! hints/darwin.sh
11419____________________________________________________________________________
11420[ 20368] By: jhi on 2003/07/31 05:28:17
11421 Log: Tests for change #20367 (and change use overload; to
11422 just require overload;)
11423 Branch: perl
11424 ! lib/Tie/RefHash.pm lib/Tie/RefHash.t
11425____________________________________________________________________________
11426[ 20367] By: jhi on 2003/07/31 05:12:47
11427 Log: Subject: [PATCH Tie::RefHash] added support for overloaded ""
11428 From: Xavier Noria <fxn@hashref.com>
11429 Date: Thu, 31 Jul 2003 00:29:13 +0200
11430 Message-Id: <200307310029.13567.fxn@hashref.com>
11431 Branch: perl
11432 ! lib/Tie/RefHash.pm
11433____________________________________________________________________________
11434[ 20366] By: jhi on 2003/07/31 05:06:11
11435 Log: Subject: [PATCH] test for B::Bytecode/ByteLoader
11436 From: Enache Adrian <enache@rdslink.ro>
11437 Date: Thu, 31 Jul 2003 03:49:40 +0300
11438 Message-ID: <20030731004940.GB1266@ratsnest.hole>
11439
11440 (but use test.pl:run_perl() instead of manual `$^X ...`)
11441 Branch: perl
11442 + ext/B/t/bytecode.t
11443 ! MANIFEST
11444____________________________________________________________________________
11445[ 20365] By: jhi on 2003/07/31 04:40:32
11446 Log: Wishful thinking about Perl releases noticed by Andy Lester.
11447 Branch: maint-5.8/perl
11448 ! pod/perldelta.pod
11449____________________________________________________________________________
11450[ 20364] By: rgs on 2003/07/30 21:35:08
11451 Log: Silence spurious noise from MakeMaker :
11452 hint files shouldn't return undef and have set $!.
11453 Branch: perl
11454 ! ext/DynaLoader/hints/linux.pl
11455____________________________________________________________________________
11456[ 20363] By: jhi on 2003/07/30 20:26:03
11457 Log: NEXT not yet updated in maint, but will be.
11458 Branch: maint-5.8/perl
11459 ! pod/perldelta.pod
11460____________________________________________________________________________
11461[ 20362] By: jhi on 2003/07/30 20:24:49
11462 Log: Upgrade to NEXT 0.52.
11463 Branch: perl
11464 ! lib/NEXT.pm lib/NEXT/Changes lib/NEXT/README
11465 ! lib/NEXT/t/actuns.t lib/NEXT/t/unseen.t
11466____________________________________________________________________________
11467[ 20361] By: rgs on 2003/07/30 19:33:18
11468 Log: Integrate change #9996 as suggested by Jarrko :
11469 Add preemptive #undefs for some of the shorter and more prone
11470 to collision regcomp.h #defines. (Background: the MASK collided
11471 with a system header #define in Rhapsody.)
11472
11473 Backport change #18538 as suggested by Enache :
11474 Subject: [PATCH] Re: FreeBSD 5 hints patch
11475 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
11476 Date: Mon, 30 Dec 2002 18:01:16 -0800
11477 Message-ID: <spPE+gzkg+6F092yn@efn.org>
11478 Branch: maint-5.6
11479 ! perl-5.6.2/Configure
11480 !> perl-5.6.2/regcomp.h
11481____________________________________________________________________________
11482[ 20360] By: jhi on 2003/07/30 18:44:58
11483 Log: Make it RC3.
11484 Branch: maint-5.8/perl
11485 ! patchlevel.h
11486____________________________________________________________________________
11487[ 20359] By: jhi on 2003/07/30 18:43:55
11488 Log: No more wince/README.compile here, either.
11489 Branch: maint-5.8/perl
11490 ! Porting/makerel
11491____________________________________________________________________________
11492[ 20358] By: jhi on 2003/07/30 18:23:39
11493 Log: Update Changes.
11494 Branch: maint-5.8/perl
11495 ! Changes patchlevel.h
11496____________________________________________________________________________
11497[ 20357] By: jhi on 2003/07/30 18:19:52
11498 Log: Integrate:
11499 [ 20355]
11500 Silly gcc.
11501
11502 [ 20356]
11503 Might as well.
11504 Branch: maint-5.8/perl
11505 !> perl.c pod/perlhist.pod
11506____________________________________________________________________________
11507[ 20356] By: jhi on 2003/07/30 18:16:55
11508 Log: Might as well.
11509 Branch: perl
11510 ! pod/perlhist.pod
11511____________________________________________________________________________
11512[ 20355] By: jhi on 2003/07/30 18:15:49
11513 Log: Silly gcc.
11514 Branch: perl
11515 ! perl.c
11516____________________________________________________________________________
11517[ 20354] By: jhi on 2003/07/30 17:47:10
11518 Log: Don't use DSTROOT.
11519 Branch: maint-5.8/perl
11520 !> hints/darwin.sh
11521____________________________________________________________________________
11522[ 20353] By: jhi on 2003/07/30 17:09:59
11523 Log: This is getting comical. (Practical tip: never ask
11524 for opinions from one than one person at one time.)
11525 Now back to -Dprefix='/usr' replacing the system Perl,
11526 but don't use the Apple internal DSTROOT.
11527 Branch: perl
11528 ! hints/darwin.sh
11529____________________________________________________________________________
11530[ 20352] By: jhi on 2003/07/30 17:00:25
11531 Log: Mac OS X hints dance continues. Now drop any special
11532 installation directory mangling. In other words, if
11533 you want to overwrite the system perl, you really need
11534 to find out how to do that.
11535 Branch: perl
11536 ! hints/darwin.sh
11537____________________________________________________________________________
11538[ 20351] By: jhi on 2003/07/30 14:27:40
11539 Log: Integrate:
11540 [ 20350]
11541 Try again with the Mac OS X hints. Now the three cases
11542 (no -Dprefix, /usr, and something else) all install
11543 into separate places. No prefix installs to /usr/local.
11544 The /usr overwrites the Apple install (modulo the version).
11545 Branch: maint-5.8/perl
11546 !> hints/darwin.sh
11547____________________________________________________________________________
11548[ 20350] By: jhi on 2003/07/30 14:23:03
11549 Log: Try again with the Mac OS X hints. Now the three cases
11550 (no -Dprefix, /usr, and something else) all install
11551 into separate places. No prefix installs to /usr/local.
11552 The /usr overwrites the Apple install (modulo the version).
11553 Branch: perl
11554 ! hints/darwin.sh
11555____________________________________________________________________________
11556[ 20349] By: jhi on 2003/07/30 13:38:17
11557 Log: Integrate:
11558 [ 20324]
11559 Revert #20301, apparently the _SOCKADDR_LEN #define is
11560 important for IPv6 (Spider). Since there is no way to
11561 otherwise detect 3.X, use the hints.
11562
11563 [ 20327]
11564 MPE/iX fix from Mark Bixby: fcntl() on sockets on works.
11565
11566 [ 20329]
11567 Subject: tiny fix for WinCE (Re: maint @ 20277)
11568 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
11569 Date: Wed, 30 Jul 2003 02:02:41 +0400
11570 Message-ID: <016701c3561d$43735ca0$195ec3d9@vad>
11571
11572 [ 20330]
11573 FAQ sync.
11574
11575 [ 20331]
11576 Subject: [PATCH] Extend Win32::GetOSVersion() to return additional information
11577 From: Jan Dubois <jand@ActiveState.com>
11578 Date: Tue, 29 Jul 2003 19:14:10 -0700
11579 Message-ID: <i06eivs0h9khken8rloevj68iqu6n45hnq@4ax.com>
11580
11581 [ 20332]
11582 Modules.pl tweaks.
11583
11584 [ 20333]
11585 Mac OS X: tweak once again the installation directories.
11586
11587 [ 20334]
11588 Modules.pl: add B::Deparse.
11589
11590 [ 20335]
11591 More Modules.pl.
11592
11593 [ 20336]
11594 Strip leading ./
11595
11596 [ 20337]
11597 Rename Modules and Modules.pl as Maintainers and
11598 Maintainers.pl since the same framework can be used
11599 for more than just modules.
11600
11601 [ 20338]
11602 Use the CPAN id where available.
11603
11604 [ 20339]
11605 Arthur maintains Safe.
11606
11607 [ 20340]
11608 That's M. Schwern to you, earthling.
11609
11610 [ 20341]
11611 Upgrade to ExtUtils::MakeMaker 6.12.
11612
11613 [ 20342]
11614 Subject: tiny [PATCH-for-perl-5.8.1-RC2] remove one mention of UNDER_CE from perlio.c
11615 From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
11616 Date: Wed, 30 Jul 2003 14:56:32 +0400
11617 Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200DD3@cio-test001.spb.lucent.com>
11618
11619 [ 20343]
11620 Be paranoid about PL_origargv.
11621 Paranoia warranted by Win32 mod_perl.
11622
11623 [ 20344]
11624 Adjust the list of rmdired lib directories.
11625
11626 [ 20345]
11627 rmdir t/lib/IO.
11628
11629 [ 20346]
11630 Maintainers script tweaks.
11631
11632 [ 20347]
11633 Match also on full name and email (though the email is
11634 now less interesting than it used to be).
11635
11636 [ 20348]
11637 Subject: [PATCH] NEXT and Diamond Inheritance
11638 From: Casey West <casey@geeknest.com>
11639 Date: Tue, 29 Jul 2003 17:37:15 -0400
11640 Message-ID: <20030729213715.GY76899@geeknest.com>
11641
11642 (Use Damian's NEXT-0.51 once Damian and PAUSE like each other)
11643 Branch: maint-5.8/perl
11644 +> Porting/Maintainers Porting/Maintainers.pl
11645 - Porting/Modules Porting/Modules.pl
11646 !> (integrate 27 files)
11647____________________________________________________________________________
11648[ 20348] By: jhi on 2003/07/30 13:28:30
11649 Log: Subject: [PATCH] NEXT and Diamond Inheritance
11650 From: Casey West <casey@geeknest.com>
11651 Date: Tue, 29 Jul 2003 17:37:15 -0400
11652 Message-ID: <20030729213715.GY76899@geeknest.com>
11653
11654 (Use Damian's NEXT-0.51 once Damian and PAUSE like each other)
11655 Branch: perl
11656 ! lib/NEXT.pm lib/NEXT/t/unseen.t
11657____________________________________________________________________________
11658[ 20347] By: jhi on 2003/07/30 13:19:03
11659 Log: Match also on full name and email (though the email is
11660 now less interesting than it used to be).
11661 Branch: perl
11662 ! Porting/Maintainers
11663____________________________________________________________________________
11664[ 20346] By: jhi on 2003/07/30 12:26:53
11665 Log: Maintainers script tweaks.
11666 Branch: perl
11667 ! Porting/Maintainers
11668____________________________________________________________________________
11669[ 20345] By: jhi on 2003/07/30 11:17:33
11670 Log: rmdir t/lib/IO.
11671 Branch: perl
11672 ! ext/IO/t/IO.t
11673____________________________________________________________________________
11674[ 20344] By: jhi on 2003/07/30 11:15:30
11675 Log: Adjust the list of rmdired lib directories.
11676 Branch: perl
11677 ! Makefile.SH
11678____________________________________________________________________________
11679[ 20343] By: jhi on 2003/07/30 10:06:24
11680 Log: Be paranoid about PL_origargv.
11681 Paranoia warranted by Win32 mod_perl.
11682 Branch: perl
11683 ! perl.c
11684____________________________________________________________________________
11685[ 20342] By: jhi on 2003/07/30 09:57:55
11686 Log: Subject: tiny [PATCH-for-perl-5.8.1-RC2] remove one mention of UNDER_CE from perlio.c
11687 From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
11688 Date: Wed, 30 Jul 2003 14:56:32 +0400
11689 Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200DD3@cio-test001.spb.lucent.com>
11690 Branch: perl
11691 ! perlio.c
11692____________________________________________________________________________
11693[ 20341] By: jhi on 2003/07/30 09:54:46
11694 Log: Upgrade to ExtUtils::MakeMaker 6.12.
11695 Branch: perl
11696 ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
11697 ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_Unix.pm
11698 ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
11699 ! lib/ExtUtils/t/MM_Unix.t lib/ExtUtils/t/MM_VMS.t
11700____________________________________________________________________________
11701[ 20340] By: jhi on 2003/07/30 09:47:32
11702 Log: That's M. Schwern to you, earthling.
11703 Branch: perl
11704 ! Porting/Maintainers.pl
11705____________________________________________________________________________
11706[ 20339] By: jhi on 2003/07/30 09:43:32
11707 Log: Arthur maintains Safe.
11708 Branch: perl
11709 ! Porting/Maintainers.pl
11710____________________________________________________________________________
11711[ 20338] By: jhi on 2003/07/30 09:40:28
11712 Log: Use the CPAN id where available.
11713 Branch: perl
11714 ! Porting/Maintainers.pl
11715____________________________________________________________________________
11716[ 20337] By: jhi on 2003/07/30 09:26:47
11717 Log: Rename Modules and Modules.pl as Maintainers and
11718 Maintainers.pl since the same framework can be used
11719 for more than just modules.
11720 Branch: perl
11721 + Porting/Maintainers Porting/Maintainers.pl
11722 - Porting/Modules Porting/Modules.pl
11723 ! MANIFEST
11724____________________________________________________________________________
11725[ 20336] By: jhi on 2003/07/30 09:11:06
11726 Log: Strip leading ./
11727 Branch: perl
11728 ! Porting/Modules
11729____________________________________________________________________________
11730[ 20335] By: jhi on 2003/07/30 09:01:47
11731 Log: More Modules.pl.
11732 Branch: perl
11733 ! Porting/Modules.pl
11734____________________________________________________________________________
11735[ 20334] By: jhi on 2003/07/30 08:51:57
11736 Log: Modules.pl: add B::Deparse.
11737 Branch: perl
11738 ! Porting/Modules.pl
11739____________________________________________________________________________
11740[ 20333] By: jhi on 2003/07/30 08:26:47
11741 Log: Mac OS X: tweak once again the installation directories.
11742 Branch: perl
11743 ! hints/darwin.sh
11744____________________________________________________________________________
11745[ 20332] By: jhi on 2003/07/30 07:55:04
11746 Log: Modules.pl tweaks.
11747 Branch: perl
11748 ! Porting/Modules.pl
11749____________________________________________________________________________
11750[ 20331] By: jhi on 2003/07/30 06:13:55
11751 Log: Subject: [PATCH] Extend Win32::GetOSVersion() to return additional information
11752 From: Jan Dubois <jand@ActiveState.com>
11753 Date: Tue, 29 Jul 2003 19:14:10 -0700
11754 Message-ID: <i06eivs0h9khken8rloevj68iqu6n45hnq@4ax.com>
11755 Branch: perl
11756 ! lib/Win32.pod win32/win32.c
11757____________________________________________________________________________
11758[ 20330] By: rgs on 2003/07/29 21:20:28
11759 Log: FAQ sync.
11760 Branch: perl
11761 ! pod/perlfaq4.pod pod/perlfaq7.pod
11762____________________________________________________________________________
11763[ 20329] By: jhi on 2003/07/29 20:54:38
11764 Log: Subject: tiny fix for WinCE (Re: maint @ 20277)
11765 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
11766 Date: Wed, 30 Jul 2003 02:02:41 +0400
11767 Message-ID: <016701c3561d$43735ca0$195ec3d9@vad>
11768 Branch: perl
11769 ! wince/wince.c
11770____________________________________________________________________________
11771[ 20328] By: rgs on 2003/07/29 20:35:37
11772 Log: Integrate the CPAN distribution of DB_File 1.806.
11773 Branch: maint-5.6
11774 ! perl-5.6.2/ext/DB_File/Changes
11775 ! perl-5.6.2/ext/DB_File/DB_File.pm
11776 ! perl-5.6.2/ext/DB_File/DB_File.xs
11777 ! perl-5.6.2/ext/DB_File/DB_File_BS
11778 ! perl-5.6.2/ext/DB_File/Makefile.PL
11779 ! perl-5.6.2/ext/DB_File/dbinfo
11780 ! perl-5.6.2/ext/DB_File/hints/dynixptx.pl
11781 ! perl-5.6.2/ext/DB_File/hints/sco.pl
11782 ! perl-5.6.2/ext/DB_File/typemap
11783 ! perl-5.6.2/ext/DB_File/version.c perl-5.6.2/t/lib/db-btree.t
11784 ! perl-5.6.2/t/lib/db-hash.t perl-5.6.2/t/lib/db-recno.t
11785____________________________________________________________________________
11786[ 20327] By: jhi on 2003/07/29 20:09:15
11787 Log: MPE/iX fix from Mark Bixby: fcntl() on sockets on works.
11788 Branch: perl
11789 ! README.mpeix ext/IO/t/io_sock.t mpeix/mpeix.c mpeix/mpeixish.h
11790____________________________________________________________________________
11791[ 20326] By: rgs on 2003/07/29 19:59:46
11792 Log: Update Configure and makedepend.SH to work with gcc 3.x
11793 and with localized make messages.
11794 Update Configure and the hints files for svr5 to recognize
11795 OpenUNIX 8 as a flavor of Unixware.
11796 Branch: maint-5.6
11797 ! perl-5.6.2/Configure perl-5.6.2/hints/svr5.sh
11798 ! perl-5.6.2/makedepend.SH
11799____________________________________________________________________________
11800[ 20325] By: rgs on 2003/07/29 19:55:51
11801 Log: Reintroduce the DEVELxxxxx stamp in the patchlevel.
11802 Put a small introductive note in perldelta.
11803 Branch: maint-5.6
11804 ! perl-5.6.2/patchlevel.h perl-5.6.2/pod/perldelta.pod
11805____________________________________________________________________________
11806[ 20324] By: jhi on 2003/07/29 19:55:50
11807 Log: Revert #20301, apparently the _SOCKADDR_LEN #define is
11808 important for IPv6 (Spider). Since there is no way to
11809 otherwise detect 3.X, use the hints.
11810 Branch: perl
11811 ! hints/dec_osf.sh perl.h
11812____________________________________________________________________________
11813[ 20322] By: rgs on 2003/07/29 19:33:28
11814 Log: Create the perl-5.6.2 branch from perl 5.6.1
11815 (i.e. from //depot/maint-5.6/perl/...@9654).
11816 The changes currently under //depot/maint-5.6/perl/...
11817 will eventually be used later to produce a 5.6.3 release.
11818 Branch: maint-5.6
11819 +> (branch 1728 files)
11820____________________________________________________________________________
11821[ 20321] By: jhi on 2003/07/29 17:58:58
11822 Log: Advertise "safe POSIX sigaction".
11823 Branch: maint-5.8/perl
11824 ! pod/perldelta.pod
11825____________________________________________________________________________
11826[ 20320] By: jhi on 2003/07/29 15:59:22
11827 Log: Make it 20320.
11828 Branch: maint-5.8/perl
11829 ! patchlevel.h
11830____________________________________________________________________________
11831[ 20319] By: jhi on 2003/07/29 15:44:48
11832 Log: Update Changes.
11833 Branch: maint-5.8/perl
11834 ! Changes patchlevel.h
11835____________________________________________________________________________
11836[ 20318] By: jhi on 2003/07/29 15:40:24
11837 Log: Tell where to find 'dor' for 5.8.1.
11838 Branch: maint-5.8/perl
11839 ! pod/perldelta.pod
11840____________________________________________________________________________
11841[ 20317] By: jhi on 2003/07/29 15:31:56
11842 Log: Integrate:
11843 [ 20305]
11844 Quieten MSVC6.
11845
11846 [ 20306]
11847 Too many my $fh:s.
11848
11849 [ 20308]
11850 The --destdir option to installman should be made
11851 optional so that it doesn't complain when passed
11852 an empty value (from Rafael)
11853
11854 [ 20309]
11855 Subject: [perluniintro vs Encode::Alias] Is KOI8R is an alise for koi8-r?
11856 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
11857 Date: Sun, 13 Jul 2003 10:23:35 +0900
11858 Message-Id: <20030713102228.C76A.BQW10602@nifty.com>
11859
11860 [ 20310]
11861 Subject: [PATCH: (repatch) 5.8.1 RC2] Encode test fixes for VMS (was Re: possible fix to File::Find problems)
11862 From: PPrymmer@factset.com
11863 Date: Tue, 22 Jul 2003 11:12:05 -0400
11864 Message-ID: <OFBD4A7559.D7CF9517-ON85256D6B.00534853-85256D6B.00538131@factset.com>
11865
11866 [ 20312]
11867 Subject: [PATCH] pod/perlvar.pod: minor typo
11868 From: "Brendan O'Dea" <bod@debian.org>
11869 Date: Tue, 29 Jul 2003 23:49:18 +1000
11870 Message-ID: <20030729134918.GA4339@londo.c47.org>
11871
11872 [ 20314]
11873 Slight rewording on the destdir.
11874
11875 [ 20315]
11876 Oops.
11877
11878 [ 20316]
11879 Don't nag about Module::Signature if there is no
11880 way for the user to use it (based on Autrijus' patch).
11881 Branch: maint-5.8/perl
11882 !> INSTALL ext/Encode/lib/Encode/Alias.pm
11883 !> ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
11884 !> ext/Encode/t/perlio.t installman lib/CPAN.pm
11885 !> lib/CPAN/FirstTime.pm pod/perlvar.pod pp.c sv.c
11886____________________________________________________________________________
11887[ 20316] By: jhi on 2003/07/29 15:27:46
11888 Log: Don't nag about Module::Signature if there is no
11889 way for the user to use it (based on Autrijus' patch).
11890 Branch: perl
11891 ! lib/CPAN.pm lib/CPAN/FirstTime.pm
11892____________________________________________________________________________
11893[ 20315] By: jhi on 2003/07/29 14:47:04
11894 Log: Oops.
11895 Branch: perl
11896 ! sv.c
11897____________________________________________________________________________
11898[ 20314] By: jhi on 2003/07/29 13:26:26
11899 Log: Slight rewording on the destdir.
11900 Branch: perl
11901 ! INSTALL
11902____________________________________________________________________________
11903[ 20313] By: jhi on 2003/07/29 13:23:54
11904 Log: Advertise the --destdir.
11905 Branch: maint-5.8/perl
11906 ! pod/perldelta.pod
11907____________________________________________________________________________
11908[ 20312] By: jhi on 2003/07/29 13:20:21
11909 Log: Subject: [PATCH] pod/perlvar.pod: minor typo
11910 From: "Brendan O'Dea" <bod@debian.org>
11911 Date: Tue, 29 Jul 2003 23:49:18 +1000
11912 Message-ID: <20030729134918.GA4339@londo.c47.org>
11913 Branch: perl
11914 ! pod/perlvar.pod
11915____________________________________________________________________________
11916[ 20311] By: jhi on 2003/07/29 13:13:38
11917 Log: Also Apache::Test needs tweaking.
11918 Branch: maint-5.8/perl
11919 ! pod/perldelta.pod
11920____________________________________________________________________________
11921[ 20310] By: jhi on 2003/07/29 13:11:57
11922 Log: Subject: [PATCH: (repatch) 5.8.1 RC2] Encode test fixes for VMS (was Re: possible fix to File::Find problems)
11923 From: PPrymmer@factset.com
11924 Date: Tue, 22 Jul 2003 11:12:05 -0400
11925 Message-ID: <OFBD4A7559.D7CF9517-ON85256D6B.00534853-85256D6B.00538131@factset.com>
11926 Branch: perl
11927 ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
11928 ! ext/Encode/t/perlio.t
11929____________________________________________________________________________
11930[ 20309] By: jhi on 2003/07/29 13:06:24
11931 Log: Subject: [perluniintro vs Encode::Alias] Is KOI8R is an alise for koi8-r?
11932 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
11933 Date: Sun, 13 Jul 2003 10:23:35 +0900
11934 Message-Id: <20030713102228.C76A.BQW10602@nifty.com>
11935 Branch: perl
11936 ! ext/Encode/lib/Encode/Alias.pm
11937____________________________________________________________________________
11938[ 20308] By: jhi on 2003/07/29 13:02:43
11939 Log: The --destdir option to installman should be made
11940 optional so that it doesn't complain when passed
11941 an empty value (from Rafael)
11942 Branch: perl
11943 ! installman
11944____________________________________________________________________________
11945[ 20307] By: jhi on 2003/07/29 12:19:13
11946 Log: Regen perltoc, perlmodlib.
11947 Branch: maint-5.8/perl
11948 ! pod/perlmodlib.pod pod/perltoc.pod
11949____________________________________________________________________________
11950[ 20306] By: jhi on 2003/07/29 12:05:24
11951 Log: Too many my $fh:s.
11952 Branch: perl
11953 ! lib/CPAN.pm
11954____________________________________________________________________________
11955[ 20305] By: jhi on 2003/07/29 11:55:11
11956 Log: Quieten MSVC6.
11957 Branch: perl
11958 ! pp.c
11959____________________________________________________________________________
11960[ 20304] By: jhi on 2003/07/29 11:46:15
11961 Log: Subject: [PATCH maintperl] proofreading perldelta.pod
11962 From: Autrijus Tang <autrijus@autrijus.org>
11963 Date: Tue, 29 Jul 2003 18:26:53 +0800
11964 Message-ID: <20030729102653.GA1770@not.autrijus.org>
11965 Branch: maint-5.8/perl
11966 ! pod/perldelta.pod
11967____________________________________________________________________________
11968[ 20303] By: jhi on 2003/07/29 11:33:37
11969 Log: Integrate:
11970 [ 20297]
11971 Green light from Stas.
11972
11973 [ 20298]
11974 DEC OSF/1 3.x did (does) not do sizer -v.
11975
11976 [ 20299]
11977 README.hpux now mentions the http mirror for prebuilt gcc binaries
11978
11979 [ 20300]
11980 Cleanup the sv_gets() logic for platforms with small stacks.
11981 (I think hogging 8K of stack sounds like bad behaviour on any
11982 platform, big stack or not.)
11983
11984 [ 20301]
11985 Subject: [perl #23134] Problems compiling 5.8.0 on alpha-dec_osf 3.2
11986 From: Chaskiel M Grundman (via RT) <perlbug-followup@perl.org>
11987 Date: 26 Jul 2003 21:44:06 -0000
11988 Message-ID: <rt-23134-61814.9.36507226414463@rt.perl.org>
11989
11990 Helps (the admittedly old) DEC OSF/1 3.x and harms not newer
11991 releases 4.x and 5.x.
11992
11993 [ 20302]
11994 Subject: DESTDIR in perl-5.8.1 package?
11995 From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
11996 Date: Fri, 11 Jul 2003 14:48:41 +0200
11997 Message-ID: <20030711124841.GA18327@immd4.informatik.uni-erlangen.de>
11998
11999 Subject: Re: DESTDIR in perl-5.8.1 package?
12000 From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
12001 Date: Mon, 14 Jul 2003 12:00:25 +0200
12002 Message-ID: <20030714100025.GA26612@immd4.informatik.uni-erlangen.de>
12003
12004 (blindly prepending and s///ing away the $destdir does not work
12005 at least in VMS, but the --destdir should help rpm builders
12006 and the like)
12007 Branch: maint-5.8/perl
12008 !> INSTALL Makefile.SH README.hpux hints/dec_osf.sh installman
12009 !> installperl perl.h sv.c
12010____________________________________________________________________________
12011[ 20302] By: jhi on 2003/07/29 11:31:17
12012 Log: Subject: DESTDIR in perl-5.8.1 package?
12013 From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
12014 Date: Fri, 11 Jul 2003 14:48:41 +0200
12015 Message-ID: <20030711124841.GA18327@immd4.informatik.uni-erlangen.de>
12016
12017 Subject: Re: DESTDIR in perl-5.8.1 package?
12018 From: Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
12019 Date: Mon, 14 Jul 2003 12:00:25 +0200
12020 Message-ID: <20030714100025.GA26612@immd4.informatik.uni-erlangen.de>
12021
12022 (blindly prepending and s///ing away the $destdir does not work
12023 at least in VMS, but the --destdir should help rpm builders
12024 and the like)
12025 Branch: perl
12026 ! INSTALL Makefile.SH installman installperl
12027____________________________________________________________________________
12028[ 20301] By: jhi on 2003/07/29 11:20:07
12029 Log: Subject: [perl #23134] Problems compiling 5.8.0 on alpha-dec_osf 3.2
12030 From: Chaskiel M Grundman (via RT) <perlbug-followup@perl.org>
12031 Date: 26 Jul 2003 21:44:06 -0000
12032 Message-ID: <rt-23134-61814.9.36507226414463@rt.perl.org>
12033
12034 Helps (the admittedly old) DEC OSF/1 3.x and harms not newer
12035 releases 4.x and 5.x.
12036 Branch: perl
12037 ! perl.h
12038____________________________________________________________________________
12039[ 20300] By: jhi on 2003/07/29 11:18:27
12040 Log: Cleanup the sv_gets() logic for platforms with small stacks.
12041 (I think hogging 8K of stack sounds like bad behaviour on any
12042 platform, big stack or not.)
12043 Branch: perl
12044 ! sv.c
12045____________________________________________________________________________
12046[ 20299] By: merijn on 2003/07/29 10:57:37
12047 Log: README.hpux now mentions the http mirror for prebuilt gcc binaries
12048 Branch: perl
12049 ! README.hpux
12050____________________________________________________________________________
12051[ 20298] By: jhi on 2003/07/29 10:57:28
12052 Log: DEC OSF/1 3.x did (does) not do sizer -v.
12053 Branch: perl
12054 ! hints/dec_osf.sh
12055____________________________________________________________________________
12056[ 20297] By: jhi on 2003/07/29 10:48:41
12057 Log: Green light from Stas.
12058 Branch: maint-5.8/perl
12059 ! pod/perldelta.pod
12060____________________________________________________________________________
12061[ 20296] By: jhi on 2003/07/29 10:38:36
12062 Log: Integrate:
12063 [ 20291]
12064 Tabify.
12065
12066 [ 20292]
12067 Most importantly, don't try HvNAME(gp->gp_hv)
12068 unless PL_stashcache exists, otherwise we get
12069 an invalid read (detected by valgrind, and crashes
12070 ext/threads/t/basic.t in Windows).
12071
12072 Also add a few if:s for the refcnt decrements,
12073 no need to call Perl_sv_free() if there's nothing to free.
12074
12075 [ 20293]
12076 Upgrade to CPAN.pm 1.74.
12077
12078 [ 20294]
12079 There is no skip() since we are not using Test*.
12080
12081 [ 20295]
12082 Subject: [PATCH CPAN.pm] unlink pre-PGP-signed CHECKSUM
12083 From: Autrijus Tang <autrijus@autrijus.org>
12084 Date: Tue, 29 Jul 2003 09:58:35 +0800
12085 Message-ID: <20030729015834.GA7149@not.autrijus.org>
12086 Branch: maint-5.8/perl
12087 !> MANIFEST gv.c lib/CPAN.pm lib/CPAN/t/signature.t
12088____________________________________________________________________________
12089[ 20295] By: jhi on 2003/07/29 10:36:25
12090 Log: Subject: [PATCH CPAN.pm] unlink pre-PGP-signed CHECKSUM
12091 From: Autrijus Tang <autrijus@autrijus.org>
12092 Date: Tue, 29 Jul 2003 09:58:35 +0800
12093 Message-ID: <20030729015834.GA7149@not.autrijus.org>
12094 Branch: perl
12095 ! lib/CPAN.pm
12096____________________________________________________________________________
12097[ 20294] By: jhi on 2003/07/29 10:30:05
12098 Log: There is no skip() since we are not using Test*.
12099 Branch: perl
12100 ! lib/CPAN/t/signature.t
12101____________________________________________________________________________
12102[ 20293] By: jhi on 2003/07/29 10:28:10
12103 Log: Upgrade to CPAN.pm 1.74.
12104 Branch: perl
12105 ! lib/CPAN.pm lib/CPAN/t/signature.t
12106____________________________________________________________________________
12107[ 20292] By: jhi on 2003/07/29 10:14:26
12108 Log: Most importantly, don't try HvNAME(gp->gp_hv)
12109 unless PL_stashcache exists, otherwise we get
12110 an invalid read (detected by valgrind, and crashes
12111 ext/threads/t/basic.t in Windows).
12112
12113 Also add a few if:s for the refcnt decrements,
12114 no need to call Perl_sv_free() if there's nothing to free.
12115 Branch: perl
12116 ! gv.c
12117____________________________________________________________________________
12118[ 20291] By: jhi on 2003/07/29 09:00:58
12119 Log: Tabify.
12120 Branch: perl
12121 ! MANIFEST
12122____________________________________________________________________________
12123[ 20290] By: jhi on 2003/07/29 08:55:19
12124 Log: Integrate:
12125 [ 20278]
12126 More bytecode tweaks.
12127
12128 [ 20281]
12129 Subject: [PATCH] another File::Find tweak for VMS (improve on #20221)
12130 From: "Craig A. Berry" <craigberry@mac.com>
12131 Date: Tue, 29 Jul 2003 00:11:46 -0500
12132 Message-ID: <3F260212.9000104@mac.com>
12133
12134 [ 20282]
12135 PerlIO_popped doc addition from NI-S.
12136
12137 [ 20283]
12138 The better prefixify() patch from Ed Moy.
12139
12140 [ 20285]
12141 Reintroduce Porting/Modules. No, it's not duplicating
12142 the information in Module::CoreList.
12143
12144 [ 20287]
12145 Subject: [PATCH pointer] B::Deparse 0.64
12146 From: Stephen McCamant <smcc@mit.edu>
12147 Date: Mon, 28 Jul 2003 16:57:19 -0400
12148 Message-ID: <16165.36399.39977.566109@syllepsis.MIT.EDU>
12149
12150 [ 20288]
12151 Subject: [perl #22969] fix $hash{utf8bareword}
12152 From: Rafael Garcia-Suarez <raphel.garcia-suarez@hexaflux.com>
12153 Date: Tue, 29 Jul 2003 11:09:37 +0200
12154 Message-Id: <20030729110937.31c422d2.rgarcia@hexaflux.com>
12155
12156 [ 20289]
12157 Subject: 5.8.1 change not in perldelta
12158 From: "James A. Duncan" <jduncan@fotango.com>
12159 Date: Wed, 16 Jul 2003 12:42:31 +0100
12160 Message-Id: <957EF358-B782-11D7-AE25-000393D142E2@fotango.com>
12161
12162 (the regexp magic change)
12163 Branch: maint-5.8/perl
12164 +> Porting/Modules Porting/Modules.pl
12165 !> AUTHORS MANIFEST ext/B/B.xs ext/B/B/Bytecode.pm
12166 !> ext/B/B/Deparse.pm ext/B/t/deparse.t lib/ExtUtils/MM_Unix.pm
12167 !> lib/File/Find.pm pod/perliol.pod t/op/utfhash.t toke.c
12168____________________________________________________________________________
12169[ 20289] By: jhi on 2003/07/29 08:48:19
12170 Log: Subject: 5.8.1 change not in perldelta
12171 From: "James A. Duncan" <jduncan@fotango.com>
12172 Date: Wed, 16 Jul 2003 12:42:31 +0100
12173 Message-Id: <957EF358-B782-11D7-AE25-000393D142E2@fotango.com>
12174
12175 (the regexp magic change)
12176 Branch: maint-5.8/perl
12177 ! pod/perldelta.pod
12178____________________________________________________________________________
12179[ 20288] By: jhi on 2003/07/29 08:29:50
12180 Log: Subject: [perl #22969] fix $hash{utf8bareword}
12181 From: Rafael Garcia-Suarez <raphel.garcia-suarez@hexaflux.com>
12182 Date: Tue, 29 Jul 2003 11:09:37 +0200
12183 Message-Id: <20030729110937.31c422d2.rgarcia@hexaflux.com>
12184 Branch: perl
12185 ! t/op/utfhash.t toke.c
12186____________________________________________________________________________
12187[ 20287] By: jhi on 2003/07/29 08:26:48
12188 Log: Subject: [PATCH pointer] B::Deparse 0.64
12189 From: Stephen McCamant <smcc@mit.edu>
12190 Date: Mon, 28 Jul 2003 16:57:19 -0400
12191 Message-ID: <16165.36399.39977.566109@syllepsis.MIT.EDU>
12192 Branch: perl
12193 ! ext/B/B/Deparse.pm ext/B/t/deparse.t
12194____________________________________________________________________________
12195[ 20286] By: jhi on 2003/07/29 08:24:45
12196 Log: More perlio docs from Stas.
12197 Branch: perl
12198 ! pod/perliol.pod
12199____________________________________________________________________________
12200[ 20285] By: jhi on 2003/07/29 08:22:49
12201 Log: Reintroduce Porting/Modules. No, it's not duplicating
12202 the information in Module::CoreList.
12203 Branch: perl
12204 + Porting/Modules Porting/Modules.pl
12205 ! AUTHORS MANIFEST
12206____________________________________________________________________________
12207[ 20284] By: jhi on 2003/07/29 05:18:48
12208 Log: perldelta detypoing from Chris Reinhardt.
12209 Branch: maint-5.8/perl
12210 ! pod/perldelta.pod
12211____________________________________________________________________________
12212[ 20283] By: jhi on 2003/07/29 05:00:12
12213 Log: The better prefixify() patch from Ed Moy.
12214 Branch: perl
12215 ! lib/ExtUtils/MM_Unix.pm
12216____________________________________________________________________________
12217[ 20282] By: jhi on 2003/07/29 04:57:57
12218 Log: PerlIO_popped doc addition from NI-S.
12219 Branch: perl
12220 ! pod/perliol.pod
12221____________________________________________________________________________
12222[ 20281] By: jhi on 2003/07/29 04:55:48
12223 Log: Subject: [PATCH] another File::Find tweak for VMS (improve on #20221)
12224 From: "Craig A. Berry" <craigberry@mac.com>
12225 Date: Tue, 29 Jul 2003 00:11:46 -0500
12226 Message-ID: <3F260212.9000104@mac.com>
12227 Branch: perl
12228 ! lib/File/Find.pm
12229____________________________________________________________________________
12230[ 20280] By: jhi on 2003/07/28 18:30:56
12231 Log: Document the Mac OS X statical building.
12232 Branch: maint-5.8/perl
12233 ! pod/perldelta.pod
12234____________________________________________________________________________
12235[ 20279] By: jhi on 2003/07/28 18:23:43
12236 Log: IRIX: a known oddity.
12237 Branch: maint-5.8/perl
12238 ! pod/perldelta.pod
12239____________________________________________________________________________
12240[ 20278] By: jhi on 2003/07/28 18:03:48
12241 Log: More bytecode tweaks.
12242 Branch: perl
12243 ! ext/B/B.xs ext/B/B/Bytecode.pm
12244____________________________________________________________________________
12245[ 20277] By: jhi on 2003/07/28 16:55:24
12246 Log: Update Changes.
12247 Branch: maint-5.8/perl
12248 ! Changes patchlevel.h
12249____________________________________________________________________________
12250[ 20276] By: jhi on 2003/07/28 16:49:56
12251 Log: Integrate:
12252 [ 20275]
12253 No more wince/README.compile.
12254 Branch: maint-5.8/perl
12255 !> Porting/curliff.pl
12256____________________________________________________________________________
12257[ 20275] By: jhi on 2003/07/28 16:47:53
12258 Log: No more wince/README.compile.
12259 Branch: perl
12260 ! Porting/curliff.pl
12261____________________________________________________________________________
12262[ 20274] By: jhi on 2003/07/28 16:40:18
12263 Log: Integrate:
12264 [ 20272]
12265 Slightly better failure output.
12266 Branch: maint-5.8/perl
12267 !> ext/Devel/Peek/t/Peek.t
12268____________________________________________________________________________
12269[ 20273] By: jhi on 2003/07/28 16:39:16
12270 Log: Somehow it looks like this test hasn't been run
12271 for a while in maint.
12272 Branch: maint-5.8/perl
12273 ! ext/Devel/Peek/t/Peek.t
12274____________________________________________________________________________
12275[ 20272] By: jhi on 2003/07/28 16:19:47
12276 Log: Slightly better failure output.
12277 Branch: perl
12278 ! ext/Devel/Peek/t/Peek.t
12279____________________________________________________________________________
12280[ 20271] By: jhi on 2003/07/28 15:18:57
12281 Log: Integrate:
12282 [ 20258]
12283 Integrate:
12284 [ 20256]
12285 Extra noise from File::Spec.
12286
12287 [ 20257]
12288 Subject: CPAN/t/signature.t noisy
12289 From: Michael G Schwern <schwern@pobox.com>
12290 Date: Mon, 28 Jul 2003 02:14:19 -0700
12291 Message-ID: <20030728091419.GG21044@windhund.schwern.org>
12292
12293 [ 20259]
12294 Minor tweak to the Perl_ advise.
12295
12296 [ 20261]
12297 Solaris cc didn't appreciate casting a long to a pointer
12298 with no cast, and lval casts are unportable, so introduce
12299 a rval cast.
12300
12301 [ 20262]
12302 Storable test nosewipe.
12303
12304 [ 20263]
12305 Make Storable work with blead/maint by making PL_sv_placeholder
12306 a true global, bump $VERSION to 2.08. Will take a look at the
12307 portability issue of placeholders soon.
12308
12309 [ 20264]
12310 Subject: [PATCH] t/op/write.t cleanup after itself.
12311 From: Michael G Schwern <schwern@pobox.com>
12312 Date: Mon, 28 Jul 2003 05:54:19 -0700
12313 Message-ID: <20030728125419.GJ21044@windhund.schwern.org>
12314
12315 [ 20265]
12316 Subject: [PATCH] #20177 broke skip logic in t/op/write.t
12317 From: "Craig A. Berry" <craigberry@mac.com>
12318 Date: Mon, 28 Jul 2003 08:04:32 -0500
12319 Message-ID: <3F251F60.6050607@mac.com>
12320
12321 [ 20266]
12322 Bump the $VERSION of core File::Spec as requested by Ken Williams.
12323
12324 [ 20268]
12325 Move the ext/IO tests to a more standard location so that
12326 the *.t do not get copied to the build tree (lib/IO/).
12327
12328 [ 20269]
12329 No more ext/*/*.t, move them all to ext/*/t.
12330
12331 [ 20270]
12332 These directories no more exist during cleanup.
12333 Branch: maint-5.8/perl
12334 +> (branch 39 files)
12335 - ext/Devel/DProf/DProf.t ext/Devel/Peek/Peek.t
12336 - ext/Errno/Errno.t ext/GDBM_File/gdbm.t
12337 - ext/I18N/Langinfo/Langinfo.t ext/IO/lib/IO/t/IO.t
12338 - ext/IO/lib/IO/t/io_const.t ext/IO/lib/IO/t/io_dir.t
12339 - ext/IO/lib/IO/t/io_dup.t ext/IO/lib/IO/t/io_linenum.t
12340 - ext/IO/lib/IO/t/io_multihomed.t ext/IO/lib/IO/t/io_pipe.t
12341 - ext/IO/lib/IO/t/io_poll.t ext/IO/lib/IO/t/io_sel.t
12342 - ext/IO/lib/IO/t/io_sock.t ext/IO/lib/IO/t/io_taint.t
12343 - ext/IO/lib/IO/t/io_tell.t ext/IO/lib/IO/t/io_udp.t
12344 - ext/IO/lib/IO/t/io_unix.t ext/IO/lib/IO/t/io_utf8.t
12345 - ext/IO/lib/IO/t/io_xs.t ext/IPC/SysV/ipcsysv.t
12346 - ext/NDBM_File/ndbm.t ext/ODBM_File/odbm.t ext/Opcode/Opcode.t
12347 - ext/Opcode/ops.t ext/PerlIO/PerlIO.t ext/SDBM_File/sdbm.t
12348 - ext/Safe/safe1.t ext/Safe/safe2.t ext/Safe/safe3.t
12349 - ext/Socket/Socket.t ext/Socket/socketpair.t
12350 - ext/Sys/Hostname/Hostname.t ext/Sys/Syslog/syslog.t
12351 - ext/Time/HiRes/HiRes.t ext/XS/Typemap/Typemap.t ext/attrs.t
12352 - ext/re/re.t
12353 !> MANIFEST Makefile.SH bytecode.pl embedvar.h
12354 !> ext/ByteLoader/byterun.c ext/IPC/SysV/MANIFEST
12355 !> ext/Storable/Storable.pm ext/Storable/Storable.xs
12356 !> ext/Storable/t/code.t ext/Storable/t/utf8hash.t intrpvar.h
12357 !> lib/File/Spec.pm perlapi.h perlio.c perliol.h perlvars.h sv.c
12358 !> t/op/write.t
12359____________________________________________________________________________
12360[ 20270] By: jhi on 2003/07/28 15:12:28
12361 Log: These directories no more exist during cleanup.
12362 Branch: perl
12363 ! Makefile.SH
12364____________________________________________________________________________
12365[ 20269] By: jhi on 2003/07/28 15:07:22
12366 Log: No more ext/*/*.t, move them all to ext/*/t.
12367 Branch: perl
12368 + ext/Devel/DProf/t/DProf.t ext/Devel/Peek/t/Peek.t
12369 + ext/Errno/t/Errno.t ext/GDBM_File/t/gdbm.t
12370 + ext/I18N/Langinfo/t/Langinfo.t ext/IPC/SysV/t/ipcsysv.t
12371 + ext/NDBM_File/t/ndbm.t ext/ODBM_File/t/odbm.t
12372 + ext/Opcode/t/Opcode.t ext/Opcode/t/ops.t ext/PerlIO/t/PerlIO.t
12373 + ext/SDBM_File/t/sdbm.t ext/Safe/t/safe1.t ext/Safe/t/safe2.t
12374 + ext/Safe/t/safe3.t ext/Socket/t/Socket.t
12375 + ext/Socket/t/socketpair.t ext/Sys/Hostname/t/Hostname.t
12376 + ext/Sys/Syslog/t/syslog.t ext/Time/HiRes/t/HiRes.t
12377 + ext/XS/Typemap/t/Typemap.t ext/attrs/t/attrs.t ext/re/t/re.t
12378 - ext/Devel/DProf/DProf.t ext/Devel/Peek/Peek.t
12379 - ext/Errno/Errno.t ext/GDBM_File/gdbm.t
12380 - ext/I18N/Langinfo/Langinfo.t ext/IPC/SysV/ipcsysv.t
12381 - ext/NDBM_File/ndbm.t ext/ODBM_File/odbm.t ext/Opcode/Opcode.t
12382 - ext/Opcode/ops.t ext/PerlIO/PerlIO.t ext/SDBM_File/sdbm.t
12383 - ext/Safe/safe1.t ext/Safe/safe2.t ext/Safe/safe3.t
12384 - ext/Socket/Socket.t ext/Socket/socketpair.t
12385 - ext/Sys/Hostname/Hostname.t ext/Sys/Syslog/syslog.t
12386 - ext/Time/HiRes/HiRes.t ext/XS/Typemap/Typemap.t ext/attrs.t
12387 - ext/re/re.t
12388 ! MANIFEST ext/IPC/SysV/MANIFEST
12389____________________________________________________________________________
12390[ 20268] By: jhi on 2003/07/28 14:31:17
12391 Log: Move the ext/IO tests to a more standard location so that
12392 the *.t do not get copied to the build tree (lib/IO/).
12393 Branch: perl
12394 + ext/IO/t/IO.t ext/IO/t/io_const.t ext/IO/t/io_dir.t
12395 + ext/IO/t/io_dup.t ext/IO/t/io_linenum.t
12396 + ext/IO/t/io_multihomed.t ext/IO/t/io_pipe.t ext/IO/t/io_poll.t
12397 + ext/IO/t/io_sel.t ext/IO/t/io_sock.t ext/IO/t/io_taint.t
12398 + ext/IO/t/io_tell.t ext/IO/t/io_udp.t ext/IO/t/io_unix.t
12399 + ext/IO/t/io_utf8.t ext/IO/t/io_xs.t
12400 - ext/IO/lib/IO/t/IO.t ext/IO/lib/IO/t/io_const.t
12401 - ext/IO/lib/IO/t/io_dir.t ext/IO/lib/IO/t/io_dup.t
12402 - ext/IO/lib/IO/t/io_linenum.t ext/IO/lib/IO/t/io_multihomed.t
12403 - ext/IO/lib/IO/t/io_pipe.t ext/IO/lib/IO/t/io_poll.t
12404 - ext/IO/lib/IO/t/io_sel.t ext/IO/lib/IO/t/io_sock.t
12405 - ext/IO/lib/IO/t/io_taint.t ext/IO/lib/IO/t/io_tell.t
12406 - ext/IO/lib/IO/t/io_udp.t ext/IO/lib/IO/t/io_unix.t
12407 - ext/IO/lib/IO/t/io_utf8.t ext/IO/lib/IO/t/io_xs.t
12408 ! MANIFEST
12409____________________________________________________________________________
12410[ 20267] By: jhi on 2003/07/28 14:16:44
12411 Log: Retract #20260.
12412 Branch: perl
12413 ! perlio.c perliol.h
12414____________________________________________________________________________
12415[ 20266] By: jhi on 2003/07/28 13:38:59
12416 Log: Bump the $VERSION of core File::Spec as requested by Ken Williams.
12417 Branch: perl
12418 ! lib/File/Spec.pm
12419____________________________________________________________________________
12420[ 20265] By: jhi on 2003/07/28 13:23:44
12421 Log: Subject: [PATCH] #20177 broke skip logic in t/op/write.t
12422 From: "Craig A. Berry" <craigberry@mac.com>
12423 Date: Mon, 28 Jul 2003 08:04:32 -0500
12424 Message-ID: <3F251F60.6050607@mac.com>
12425 Branch: perl
12426 ! t/op/write.t
12427____________________________________________________________________________
12428[ 20264] By: jhi on 2003/07/28 13:21:58
12429 Log: Subject: [PATCH] t/op/write.t cleanup after itself.
12430 From: Michael G Schwern <schwern@pobox.com>
12431 Date: Mon, 28 Jul 2003 05:54:19 -0700
12432 Message-ID: <20030728125419.GJ21044@windhund.schwern.org>
12433 Branch: perl
12434 ! t/op/write.t
12435____________________________________________________________________________
12436[ 20263] By: jhi on 2003/07/28 12:13:24
12437 Log: Make Storable work with blead/maint by making PL_sv_placeholder
12438 a true global, bump $VERSION to 2.08. Will take a look at the
12439 portability issue of placeholders soon.
12440 Branch: perl
12441 ! embedvar.h ext/Storable/Storable.pm ext/Storable/Storable.xs
12442 ! intrpvar.h perlapi.h perlvars.h sv.c
12443____________________________________________________________________________
12444[ 20262] By: jhi on 2003/07/28 11:35:31
12445 Log: Storable test nosewipe.
12446 Branch: perl
12447 ! ext/Storable/t/code.t ext/Storable/t/utf8hash.t
12448____________________________________________________________________________
12449[ 20261] By: jhi on 2003/07/28 11:02:23
12450 Log: Solaris cc didn't appreciate casting a long to a pointer
12451 with no cast, and lval casts are unportable, so introduce
12452 a rval cast.
12453 Branch: perl
12454 ! bytecode.pl ext/ByteLoader/byterun.c
12455____________________________________________________________________________
12456[ 20260] By: jhi on 2003/07/28 10:46:58
12457 Log: (Retracted by #20267)
12458 Branch: perl
12459 ! perlio.c perliol.h
12460____________________________________________________________________________
12461[ 20259] By: jhi on 2003/07/28 10:10:26
12462 Log: Minor tweak to the Perl_ advise.
12463 Branch: maint-5.8/perl
12464 ! pod/perldelta.pod
12465____________________________________________________________________________
12466[ 20258] By: jhi on 2003/07/28 10:08:51
12467 Log: Integrate:
12468 [ 20256]
12469 Extra noise from File::Spec.
12470
12471 [ 20257]
12472 Subject: CPAN/t/signature.t noisy
12473 From: Michael G Schwern <schwern@pobox.com>
12474 Date: Mon, 28 Jul 2003 02:14:19 -0700
12475 Message-ID: <20030728091419.GG21044@windhund.schwern.org>
12476 Branch: maint-5.8/perl
12477 !> lib/CPAN/t/signature.t lib/File/Spec/t/rel2abs2rel.t
12478____________________________________________________________________________
12479[ 20257] By: jhi on 2003/07/28 10:05:58
12480 Log: Subject: CPAN/t/signature.t noisy
12481 From: Michael G Schwern <schwern@pobox.com>
12482 Date: Mon, 28 Jul 2003 02:14:19 -0700
12483 Message-ID: <20030728091419.GG21044@windhund.schwern.org>
12484 Branch: perl
12485 ! lib/CPAN/t/signature.t
12486____________________________________________________________________________
12487[ 20256] By: jhi on 2003/07/28 10:00:11
12488 Log: Extra noise from File::Spec.
12489 Branch: perl
12490 ! lib/File/Spec/t/rel2abs2rel.t
12491____________________________________________________________________________
12492[ 20255] By: jhi on 2003/07/28 09:50:55
12493 Log: Prettyprint the constants list of defsubs_h.PL.
12494 Branch: perl
12495 ! ext/B/defsubs_h.PL
12496____________________________________________________________________________
12497[ 20254] By: jhi on 2003/07/28 09:48:25
12498 Log: Integrate:
12499 [ 20246]
12500 Revert 20233 + s/GvAVn/GvAV/) + rerun 'perl bytecode.pl'.
12501 (from Enache)
12502
12503 [ 20247]
12504 Upgrade to CGI 2.97.
12505
12506 [ 20248]
12507 Subject: Re: downrev modules in RC2
12508 From: Gisle Aas <gisle@ActiveState.com>
12509 Date: 27 Jul 2003 20:25:07 -0700
12510 Message-ID: <lrptjv1gfg.fsf@caliper.activestate.com>
12511
12512 (upgrade to Digest::MD5 2.26)
12513
12514 [ 20249]
12515 Missing test file. (Not very useful since Module::Signature
12516 is not in the core, but let's not make an exception.)
12517
12518 [ 20250]
12519 Add $VERSION to B::Bytecode.
12520
12521 [ 20251]
12522 Clarify the process a bit.
12523
12524 [ 20252]
12525 More clarification about the hash randomisation defines.
12526
12527 [ 20253]
12528 Subject: [PATCH] B enhancements
12529 From: Stephen McCamant <smcc@mit.edu>
12530 Date: Sun, 27 Jul 2003 14:07:46 -0400
12531 Message-ID: <16164.5362.577992.841787@syllepsis.MIT.EDU>
12532
12533 (heavy prettyprinting in defsubs_h.PL; must do the same in blead)
12534 Branch: maint-5.8/perl
12535 !> INSTALL MANIFEST bytecode.pl ext/B/B.pm ext/B/B.xs
12536 !> ext/B/B/Bytecode.pm ext/B/defsubs_h.PL
12537 !> ext/ByteLoader/byterun.c ext/Digest/MD5/Changes
12538 !> ext/Digest/MD5/MD5.pm ext/Digest/MD5/MD5.xs
12539 !> ext/Digest/MD5/t/files.t lib/CGI.pm perl.h
12540____________________________________________________________________________
12541[ 20253] By: jhi on 2003/07/28 04:56:48
12542 Log: Subject: [PATCH] B enhancements
12543 From: Stephen McCamant <smcc@mit.edu>
12544 Date: Sun, 27 Jul 2003 14:07:46 -0400
12545 Message-ID: <16164.5362.577992.841787@syllepsis.MIT.EDU>
12546 Branch: perl
12547 ! ext/B/B.pm ext/B/B.xs ext/B/defsubs_h.PL
12548____________________________________________________________________________
12549[ 20252] By: jhi on 2003/07/28 04:55:42
12550 Log: More clarification about the hash randomisation defines.
12551 Branch: perl
12552 ! perl.h
12553____________________________________________________________________________
12554[ 20251] By: jhi on 2003/07/28 04:51:46
12555 Log: Clarify the process a bit.
12556 Branch: perl
12557 ! INSTALL
12558____________________________________________________________________________
12559[ 20250] By: jhi on 2003/07/28 04:43:23
12560 Log: Add $VERSION to B::Bytecode.
12561 Branch: perl
12562 ! ext/B/B/Bytecode.pm
12563____________________________________________________________________________
12564[ 20249] By: jhi on 2003/07/28 04:39:14
12565 Log: Missing test file. (Not very useful since Module::Signature
12566 is not in the core, but let's not make an exception.)
12567 Branch: perl
12568 ! MANIFEST
12569____________________________________________________________________________
12570[ 20248] By: jhi on 2003/07/28 04:35:27
12571 Log: Subject: Re: downrev modules in RC2
12572 From: Gisle Aas <gisle@ActiveState.com>
12573 Date: 27 Jul 2003 20:25:07 -0700
12574 Message-ID: <lrptjv1gfg.fsf@caliper.activestate.com>
12575
12576 (upgrade to Digest::MD5 2.26)
12577 Branch: perl
12578 ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
12579 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
12580____________________________________________________________________________
12581[ 20247] By: jhi on 2003/07/28 04:31:32
12582 Log: Upgrade to CGI 2.97.
12583 Branch: perl
12584 ! lib/CGI.pm
12585____________________________________________________________________________
12586[ 20246] By: jhi on 2003/07/28 04:26:58
12587 Log: Revert 20233 + s/GvAVn/GvAV/) + rerun 'perl bytecode.pl'.
12588 (from Enache)
12589 Branch: perl
12590 ! bytecode.pl ext/ByteLoader/byterun.c
12591____________________________________________________________________________
12592[ 20245] By: jhi on 2003/07/27 20:36:44
12593 Log: Revert #20140.
12594 Branch: maint-5.8/perl
12595 ! pod/perldelta.pod
12596____________________________________________________________________________
12597[ 20244] By: jhi on 2003/07/27 20:35:49
12598 Log: Integrate:
12599 [ 20242]
12600 We now return to your normally scheduled hash randomisation.
12601
12602 [ 20243]
12603 Upgrade to CPAN 1.72.
12604 Branch: maint-5.8/perl
12605 +> lib/CPAN/t/signature.t
12606 !> INSTALL MANIFEST lib/CPAN.pm perl.h pod/perlfunc.pod
12607 !> pod/perlrun.pod pod/perlsec.pod
12608____________________________________________________________________________
12609[ 20243] By: jhi on 2003/07/27 20:31:31
12610 Log: Upgrade to CPAN 1.72.
12611 Branch: perl
12612 + lib/CPAN/t/signature.t
12613 ! MANIFEST lib/CPAN.pm
12614____________________________________________________________________________
12615[ 20242] By: jhi on 2003/07/27 20:21:40
12616 Log: We now return to your normally scheduled hash randomisation.
12617 Branch: perl
12618 ! INSTALL perl.h pod/perlfunc.pod pod/perlrun.pod
12619 ! pod/perlsec.pod
12620____________________________________________________________________________
12621[ 20241] By: jhi on 2003/07/27 20:07:20
12622 Log: Integrate:
12623 [ 20219]
12624 Subject: [PATCH-for-RC2] WinCE port addition
12625 From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
12626 Date: Fri, 25 Jul 2003 22:17:11 +0400
12627 Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200D42@cio-test001.spb.lucent.com>
12628
12629 [ 20220]
12630 Subject: Re: [perl #22984] perl-5.8.1-RC2: TEST -bytecompile won't work at all
12631 From: Enache Adrian <enache@rdslink.ro>
12632 Date: Fri, 18 Jul 2003 23:15:37 +0300
12633 Message-ID: <20030718201537.GA1574@ratsnest.hole>
12634
12635 [ 20221]
12636 Subject: [PATCH] fix for File::Find logical name collision on VMS
12637 From: "Craig A. Berry" <craigberry@mac.com>
12638 Date: Mon, 21 Jul 2003 19:40:20 -0500
12639 Message-ID: <3F1C87F4.2070401@mac.com>
12640
12641 [ 20222]
12642 Regenerated because of #20220.
12643
12644 [ 20223]
12645 Regen byterun once more: the incav is not yet right, but at
12646 least it compiles now (Tru64 cc choked on the lvalue cast).
12647
12648 [ 20224]
12649 Subject: Re: [PATCH] Re: Storing &PL_sv_undef as a hash key with perl-5.8.x
12650 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
12651 Date: Sun, 20 Jul 2003 22:36:02 +0200
12652 Message-ID: <006801c34efe$8aac1920$0c2f1fac@R2D2>
12653
12654 [ 20225]
12655 Upgrade to File::Spec 0.85.
12656
12657 [ 20229]
12658 Skip the test until Enache fixes it.
12659
12660 [ 20230]
12661 Upgrade to I18N::LangTags 0.28.
12662
12663 [ 20231]
12664 Unicode::UCD doc nit from Andreas Koenig.
12665
12666 [ 20232]
12667 A bug reported in perl-unicode by Terry Jones, fixed
12668 by Andreas Koenig, and add a test.
12669
12670 [ 20233]
12671 Upgrade to Pod::Perldoc 3.09.
12672
12673 [ 20234]
12674 Reapply some perldoc changes not in 3.09.
12675
12676 [ 20235]
12677 Further Byteloader tweaks from Enache.
12678
12679 [ 20236]
12680 Add -l (one file per line) option to manicheck.
12681
12682 [ 20237]
12683 Missing MakeMaker test.
12684
12685 [ 20238]
12686 Upgrade to Test::Harness 2.29.
12687
12688 [ 20239]
12689 cleanup tiehandle.t to use test.pl, is(), like(), etc...
12690 (Schwern)
12691
12692 [ 20240]
12693 fresh_perl_(is|like) were printing out the wrong file/line
12694 number on failure because _where() was hard coded to only
12695 look one level up the call stack. In these cases it has to
12696 look two.
12697 (Schwern)
12698 Branch: maint-5.8/perl
12699 +> lib/ExtUtils/t/postamble.t lib/I18N/LangTags/t/01test.t
12700 - lib/I18N/LangTags/test.pl wince/README.compile
12701 !> (integrate 60 files)
12702____________________________________________________________________________
12703[ 20240] By: jhi on 2003/07/27 19:45:22
12704 Log: fresh_perl_(is|like) were printing out the wrong file/line
12705 number on failure because _where() was hard coded to only
12706 look one level up the call stack. In these cases it has to
12707 look two.
12708 (Schwern)
12709 Branch: perl
12710 ! t/test.pl
12711____________________________________________________________________________
12712[ 20239] By: jhi on 2003/07/27 19:43:34
12713 Log: cleanup tiehandle.t to use test.pl, is(), like(), etc...
12714 (Schwern)
12715 Branch: perl
12716 ! t/op/tiehandle.t
12717____________________________________________________________________________
12718[ 20238] By: jhi on 2003/07/27 19:20:45
12719 Log: Upgrade to Test::Harness 2.29.
12720 Branch: perl
12721 ! lib/Test/Harness.pm lib/Test/Harness/Straps.pm
12722 ! lib/Test/Harness/t/assert.t lib/Test/Harness/t/callback.t
12723 ! lib/Test/Harness/t/strap-analyze.t lib/Test/Harness/t/strap.t
12724 ! lib/Test/Harness/t/test-harness.t
12725____________________________________________________________________________
12726[ 20237] By: jhi on 2003/07/27 18:37:45
12727 Log: Missing MakeMaker test.
12728 Branch: perl
12729 + lib/ExtUtils/t/postamble.t
12730 ! MANIFEST
12731____________________________________________________________________________
12732[ 20236] By: jhi on 2003/07/27 18:29:16
12733 Log: Add -l (one file per line) option to manicheck.
12734 Branch: perl
12735 ! Porting/manicheck
12736____________________________________________________________________________
12737[ 20235] By: jhi on 2003/07/27 18:08:55
12738 Log: Further Byteloader tweaks from Enache.
12739 Branch: perl
12740 ! bytecode.pl ext/B/B/Asmdata.pm ext/B/B/Assembler.pm
12741 ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm ext/B/defsubs_h.PL
12742 ! ext/B/t/assembler.t ext/ByteLoader/ByteLoader.pm
12743 ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
12744 ! ext/ByteLoader/byterun.h t/TEST
12745____________________________________________________________________________
12746[ 20234] By: jhi on 2003/07/27 18:02:24
12747 Log: Reapply some perldoc changes not in 3.09.
12748 Branch: perl
12749 ! lib/Pod/Perldoc.pm
12750____________________________________________________________________________
12751[ 20233] By: jhi on 2003/07/27 17:51:01
12752 Log: Upgrade to Pod::Perldoc 3.09.
12753 Branch: perl
12754 ! lib/Pod/Perldoc.pm lib/Pod/Perldoc/ToMan.pm
12755____________________________________________________________________________
12756[ 20232] By: jhi on 2003/07/27 17:34:23
12757 Log: A bug reported in perl-unicode by Terry Jones, fixed
12758 by Andreas Koenig, and add a test.
12759 Branch: perl
12760 ! lib/Unicode/UCD.pm lib/Unicode/UCD.t
12761____________________________________________________________________________
12762[ 20231] By: jhi on 2003/07/27 17:21:11
12763 Log: Unicode::UCD doc nit from Andreas Koenig.
12764 Branch: perl
12765 ! lib/Unicode/UCD.pm
12766____________________________________________________________________________
12767[ 20230] By: jhi on 2003/07/27 17:13:55
12768 Log: Upgrade to I18N::LangTags 0.28.
12769 Branch: perl
12770 + lib/I18N/LangTags/t/01test.t
12771 - lib/I18N/LangTags/test.pl
12772 ! MANIFEST lib/I18N/LangTags.pm lib/I18N/LangTags/List.pm
12773____________________________________________________________________________
12774[ 20229] By: jhi on 2003/07/27 16:59:27
12775 Log: Skip the test until Enache fixes it.
12776 Branch: perl
12777 ! ext/B/t/assembler.t
12778____________________________________________________________________________
12779[ 20228] By: jhi on 2003/07/27 16:54:28
12780 Log: More perldelta tweakage.
12781 Branch: maint-5.8/perl
12782 ! pod/perldelta.pod
12783____________________________________________________________________________
12784[ 20227] By: jhi on 2003/07/27 16:49:50
12785 Log: Some perldelta tweaks.
12786 Branch: maint-5.8/perl
12787 ! pod/perldelta.pod
12788____________________________________________________________________________
12789[ 20226] By: jhi on 2003/07/27 16:20:45
12790 Log: Retract #14952, too aggressive for a maint release.
12791 Branch: maint-5.8/perl
12792 ! pod/perldata.pod pod/perldiag.pod pod/perltie.pod pp.c
12793 ! pp_hot.c t/op/magic.t
12794____________________________________________________________________________
12795[ 20225] By: jhi on 2003/07/27 16:12:44
12796 Log: Upgrade to File::Spec 0.85.
12797 Branch: perl
12798 ! lib/File/Spec.pm lib/File/Spec/Epoc.pm
12799 ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
12800 ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
12801 ! lib/File/Spec/t/Functions.t lib/File/Spec/t/Spec.t
12802 ! lib/File/Spec/t/rel2abs2rel.t
12803____________________________________________________________________________
12804[ 20224] By: jhi on 2003/07/27 15:48:20
12805 Log: Subject: Re: [PATCH] Re: Storing &PL_sv_undef as a hash key with perl-5.8.x
12806 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
12807 Date: Sun, 20 Jul 2003 22:36:02 +0200
12808 Message-ID: <006801c34efe$8aac1920$0c2f1fac@R2D2>
12809 Branch: perl
12810 ! dump.c embedvar.h ext/Storable/Storable.xs hv.c intrpvar.h
12811 ! perl.c perlapi.h sv.c universal.c
12812____________________________________________________________________________
12813[ 20223] By: jhi on 2003/07/27 15:43:30
12814 Log: Regen byterun once more: the incav is not yet right, but at
12815 least it compiles now (Tru64 cc choked on the lvalue cast).
12816 Branch: perl
12817 ! bytecode.pl ext/ByteLoader/byterun.c
12818____________________________________________________________________________
12819[ 20222] By: jhi on 2003/07/27 15:31:52
12820 Log: Regenerated because of #20220.
12821 Branch: perl
12822 ! ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
12823 ! ext/ByteLoader/byterun.h
12824____________________________________________________________________________
12825[ 20221] By: jhi on 2003/07/27 15:19:57
12826 Log: Subject: [PATCH] fix for File::Find logical name collision on VMS
12827 From: "Craig A. Berry" <craigberry@mac.com>
12828 Date: Mon, 21 Jul 2003 19:40:20 -0500
12829 Message-ID: <3F1C87F4.2070401@mac.com>
12830 Branch: perl
12831 ! lib/File/Find.pm
12832____________________________________________________________________________
12833[ 20220] By: jhi on 2003/07/27 15:13:10
12834 Log: Subject: Re: [perl #22984] perl-5.8.1-RC2: TEST -bytecompile won't work at all
12835 From: Enache Adrian <enache@rdslink.ro>
12836 Date: Fri, 18 Jul 2003 23:15:37 +0300
12837 Message-ID: <20030718201537.GA1574@ratsnest.hole>
12838 Branch: perl
12839 ! Makefile.SH bytecode.pl ext/B/B.xs ext/B/B/Assembler.pm
12840 ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm ext/B/typemap
12841 ! ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
12842 ! ext/ByteLoader/bytecode.h installperl t/TEST utils/perlcc.PL
12843____________________________________________________________________________
12844[ 20219] By: jhi on 2003/07/27 15:08:23
12845 Log: Subject: [PATCH-for-RC2] WinCE port addition
12846 From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com>
12847 Date: Fri, 25 Jul 2003 22:17:11 +0400
12848 Message-ID: <845FCFF2D4C0FC468B485E8777C7A00C200D42@cio-test001.spb.lucent.com>
12849 Branch: perl
12850 - wince/README.compile
12851 ! MANIFEST README.ce wince/Makefile.ce wince/README.perlce
12852 ! wince/compile.bat wince/wince.c wince/wince.h
12853____________________________________________________________________________
12854[ 20218] By: jhi on 2003/07/25 08:03:37
12855 Log: Integrate:
12856 [ 20217]
12857 Another missing hunk for MakeMaker from .org.
12858 Branch: maint-5.8/perl
12859 !> lib/ExtUtils/MakeMaker.pm
12860____________________________________________________________________________
12861[ 20217] By: jhi on 2003/07/25 06:39:08
12862 Log: Another missing hunk for MakeMaker from .org.
12863 Branch: perl
12864 ! lib/ExtUtils/MakeMaker.pm
12865____________________________________________________________________________
12866[ 20216] By: jhi on 2003/07/25 06:09:50
12867 Log: perldelta VMS updates from Craig Berry.
12868 Branch: maint-5.8/perl
12869 ! pod/perldelta.pod
12870____________________________________________________________________________
12871[ 20215] By: jhi on 2003/07/25 06:07:38
12872 Log: Subject: [perl #23091] l $var broken in debugger
12873 From: "rjk-perl@focalex.com (via RT)" <perlbug-followup@perl.org>
12874 Date: 22 Jul 2003 19:08:15 -0000
12875 Message-ID: <rt-23091-61662.16.0158690528893@rt.perl.org>
12876 Branch: maint-5.8/perl
12877 ! lib/perl5db.pl
12878____________________________________________________________________________
12879[ 20214] By: jhi on 2003/07/24 14:50:34
12880 Log: Integrate:
12881 [ 20213]
12882 Grabbed from www.makemaker.org.
12883 Branch: maint-5.8/perl
12884 +> t/lib/MakeMaker/Test/Setup/Recurs.pm
12885 !> MANIFEST
12886____________________________________________________________________________
12887[ 20213] By: jhi on 2003/07/24 14:49:25
12888 Log: Grabbed from www.makemaker.org.
12889 Branch: perl
12890 + t/lib/MakeMaker/Test/Setup/Recurs.pm
12891 ! MANIFEST
12892____________________________________________________________________________
12893[ 20212] By: jhi on 2003/07/24 14:32:57
12894 Log: Integrate:
12895 [ 20184]
12896 Subject: [PATCH 5.8.1 @20153] malloc cleanup
12897 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
12898 Date: Tue, 15 Jul 2003 07:46:58 -0700
12899 Message-ID: <20030715144657.GA21313@math.berkeley.edu>
12900
12901 [ 20186]
12902 Subject: Re: problem with rc1 and rc2 on Mac OS X
12903 From: Edward Moy <emoy@apple.com>
12904 Date: Sun, 13 Jul 2003 14:12:57 -0700
12905 Message-Id: <C66FBFAC-B576-11D7-89B5-0030657B317C@apple.com>
12906
12907 [ 20187]
12908 Subject: [PATCH] configure.gnu --prefix
12909 From: slaven@rezic.de
12910 Date: Thu, 10 Jul 2003 09:33:27 +0000
12911 Message-Id: <1057829607.9622@devpc01.iconmobile.de>
12912
12913 [ 20188]
12914 Subject: [PATCH RC2] configpm breakage on VMS
12915 From: "Craig A. Berry" <craigberry@mac.com>
12916 Date: Sun, 13 Jul 2003 08:28:55 -0500
12917 Message-ID: <3F115E97.4070207@mac.com>
12918
12919 [ 20189]
12920 Subject: [PATCH RC2] Missing semicolon in PERL_FPU_INIT macro
12921 From: Stephen Clouse <stephenc@theiqgroup.com>
12922 Date: Tue, 22 Jul 2003 21:31:38 -0500
12923 Message-ID: <20030723023138.GA15653@owns.warpcore.org>
12924
12925 [ 20190]
12926 Subject: [perl #23080] [DOCPATCH] pod/perlfunc.pod missing C
12927 From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
12928 Date: 22 Jul 2003 02:59:13 -0000
12929 Message-ID: <rt-23080-61622.7.95831816717467@rt.perl.org>
12930
12931 [ 20193]
12932 Subject: [perl #22965] Cannot set undef timeout in IO::Socket in perl 5.8.0
12933 From: Hrunting Johnson (via RT) <perlbug-followup@perl.org>
12934 Date: 14 Jul 2003 05:37:02 -0000
12935 Message-ID: <rt-22965-60791.13.0539297217452@rt.perl.org>
12936
12937 [ 20194]
12938 Subject: [perl #22971] [PATCH] Proper capitalization for IO.pm deprecation warning
12939 From: "ilya@juil.nonet (via RT)" <perlbug-followup@perl.org>
12940 Date: 14 Jul 2003 05:37:15 -0000
12941 Message-ID: <rt-22971-60818.3.78636614866039@rt.perl.org>
12942
12943 [ 20195]
12944 POSIX-BC patch from Thomas Dorner.
12945
12946 [ 20196]
12947 EBCDIC fix from Thomas Dorner.
12948
12949 [ 20197]
12950 Subject: [PATCH] typo in VMS::Filespec
12951 From: Ken Williams <ken@mathforum.org>
12952 Date: Tue, 22 Jul 2003 15:18:21 -0500
12953 Message-Id: <A3E1AAA0-BC81-11D7-B0BB-003065F6D85A@mathforum.org>
12954
12955 [ 20198]
12956 Subject: [PATCH] Re: Bug in B::Deparse/Concise with ithreads
12957 From: Stephen McCamant <smcc@mit.edu>
12958 Date: Sat, 19 Jul 2003 12:06:31 -0400
12959 Message-ID: <16153.27783.300094.464863@syllepsis.MIT.EDU>
12960
12961 [ 20199]
12962 Subject: [PATCH] Re: Reference to tied elements results in lvalue.
12963 From: Dave Mitchell <davem@fdgroup.com>
12964 Date: Fri, 18 Jul 2003 18:49:43 +0100
12965 Message-ID: <20030718174943.GB6427@fdgroup.com>
12966
12967 [ 20200]
12968 Subject: [PATCH] Fix saving 'V' magic in scan_vstring()
12969 From: Stephen McCamant <smcc@mit.edu>
12970 Date: Tue, 22 Jul 2003 09:41:10 -0400
12971 Message-ID: <16157.16118.998307.110037@syllepsis.MIT.EDU>
12972
12973 [ 20201]
12974 Subject: PATCH: More edge tests on t/op/pow.t
12975 From: Andy Lester <andy@petdance.com>
12976 Date: Wed, 23 Jul 2003 16:38:35 -0500
12977 Message-ID: <20030723213834.GA20468@petdance.com>
12978
12979 [ 20202]
12980 Subject: [patch] perldebug.pod clarification
12981 From: Stéphane Payrard <stef@payrard.net>
12982 Date: Mon, 21 Jul 2003 21:36:59 +0200
12983 Message-ID: <20030721193659.GC2722@stefp.dyndns.org>
12984
12985 [ 20203]
12986 Subject: [possible PATCH?] Re: Where is PerlIO_isutf8()?
12987 From: Steve Hay <steve.hay@uk.radan.com>
12988 Date: Fri, 18 Jul 2003 10:03:21 +0100
12989 Message-ID: <3F17B7D9.80805@uk.radan.com>
12990
12991 [ 20206]
12992 Subject: [perl #23091] l $var broken in debugger
12993 From: "rjk-perl@focalex.com (via RT)" <perlbug-followup@perl.org>
12994 Date: 22 Jul 2003 19:08:15 -0000
12995 Message-ID: <rt-23091-61662.16.0158690528893@rt.perl.org>
12996
12997 [ 20207]
12998 Subject: [PATCH] ExtUtils::MakeMaker 6.10_08
12999 From: Michael G Schwern <schwern@pobox.com>
13000 Date: Mon, 21 Jul 2003 20:12:25 -0700
13001 Message-ID: <20030722031224.GD12711@windhund.schwern.org>
13002
13003 [ 20208]
13004 Subject: [ANNOUNCE] ExtUtils::MakeMaker 6.11
13005 From: Michael G Schwern <schwern@pobox.com>
13006 Date: Thu, 24 Jul 2003 01:28:07 -0700
13007 Message-ID: <20030724082807.GA24285@windhund.schwern.org>
13008
13009 [ 20209]
13010 Subject: Re: [typo] sv.c pod/perlapi.pod
13011 From: Stas Bekman <stas@stason.org>
13012 Date: Thu, 24 Jul 2003 16:49:27 +0200
13013 Message-ID: <3F1FF1F7.30500@stason.org>
13014
13015 [ 20211]
13016 Subject: [perl #22946] Bug in Unicode surrogate pair conversion in Perl_utf16_to_utf8
13017 From: "Dinger, Tom" (via RT) <perlbug-followup@perl.org>
13018 Date: 14 Jul 2003 05:35:15 -0000
13019 Message-ID: <rt-22946-60715.1.00007189884266@rt.perl.org>
13020 Branch: maint-5.8/perl
13021 +> lib/ExtUtils/t/recurs.t
13022 !> (integrate 37 files)
13023____________________________________________________________________________
13024[ 20211] By: jhi on 2003/07/24 14:00:29
13025 Log: Subject: [perl #22946] Bug in Unicode surrogate pair conversion in Perl_utf16_to_utf8
13026 From: "Dinger, Tom" (via RT) <perlbug-followup@perl.org>
13027 Date: 14 Jul 2003 05:35:15 -0000
13028 Message-ID: <rt-22946-60715.1.00007189884266@rt.perl.org>
13029 Branch: perl
13030 ! utf8.c
13031____________________________________________________________________________
13032[ 20210] By: jhi on 2003/07/24 13:49:51
13033 Log: Subject: [perl #23090] debugger not highlighting current line with ==>
13034 From: Ronald J Kimball (via RT) <perlbug-followup@perl.org>
13035 Date: 22 Jul 2003 18:50:48 -0000
13036 Message-ID: <rt-23090-61657.0.108280321391732@rt.perl.org>
13037 Branch: maint-5.8/perl
13038 ! lib/perl5db.pl
13039____________________________________________________________________________
13040[ 20209] By: jhi on 2003/07/24 13:42:58
13041 Log: Subject: Re: [typo] sv.c pod/perlapi.pod
13042 From: Stas Bekman <stas@stason.org>
13043 Date: Thu, 24 Jul 2003 16:49:27 +0200
13044 Message-ID: <3F1FF1F7.30500@stason.org>
13045 Branch: perl
13046 ! pod/perlapi.pod sv.c
13047____________________________________________________________________________
13048[ 20208] By: jhi on 2003/07/24 13:41:37
13049 Log: Subject: [ANNOUNCE] ExtUtils::MakeMaker 6.11
13050 From: Michael G Schwern <schwern@pobox.com>
13051 Date: Thu, 24 Jul 2003 01:28:07 -0700
13052 Message-ID: <20030724082807.GA24285@windhund.schwern.org>
13053 Branch: perl
13054 ! lib/ExtUtils/MakeMaker.pm
13055____________________________________________________________________________
13056[ 20207] By: jhi on 2003/07/24 13:40:39
13057 Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_08
13058 From: Michael G Schwern <schwern@pobox.com>
13059 Date: Mon, 21 Jul 2003 20:12:25 -0700
13060 Message-ID: <20030722031224.GD12711@windhund.schwern.org>
13061 Branch: perl
13062 + lib/ExtUtils/t/recurs.t
13063 ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/META.yml
13064 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_MacOS.pm
13065 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
13066 ! lib/ExtUtils/MakeMaker/FAQ.pod lib/ExtUtils/PATCHING
13067 ! lib/ExtUtils/README lib/ExtUtils/t/Command.t
13068 ! lib/ExtUtils/t/INST.t lib/ExtUtils/t/INST_PREFIX.t
13069 ! lib/ExtUtils/t/basic.t
13070____________________________________________________________________________
13071[ 20206] By: jhi on 2003/07/24 13:23:27
13072 Log: (accidentally empty checkin)
13073 Branch: perl
13074 ! lib/perl5db.pl
13075____________________________________________________________________________
13076[ 20205] By: jhi on 2003/07/24 13:20:26
13077 Log: Subject: Re: Final doc cleanup for the debugger
13078 From: "Ronald J. Kimball" <rjk@linguist.thayer.dartmouth.edu>
13079 Date: Mon, 21 Jul 2003 14:41:50 -0400
13080 Message-ID: <20030721184150.GC29381@linguist.thayer.dartmouth.edu>
13081 Branch: maint-5.8/perl
13082 ! lib/perl5db.pl
13083____________________________________________________________________________
13084[ 20204] By: jhi on 2003/07/24 13:18:39
13085 Log: Subject: Final doc cleanup for the debugger
13086 From: Joe McMahon <mcmahon@ibiblio.org>
13087 Date: Mon, 21 Jul 2003 12:09:45 -0400
13088 Message-Id: <BE723BEA-BB95-11D7-9203-000393BCA0FC@ibiblio.org>
13089 Branch: maint-5.8/perl
13090 ! lib/perl5db.pl
13091____________________________________________________________________________
13092[ 20203] By: jhi on 2003/07/24 13:14:53
13093 Log: Subject: [possible PATCH?] Re: Where is PerlIO_isutf8()?
13094 From: Steve Hay <steve.hay@uk.radan.com>
13095 Date: Fri, 18 Jul 2003 10:03:21 +0100
13096 Message-ID: <3F17B7D9.80805@uk.radan.com>
13097 Branch: perl
13098 ! makedef.pl
13099____________________________________________________________________________
13100[ 20202] By: jhi on 2003/07/24 13:12:08
13101 Log: Subject: [patch] perldebug.pod clarification
13102 From: Stéphane Payrard <stef@payrard.net>
13103 Date: Mon, 21 Jul 2003 21:36:59 +0200
13104 Message-ID: <20030721193659.GC2722@stefp.dyndns.org>
13105 Branch: perl
13106 ! pod/perldebug.pod
13107____________________________________________________________________________
13108[ 20201] By: jhi on 2003/07/24 13:08:50
13109 Log: Subject: PATCH: More edge tests on t/op/pow.t
13110 From: Andy Lester <andy@petdance.com>
13111 Date: Wed, 23 Jul 2003 16:38:35 -0500
13112 Message-ID: <20030723213834.GA20468@petdance.com>
13113 Branch: perl
13114 ! t/op/pow.t
13115____________________________________________________________________________
13116[ 20200] By: jhi on 2003/07/24 13:06:36
13117 Log: Subject: [PATCH] Fix saving 'V' magic in scan_vstring()
13118 From: Stephen McCamant <smcc@mit.edu>
13119 Date: Tue, 22 Jul 2003 09:41:10 -0400
13120 Message-ID: <16157.16118.998307.110037@syllepsis.MIT.EDU>
13121 Branch: perl
13122 ! toke.c
13123____________________________________________________________________________
13124[ 20199] By: jhi on 2003/07/24 13:04:24
13125 Log: Subject: [PATCH] Re: Reference to tied elements results in lvalue.
13126 From: Dave Mitchell <davem@fdgroup.com>
13127 Date: Fri, 18 Jul 2003 18:49:43 +0100
13128 Message-ID: <20030718174943.GB6427@fdgroup.com>
13129 Branch: perl
13130 ! sv.c t/op/tie.t
13131____________________________________________________________________________
13132[ 20198] By: jhi on 2003/07/24 09:07:45
13133 Log: Subject: [PATCH] Re: Bug in B::Deparse/Concise with ithreads
13134 From: Stephen McCamant <smcc@mit.edu>
13135 Date: Sat, 19 Jul 2003 12:06:31 -0400
13136 Message-ID: <16153.27783.300094.464863@syllepsis.MIT.EDU>
13137 Branch: perl
13138 ! ext/B/B/Concise.pm ext/B/B/Deparse.pm
13139____________________________________________________________________________
13140[ 20197] By: jhi on 2003/07/24 08:59:45
13141 Log: Subject: [PATCH] typo in VMS::Filespec
13142 From: Ken Williams <ken@mathforum.org>
13143 Date: Tue, 22 Jul 2003 15:18:21 -0500
13144 Message-Id: <A3E1AAA0-BC81-11D7-B0BB-003065F6D85A@mathforum.org>
13145 Branch: perl
13146 ! vms/ext/Filespec.pm
13147____________________________________________________________________________
13148[ 20196] By: jhi on 2003/07/24 08:54:54
13149 Log: EBCDIC fix from Thomas Dorner.
13150 Branch: perl
13151 ! Makefile.SH
13152____________________________________________________________________________
13153[ 20195] By: jhi on 2003/07/24 08:54:13
13154 Log: POSIX-BC patch from Thomas Dorner.
13155 Branch: perl
13156 ! hints/posix-bc.sh
13157____________________________________________________________________________
13158[ 20194] By: jhi on 2003/07/24 08:45:55
13159 Log: Subject: [perl #22971] [PATCH] Proper capitalization for IO.pm deprecation warning
13160 From: "ilya@juil.nonet (via RT)" <perlbug-followup@perl.org>
13161 Date: 14 Jul 2003 05:37:15 -0000
13162 Message-ID: <rt-22971-60818.3.78636614866039@rt.perl.org>
13163 Branch: perl
13164 ! ext/IO/IO.pm ext/IO/lib/IO/t/IO.t
13165____________________________________________________________________________
13166[ 20193] By: jhi on 2003/07/24 08:43:33
13167 Log: Subject: [perl #22965] Cannot set undef timeout in IO::Socket in perl 5.8.0
13168 From: Hrunting Johnson (via RT) <perlbug-followup@perl.org>
13169 Date: 14 Jul 2003 05:37:02 -0000
13170 Message-ID: <rt-22965-60791.13.0539297217452@rt.perl.org>
13171 Branch: perl
13172 ! ext/IO/lib/IO/Socket.pm
13173____________________________________________________________________________
13174[ 20192] By: jhi on 2003/07/24 08:40:01
13175 Log: Subject: [PATCH maint] Re: Fatal 5.8.1 error in our $FOO = x if $FOO
13176 From: Dave Mitchell <davem@fdgroup.com>
13177 Date: Thu, 17 Jul 2003 21:54:01 +0100
13178 Message-ID: <20030717205401.GB2994@fdgroup.com>
13179 Branch: maint-5.8/perl
13180 ! pad.c t/lib/warnings/pad
13181____________________________________________________________________________
13182[ 20191] By: jhi on 2003/07/24 08:38:35
13183 Log: Subject: [PATCH] Re: Fatal 5.8.1 error in our $FOO = x if $FOO
13184 From: Dave Mitchell <davem@fdgroup.com>
13185 Date: Thu, 17 Jul 2003 20:33:29 +0100
13186 Message-ID: <20030717193329.GA2699@fdgroup.com>
13187 Branch: perl
13188 ! pad.c t/lib/warnings/pad
13189____________________________________________________________________________
13190[ 20190] By: jhi on 2003/07/24 08:35:11
13191 Log: Subject: [perl #23080] [DOCPATCH] pod/perlfunc.pod missing C
13192 From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org>
13193 Date: 22 Jul 2003 02:59:13 -0000
13194 Message-ID: <rt-23080-61622.7.95831816717467@rt.perl.org>
13195 Branch: perl
13196 ! pod/perlfunc.pod
13197____________________________________________________________________________
13198[ 20189] By: jhi on 2003/07/24 08:26:02
13199 Log: Subject: [PATCH RC2] Missing semicolon in PERL_FPU_INIT macro
13200 From: Stephen Clouse <stephenc@theiqgroup.com>
13201 Date: Tue, 22 Jul 2003 21:31:38 -0500
13202 Message-ID: <20030723023138.GA15653@owns.warpcore.org>
13203 Branch: perl
13204 ! perl.h
13205____________________________________________________________________________
13206[ 20188] By: jhi on 2003/07/24 08:07:57
13207 Log: Subject: [PATCH RC2] configpm breakage on VMS
13208 From: "Craig A. Berry" <craigberry@mac.com>
13209 Date: Sun, 13 Jul 2003 08:28:55 -0500
13210 Message-ID: <3F115E97.4070207@mac.com>
13211 Branch: maint-5.8/perl
13212 ! configpm
13213____________________________________________________________________________
13214[ 20187] By: jhi on 2003/07/24 07:53:33
13215 Log: Subject: [PATCH] configure.gnu --prefix
13216 From: slaven@rezic.de
13217 Date: Thu, 10 Jul 2003 09:33:27 +0000
13218 Message-Id: <1057829607.9622@devpc01.iconmobile.de>
13219 Branch: perl
13220 ! configure.gnu
13221____________________________________________________________________________
13222[ 20186] By: jhi on 2003/07/24 07:48:21
13223 Log: Subject: Re: problem with rc1 and rc2 on Mac OS X
13224 From: Edward Moy <emoy@apple.com>
13225 Date: Sun, 13 Jul 2003 14:12:57 -0700
13226 Message-Id: <C66FBFAC-B576-11D7-89B5-0030657B317C@apple.com>
13227 Branch: perl
13228 ! lib/ExtUtils/MM_Unix.pm
13229____________________________________________________________________________
13230[ 20185] By: jhi on 2003/07/24 07:37:07
13231 Log: Subject: [PATCH toke.c] RE: RC2 is out
13232 From: Robin Barker <Robin.Barker@npl.co.uk>
13233 Date: Fri, 11 Jul 2003 16:30:55 +0100
13234 Message-ID: <533D273D4014D411AB1D00062938C4D9040465D4@hotel.npl.co.uk>
13235 Branch: maint-5.8/perl
13236 ! toke.c
13237____________________________________________________________________________
13238[ 20184] By: jhi on 2003/07/24 07:02:31
13239 Log: Subject: [PATCH 5.8.1 @20153] malloc cleanup
13240 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
13241 Date: Tue, 15 Jul 2003 07:46:58 -0700
13242 Message-ID: <20030715144657.GA21313@math.berkeley.edu>
13243 Branch: perl
13244 ! makedef.pl malloc.c malloc_ctl.h
13245____________________________________________________________________________
13246[ 20183] By: jhi on 2003/07/23 14:15:34
13247 Log: Make Stas Bekman happy also in maint.
13248 Branch: maint-5.8/perl
13249 !> hv.h perl.c
13250____________________________________________________________________________
13251[ 20182] By: jhi on 2003/07/23 13:28:52
13252 Log: This should make Stas happy.
13253 Branch: perl
13254 ! hv.h perl.c
13255____________________________________________________________________________
13256[ 20181] By: jhi on 2003/07/23 13:12:38
13257 Log: Integrate:
13258 [ 19504]
13259 Small nit in perlsyn about the new // operator
13260
13261 [ 20154]
13262 Subject: [PATCH pod/perlsyn.pod pod/perltrap.pod] New introduction
13263 From: Michael G Schwern <schwern@pobox.com>
13264 Date: Tue, 13 May 2003 18:33:05 -0700
13265 Message-ID: <20030514013305.GB22001@windhund.schwern.org>
13266
13267 [ 20155]
13268 Subject: [DOCPATCH] perlfunc/read
13269 From: Steve Grazzini <grazz@pobox.com>
13270 Date: Tue, 8 Jul 2003 10:23:03 -0400
13271 Message-ID: <20030708142303.GB23698@grazzini.net>
13272
13273 Clarify the OFFSET parameter to read().
13274
13275 [ 20156]
13276 Subject: Re: Sort sub and NaNs
13277 From: "John P. Linderman" <jpl@research.att.com>
13278 Date: Thu, 10 Jul 2003 10:45:06 -0400
13279 Message-Id: <200307101445.KAA79110@raptor.research.att.com>
13280
13281 Warn against a potential edge case with sort, <=> and NaNs.
13282
13283 [ 20157]
13284 Minor updates of the charnames documentation.
13285
13286 [ 20158]
13287 Add a TODO test for perlbug #19049
13288 Subject: Re: [perl #19049] Incorrect $` after replacement (test for same)
13289 From: Alex Gough <alex-p5p@earth.li>
13290 Date: Fri, 11 Jul 2003 01:12:42 +0100
13291 Message-ID: <20030711001242.GD2484@the.earth.li>
13292
13293 [ 20159]
13294 Subject: [PATCH] incorrect error message from Attribute::Handlers
13295 From: Claes Jacobsson <claes@surfar.nu>
13296 Date: Sat, 12 Jul 2003 16:30:42 +0200
13297 Message-Id: <6A6A99C4-B475-11D7-AB05-000393C12F9E@surfar.nu>
13298
13299 [ 20161]
13300 Minor nits in perlsyn.pod
13301
13302 [ 20162]
13303 Subject: PATCH: tweak 'split' docs for case of explicit 0 LIMIT
13304 From: Tony Bowden <tony@kasei.com>
13305 Date: Thu, 17 Jul 2003 16:49:35 +0100
13306 Message-ID: <20030717154935.GA20302@soto.kasei.com>
13307
13308 [ 20163]
13309 Subject: [PATCH] fix $^N-related coredump
13310 From: Anton Berezin <tobez@tobez.org>
13311 Date: Mon, 14 Jul 2003 13:50:35 +0200
13312 Message-ID: <20030714115035.GA10971@heechee.tobez.org>
13313
13314 [ 20164]
13315 [perl #22944] PERL5LIB is not colon-separated everywhere
13316
13317 [ 20165]
13318 Subject: [PATCH] Re: POSIX::div
13319 From: Michael G Schwern <schwern@pobox.com>
13320 Date: Mon, 14 Jul 2003 14:00:58 -0700
13321 Message-ID: <20030714210057.GK18517@windhund.schwern.org>
13322
13323 [ 20166]
13324 Subject: [PATCH] Increment cop_seqmax in utilize()
13325 From: Stephen McCamant <smcc@mit.edu>
13326 Date: Tue, 15 Jul 2003 09:57:26 -0400
13327 Message-ID: <16148.2118.348073.76671@syllepsis.MIT.EDU>
13328
13329 Subject: [PATCH] B::Concise 0.56: refcount and BEGIN improvements
13330 From: Stephen McCamant <smcc@mit.edu>
13331 Date: Tue, 15 Jul 2003 09:57:31 -0400
13332 Message-ID: <16148.2123.305325.480187@syllepsis.MIT.EDU>
13333
13334 [ 20167]
13335 Subject: [PATCH] Re: Oops - Can't calculate our powers
13336 From: Stephen McCamant <smcc@mit.edu>
13337 Date: Fri, 18 Jul 2003 02:26:14 -0400
13338 Message-ID: <16151.37638.162561.84142@syllepsis.MIT.EDU>
13339
13340 [ 20168]
13341 Subject: [ PATCH] Re: isa(UNIVERSAL)?
13342 From: Dave Mitchell <davem@fdgroup.com>
13343 Date: Thu, 17 Jul 2003 21:51:12 +0100
13344 Message-ID: <20030717205112.GA2994@fdgroup.com>
13345
13346 [ 20169]
13347 Subject: Re: [PATCH] Re: Oops - Can't calculate our powers
13348 From: Andreas J Koenig <andreas.koenig@anima.de>
13349 Date: Fri, 18 Jul 2003 09:36:47 +0200
13350 Message-ID: <87fzl4thf4.fsf@franz.ak.mind.de>
13351
13352 [ 20170]
13353 Rename get_seed() to get_hash_seed(), as suggested by
13354 Eric J Kidder, to solve a name conflict on HP_UX 11.00.
13355
13356 [ 20171]
13357 The warning "Possible precedence problem on bitwise operator"
13358 was incorrectly produced with the bitwise-assignment operators.
13359 Fix it. (bug #23065 concerning 5.8.1 RC2)
13360
13361 [ 20172]
13362 Subject: Re: [perl #22941] Can't build perl with -Duseshrplib if /usr/bin/gcc is a perl script
13363 From: Andy Dougherty <doughera@lafayette.edu>
13364 Date: Tue, 15 Jul 2003 10:52:58 -0400 (EDT)
13365 Message-ID: <Pine.SOL.4.53.0307151011550.7002@maxwell.phys.lafayette.edu>
13366
13367 plus a clarification to INSTALL :
13368 Subject: [PATCH] Re: [perl #22941] Can't build perl with -Duseshrplib if /usr/bin/gcc is a perl script
13369 From: Andy Dougherty <doughera@lafayette.edu>
13370 Date: Wed, 16 Jul 2003 11:01:24 -0400 (EDT)
13371 Message-ID: <Pine.SOL.4.53.0307161059400.10258@maxwell.phys.lafayette.edu>
13372
13373 [ 20173]
13374 Minor doc nits concerning the dosish ALTERNATE_SHEBANG
13375 (bug #22968)
13376
13377 [ 20175]
13378 Subject: Re: [PATCH] test clean-up for VMS
13379 From: "Craig A. Berry" <craigberry@mac.com>
13380 Date: Sun, 20 Jul 2003 10:43:32 -0500
13381 Message-ID: <3F1AB8A4.2070207@mac.com>
13382
13383 [ 20176]
13384 Subject: Re: [PATCH] h2xs and extra_libraries
13385 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
13386 Date: Tue, 15 Jul 2003 07:28:52 +0200
13387 Message-id: <20030715052852.GA494@ethan>
13388
13389 [ 20177]
13390 Subject: [PATCH] Re: Perl formats do not work with tied values
13391 From: Dave Mitchell <davem@fdgroup.com>
13392 Date: Tue, 15 Jul 2003 20:46:07 +0100
13393 Message-ID: <20030715194607.GA24592@fdgroup.com>
13394
13395 plus the regression test :
13396 Subject: Re: [PATCH] Re: Perl formats do not work with tied values
13397 From: Nicholas Clark <nick@ccl4.org>
13398 Date: Tue, 15 Jul 2003 22:24:04 +0100
13399 Message-ID: <20030715222404.L20414@plum.flirble.org>
13400
13401 [ 20178]
13402 Subject: [DOCPATCH] %SIG and SA_RESTART
13403 From: Steve Grazzini <grazz@pobox.com>
13404 Date: Wed, 16 Jul 2003 08:56:21 -0400
13405 Message-ID: <20030716125620.GA7022@grazzini.net>
13406
13407 [ 20179]
13408 As the perldoc.pod is now in a separate file under pod/,
13409 the installman script was installing an empty perldoc.1 manpage.
13410
13411 [ 20180]
13412 utils.lst parsing tweak for bin/perldoc installation from Rafael.
13413 Branch: maint-5.8/perl
13414 !> (integrate 41 files)
13415____________________________________________________________________________
13416[ 20180] By: jhi on 2003/07/23 12:40:11
13417 Log: utils.lst parsing tweak for bin/perldoc installation from Rafael.
13418 Branch: perl
13419 ! installperl
13420____________________________________________________________________________
13421[ 20179] By: rgs on 2003/07/21 19:46:19
13422 Log: As the perldoc.pod is now in a separate file under pod/,
13423 the installman script was installing an empty perldoc.1 manpage.
13424 Branch: perl
13425 ! installperl utils.lst
13426____________________________________________________________________________
13427[ 20178] By: rgs on 2003/07/21 19:19:06
13428 Log: Subject: [DOCPATCH] %SIG and SA_RESTART
13429 From: Steve Grazzini <grazz@pobox.com>
13430 Date: Wed, 16 Jul 2003 08:56:21 -0400
13431 Message-ID: <20030716125620.GA7022@grazzini.net>
13432 Branch: perl
13433 ! pod/perlipc.pod pod/perlvar.pod
13434____________________________________________________________________________
13435[ 20177] By: rgs on 2003/07/21 19:14:35
13436 Log: Subject: [PATCH] Re: Perl formats do not work with tied values
13437 From: Dave Mitchell <davem@fdgroup.com>
13438 Date: Tue, 15 Jul 2003 20:46:07 +0100
13439 Message-ID: <20030715194607.GA24592@fdgroup.com>
13440
13441 plus the regression test :
13442 Subject: Re: [PATCH] Re: Perl formats do not work with tied values
13443 From: Nicholas Clark <nick@ccl4.org>
13444 Date: Tue, 15 Jul 2003 22:24:04 +0100
13445 Message-ID: <20030715222404.L20414@plum.flirble.org>
13446 Branch: perl
13447 ! pp_ctl.c t/op/write.t
13448____________________________________________________________________________
13449[ 20176] By: rgs on 2003/07/21 19:00:32
13450 Log: Subject: Re: [PATCH] h2xs and extra_libraries
13451 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
13452 Date: Tue, 15 Jul 2003 07:28:52 +0200
13453 Message-id: <20030715052852.GA494@ethan>
13454 Branch: perl
13455 ! utils/h2xs.PL
13456____________________________________________________________________________
13457[ 20175] By: merijn on 2003/07/21 14:26:43
13458 Log: Subject: Re: [PATCH] test clean-up for VMS
13459 From: "Craig A. Berry" <craigberry@mac.com>
13460 Date: Sun, 20 Jul 2003 10:43:32 -0500
13461 Message-ID: <3F1AB8A4.2070207@mac.com>
13462 Branch: perl
13463 ! ext/PerlIO/t/encoding.t lib/File/Spec/t/rel2abs2rel.t
13464 ! lib/FileCache/t/01open.t lib/FileCache/t/02maxopen.t
13465 ! lib/FileCache/t/03append.t t/io/argv.t t/op/stat.t
13466 ! t/uni/write.t
13467____________________________________________________________________________
13468[ 20174] By: hv on 2003/07/21 10:26:07
13469 Log: Update Changes.
13470 Branch: perl
13471 ! Changes patchlevel.h
42bc3d67
HS
13472____________________________________________________________________________
13473[ 20173] By: rgs on 2003/07/20 21:48:21
13474 Log: Minor doc nits concerning the dosish ALTERNATE_SHEBANG
13475 (bug #22968)
13476 Branch: perl
13477 ! pod/perlfaq3.pod pod/perlrun.pod
13478____________________________________________________________________________
13479[ 20172] By: rgs on 2003/07/20 21:14:12
13480 Log: Subject: Re: [perl #22941] Can't build perl with -Duseshrplib if /usr/bin/gcc is a perl script
13481 From: Andy Dougherty <doughera@lafayette.edu>
13482 Date: Tue, 15 Jul 2003 10:52:58 -0400 (EDT)
13483 Message-ID: <Pine.SOL.4.53.0307151011550.7002@maxwell.phys.lafayette.edu>
13484
13485 plus a clarification to INSTALL :
13486 Subject: [PATCH] Re: [perl #22941] Can't build perl with -Duseshrplib if /usr/bin/gcc is a perl script
13487 From: Andy Dougherty <doughera@lafayette.edu>
13488 Date: Wed, 16 Jul 2003 11:01:24 -0400 (EDT)
13489 Message-ID: <Pine.SOL.4.53.0307161059400.10258@maxwell.phys.lafayette.edu>
13490 Branch: perl
13491 ! INSTALL Makefile.SH
13492____________________________________________________________________________
13493[ 20171] By: rgs on 2003/07/20 20:12:54
13494 Log: The warning "Possible precedence problem on bitwise operator"
13495 was incorrectly produced with the bitwise-assignment operators.
13496 Fix it. (bug #23065 concerning 5.8.1 RC2)
13497 Branch: perl
13498 ! op.c t/lib/warnings/op
13499____________________________________________________________________________
13500[ 20170] By: rgs on 2003/07/18 08:03:02
13501 Log: Rename get_seed() to get_hash_seed(), as suggested by
13502 Eric J Kidder, to solve a name conflict on HP_UX 11.00.
13503 Branch: perl
13504 ! embed.fnc embed.h perl.c proto.h util.c
13505____________________________________________________________________________
13506[ 20169] By: rgs on 2003/07/18 06:36:20
13507 Log: Subject: Re: [PATCH] Re: Oops - Can't calculate our powers
13508 From: Andreas J Koenig <andreas.koenig@anima.de>
13509 Date: Fri, 18 Jul 2003 09:36:47 +0200
13510 Message-ID: <87fzl4thf4.fsf@franz.ak.mind.de>
13511 Branch: perl
13512 ! t/op/pow.t
13513____________________________________________________________________________
13514[ 20168] By: rgs on 2003/07/18 06:21:15
13515 Log: Subject: [ PATCH] Re: isa(UNIVERSAL)?
13516 From: Dave Mitchell <davem@fdgroup.com>
13517 Date: Thu, 17 Jul 2003 21:51:12 +0100
13518 Message-ID: <20030717205112.GA2994@fdgroup.com>
13519 Branch: perl
13520 ! t/op/universal.t universal.c
13521____________________________________________________________________________
13522[ 20167] By: rgs on 2003/07/18 06:14:33
13523 Log: Subject: [PATCH] Re: Oops - Can't calculate our powers
13524 From: Stephen McCamant <smcc@mit.edu>
13525 Date: Fri, 18 Jul 2003 02:26:14 -0400
13526 Message-ID: <16151.37638.162561.84142@syllepsis.MIT.EDU>
13527 Branch: perl
13528 ! pp.c t/op/pow.t
13529____________________________________________________________________________
13530[ 20166] By: rgs on 2003/07/17 21:49:10
13531 Log: Subject: [PATCH] Increment cop_seqmax in utilize()
13532 From: Stephen McCamant <smcc@mit.edu>
13533 Date: Tue, 15 Jul 2003 09:57:26 -0400
13534 Message-ID: <16148.2118.348073.76671@syllepsis.MIT.EDU>
13535
13536 Subject: [PATCH] B::Concise 0.56: refcount and BEGIN improvements
13537 From: Stephen McCamant <smcc@mit.edu>
13538 Date: Tue, 15 Jul 2003 09:57:31 -0400
13539 Message-ID: <16148.2123.305325.480187@syllepsis.MIT.EDU>
13540 Branch: perl
13541 ! ext/B/B/Concise.pm ext/B/B/Terse.pm op.c
13542____________________________________________________________________________
13543[ 20165] By: rgs on 2003/07/17 21:24:46
13544 Log: Subject: [PATCH] Re: POSIX::div
13545 From: Michael G Schwern <schwern@pobox.com>
13546 Date: Mon, 14 Jul 2003 14:00:58 -0700
13547 Message-ID: <20030714210057.GK18517@windhund.schwern.org>
13548 Branch: perl
13549 ! ext/POSIX/POSIX.pm
13550____________________________________________________________________________
13551[ 20164] By: rgs on 2003/07/17 21:15:51
13552 Log: PERL5LIB is not colon-separated everywhere
13553 Branch: perl
13554 ! pod/perlrun.pod
13555____________________________________________________________________________
13556[ 20163] By: rgs on 2003/07/17 20:59:15
13557 Log: Subject: [PATCH] fix $^N-related coredump
13558 From: Anton Berezin <tobez@tobez.org>
13559 Date: Mon, 14 Jul 2003 13:50:35 +0200
13560 Message-ID: <20030714115035.GA10971@heechee.tobez.org>
13561 Branch: perl
13562 ! pp_hot.c sv.c
13563____________________________________________________________________________
13564[ 20162] By: rgs on 2003/07/17 20:39:31
13565 Log: Subject: PATCH: tweak 'split' docs for case of explicit 0 LIMIT
13566 From: Tony Bowden <tony@kasei.com>
13567 Date: Thu, 17 Jul 2003 16:49:35 +0100
13568 Message-ID: <20030717154935.GA20302@soto.kasei.com>
13569 Branch: perl
13570 ! pod/perlfunc.pod
13571____________________________________________________________________________
13572[ 20161] By: rgs on 2003/07/17 20:25:52
13573 Log: Minor nits in perlsyn.pod
13574 Branch: perl
13575 ! pod/perlsyn.pod
13576____________________________________________________________________________
13577[ 20160] By: nick on 2003/07/14 14:51:42
13578 Log: Integrate mainline
13579 Branch: perlio
13580 !> lib/Attribute/Handlers.pm lib/charnames.pm pod/perlfunc.pod
13581 !> pod/perlsyn.pod pod/perltrap.pod t/op/pat.t
13582____________________________________________________________________________
13583[ 20159] By: rgs on 2003/07/13 20:02:34
13584 Log: Subject: [PATCH] incorrect error message from Attribute::Handlers
13585 From: Claes Jacobsson <claes@surfar.nu>
13586 Date: Sat, 12 Jul 2003 16:30:42 +0200
13587 Message-Id: <6A6A99C4-B475-11D7-AB05-000393C12F9E@surfar.nu>
13588 Branch: perl
13589 ! lib/Attribute/Handlers.pm
13590____________________________________________________________________________
13591[ 20158] By: rgs on 2003/07/13 19:52:58
13592 Log: Add a TODO test for perlbug #19049
13593 Subject: Re: [perl #19049] Incorrect $` after replacement (test for same)
13594 From: Alex Gough <alex-p5p@earth.li>
13595 Date: Fri, 11 Jul 2003 01:12:42 +0100
13596 Message-ID: <20030711001242.GD2484@the.earth.li>
13597 Branch: perl
13598 ! t/op/pat.t
13599____________________________________________________________________________
13600[ 20157] By: rgs on 2003/07/13 19:43:29
13601 Log: Minor updates of the charnames documentation.
13602 Branch: perl
13603 ! lib/charnames.pm
13604____________________________________________________________________________
13605[ 20156] By: rgs on 2003/07/11 19:37:34
13606 Log: Subject: Re: Sort sub and NaNs
13607 From: "John P. Linderman" <jpl@research.att.com>
13608 Date: Thu, 10 Jul 2003 10:45:06 -0400
13609 Message-Id: <200307101445.KAA79110@raptor.research.att.com>
13610
13611 Warn against a potential edge case with sort, <=> and NaNs.
13612 Branch: perl
13613 ! pod/perlfunc.pod
13614____________________________________________________________________________
13615[ 20155] By: rgs on 2003/07/11 19:11:17
13616 Log: Subject: [DOCPATCH] perlfunc/read
13617 From: Steve Grazzini <grazz@pobox.com>
13618 Date: Tue, 8 Jul 2003 10:23:03 -0400
13619 Message-ID: <20030708142303.GB23698@grazzini.net>
13620
13621 Clarify the OFFSET parameter to read().
13622 Branch: perl
13623 ! pod/perlfunc.pod
13624____________________________________________________________________________
13625[ 20154] By: rgs on 2003/07/11 18:54:09
13626 Log: Subject: [PATCH pod/perlsyn.pod pod/perltrap.pod] New introduction
13627 From: Michael G Schwern <schwern@pobox.com>
13628 Date: Tue, 13 May 2003 18:33:05 -0700
13629 Message-ID: <20030514013305.GB22001@windhund.schwern.org>
13630 Branch: perl
13631 ! pod/perlsyn.pod pod/perltrap.pod
13632____________________________________________________________________________
13633[ 20153] By: jhi on 2003/07/11 10:50:52
13634 Log: more perldelta. (This is the final RC2, too.)
13635 Branch: maint-5.8/perl
13636 ! pod/perldelta.pod
13637____________________________________________________________________________
13638[ 20152] By: nick on 2003/07/11 09:45:07
13639 Log: Integrate mainline at 5.8.1-RC1ish
13640 Branch: perlio
13641 !> (integrate 51 files)
13642____________________________________________________________________________
13643[ 20151] By: jhi on 2003/07/11 08:35:08
13644 Log: A known potentially failing test.
13645 Branch: maint-5.8/perl
13646 ! pod/perldelta.pod
13647____________________________________________________________________________
13648[ 20150] By: jhi on 2003/07/11 08:07:55
13649 Log: Some known problems.
13650 Branch: maint-5.8/perl
13651 ! pod/perldelta.pod
13652____________________________________________________________________________
13653[ 20149] By: jhi on 2003/07/11 06:08:27
13654 Log: Add perldelta about the SIGFPE change.
13655 Branch: maint-5.8/perl
13656 ! pod/perldelta.pod
13657____________________________________________________________________________
13658[ 20148] By: jhi on 2003/07/11 05:36:18
13659 Log: Make it RC2, while the tests are running.
13660 Branch: maint-5.8/perl
13661 ! patchlevel.h
13662____________________________________________________________________________
13663[ 20147] By: jhi on 2003/07/11 05:20:37
13664 Log: Update Changes.
13665 Branch: maint-5.8/perl
13666 ! Changes patchlevel.h
13667____________________________________________________________________________
13668[ 20146] By: jhi on 2003/07/11 05:12:43
13669 Log: Integrate:
13670 [ 20145]
13671 I think the API for mod_perl v2 should be simply that
13672 PL_modperl sets the PL_hash_seed (and PL_hash_seed_set)
13673 itself, hopefully from a good source of random bits.
13674 Branch: maint-5.8/perl
13675 !> perl.c
13676____________________________________________________________________________
13677[ 20145] By: jhi on 2003/07/11 05:07:09
13678 Log: I think the API for mod_perl v2 should be simply that
13679 PL_modperl sets the PL_hash_seed (and PL_hash_seed_set)
13680 itself, hopefully from a good source of random bits.
13681 Branch: perl
13682 ! perl.c
13683____________________________________________________________________________
13684[ 20144] By: jhi on 2003/07/11 00:35:56
13685 Log: Integrate:
13686 [ 20143]
13687 pTHX.
13688 Branch: maint-5.8/perl
13689 !> util.c
13690____________________________________________________________________________
13691[ 20143] By: jhi on 2003/07/11 00:35:07
13692 Log: pTHX.
13693 Branch: perl
13694 ! util.c
13695____________________________________________________________________________
13696[ 20142] By: jhi on 2003/07/11 00:31:29
13697 Log: Update Changes.
13698 Branch: maint-5.8/perl
13699 ! Changes patchlevel.h
13700____________________________________________________________________________
13701[ 20141] By: jhi on 2003/07/11 00:27:41
13702 Log: Integrate:
13703 [ 20137]
13704 Retract the statements.
13705
13706 [ 20138]
13707 More retraction.
13708
13709 [ 20139]
13710 New order of seed.
13711 Branch: maint-5.8/perl
13712 !> INSTALL pod/perlfunc.pod pod/perlrun.pod pod/perlsec.pod
13713____________________________________________________________________________
13714[ 20140] By: jhi on 2003/07/11 00:25:36
13715 Log: Refashion the perldelta.
13716 Branch: maint-5.8/perl
13717 ! pod/perldelta.pod
13718____________________________________________________________________________
13719[ 20139] By: jhi on 2003/07/11 00:21:43
13720 Log: New order of seed.
13721 Branch: perl
13722 ! pod/perlrun.pod
13723____________________________________________________________________________
13724[ 20138] By: jhi on 2003/07/11 00:13:11
13725 Log: More retraction.
13726 Branch: perl
13727 ! INSTALL
13728____________________________________________________________________________
13729[ 20137] By: jhi on 2003/07/11 00:10:14
13730 Log: Retract the statements.
13731 Branch: perl
13732 ! pod/perlfunc.pod pod/perlsec.pod
13733____________________________________________________________________________
13734[ 20136] By: jhi on 2003/07/11 00:05:20
13735 Log: Integrate:
13736 [ 20134]
13737 Check PERL_HASH_SEED even when tainted.
13738
13739 [ 20135]
13740 Chicken out: the hash randomisation is not on by default.
13741 We switch over to the explicit mode: in other words, if
13742 the $ENV{PERL_HASH_SEED} is on, we randomise. Also, we
13743 randomise only if PL_hash_seed_set is FALSE (this means
13744 one can use PERL_HASH() before perl_run.) Also, since
13745 now PERL_HASH_SEED is okay even under -T, all should be fine.
13746 (Ha!)
13747 Branch: maint-5.8/perl
13748 !> embed.fnc embed.h embedvar.h intrpvar.h perl.c perl.h
13749 !> perlapi.h pod/perldiag.pod pod/perlrun.pod proto.h util.c
13750____________________________________________________________________________
13751[ 20135] By: jhi on 2003/07/11 00:03:33
13752 Log: Chicken out: the hash randomisation is not on by default.
13753 We switch over to the explicit mode: in other words, if
13754 the $ENV{PERL_HASH_SEED} is on, we randomise. Also, we
13755 randomise only if PL_hash_seed_set is FALSE (this means
13756 one can use PERL_HASH() before perl_run.) Also, since
13757 now PERL_HASH_SEED is okay even under -T, all should be fine.
13758 (Ha!)
13759 Branch: perl
13760 ! embed.fnc embed.h embedvar.h intrpvar.h perl.c perl.h
13761 ! perlapi.h pod/perldiag.pod pod/perlrun.pod proto.h util.c
13762____________________________________________________________________________
13763[ 20134] By: jhi on 2003/07/10 23:23:38
13764 Log: Check PERL_HASH_SEED even when tainted.
13765 Branch: perl
13766 ! perl.c pod/perlrun.pod
13767____________________________________________________________________________
13768[ 20133] By: jhi on 2003/07/10 22:51:40
13769 Log: Update Changes.
13770 Branch: maint-5.8/perl
13771 ! Changes patchlevel.h
13772____________________________________________________________________________
13773[ 20132] By: jhi on 2003/07/10 22:46:30
13774 Log: Integrate:
13775 [ 20129]
13776 Subject: [comment patch]
13777 From: Stas Bekman <stas@stason.org>
13778 Date: Thu, 10 Jul 2003 14:19:22 -0700
13779 Message-ID: <3F0DD85A.1070902@stason.org>
13780
13781 [ 20130]
13782 Subject: [PATCH} db-recno.t on Mac OS X
13783 From: slaven@rezic.de
13784 Date: Thu, 10 Jul 2003 12:41:05 +0000
13785 Message-Id: <1057840865.9622@devpc01.iconmobile.de>
13786
13787 [ 20131]
13788 &Time::HiRes::d_nanosleep was broken.
13789 Branch: maint-5.8/perl
13790 !> ext/DB_File/t/db-recno.t ext/Time/HiRes/Makefile.PL perl.c
13791____________________________________________________________________________
13792[ 20131] By: jhi on 2003/07/10 22:42:29
13793 Log: &Time::HiRes::d_nanosleep was broken.
13794 Branch: perl
13795 ! ext/Time/HiRes/Makefile.PL
13796____________________________________________________________________________
13797[ 20130] By: jhi on 2003/07/10 22:37:02
13798 Log: Subject: [PATCH} db-recno.t on Mac OS X
13799 From: slaven@rezic.de
13800 Date: Thu, 10 Jul 2003 12:41:05 +0000
13801 Message-Id: <1057840865.9622@devpc01.iconmobile.de>
13802 Branch: perl
13803 ! ext/DB_File/t/db-recno.t
13804____________________________________________________________________________
13805[ 20129] By: jhi on 2003/07/10 22:31:39
13806 Log: Subject: [comment patch]
13807 From: Stas Bekman <stas@stason.org>
13808 Date: Thu, 10 Jul 2003 14:19:22 -0700
13809 Message-ID: <3F0DD85A.1070902@stason.org>
13810 Branch: perl
13811 ! perl.c
13812____________________________________________________________________________
13813[ 20128] By: jhi on 2003/07/10 22:23:08
13814 Log: Integrate:
13815 [ 20124]
13816 Time travel noticed by Enache.
13817
13818 [ 20127]
13819 Be vague enough.
13820 Branch: maint-5.8/perl
13821 !> embedvar.h pod/perldata.pod pod/perlhist.pod
13822____________________________________________________________________________
13823[ 20127] By: jhi on 2003/07/10 22:21:04
13824 Log: Be vague enough.
13825 Branch: perl
13826 ! pod/perldata.pod
13827____________________________________________________________________________
13828[ 20126] By: jhi on 2003/07/10 22:20:02
13829 Log: Add the deprecation warning for v-strings.
13830
13831 (A Tale Of Caution: Originally I tried to use
13832 "no warnings 'deprecated'; in configpm, but that
13833 lead into whole lotta pain. The warnings pragma
13834 pulls in Carp, and then Carp somehow messes up Exporter,
13835 and one ends up with several mysterious failures.
13836 Just don't go there.)
13837 Branch: maint-5.8/perl
13838 ! configpm pod/perldelta.pod pod/perldiag.pod
13839 ! t/lib/warnings/toke t/op/pack.t toke.c
13840____________________________________________________________________________
13841[ 20125] By: rgs on 2003/07/10 19:28:48
13842 Log: regen embed.pl for the bleadperl branch as well.
13843 Branch: perl
13844 ! embedvar.h
13845____________________________________________________________________________
13846[ 20124] By: jhi on 2003/07/10 18:33:56
13847 Log: Time travel noticed by Enache.
13848 Branch: perl
13849 ! pod/perlhist.pod
13850____________________________________________________________________________
13851[ 20123] By: jhi on 2003/07/10 18:07:49
13852 Log: regen embed.pl.
13853 Branch: maint-5.8/perl
13854 ! embedvar.h
13855____________________________________________________________________________
13856[ 20122] By: jhi on 2003/07/10 18:06:05
13857 Log: Integrate:
13858 [ 20116]
13859 The *right* way to make the csighandler visible.
13860
13861 [ 20117]
13862 Subject: [PATCH] Restore SIGFPE on exec()
13863 From: Chip Salzenberg <chip@pobox.com>
13864 Date: Thu, 10 Jul 2003 13:13:20 -0400
13865 Message-ID: <20030710171319.GA21588@perlsupport.com>
13866
13867 [ 20118]
13868 malloc alignment patch from Spider, needed for Tru64 + longdouble.
13869
13870 [ 20119]
13871 Subject: [PATCH] configure.gnu --prefix
13872 From: slaven@rezic.de
13873 Date: Thu, 10 Jul 2003 09:33:27 +0000
13874 Message-Id: <1057829607.9622@devpc01.iconmobile.de>
13875
13876 [ 20120]
13877 I can see the future. It is cloudy.
13878 Branch: maint-5.8/perl
13879 !> configure.gnu doio.c embed.fnc embed.h global.sym malloc.c
13880 !> perl.c perl.h perlapi.h perlvars.h pod/perlhist.pod toke.c
13881____________________________________________________________________________
13882[ 20121] By: jhi on 2003/07/10 18:01:21
13883 Log: perldelta tweaks.
13884 Branch: maint-5.8/perl
13885 ! pod/perldelta.pod
13886____________________________________________________________________________
13887[ 20120] By: jhi on 2003/07/10 17:38:28
13888 Log: I can see the future. It is cloudy.
13889 Branch: perl
13890 ! pod/perlhist.pod
13891____________________________________________________________________________
13892[ 20119] By: jhi on 2003/07/10 17:37:25
13893 Log: Subject: [PATCH] configure.gnu --prefix
13894 From: slaven@rezic.de
13895 Date: Thu, 10 Jul 2003 09:33:27 +0000
13896 Message-Id: <1057829607.9622@devpc01.iconmobile.de>
13897 Branch: perl
13898 ! configure.gnu
13899____________________________________________________________________________
13900[ 20118] By: jhi on 2003/07/10 17:35:32
13901 Log: malloc alignment patch from Spider, needed for Tru64 + longdouble.
13902 Branch: perl
13903 ! malloc.c
13904____________________________________________________________________________
13905[ 20117] By: jhi on 2003/07/10 17:33:53
13906 Log: Subject: [PATCH] Restore SIGFPE on exec()
13907 From: Chip Salzenberg <chip@pobox.com>
13908 Date: Thu, 10 Jul 2003 13:13:20 -0400
13909 Message-ID: <20030710171319.GA21588@perlsupport.com>
13910 Branch: perl
13911 ! doio.c perl.c perl.h perlapi.h perlvars.h toke.c
13912____________________________________________________________________________
13913[ 20116] By: jhi on 2003/07/10 17:28:00
13914 Log: The *right* way to make the csighandler visible.
13915 Branch: perl
13916 ! embed.fnc embed.h global.sym
13917____________________________________________________________________________
13918[ 20115] By: jhi on 2003/07/10 15:11:29
13919 Log: Retract #20113.
13920 Branch: maint-5.8/perl
13921 ! embedvar.h intrpvar.h perlapi.h
13922____________________________________________________________________________
13923[ 20114] By: jhi on 2003/07/10 15:06:41
13924 Log: Retract #20112.
13925 Branch: perl
13926 ! embed.fnc embedvar.h intrpvar.h perlapi.h
13927____________________________________________________________________________
13928[ 20113] By: jhi on 2003/07/10 14:19:22
13929 Log: Missing symbol export.
13930 Branch: maint-5.8/perl
13931 !> embed.fnc embedvar.h intrpvar.h perlapi.h
13932____________________________________________________________________________
13933[ 20112] By: jhi on 2003/07/10 14:17:59
13934 Log: Argh. At least AIX builds choke because of this.
13935 Branch: perl
13936 ! embed.fnc embedvar.h intrpvar.h perlapi.h
13937____________________________________________________________________________
13938[ 20111] By: jhi on 2003/07/10 05:31:46
13939 Log: Final perldelta (and perlport) sweep.
13940 Branch: maint-5.8/perl
13941 ! pod/perldelta.pod pod/perlport.pod
13942____________________________________________________________________________
13943[ 20110] By: jhi on 2003/07/10 05:06:10
13944 Log: Make it the RC1.
13945 Branch: maint-5.8/perl
13946 ! patchlevel.h
13947____________________________________________________________________________
13948[ 20109] By: jhi on 2003/07/10 05:04:54
13949 Log: Remove the maint tag.
13950 Branch: maint-5.8/perl
13951 ! patchlevel.h
13952____________________________________________________________________________
13953[ 20108] By: jhi on 2003/07/10 05:03:37
13954 Log: Update Changes.
13955 Branch: maint-5.8/perl
13956 ! Changes patchlevel.h
13957____________________________________________________________________________
13958[ 20107] By: jhi on 2003/07/10 04:55:03
13959 Log: Integrate:
13960 [ 20103]
13961 perlfaq sync.
13962
13963 [ 20104]
13964 Deprecate v-strings.
13965
13966 [ 20106]
13967 Upgrade to podlators 1.27.
13968 Branch: maint-5.8/perl
13969 !> lib/Pod/Text/Termcap.pm pod/perldata.pod pod/perlfaq1.pod
13970____________________________________________________________________________
13971[ 20106] By: jhi on 2003/07/10 04:50:05
13972 Log: Upgrade to podlators 1.27.
13973 Branch: perl
13974 ! lib/Pod/Text/Termcap.pm
13975____________________________________________________________________________
13976[ 20105] By: jhi on 2003/07/10 04:46:01
13977 Log: Add deprecations to perldelta.
13978 Branch: maint-5.8/perl
13979 ! pod/perldelta.pod
13980____________________________________________________________________________
13981[ 20104] By: jhi on 2003/07/10 04:40:02
13982 Log: Deprecate v-strings.
13983 Branch: perl
13984 ! pod/perldata.pod
13985____________________________________________________________________________
13986[ 20103] By: jhi on 2003/07/10 04:28:40
13987 Log: perlfaq sync.
13988 Branch: perl
13989 ! pod/perlfaq1.pod
13990____________________________________________________________________________
13991[ 20102] By: jhi on 2003/07/09 17:55:46
13992 Log: Update Changes.
13993 Branch: maint-5.8/perl
13994 ! Changes patchlevel.h
13995____________________________________________________________________________
13996[ 20101] By: jhi on 2003/07/09 17:49:23
13997 Log: Integrate:
13998 [ 20095]
13999 Update Changes.
14000
14001 [ 20096]
14002 More Darwin/MacOSX paths twiddling.
14003
14004 [ 20097]
14005 Fix for the 'print v65' plus safety tweaks from Rafael.
14006
14007 [ 20098]
14008 Fixes from Ron Kimball.
14009
14010 [ 20099]
14011 No more no more. Errrm, no longer no more.
14012
14013 [ 20100]
14014 Detypo.
14015 Branch: maint-5.8/perl
14016 !> hints/darwin.sh hints/freebsd.sh pod/perldata.pod toke.c
14017____________________________________________________________________________
14018[ 20100] By: jhi on 2003/07/09 17:40:41
14019 Log: Detypo.
14020 Branch: perl
14021 ! hints/darwin.sh
14022____________________________________________________________________________
14023[ 20099] By: jhi on 2003/07/09 17:31:38
14024 Log: No more no more. Errrm, no longer no more.
14025 Branch: maint-5.8/perl
14026 ! pod/perldelta.pod
14027____________________________________________________________________________
14028[ 20098] By: jhi on 2003/07/09 17:29:53
14029 Log: Fixes from Ron Kimball.
14030 Branch: perl
14031 ! pod/perldata.pod
14032____________________________________________________________________________
14033[ 20097] By: jhi on 2003/07/09 17:27:35
14034 Log: Fix for the 'print v65' plus safety tweaks from Rafael.
14035 Branch: perl
14036 ! toke.c
14037____________________________________________________________________________
14038[ 20096] By: jhi on 2003/07/09 17:06:29
14039 Log: More Darwin/MacOSX paths twiddling.
14040 Branch: perl
14041 ! hints/darwin.sh
14042____________________________________________________________________________
14043[ 20095] By: jhi on 2003/07/09 12:03:48
14044 Log: Update Changes.
14045 Branch: maint-5.8/perl
14046 ! Changes patchlevel.h
14047____________________________________________________________________________
14048[ 20094] By: jhi on 2003/07/09 11:56:22
14049 Log: No Perl malloc for FreeBSD.
14050 Branch: maint-5.8/perl
14051 ! pod/perldelta.pod
14052____________________________________________________________________________
14053[ 20093] By: jhi on 2003/07/09 11:43:09
14054 Log: Play safe and use the system malloc in FreeBSD.
14055 Yes, performance suffers. But that is better than
14056 random core dumps.
14057 Branch: perl
14058 ! hints/freebsd.sh
14059____________________________________________________________________________
14060[ 20092] By: jhi on 2003/07/09 11:41:01
14061 Log: Integrate:
14062 [ 20084]
14063 Subject: Re: [REPATCH] was Re: [perl #16010] v-strings left of a => don't get quoted.
14064 From: John Peacock <jpeacock@rowman.com>
14065 Date: Wed, 09 Jul 2003 01:05:38 -0700
14066 Message-ID: <3F0BCCD2.1020009@rowman.com>
14067
14068 [ 20085]
14069 Test the vX => ... fix.
14070
14071 [ 20086]
14072 Document the v-string change in perldelta.
14073
14074 [ 20087]
14075 perldelta clarification.
14076
14077 [ 20088]
14078 Document the vXX => change in perldata, too.
14079
14080 [ 20089]
14081 Rework the perldata vXX => ... entry a bit.
14082 Branch: maint-5.8/perl
14083 !> embed.fnc pod/perlapi.pod pod/perldata.pod t/op/ver.t toke.c
14084 !> util.c
14085____________________________________________________________________________
14086[ 20091] By: jhi on 2003/07/09 08:23:20
14087 Log: Integrate:
14088 [ 20074]
14089 "Global destruction" doc tweaks from Rafael.
14090
14091 [ 20075]
14092 perldelta tweaks.
14093
14094 [ 20076]
14095 Subject: Re: [PATCH] $^VARIABLES in 'perl -Dt' output
14096 From: Enache Adrian <enache@rdslink.ro>
14097 Date: Tue, 8 Jul 2003 20:47:58 +0300
14098 Message-ID: <20030708174758.GA1177@ratsnest.hole>
14099
14100 (ByteLoader tweak avoiding a leaked scalar)
14101
14102 [ 20077]
14103 Don't recommend to upgrade the base.pm in the core with
14104 the base.pm from Class::Fields. They are not the same.
14105
14106 [ 20078]
14107 Revert #20077.
14108
14109 [ 20079]
14110 The CHECKOP macro was not invoked on some newly created ops
14111 (to match them against the current opmask.) As a consequence,
14112 Safe compartments were unable to trap some ops (pattern
14113 match, slices, conditionals.) This fixes the holes.
14114
14115 [ 20080]
14116 Small typo fix from Chris Reinhardt.
14117
14118 [ 20081]
14119 Subject: [PATCH] Safe signals via POSIX::sigaction
14120 From: Chip Salzenberg <chip@pobox.com>
14121 Date: Wed, 9 Jul 2003 01:49:10 -0400
14122 Message-ID: <20030709054910.GH2021@perlsupport.com>
14123
14124 [ 20082]
14125 Enable avoiding /System/Library in Mac OS X by
14126 doing Configure -Dprefix=/some/where -Uvendorlib.
14127
14128 [ 20083]
14129 Darwin/Mac OS X: if -Dprefix=/foo, do nothing special
14130 for the install dirs.
14131
14132 [ 20090]
14133 Upgrade to Encode 1.97.
14134 Branch: maint-5.8/perl
14135 !> embed.fnc embed.h ext/Encode/Changes ext/Encode/Encode.pm
14136 !> ext/Encode/META.yml ext/Encode/encoding.pm
14137 !> ext/Encode/lib/Encode/Alias.pm
14138 !> ext/Encode/lib/Encode/Encoder.pm
14139 !> ext/Encode/lib/Encode/Guess.pm
14140 !> ext/Encode/lib/Encode/JP/JIS7.pm ext/POSIX/POSIX.pm
14141 !> ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t
14142 !> hints/darwin.sh lib/CPAN.pm op.c proto.h
14143____________________________________________________________________________
14144[ 20090] By: jhi on 2003/07/09 08:12:32
14145 Log: Upgrade to Encode 1.97.
14146 Branch: perl
14147 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/META.yml
14148 ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
14149 ! ext/Encode/lib/Encode/Encoder.pm
14150 ! ext/Encode/lib/Encode/Guess.pm
14151 ! ext/Encode/lib/Encode/JP/JIS7.pm
14152____________________________________________________________________________
14153[ 20089] By: jhi on 2003/07/09 08:08:30
14154 Log: Rework the perldata vXX => ... entry a bit.
14155 Branch: perl
14156 ! pod/perldata.pod
14157____________________________________________________________________________
14158[ 20088] By: jhi on 2003/07/09 08:04:04
14159 Log: Document the vXX => change in perldata, too.
14160 Branch: perl
14161 ! pod/perldata.pod
14162____________________________________________________________________________
14163[ 20087] By: jhi on 2003/07/09 08:02:09
14164 Log: perldelta clarification.
14165 Branch: maint-5.8/perl
14166 ! pod/perldelta.pod
14167____________________________________________________________________________
14168[ 20086] By: jhi on 2003/07/09 08:00:04
14169 Log: Document the v-string change in perldelta.
14170 Branch: maint-5.8/perl
14171 ! pod/perldelta.pod
14172____________________________________________________________________________
14173[ 20085] By: jhi on 2003/07/09 07:49:46
14174 Log: Test the vX => ... fix.
14175 Branch: perl
14176 ! t/op/ver.t
14177____________________________________________________________________________
14178[ 20084] By: jhi on 2003/07/09 06:58:39
14179 Log: Subject: Re: [REPATCH] was Re: [perl #16010] v-strings left of a => don't get quoted.
14180 From: John Peacock <jpeacock@rowman.com>
14181 Date: Wed, 09 Jul 2003 01:05:38 -0700
14182 Message-ID: <3F0BCCD2.1020009@rowman.com>
14183 Branch: perl
14184 ! embed.fnc pod/perlapi.pod toke.c util.c
14185____________________________________________________________________________
14186[ 20083] By: jhi on 2003/07/09 06:27:15
14187 Log: Darwin/Mac OS X: if -Dprefix=/foo, do nothing special
14188 for the install dirs.
14189 Branch: perl
14190 ! hints/darwin.sh
14191____________________________________________________________________________
14192[ 20082] By: jhi on 2003/07/09 05:57:16
14193 Log: Enable avoiding /System/Library in Mac OS X by
14194 doing Configure -Dprefix=/some/where -Uvendorlib.
14195 Branch: perl
14196 ! hints/darwin.sh
14197____________________________________________________________________________
14198[ 20081] By: jhi on 2003/07/09 05:53:56
14199 Log: Subject: [PATCH] Safe signals via POSIX::sigaction
14200 From: Chip Salzenberg <chip@pobox.com>
14201 Date: Wed, 9 Jul 2003 01:49:10 -0400
14202 Message-ID: <20030709054910.GH2021@perlsupport.com>
14203 Branch: perl
14204 ! embed.fnc embed.h ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
14205 ! ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t proto.h
14206____________________________________________________________________________
14207[ 20080] By: jhi on 2003/07/09 04:52:02
14208 Log: Small typo fix from Chris Reinhardt.
14209 Branch: maint-5.8/perl
14210 ! pod/perldelta.pod
14211____________________________________________________________________________
14212[ 20079] By: rgs on 2003/07/08 20:26:20
14213 Log: The CHECKOP macro was not invoked on some newly created ops
14214 (to match them against the current opmask.) As a consequence,
14215 Safe compartments were unable to trap some ops (pattern
14216 match, slices, conditionals.) This fixes the holes.
14217 Branch: perl
14218 ! op.c
14219____________________________________________________________________________
14220[ 20078] By: jhi on 2003/07/08 19:30:13
14221 Log: Revert #20077.
14222 Branch: perl
14223 ! lib/CPAN.pm
14224____________________________________________________________________________
14225[ 20077] By: jhi on 2003/07/08 18:40:51
14226 Log: Don't recommend to upgrade the base.pm in the core with
14227 the base.pm from Class::Fields. They are not the same.
14228 Branch: perl
14229 ! lib/CPAN.pm
14230____________________________________________________________________________
14231[ 20076] By: jhi on 2003/07/08 17:39:49
14232 Log: Subject: Re: [PATCH] $^VARIABLES in 'perl -Dt' output
14233 From: Enache Adrian <enache@rdslink.ro>
14234 Date: Tue, 8 Jul 2003 20:47:58 +0300
14235 Message-ID: <20030708174758.GA1177@ratsnest.hole>
14236
14237 (ByteLoader tweak avoiding a leaked scalar)
14238 Branch: perl
14239 ! op.c
14240____________________________________________________________________________
14241[ 20075] By: jhi on 2003/07/08 13:35:37
14242 Log: perldelta tweaks.
14243 Branch: maint-5.8/perl
14244 ! pod/perldelta.pod
14245____________________________________________________________________________
14246[ 20074] By: jhi on 2003/07/08 11:01:07
14247 Log: "Global destruction" doc tweaks from Rafael.
14248 Branch: maint-5.8/perl
14249 ! pod/perldelta.pod
14250____________________________________________________________________________
14251[ 20073] By: jhi on 2003/07/08 09:41:37
14252 Log: Update Changes.
14253 Branch: maint-5.8/perl
14254 ! Changes patchlevel.h
14255____________________________________________________________________________
14256[ 20072] By: jhi on 2003/07/08 09:24:42
14257 Log: Integrate:
14258 [ 20068]
14259 Subject: [PATCH: maint @ 20046] warnings, line numbers & windows
14260 From: Marcus Holland-Moritz <mhx-perl@gmx.net>
14261 Date: Tue, 8 Jul 2003 11:14:05 +0200 (MEST)
14262 Message-ID: <12022.1057655645@www59.gmx.net>
14263
14264 [ 20069]
14265 Subject: [PATCH] format 'botched' in malloc.c
14266 From: Enache Adrian <enache@rdslink.ro>
14267 Date: Mon, 7 Jul 2003 21:57:06 +0300
14268 Message-ID: <20030707185706.GB7017@ratsnest.hole>
14269
14270 [ 20070]
14271 A note on hash randomisation vs global destruction.
14272
14273 [ 20071]
14274 In 5.8.x, fast stdio places still do use stdio.
14275 Branch: maint-5.8/perl
14276 !> ext/B/B.xs ext/Digest/MD5/t/badfile.t lib/Pod/Text/Termcap.pm
14277 !> malloc.c mg.c op.c
14278____________________________________________________________________________
14279[ 20071] By: jhi on 2003/07/08 09:18:19
14280 Log: In 5.8.x, fast stdio places still do use stdio.
14281 Branch: perl
14282 ! ext/Digest/MD5/t/badfile.t
14283____________________________________________________________________________
14284[ 20070] By: jhi on 2003/07/08 09:14:24
14285 Log: A note on hash randomisation vs global destruction.
14286 Branch: maint-5.8/perl
14287 ! pod/perldelta.pod
14288____________________________________________________________________________
14289[ 20069] By: jhi on 2003/07/08 08:41:01
14290 Log: Subject: [PATCH] format 'botched' in malloc.c
14291 From: Enache Adrian <enache@rdslink.ro>
14292 Date: Mon, 7 Jul 2003 21:57:06 +0300
14293 Message-ID: <20030707185706.GB7017@ratsnest.hole>
14294 Branch: perl
14295 ! malloc.c
14296____________________________________________________________________________
14297[ 20068] By: jhi on 2003/07/08 08:36:27
14298 Log: Subject: [PATCH: maint @ 20046] warnings, line numbers & windows
14299 From: Marcus Holland-Moritz <mhx-perl@gmx.net>
14300 Date: Tue, 8 Jul 2003 11:14:05 +0200 (MEST)
14301 Message-ID: <12022.1057655645@www59.gmx.net>
14302 Branch: perl
14303 ! ext/B/B.xs lib/Pod/Text/Termcap.pm mg.c op.c
14304____________________________________________________________________________
14305[ 20067] By: jhi on 2003/07/08 05:39:14
14306 Log: Integrate:
14307 [ 20049]
14308 Linewrapping.
14309
14310 [ 20051]
14311 Be more explicit than just 'characters'.
14312
14313 [ 20053]
14314 Subject: Patch to README.solaris
14315 From: Alan Burlison <Alan.Burlison@sun.com>
14316 Date: Mon, 07 Jul 2003 14:15:57 +0100
14317 Message-ID: <3F09728D.1070408@sun.com>
14318
14319 [ 20054]
14320 AUTHORS tweak.
14321
14322 [ 20058]
14323 Refashioned #20055: we cannot trust stdio to fail here.
14324
14325 [ 20059]
14326 Good catch from Gisle.
14327
14328 [ 20061]
14329 The nanosleep() probe was kaputt, fixed by Mark Bixby.
14330
14331 [ 20062]
14332 Mark Bixby ++.
14333
14334 [ 20063]
14335 Regexp bug in the docs, spotted by Enache's eagle eyes.
14336
14337 [ 20064]
14338 v-string API tweak from John Peacock to synchronize
14339 5.8.1-to-be as much as possible with 5.9.0-to-be.
14340 Branch: maint-5.8/perl
14341 !> AUTHORS README.solaris ext/Digest/MD5/t/badfile.t
14342 !> ext/Time/HiRes/Makefile.PL perl.c pod/perlapio.pod
14343 !> pod/perlfunc.pod pod/perlsyn.pod
14344____________________________________________________________________________
14345[ 20066] By: jhi on 2003/07/08 05:24:58
14346 Log: Retract #20065: I don't think this is the right way
14347 to patch this issue.
14348 Branch: perl
14349 ! Configure INSTALL Policy_sh.SH pod/perltoc.pod
14350____________________________________________________________________________
14351[ 20065] By: jhi on 2003/07/08 05:14:31
14352 Log: Configure tweak from Johnny Lam so that the
14353 INSTALLSITEMAN[13]DIR get correctly set.
14354 Branch: perl
14355 ! Configure INSTALL Policy_sh.SH pod/perltoc.pod
14356____________________________________________________________________________
14357[ 20064] By: jhi on 2003/07/08 05:01:15
14358 Log: v-string API tweak from John Peacock to synchronize
14359 5.8.1-to-be as much as possible with 5.9.0-to-be.
14360 Branch: maint-5.8/perl
14361 ! embed.fnc embed.h global.sym proto.h toke.c util.c
14362____________________________________________________________________________
14363[ 20063] By: rgs on 2003/07/07 18:58:47
14364 Log: Regexp bug in the docs, spotted by Enache's eagle eyes.
14365 Branch: perl
14366 ! pod/perlsyn.pod
14367____________________________________________________________________________
14368[ 20062] By: jhi on 2003/07/07 18:27:02
14369 Log: Mark Bixby ++.
14370 Branch: perl
14371 ! perl.c
14372____________________________________________________________________________
14373[ 20061] By: jhi on 2003/07/07 18:26:35
14374 Log: The nanosleep() probe was kaputt, fixed by Mark Bixby.
14375 Branch: perl
14376 ! ext/Time/HiRes/Makefile.PL
14377____________________________________________________________________________
14378[ 20060] By: nick on 2003/07/07 17:29:52
14379 Log: Integrate mainline (MD5 still core-ing because of
14380 //depot/perlio changes)
14381 Branch: perlio
14382 !> AUTHORS README.solaris ext/Digest/MD5/MD5.xs
14383 !> ext/Digest/MD5/t/badfile.t ext/Digest/MD5/t/files.t
14384 !> ext/Time/HiRes/Makefile.PL lib/Math/BigFloat.pm
14385 !> lib/Math/BigInt.pm lib/Math/BigInt/Calc.pm
14386 !> lib/Math/BigInt/t/biglog.t lib/Math/BigInt/t/mbimbf.t
14387 !> lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
14388 !> lib/Math/BigRat/t/bigratpm.inc lib/Math/BigRat/t/bigratpm.t
14389 !> perlio.c pod/perlapio.pod pod/perlfunc.pod pod/perlmodlib.PL
14390 !> pod/perlmodlib.pod pod/perlsyn.pod
14391____________________________________________________________________________
14392[ 20059] By: jhi on 2003/07/07 15:06:35
14393 Log: Good catch from Gisle.
14394 Branch: perl
14395 ! pod/perlfunc.pod
14396____________________________________________________________________________
14397[ 20058] By: jhi on 2003/07/07 14:12:27
14398 Log: Refashioned #20055: we cannot trust stdio to fail here.
14399 Branch: perl
14400 ! ext/Digest/MD5/t/badfile.t
14401____________________________________________________________________________
14402[ 20057] By: jhi on 2003/07/07 14:08:16
14403 Log: Retract #20056, #20055, #20052, #20050, #20048: the changes
14404 are just breaking more than they are fixing.
14405 Branch: perl
14406 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/badfile.t
14407 ! ext/Digest/MD5/t/files.t perlio.c
14408____________________________________________________________________________
14409[ 20056] By: jhi on 2003/07/07 13:31:14
14410 Log: Returning zero from PerlIO_read() is okay;
14411 update MD5 sums.
14412 Branch: perl
14413 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
14414____________________________________________________________________________
14415[ 20055] By: jhi on 2003/07/07 13:23:58
14416 Log: If perlio is completely out of the picture, we can
14417 get tripped by different stdio implementations.
14418 Branch: perl
14419 ! ext/Digest/MD5/t/badfile.t
14420____________________________________________________________________________
14421[ 20054] By: jhi on 2003/07/07 12:58:06
14422 Log: AUTHORS tweak.
14423 Branch: perl
14424 ! AUTHORS
14425____________________________________________________________________________
14426[ 20053] By: jhi on 2003/07/07 12:04:26
14427 Log: Subject: Patch to README.solaris
14428 From: Alan Burlison <Alan.Burlison@sun.com>
14429 Date: Mon, 07 Jul 2003 14:15:57 +0100
14430 Message-ID: <3F09728D.1070408@sun.com>
14431 Branch: perl
14432 ! README.solaris
14433____________________________________________________________________________
14434[ 20052] By: jhi on 2003/07/07 10:28:35
14435 Log: Update MD5 checksums.
14436 Branch: perl
14437 ! ext/Digest/MD5/t/files.t
14438____________________________________________________________________________
14439[ 20051] By: jhi on 2003/07/07 09:56:48
14440 Log: Be more explicit than just 'characters'.
14441 Branch: perl
14442 ! pod/perlfunc.pod
14443____________________________________________________________________________
14444[ 20050] By: jhi on 2003/07/07 09:38:28
14445 Log: Try making PerlIO errors more consistent.
14446 (1) Check early whether the filehandle is capable of
14447 the requested action.
14448 (2) PerlIO_read() really can return -1, and so can
14449 PerlIOUnix_read().
14450 (3) Some stdio implementations are more forgiving
14451 than others, so check also for errors recorded
14452 by PerlIO in PerlStdio_errno().
14453 Branch: perl
14454 ! perlio.c
14455____________________________________________________________________________
14456[ 20049] By: jhi on 2003/07/07 09:08:19
14457 Log: Linewrapping.
14458 Branch: perl
14459 ! pod/perlapio.pod
14460____________________________________________________________________________
14461[ 20048] By: jhi on 2003/07/07 09:06:58
14462 Log: PerlIO_read() can return negative.
14463 Branch: perl
14464 ! ext/Digest/MD5/MD5.xs
14465____________________________________________________________________________
14466[ 20047] By: jhi on 2003/07/07 08:09:52
14467 Log: MPE/iX is actually doing rather well.
14468 Branch: maint-5.8/perl
14469 ! pod/perldelta.pod
14470____________________________________________________________________________
14471[ 20046] By: jhi on 2003/07/07 06:13:32
14472 Log: Update Changes.
14473 Branch: maint-5.8/perl
14474 ! Changes patchlevel.h
14475____________________________________________________________________________
14476[ 20045] By: jhi on 2003/07/07 05:00:40
14477 Log: Integrate:
14478 [ 20030]
14479 Subject: [PATCH] for pod/perlfaq2.pod against latest snapshot for Alpaca
14480 From: merlyn@stonehenge.com (Randal L. Schwartz)
14481 Date: 05 Jul 2003 16:29:14 -0700
14482 Message-ID: <867k6weenp.fsf@blue.stonehenge.com>
14483
14484 [ 20034]
14485 Subject: [PATCH @19834] DProf fixes
14486 From: Radu Greab <radu@netsoft.ro>
14487 Date: Sun, 6 Jul 2003 20:09:12 +0300
14488 Message-ID: <16136.22456.99575.573777@ix.netsoft.ro>
14489
14490 [ 20035]
14491 PerlIOBase_pushed seems to have gone missing in change#20018
14492
14493 [ 20036]
14494 yet another symbol missing in change#20018
14495
14496 [ 20039]
14497 Update the CPAN mirrors list.
14498
14499 [ 20040]
14500 Subject: Re: [perl #5025] #line directive explination wrong
14501 From: Casey West <casey@geeknest.com>
14502 Date: Sun, 6 Jul 2003 18:24:46 -0400
14503 Message-ID: <20030706222446.GL7506@geeknest.com>
14504
14505 [ 20041]
14506 Upgrade BigInt and BigRat
14507 Subject: BigInt v1.65, Bigrat v0.10 - reloaded
14508 From: Tels <perl_dummy@bloodgate.com>
14509 Date: Sun, 6 Jul 2003 15:41:36 +0200
14510 Message-Id: <200307061158.23576@bloodgate.com>
14511
14512 [ 20042]
14513 MPE/iX tweak from Mark Bixby.
14514
14515 [ 20043]
14516 Use the existence, instead of the truth, to decide
14517 whether to scan for a symbol.
14518 (Also remove trailing spaces.)
14519 Branch: maint-5.8/perl
14520 +> t/lib/dprof/test7_t t/lib/dprof/test7_v t/lib/dprof/test8_t
14521 +> t/lib/dprof/test8_v
14522 !> MANIFEST ext/Devel/DProf/DProf.pm ext/Devel/DProf/DProf.t
14523 !> ext/Devel/DProf/DProf.xs ext/Time/HiRes/Makefile.PL
14524 !> lib/Math/BigFloat.pm lib/Math/BigInt.pm
14525 !> lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/biglog.t
14526 !> lib/Math/BigInt/t/mbimbf.t lib/Math/BigRat.pm
14527 !> lib/Math/BigRat/t/bigrat.t lib/Math/BigRat/t/bigratpm.inc
14528 !> lib/Math/BigRat/t/bigratpm.t makedef.pl perl.c
14529 !> pod/perldiag.pod pod/perlfaq2.pod pod/perlmodlib.PL
14530 !> pod/perlmodlib.pod pod/perlsyn.pod pod/perltodo.pod
14531 !> pod/perlvar.pod pp_ctl.c
14532____________________________________________________________________________
14533[ 20044] By: jhi on 2003/07/07 04:52:33
14534 Log: MANItweak.
14535 Branch: maint-5.8/perl
14536 ! MANIFEST
14537____________________________________________________________________________
14538[ 20043] By: jhi on 2003/07/07 04:36:22
14539 Log: Use the existence, instead of the truth, to decide
14540 whether to scan for a symbol.
14541 (Also remove trailing spaces.)
14542 Branch: perl
14543 ! ext/Time/HiRes/Makefile.PL
14544____________________________________________________________________________
14545[ 20042] By: jhi on 2003/07/07 04:29:35
14546 Log: MPE/iX tweak from Mark Bixby.
14547 Branch: perl
14548 ! ext/Time/HiRes/Makefile.PL
14549____________________________________________________________________________
14550[ 20041] By: rgs on 2003/07/06 21:45:37
14551 Log: Upgrade BigInt and BigRat
14552 Subject: BigInt v1.65, Bigrat v0.10 - reloaded
14553 From: Tels <perl_dummy@bloodgate.com>
14554 Date: Sun, 6 Jul 2003 15:41:36 +0200
14555 Message-Id: <200307061158.23576@bloodgate.com>
14556 Branch: perl
14557 ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
14558 ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/biglog.t
14559 ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigRat.pm
14560 ! lib/Math/BigRat/t/bigrat.t lib/Math/BigRat/t/bigratpm.inc
14561 ! lib/Math/BigRat/t/bigratpm.t
14562____________________________________________________________________________
14563[ 20040] By: rgs on 2003/07/06 21:11:20
14564 Log: Subject: Re: [perl #5025] #line directive explination wrong
14565 From: Casey West <casey@geeknest.com>
14566 Date: Sun, 6 Jul 2003 18:24:46 -0400
14567 Message-ID: <20030706222446.GL7506@geeknest.com>
14568 Branch: perl
14569 ! pod/perlsyn.pod
14570____________________________________________________________________________
14571[ 20039] By: jhi on 2003/07/06 20:19:31
14572 Log: Update the CPAN mirrors list.
14573 Branch: perl
14574 ! pod/perlmodlib.PL pod/perlmodlib.pod
14575____________________________________________________________________________
14576[ 20038] By: nick on 2003/07/06 19:20:05
14577 Log: Integrate mainline
14578 Branch: perlio
14579 +> ext/Digest/MD5/t/clone.t t/lib/dprof/test7_t
14580 +> t/lib/dprof/test7_v t/lib/dprof/test8_t t/lib/dprof/test8_v
14581 +> wince/perlhost.h wince/vdir.h wince/vmem.h
14582 !> (integrate 41 files)
14583____________________________________________________________________________
14584[ 20037] By: nick on 2003/07/06 18:38:39
14585 Log: extra checks
14586 Branch: perlio
14587 ! win32/distclean.bat
14588____________________________________________________________________________
14589[ 20036] By: gsar on 2003/07/06 17:11:59
14590 Log: yet another symbol missing in change#20018
14591 Branch: perl
14592 ! makedef.pl
14593____________________________________________________________________________
14594[ 20035] By: gsar on 2003/07/06 17:02:21
14595 Log: PerlIOBase_pushed seems to have gone missing in change#20018
14596 Branch: perl
14597 ! makedef.pl
14598____________________________________________________________________________
14599[ 20034] By: jhi on 2003/07/06 16:46:20
14600 Log: Subject: [PATCH @19834] DProf fixes
14601 From: Radu Greab <radu@netsoft.ro>
14602 Date: Sun, 6 Jul 2003 20:09:12 +0300
14603 Message-ID: <16136.22456.99575.573777@ix.netsoft.ro>
14604 Branch: perl
14605 + t/lib/dprof/test7_t t/lib/dprof/test7_v t/lib/dprof/test8_t
14606 + t/lib/dprof/test8_v
14607 ! MANIFEST ext/Devel/DProf/DProf.pm ext/Devel/DProf/DProf.t
14608 ! ext/Devel/DProf/DProf.xs perl.c pod/perldiag.pod
14609 ! pod/perltodo.pod pod/perlvar.pod pp_ctl.c
14610____________________________________________________________________________
14611[ 20033] By: jhi on 2003/07/06 16:26:13
14612 Log: Subject: [PATCH] improve WinCE port
14613 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
14614 Date: Sun, 6 Jul 2003 18:46:09 +0400
14615 Message-ID: <001401c343cd$8069cd40$ce5ec3d9@vad>
14616
14617 Subject: [PATCH] improve WinCE port -- addition
14618 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
14619 Date: Sun, 6 Jul 2003 19:50:47 +0400
14620 Message-ID: <000b01c343d6$7ff96920$5b5dc3d9@vad>
14621 Branch: maint-5.8/perl
14622 + wince/perlhost.h wince/vdir.h wince/vmem.h
14623 ! MANIFEST makedef.pl malloc_ctl.h wince/Makefile.ce
14624 ! wince/README.compile wince/README.perlce wince/config.ce
14625 ! wince/perllib.c wince/registry.bat wince/win32.h
14626 ! wince/win32io.c wince/win32iop.h wince/win32thread.c
14627 ! wince/win32thread.h wince/wince.c wince/wince.h
14628____________________________________________________________________________
14629[ 20032] By: jhi on 2003/07/06 16:21:33
14630 Log: Forgotten from change #20031.
14631 Branch: perl
14632 ! makedef.pl malloc_ctl.h
14633____________________________________________________________________________
14634[ 20031] By: jhi on 2003/07/06 16:16:08
14635 Log: Subject: [PATCH] improve WinCE port
14636 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
14637 Date: Sun, 6 Jul 2003 18:46:09 +0400
14638 Message-ID: <001401c343cd$8069cd40$ce5ec3d9@vad>
14639
14640 Subject: [PATCH] improve WinCE port -- addition
14641 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
14642 Date: Sun, 6 Jul 2003 19:50:47 +0400
14643 Message-ID: <000b01c343d6$7ff96920$5b5dc3d9@vad>
14644 Branch: perl
14645 + wince/perlhost.h wince/vdir.h wince/vmem.h
14646 ! MANIFEST wince/Makefile.ce wince/config.ce wince/perllib.c
14647 ! wince/win32.h wince/win32io.c wince/win32iop.h
14648 ! wince/win32thread.c wince/win32thread.h wince/wince.c
14649 ! wince/wince.h
14650____________________________________________________________________________
14651[ 20030] By: jhi on 2003/07/06 15:59:25
14652 Log: Subject: [PATCH] for pod/perlfaq2.pod against latest snapshot for Alpaca
14653 From: merlyn@stonehenge.com (Randal L. Schwartz)
14654 Date: 05 Jul 2003 16:29:14 -0700
14655 Message-ID: <867k6weenp.fsf@blue.stonehenge.com>
14656 Branch: perl
14657 ! pod/perlfaq2.pod
14658____________________________________________________________________________
14659[ 20029] By: jhi on 2003/07/06 15:53:28
14660 Log: More perldelta.
14661 Branch: maint-5.8/perl
14662 ! pod/perldelta.pod
14663____________________________________________________________________________
14664[ 20028] By: jhi on 2003/07/06 08:35:50
14665 Log: Integrate:
14666 [ 20016]
14667 OpenBSD sometimes gets -0, probably due to fp fuzziness..
14668
14669 [ 20017]
14670 Subject: [PATCH] fix for ext/threads/t/problems.t failures
14671 From: Dave Mitchell <davem@fdgroup.com>
14672 Date: Sat, 5 Jul 2003 19:12:51 +0100
14673 Message-ID: <20030705181251.GA14502@fdgroup.com>
14674
14675 [ 20018]
14676 Add PerlIOBuf_close to makedef.pl as pointed out by
14677 Vadim Konovalov; add also PerlIOBuf_dup; sort and remove
14678 duplicates.
14679
14680 [ 20019]
14681 Make a read from a write-only fh to set errno
14682 (found by Gisle)
14683
14684 [ 20020]
14685 Upgrade to Digest::MD5 2.25.
14686
14687 [ 20021]
14688 Reintroduce changes #19723 and #19723 that were not
14689 in Net::Ping 2.31; needed for Windows.
14690
14691 [ 20022]
14692 Subject: [PATCH] ExtUtils::MakeMaker 6.10_07
14693 From: Michael G Schwern <schwern@pobox.com>
14694 Date: Sat, 5 Jul 2003 16:59:49 -0700
14695 Message-ID: <20030705235949.GB3485@windhund.schwern.org>
14696
14697 [ 20023]
14698 Subject: Re: maint @ 19975 [PATCH lib/Test/Harness.pm]
14699 From: Michael G Schwern <schwern@pobox.com>
14700 Date: Sat, 5 Jul 2003 13:34:37 -0700
14701 Message-ID: <20030705203437.GB2598@windhund.schwern.org>
14702
14703 Print out the "ok" messages only once every second,
14704 this should make output much less and therefore testing
14705 much faster, especially on slower connections.
14706
14707 [ 20024]
14708 The change #20022 didn't work for Command.t.
14709
14710 [ 20025]
14711 Make the 'slow ok' feature optional.
14712
14713 [ 20026]
14714 FreeBSD: if someone *really* wants to use the system malloc.
14715 Branch: maint-5.8/perl
14716 +> ext/Digest/MD5/t/clone.t
14717 !> MANIFEST ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
14718 !> ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/badfile.t
14719 !> ext/Digest/MD5/t/files.t ext/threads/t/problems.t
14720 !> hints/freebsd.sh lib/Benchmark.t lib/ExtUtils/Changes
14721 !> lib/ExtUtils/META.yml lib/ExtUtils/MM_Unix.pm
14722 !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
14723 !> lib/ExtUtils/MakeMaker/FAQ.pod lib/ExtUtils/t/Command.t
14724 !> lib/Net/Ping/t/250_ping_hires.t lib/Net/Ping/t/450_service.t
14725 !> lib/Test/Harness.pm makedef.pl perlio.c
14726____________________________________________________________________________
14727[ 20027] By: jhi on 2003/07/06 08:32:12
14728 Log: perldelta updates from Sarathy.
14729 Branch: maint-5.8/perl
14730 ! pod/perldelta.pod
14731____________________________________________________________________________
14732[ 20026] By: jhi on 2003/07/06 08:14:48
14733 Log: FreeBSD: if someone *really* wants to use the system malloc.
14734 Branch: perl
14735 ! hints/freebsd.sh
14736____________________________________________________________________________
14737[ 20025] By: jhi on 2003/07/06 07:48:01
14738 Log: Make the 'slow ok' feature optional.
14739 Branch: perl
14740 ! lib/Test/Harness.pm
14741____________________________________________________________________________
14742[ 20024] By: jhi on 2003/07/06 07:44:57
14743 Log: The change #20022 didn't work for Command.t.
14744 Branch: perl
14745 ! lib/ExtUtils/t/Command.t
14746____________________________________________________________________________
14747[ 20023] By: jhi on 2003/07/06 07:29:22
14748 Log: Subject: Re: maint @ 19975 [PATCH lib/Test/Harness.pm]
14749 From: Michael G Schwern <schwern@pobox.com>
14750 Date: Sat, 5 Jul 2003 13:34:37 -0700
14751 Message-ID: <20030705203437.GB2598@windhund.schwern.org>
14752
14753 Print out the "ok" messages only once every second,
14754 this should make output much less and therefore testing
14755 much faster, especially on slower connections.
14756 Branch: perl
14757 ! lib/Test/Harness.pm
14758____________________________________________________________________________
14759[ 20022] By: jhi on 2003/07/06 07:26:52
14760 Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_07
14761 From: Michael G Schwern <schwern@pobox.com>
14762 Date: Sat, 5 Jul 2003 16:59:49 -0700
14763 Message-ID: <20030705235949.GB3485@windhund.schwern.org>
14764 Branch: perl
14765 ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
14766 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
14767 ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker/FAQ.pod
14768 ! lib/ExtUtils/t/Command.t
14769____________________________________________________________________________
14770[ 20021] By: jhi on 2003/07/06 07:19:17
14771 Log: Reintroduce changes #19723 and #19723 that were not
14772 in Net::Ping 2.31; needed for Windows.
14773 Branch: perl
14774 ! lib/Net/Ping/t/250_ping_hires.t lib/Net/Ping/t/450_service.t
14775____________________________________________________________________________
14776[ 20020] By: jhi on 2003/07/05 19:12:21
14777 Log: Upgrade to Digest::MD5 2.25.
14778 Branch: perl
14779 + ext/Digest/MD5/t/clone.t
14780 ! MANIFEST ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
14781 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/badfile.t
14782 ! ext/Digest/MD5/t/files.t
14783____________________________________________________________________________
14784[ 20019] By: jhi on 2003/07/05 18:40:51
14785 Log: Make a read from a write-only fh to set errno
14786 (found by Gisle)
14787 Branch: perl
14788 ! perlio.c
14789____________________________________________________________________________
14790[ 20018] By: jhi on 2003/07/05 18:05:19
14791 Log: Add PerlIOBuf_close to makedef.pl as pointed out by
14792 Vadim Konovalov; add also PerlIOBuf_dup; sort and remove
14793 duplicates.
14794 Branch: perl
14795 ! makedef.pl
14796____________________________________________________________________________
14797[ 20017] By: jhi on 2003/07/05 17:47:47
14798 Log: Subject: [PATCH] fix for ext/threads/t/problems.t failures
14799 From: Dave Mitchell <davem@fdgroup.com>
14800 Date: Sat, 5 Jul 2003 19:12:51 +0100
14801 Message-ID: <20030705181251.GA14502@fdgroup.com>
14802 Branch: perl
14803 ! ext/threads/t/problems.t
14804____________________________________________________________________________
14805[ 20016] By: jhi on 2003/07/05 17:36:34
14806 Log: OpenBSD sometimes gets -0, probably due to fp fuzziness..
14807 Branch: perl
14808 ! lib/Benchmark.t
14809____________________________________________________________________________
14810[ 20015] By: nick on 2003/07/05 15:49:13
14811 Log: Integrate mainline
14812 Branch: perlio
14813 +> lib/Locale/Maketext/Guts.pm lib/Locale/Maketext/GutsLoader.pm
14814 +> lib/Locale/Maketext/t/90utf8.t lib/Math/BigInt/t/biglog.t
14815 +> lib/Math/BigInt/t/req_mbf0.t lib/Math/BigInt/t/req_mbf1.t
14816 +> lib/Math/BigInt/t/req_mbfa.t lib/Math/BigInt/t/req_mbfi.t
14817 +> lib/Math/BigInt/t/req_mbfn.t lib/Math/BigInt/t/req_mbfw.t
14818 +> lib/Math/BigInt/t/trap.t lib/Math/BigInt/t/use_mbfw.t
14819 +> lib/Math/BigRat/t/bigratup.t lib/Math/BigRat/t/requirer.t
14820 +> lib/Math/BigRat/t/trap.t
14821 !> (integrate 134 files)
14822____________________________________________________________________________
14823[ 20014] By: jhi on 2003/07/05 14:10:20
14824 Log: Update Changes.
14825 Branch: maint-5.8/perl
14826 ! Changes patchlevel.h
14827____________________________________________________________________________
14828[ 20013] By: jhi on 2003/07/05 13:58:18
14829 Log: Integrate:
14830 [ 19998]
14831 Fix non-numeric $VERSION.
14832
14833 [ 19999]
14834 Macro reorganization in the Makefile, so that $(LDLIBPTH) always
14835 appears just before the name of the command to be run. See
14836
14837 Subject: Re: PERL_SKIP_TTY_TEST fix
14838 From: Alexey Tourbin <at@altlinux.ru>
14839 Date: Fri, 4 Jul 2003 17:25:34 +0400
14840 Message-ID: <20030704132534.GC1531@julia.office.altlinux.ru>
14841
14842 [ 20000]
14843 Upgrade to Math::BigInt v1.65, Math::BigRat v0.10,
14844 and bignum v0.14.
14845
14846 [ 20001]
14847 Add a new test target in the makefile, test_harness_notty.
14848 It's like test_harness, but sets HARNESS_NOTTY=1 to make
14849 Test::Harness' output less blinking.
14850
14851 [ 20002]
14852 Author list update (to be continued...)
14853
14854 [ 20003]
14855 Allow to create more than one Shell object :
14856 Subject: [patch] Shell.pm fix
14857 From: Stéphane Payrard <stef@payrard.net>
14858 Date: Sat, 5 Jul 2003 01:16:50 +0200
14859 Message-ID: <20030704231650.GA19701@stefp.dyndns.org>
14860
14861 [ 20004]
14862 Subject: [PATCH] dump.c -Wformat; Re: maint @ 19975, maint @ 19997
14863 From: Robin Barker <Robin.Barker@npl.co.uk>
14864 Date: Fri, 4 Jul 2003 19:15:01 +0100
14865 Message-ID: <533D273D4014D411AB1D00062938C4D9040465BD@hotel.npl.co.uk>
14866
14867 [ 20006]
14868 Subject: [PATCH] MM_VMS.pm -- fix xs installation
14869 From: "Craig A. Berry" <craigberry@mac.com>
14870 Date: Sat, 05 Jul 2003 00:38:28 -0500
14871 Message-ID: <3F066454.90003@mac.com>
14872
14873 [ 20007]
14874 Allow $ENV{PERL_HASH_SEED_DEBUG} to work even under taint;
14875 since CGI scripts are (should be) run under -T, being able
14876 to show the HASH_SEED in case of problems is good.
14877 The $ENV{PERL_HASH_SEED} is still ignored under taint.
14878
14879 [ 20008]
14880 IIRC gcc would complain about if (s = ...).
14881
14882 [ 20009]
14883 The logic for additional randomisation for 64-bit UV
14884 cases was wrong.
14885
14886 [ 20010]
14887 Comment out some debugging output in Math::BigInt, that
14888 causes confusion in t/TEST when running Math/BigInt/t/bare_mbi.t.
14889
14890 [ 20012]
14891 Be explicit about the $0 pain in Linux 2.2.
14892 Branch: maint-5.8/perl
14893 +> lib/Math/BigInt/t/biglog.t lib/Math/BigInt/t/req_mbf0.t
14894 +> lib/Math/BigInt/t/req_mbf1.t lib/Math/BigInt/t/req_mbfa.t
14895 +> lib/Math/BigInt/t/req_mbfi.t lib/Math/BigInt/t/req_mbfn.t
14896 +> lib/Math/BigInt/t/req_mbfw.t lib/Math/BigInt/t/trap.t
14897 +> lib/Math/BigInt/t/use_mbfw.t lib/Math/BigRat/t/bigratup.t
14898 +> lib/Math/BigRat/t/requirer.t lib/Math/BigRat/t/trap.t
14899 !> (integrate 48 files)
14900____________________________________________________________________________
14901[ 20012] By: jhi on 2003/07/05 13:46:05
14902 Log: Be explicit about the $0 pain in Linux 2.2.
14903 Branch: perl
14904 ! pod/perlvar.pod
14905____________________________________________________________________________
14906[ 20011] By: jhi on 2003/07/05 13:44:30
14907 Log: perldelta tweaks.
14908 Branch: maint-5.8/perl
14909 ! pod/perldelta.pod
14910____________________________________________________________________________
14911[ 20010] By: rgs on 2003/07/05 12:06:41
14912 Log: Comment out some debugging output in Math::BigInt, that
14913 causes confusion in t/TEST when running Math/BigInt/t/bare_mbi.t.
14914 Branch: perl
14915 ! lib/Math/BigInt.pm
14916____________________________________________________________________________
14917[ 20009] By: jhi on 2003/07/05 10:56:55
14918 Log: The logic for additional randomisation for 64-bit UV
14919 cases was wrong.
14920 Branch: perl
14921 ! perl.c
14922____________________________________________________________________________
14923[ 20008] By: jhi on 2003/07/05 09:10:46
14924 Log: IIRC gcc would complain about if (s = ...).
14925 Branch: perl
14926 ! perl.c
14927____________________________________________________________________________
14928[ 20007] By: jhi on 2003/07/05 09:09:44
14929 Log: Allow $ENV{PERL_HASH_SEED_DEBUG} to work even under taint;
14930 since CGI scripts are (should be) run under -T, being able
14931 to show the HASH_SEED in case of problems is good.
14932 The $ENV{PERL_HASH_SEED} is still ignored under taint.
14933 Branch: perl
14934 ! perl.c
14935____________________________________________________________________________
14936[ 20006] By: jhi on 2003/07/05 07:56:56
14937 Log: Subject: [PATCH] MM_VMS.pm -- fix xs installation
14938 From: "Craig A. Berry" <craigberry@mac.com>
14939 Date: Sat, 05 Jul 2003 00:38:28 -0500
14940 Message-ID: <3F066454.90003@mac.com>
14941 Branch: perl
14942 ! lib/ExtUtils/MM_VMS.pm
14943____________________________________________________________________________
14944[ 20005] By: jhi on 2003/07/05 07:50:53
14945 Log: Subject: [PATCH maint] partially rescind Concise pad patch.
14946 From: Dave Mitchell <davem@fdgroup.com>
14947 Date: Fri, 4 Jul 2003 22:10:11 +0100
14948 Message-ID: <20030704211010.GD10426@fdgroup.com>
14949 Branch: maint-5.8/perl
14950 ! ext/B/B/Concise.pm
14951____________________________________________________________________________
14952[ 20004] By: jhi on 2003/07/05 07:47:02
14953 Log: Subject: [PATCH] dump.c -Wformat; Re: maint @ 19975, maint @ 19997
14954 From: Robin Barker <Robin.Barker@npl.co.uk>
14955 Date: Fri, 4 Jul 2003 19:15:01 +0100
14956 Message-ID: <533D273D4014D411AB1D00062938C4D9040465BD@hotel.npl.co.uk>
14957 Branch: perl
14958 ! dump.c
14959____________________________________________________________________________
14960[ 20003] By: rgs on 2003/07/05 07:45:16
14961 Log: Allow to create more than one Shell object :
14962 Subject: [patch] Shell.pm fix
14963 From: Stéphane Payrard <stef@payrard.net>
14964 Date: Sat, 5 Jul 2003 01:16:50 +0200
14965 Message-ID: <20030704231650.GA19701@stefp.dyndns.org>
14966 Branch: perl
14967 ! lib/Shell.pm
14968____________________________________________________________________________
14969[ 20002] By: rgs on 2003/07/04 21:49:05
14970 Log: Author list update (to be continued...)
14971 Branch: perl
14972 ! AUTHORS
14973____________________________________________________________________________
14974[ 20001] By: rgs on 2003/07/04 21:42:12
14975 Log: Add a new test target in the makefile, test_harness_notty.
14976 It's like test_harness, but sets HARNESS_NOTTY=1 to make
14977 Test::Harness' output less blinking.
14978 Branch: perl
14979 ! Makefile.SH
14980____________________________________________________________________________
14981[ 20000] By: rgs on 2003/07/04 20:58:05
14982 Log: Upgrade to Math::BigInt v1.65, Math::BigRat v0.10,
14983 and bignum v0.14.
14984 Branch: perl
14985 + lib/Math/BigInt/t/biglog.t lib/Math/BigInt/t/req_mbf0.t
14986 + lib/Math/BigInt/t/req_mbf1.t lib/Math/BigInt/t/req_mbfa.t
14987 + lib/Math/BigInt/t/req_mbfi.t lib/Math/BigInt/t/req_mbfn.t
14988 + lib/Math/BigInt/t/req_mbfw.t lib/Math/BigInt/t/trap.t
14989 + lib/Math/BigInt/t/use_mbfw.t lib/Math/BigRat/t/bigratup.t
14990 + lib/Math/BigRat/t/requirer.t lib/Math/BigRat/t/trap.t
14991 ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
14992 ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
14993 ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bare_mif.t
14994 ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
14995 ! lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
14996 ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/bigints.t
14997 ! lib/Math/BigInt/t/config.t lib/Math/BigInt/t/inf_nan.t
14998 ! lib/Math/BigInt/t/mbi_rand.t lib/Math/BigInt/t/mbimbf.inc
14999 ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigInt/t/require.t
15000 ! lib/Math/BigInt/t/sub_mbf.t lib/Math/BigInt/t/sub_mbi.t
15001 ! lib/Math/BigInt/t/sub_mif.t lib/Math/BigInt/t/upgrade.inc
15002 ! lib/Math/BigInt/t/upgrade.t lib/Math/BigInt/t/with_sub.t
15003 ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
15004 ! lib/Math/BigRat/t/bigratpm.inc lib/Math/BigRat/t/bigratpm.t
15005 ! lib/bigint.pm lib/bignum.pm lib/bignum/t/bigint.t
15006 ! lib/bignum/t/bignum.t lib/bignum/t/bigrat.t
15007 ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
15008 ! lib/bignum/t/brinfnan.t lib/bigrat.pm
15009 ! t/lib/Math/BigFloat/Subclass.pm t/lib/Math/BigInt/BareCalc.pm
15010 ! t/lib/Math/BigInt/Subclass.pm
15011____________________________________________________________________________
15012[ 19999] By: rgs on 2003/07/04 19:39:01
15013 Log: Macro reorganization in the Makefile, so that $(LDLIBPTH) always
15014 appears just before the name of the command to be run. See
15015
15016 Subject: Re: PERL_SKIP_TTY_TEST fix
15017 From: Alexey Tourbin <at@altlinux.ru>
15018 Date: Fri, 4 Jul 2003 17:25:34 +0400
15019 Message-ID: <20030704132534.GC1531@julia.office.altlinux.ru>
15020 Branch: perl
15021 ! Makefile.SH
15022____________________________________________________________________________
15023[ 19998] By: rgs on 2003/07/04 19:31:33
15024 Log: Fix non-numeric $VERSION.
15025 Branch: perl
15026 ! lib/Math/BigInt.pm
15027____________________________________________________________________________
15028[ 19997] By: jhi on 2003/07/04 14:45:20
15029 Log: Update Changes.
15030 Branch: maint-5.8/perl
15031 ! Changes patchlevel.h
15032____________________________________________________________________________
15033[ 19996] By: jhi on 2003/07/04 14:41:18
15034 Log: Integrate:
15035 [ 19993]
15036 Oops.
15037
15038 [ 19994]
15039 More $0 sad tales.
15040
15041 [ 19995]
15042 According to Tels our M::BI is _better_ than the 1.64 in CPAN.
15043 Branch: maint-5.8/perl
15044 !> ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
15045 !> lib/Math/BigInt.pm pod/perlvar.pod
15046____________________________________________________________________________
15047[ 19995] By: jhi on 2003/07/04 14:36:56
15048 Log: According to Tels our M::BI is _better_ than the 1.64 in CPAN.
15049 Branch: perl
15050 ! lib/Math/BigInt.pm
15051____________________________________________________________________________
15052[ 19994] By: jhi on 2003/07/04 14:36:17
15053 Log: More $0 sad tales.
15054 Branch: perl
15055 ! pod/perlvar.pod
15056____________________________________________________________________________
15057[ 19993] By: jhi on 2003/07/04 14:34:40
15058 Log: Oops.
15059 Branch: perl
15060 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
15061____________________________________________________________________________
15062[ 19992] By: jhi on 2003/07/04 13:58:29
15063 Log: Update Changes.
15064 Branch: maint-5.8/perl
15065 ! Changes patchlevel.h
15066____________________________________________________________________________
15067[ 19991] By: jhi on 2003/07/04 13:54:33
15068 Log: Integrate:
15069 [ 19976]
15070 Subject: [PATCH: perl@19956] switch vmspipe.com over to using local symbols instead of global
15071 From: PPrymmer@factset.com
15072 Date: Thu, 3 Jul 2003 23:59:51 -0400
15073 Message-ID: <OF4DF4AA68.1EF12116-ON85256D59.00120F5E-85256D59.0015F58D@factset.com>
15074
15075 [ 19977]
15076 $0 is pain.
15077
15078 [ 19979]
15079 Remove PL_earlytaint since the hash seed code
15080 can be delayed until perl_parse().
15081
15082 [ 19980]
15083 line_t is U32, not I32.
15084
15085 [ 19981]
15086 AUTHORS updates.
15087
15088 [ 19982]
15089 No energy now to figure out what is wrong with $0
15090 (or ps) in Tru64. The test works fine when run from
15091 command line.
15092
15093 [ 19984]
15094 Upgrade to CGI.pm 2.97.
15095
15096 [ 19985]
15097 Upgrade to CPAN 1.71.
15098
15099 [ 19986]
15100 Upgrade to Digest::MD5 2.24, with few extra tweaks:
15101 (1) make the PATCHLEVEL logic as it is with List::Util
15102 (more portable to older Perls)
15103 (2) regen the MD5 checksums with ...
15104 (3) ... the Mac OS Classic checksums generated via MacRoman
15105 (just a guess)
15106 (4) Keep the core Makefile.PL.
15107
15108 [ 19987]
15109 Upgrade to Locale::Maketext 1.06.
15110
15111 [ 19988]
15112 Upgrade to Net::Ping 2.31.
15113
15114 [ 19989]
15115 Upgrade to Text::Balanced 1.94.
15116
15117 [ 19990]
15118 Upgrade to PodParser 1.23; but do not update
15119 t/pod/find.t or t/pod/testp2pt.pl since the
15120 first one does not work at all under core,
15121 and the second change would drop MacOS Classic
15122 portability tweaks introduced by change #18669.
15123 Branch: maint-5.8/perl
15124 +> lib/Locale/Maketext/Guts.pm lib/Locale/Maketext/GutsLoader.pm
15125 +> lib/Locale/Maketext/t/90utf8.t
15126 !> (integrate 40 files)
15127____________________________________________________________________________
15128[ 19990] By: jhi on 2003/07/04 13:50:29
15129 Log: Upgrade to PodParser 1.23; but do not update
15130 t/pod/find.t or t/pod/testp2pt.pl since the
15131 first one does not work at all under core,
15132 and the second change would drop MacOS Classic
15133 portability tweaks introduced by change #18669.
15134 Branch: perl
15135 ! lib/Pod/Find.pm lib/Pod/Usage.pm
15136____________________________________________________________________________
15137[ 19989] By: jhi on 2003/07/04 13:20:51
15138 Log: Upgrade to Text::Balanced 1.94.
15139 Branch: perl
15140 ! lib/Text/Balanced.pm lib/Text/Balanced/Changes
15141 ! lib/Text/Balanced/README lib/Text/Balanced/t/extcbk.t
15142 ! lib/Text/Balanced/t/extvar.t lib/Text/Balanced/t/gentag.t
15143____________________________________________________________________________
15144[ 19988] By: jhi on 2003/07/04 13:17:22
15145 Log: Upgrade to Net::Ping 2.31.
15146 Branch: perl
15147 ! lib/Net/Ping.pm lib/Net/Ping/Changes
15148 ! lib/Net/Ping/t/250_ping_hires.t
15149 ! lib/Net/Ping/t/300_ping_stream.t lib/Net/Ping/t/450_service.t
15150____________________________________________________________________________
15151[ 19987] By: jhi on 2003/07/04 13:09:04
15152 Log: Upgrade to Locale::Maketext 1.06.
15153 Branch: perl
15154 + lib/Locale/Maketext/Guts.pm lib/Locale/Maketext/GutsLoader.pm
15155 + lib/Locale/Maketext/t/90utf8.t
15156 ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
15157____________________________________________________________________________
15158[ 19986] By: jhi on 2003/07/04 12:59:45
15159 Log: Upgrade to Digest::MD5 2.24, with few extra tweaks:
15160 (1) make the PATCHLEVEL logic as it is with List::Util
15161 (more portable to older Perls)
15162 (2) regen the MD5 checksums with ...
15163 (3) ... the Mac OS Classic checksums generated via MacRoman
15164 (just a guess)
15165 (4) Keep the core Makefile.PL.
15166 Branch: perl
15167 ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
15168 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
15169____________________________________________________________________________
15170[ 19985] By: jhi on 2003/07/04 12:43:10
15171 Log: Upgrade to CPAN 1.71.
15172 Branch: perl
15173 ! lib/CPAN.pm
15174____________________________________________________________________________
15175[ 19984] By: jhi on 2003/07/04 12:39:20
15176 Log: Upgrade to CGI.pm 2.97.
15177 Branch: perl
15178 ! lib/CGI.pm lib/CGI/Carp.pm
15179____________________________________________________________________________
15180[ 19983] By: jhi on 2003/07/04 12:28:01
15181 Log: perldelta tweak.
15182 Branch: maint-5.8/perl
15183 ! pod/perldelta.pod
15184____________________________________________________________________________
15185[ 19982] By: jhi on 2003/07/04 10:45:05
15186 Log: No energy now to figure out what is wrong with $0
15187 (or ps) in Tru64. The test works fine when run from
15188 command line.
15189 Branch: perl
15190 ! ext/threads/t/join.t
15191____________________________________________________________________________
15192[ 19981] By: jhi on 2003/07/04 10:34:42
15193 Log: AUTHORS updates.
15194 Branch: perl
15195 ! AUTHORS
15196____________________________________________________________________________
15197[ 19980] By: jhi on 2003/07/04 08:40:51
15198 Log: line_t is U32, not I32.
15199 Branch: perl
15200 ! bytecode.pl
15201____________________________________________________________________________
15202[ 19979] By: jhi on 2003/07/04 08:33:32
15203 Log: Remove PL_earlytaint since the hash seed code
15204 can be delayed until perl_parse().
15205 Branch: perl
15206 ! dosish.h embedvar.h epoc/epocish.h mpeix/mpeixish.h
15207 ! os2/os2ish.h perl.c perl.h perlapi.h perlvars.h
15208 ! plan9/plan9ish.h unixish.h vms/vmsish.h
15209____________________________________________________________________________
15210[ 19978] By: jhi on 2003/07/04 05:27:56
15211 Log: perldelta tweaks.
15212 Branch: maint-5.8/perl
15213 ! pod/perldelta.pod
15214____________________________________________________________________________
15215[ 19977] By: jhi on 2003/07/04 04:56:41
15216 Log: $0 is pain.
15217 Branch: perl
15218 ! ext/threads/t/join.t
15219____________________________________________________________________________
15220[ 19976] By: jhi on 2003/07/04 04:48:37
15221 Log: Subject: [PATCH: perl@19956] switch vmspipe.com over to using local symbols instead of global
15222 From: PPrymmer@factset.com
15223 Date: Thu, 3 Jul 2003 23:59:51 -0400
15224 Message-ID: <OF4DF4AA68.1EF12116-ON85256D59.00120F5E-85256D59.0015F58D@factset.com>
15225 Branch: perl
15226 ! vms/vms.c vms/vmspipe.com
15227____________________________________________________________________________
15228[ 19975] By: jhi on 2003/07/03 21:39:48
15229 Log: Update Changes.
15230 Branch: maint-5.8/perl
15231 ! Changes patchlevel.h
15232____________________________________________________________________________
15233[ 19974] By: jhi on 2003/07/03 21:36:16
15234 Log: Integrate:
15235 [ 19971]
15236 Subject: [PATCH] t/op/magic.t on FreeBSD
15237 From: Slaven Rezic <slaven@rezic.de>
15238 Date: Fri, 4 Jul 2003 00:35:51 +0200 (CEST)
15239 Message-Id: <200307032235.h63MZpKY036791@vran.herceg.de>
15240
15241 [ 19972]
15242 Subject: [PATCH] installperl -n
15243 From: Slaven Rezic <slaven@rezic.de>
15244 Date: Fri, 4 Jul 2003 00:41:36 +0200 (CEST)
15245 Message-Id: <200307032241.h63Mfaka041281@vran.herceg.de>
15246
15247 [ 19973]
15248 Bump Time::HiRes version to 1.50.
15249 Branch: maint-5.8/perl
15250 !> ext/Time/HiRes/HiRes.pm installperl t/op/magic.t
15251____________________________________________________________________________
15252[ 19973] By: jhi on 2003/07/03 21:34:03
15253 Log: Bump Time::HiRes version to 1.50.
15254 Branch: perl
15255 ! ext/Time/HiRes/HiRes.pm
15256____________________________________________________________________________
15257[ 19972] By: jhi on 2003/07/03 21:33:10
15258 Log: Subject: [PATCH] installperl -n
15259 From: Slaven Rezic <slaven@rezic.de>
15260 Date: Fri, 4 Jul 2003 00:41:36 +0200 (CEST)
15261 Message-Id: <200307032241.h63Mfaka041281@vran.herceg.de>
15262 Branch: perl
15263 ! installperl
15264____________________________________________________________________________
15265[ 19971] By: jhi on 2003/07/03 21:31:47
15266 Log: Subject: [PATCH] t/op/magic.t on FreeBSD
15267 From: Slaven Rezic <slaven@rezic.de>
15268 Date: Fri, 4 Jul 2003 00:35:51 +0200 (CEST)
15269 Message-Id: <200307032235.h63MZpKY036791@vran.herceg.de>
15270 Branch: perl
15271 ! t/op/magic.t
15272____________________________________________________________________________
15273[ 19970] By: jhi on 2003/07/03 21:28:08
15274 Log: Integrate:
15275 [ 19969]
15276 Ask Schwern.
15277 Branch: maint-5.8/perl
15278 - Porting/Modules
15279 !> AUTHORS MANIFEST
15280____________________________________________________________________________
15281[ 19969] By: jhi on 2003/07/03 21:27:11
15282 Log: Ask Schwern.
15283 Branch: perl
15284 - Porting/Modules
15285 ! AUTHORS MANIFEST
15286____________________________________________________________________________
15287[ 19968] By: jhi on 2003/07/03 19:17:29
15288 Log: Integrate:
15289 [ 19957]
15290 Subject: Re: randomly untainting?
15291 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
15292 Date: Thu, 3 Jul 2003 14:58:18 +0200
15293 Message-Id: <20030703145818.5bdd2873.rgarciasuarez@free.fr>
15294 (plus extra debug printing)
15295
15296 [ 19958]
15297 Regen Configure, Glossary, et alia.
15298
15299 [ 19959]
15300 Regen perltoc.
15301
15302 [ 19960]
15303 perldelta tweaks.
15304
15305 [ 19961]
15306 Extra light testing for the UTF-8 cache
15307 (that it isn't broken, not that it helps).
15308
15309 [ 19962]
15310 Add at least meager beginnings of assertion checks for
15311 the UTF-8 length/pos cache. It's not as full as I would
15312 like since the exact behaviour of the second half of the
15313 cache, used in substr(), eludes me right now.
15314
15315 [ 19963]
15316 Revert #19957 as requested by Rafael.
15317
15318 [ 19964]
15319 Subject: Re: randomly untainting?
15320 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
15321 Date: Thu, 3 Jul 2003 17:35:09 +0200
15322 Message-Id: <20030703173509.0c007f0f.rgarciasuarez@free.fr>
15323
15324 [ 19965]
15325 Subject: [PATCH] Win32: fix WM_TIMER handling
15326 From: Mattia Barbon <mbarbon@dsi.unive.it>
15327 Date: Thu, 3 Jul 2003 16:05:23 +0200 (ora legale Europa occidentale)
15328 Message-ID: <Mahogany-0.64.2-1016-20030703-160523.00@rbnet.it>
15329
15330 [ 19966]
15331 Subject: Re: [PATCH] Bring Time::Local to 1.07
15332 From: Dave Rolsky <autarch@urth.org>
15333 Date: Thu, 3 Jul 2003 14:35:56 -0500 (CDT)
15334 Message-ID: <Pine.LNX.4.56.0307031435270.29915@urth.org>
15335
15336 [ 19967]
15337 Add autarch and Time::Local to Modules.
15338 Branch: maint-5.8/perl
15339 !> Porting/Modules ext/List/Util/t/tainted.t lib/Time/Local.pm
15340 !> sv.c t/TestInit.pm t/op/length.t win32/win32.c
15341____________________________________________________________________________
15342[ 19967] By: jhi on 2003/07/03 19:02:40
15343 Log: Add autarch and Time::Local to Modules.
15344 Branch: perl
15345 ! Porting/Modules
15346____________________________________________________________________________
15347[ 19966] By: jhi on 2003/07/03 18:59:44
15348 Log: Subject: Re: [PATCH] Bring Time::Local to 1.07
15349 From: Dave Rolsky <autarch@urth.org>
15350 Date: Thu, 3 Jul 2003 14:35:56 -0500 (CDT)
15351 Message-ID: <Pine.LNX.4.56.0307031435270.29915@urth.org>
15352 Branch: perl
15353 ! lib/Time/Local.pm
15354____________________________________________________________________________
15355[ 19965] By: jhi on 2003/07/03 18:58:25
15356 Log: Subject: [PATCH] Win32: fix WM_TIMER handling
15357 From: Mattia Barbon <mbarbon@dsi.unive.it>
15358 Date: Thu, 3 Jul 2003 16:05:23 +0200 (ora legale Europa occidentale)
15359 Message-ID: <Mahogany-0.64.2-1016-20030703-160523.00@rbnet.it>
15360 Branch: perl
15361 ! win32/win32.c
15362____________________________________________________________________________
15363[ 19964] By: jhi on 2003/07/03 18:56:26
15364 Log: Subject: Re: randomly untainting?
15365 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
15366 Date: Thu, 3 Jul 2003 17:35:09 +0200
15367 Message-Id: <20030703173509.0c007f0f.rgarciasuarez@free.fr>
15368 Branch: perl
15369 ! t/TestInit.pm
15370____________________________________________________________________________
15371[ 19963] By: jhi on 2003/07/03 18:55:37
15372 Log: Revert #19957 as requested by Rafael.
15373 Branch: perl
15374 ! ext/List/Util/t/tainted.t
15375____________________________________________________________________________
15376[ 19962] By: jhi on 2003/07/03 18:54:09
15377 Log: Add at least meager beginnings of assertion checks for
15378 the UTF-8 length/pos cache. It's not as full as I would
15379 like since the exact behaviour of the second half of the
15380 cache, used in substr(), eludes me right now.
15381 Branch: perl
15382 ! sv.c
15383____________________________________________________________________________
15384[ 19961] By: jhi on 2003/07/03 13:57:47
15385 Log: Extra light testing for the UTF-8 cache
15386 (that it isn't broken, not that it helps).
15387 Branch: perl
15388 ! t/op/length.t
15389____________________________________________________________________________
15390[ 19960] By: jhi on 2003/07/03 13:43:42
15391 Log: perldelta tweaks.
15392 Branch: maint-5.8/perl
15393 ! pod/perldelta.pod
15394____________________________________________________________________________
15395[ 19959] By: jhi on 2003/07/03 13:36:50
15396 Log: Regen perltoc.
15397 Branch: maint-5.8/perl
15398 ! pod/perltoc.pod
15399____________________________________________________________________________
15400[ 19958] By: jhi on 2003/07/03 13:27:12
15401 Log: Regen Configure, Glossary, et alia.
15402 Branch: maint-5.8/perl
15403 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
15404____________________________________________________________________________
15405[ 19957] By: jhi on 2003/07/03 12:01:25
15406 Log: Subject: Re: randomly untainting?
15407 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
15408 Date: Thu, 3 Jul 2003 14:58:18 +0200
15409 Message-Id: <20030703145818.5bdd2873.rgarciasuarez@free.fr>
15410 (plus extra debug printing)
15411 Branch: perl
15412 ! ext/List/Util/t/tainted.t
15413____________________________________________________________________________
15414[ 19956] By: jhi on 2003/07/03 11:31:55
15415 Log: Update Changes.
15416 Branch: maint-5.8/perl
15417 ! Changes patchlevel.h
15418____________________________________________________________________________
15419[ 19955] By: jhi on 2003/07/03 11:26:56
15420 Log: Integrate:
15421 [ 19952]
15422 Tiny tweak to perlartistic from Robin Barker.
15423
15424 [ 19954]
15425 Subject: Re: maint @ 19923
15426 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
15427 Date: Thu, 3 Jul 2003 15:57:55 +0400
15428 Message-ID: <048e01c3415b$da0fe510$7c5ec3d9@vad>
15429 (WinCE update)
15430 Branch: maint-5.8/perl
15431 !> pod/perlartistic.pod wince/Makefile.ce wince/wince.c
15432____________________________________________________________________________
15433[ 19954] By: jhi on 2003/07/03 11:10:21
15434 Log: Subject: Re: maint @ 19923
15435 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
15436 Date: Thu, 3 Jul 2003 15:57:55 +0400
15437 Message-ID: <048e01c3415b$da0fe510$7c5ec3d9@vad>
15438 Branch: perl
15439 ! wince/Makefile.ce wince/wince.c
15440____________________________________________________________________________
15441[ 19953] By: jhi on 2003/07/03 11:08:58
15442 Log: Tiny tweak to maint perldelta from Robin Barker.
15443 Branch: maint-5.8/perl
15444 ! pod/perldelta.pod
15445____________________________________________________________________________
15446[ 19952] By: jhi on 2003/07/03 10:56:45
15447 Log: Tiny tweak to perlartistic from Robin Barker.
15448 Branch: perl
15449 ! pod/perlartistic.pod
15450____________________________________________________________________________
15451[ 19951] By: jhi on 2003/07/03 08:47:35
15452 Log: Integrate:
15453 (most of #18302 was already part of #18791)
15454 [ 18302]
15455 Subject: Proper fix for CvOUTSIDE weak refcounting
15456 From: Dave Mitchell <davem@fdgroup.com>
15457 Date: Tue, 10 Dec 2002 01:26:44 +0000
15458 Message-ID: <20021210012644.A7843@fdgroup.com>
15459
15460 [ 19924]
15461 Fix from Enache Adrian for the magic.t failure in
15462 FreeBSD: setproctitle() cannot get rid of the " (perl)".
15463
15464 [ 19925]
15465 FreeBSD $0 dance.
15466
15467 [ 19926]
15468 Getting the whitespace right.
15469
15470 [ 19927]
15471 ...and getting the comma right, too.
15472
15473 [ 19928]
15474 Darwin: -Dprefix=$HOME/Perl tried to install to /Library.
15475
15476 [ 19929]
15477 Better links.
15478
15479 [ 19930]
15480 Let the perldelta iteration begin.
15481
15482 [ 19931]
15483 Fix for [perl #22759 insufficient format string checking];
15484 using ewix makes no sense, assuming evix was intended,
15485 no old tests fail; add the test case.
15486
15487 [ 19932]
15488 Subject: Re: maint @ 19923
15489 From: Jim Cromie <jcromie@divsol.com>
15490 Date: Wed, 02 Jul 2003 05:35:06 -0600
15491 Message-ID: <3F02C36A.9030704@divsol.com>
15492
15493 [ 19933]
15494 Subject: Re: maint @ 19923
15495 From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
15496 Date: Wed, 2 Jul 2003 11:43:05 -0400
15497 Message-ID: <20030702154304.GD206089@linguist.thayer.dartmouth.edu>
15498
15499 [ 19934]
15500 Subject: [PATCH] line numbers are given % 64k
15501 From: James Jurach <muaddib@erf.net>
15502 Date: Wed, 2 Jul 2003 13:31:05 -0500
15503 Message-ID: <20030702183105.GA4837@lebowski>
15504
15505 [ 19935]
15506 It would seem that in Linux 2.2 there is no way
15507 we can do the right thing to make ps(1) see $0
15508 our way. Also amend the $0 documentation a bit.
15509
15510 [ 19936]
15511 Subject: Re: perldelta for 5.8.1
15512 From: Dave Mitchell <davem@fdgroup.com>
15513 Date: Wed, 2 Jul 2003 17:46:32 +0100
15514 Message-ID: <20030702164632.GE2137@fdgroup.com>
15515
15516 [ 19937]
15517 Decomplexing by Jim Cromie.
15518
15519 [ 19938]
15520 Subject: Perldelta 5.8.1 typos
15521 From: Simon Glover <scog@amnh.org>
15522 Date: Wed, 2 Jul 2003 13:42:58 -0400 (EDT)
15523 Message-ID: <Pine.GSO.4.43.0307021341020.8877-100000@egg.amnh.org>
15524
15525 [ 19939]
15526 Subject: [PATCH] various Deparse fixes
15527 From: Dave Mitchell <davem@fdgroup.com>
15528 Date: Wed, 2 Jul 2003 18:10:45 +0100
15529 Message-ID: <20030702171045.GF2137@fdgroup.com>
15530
15531 [ 19940]
15532 Skip a socketpair test on SCO OSR
15533
15534 [ 19941]
15535 Minor test adjustments :
15536 - test name correction in op/concat.t by Yitzchak Scott-Thoennes
15537 - prototypes added to some public functions in t/test.pl,
15538 as suggested by Enache Adrian
15539
15540 [ 19942]
15541 Nicer options for Porting/Modules.
15542
15543 [ 19943]
15544 Subject: [PATCH] Re: ext/List/Util/t/weak.t panic
15545 From: Dave Mitchell <davem@fdgroup.com>
15546 Date: Thu, 3 Jul 2003 01:32:11 +0100
15547 Message-ID: <20030703003211.GB3747@fdgroup.com>
15548
15549 [ 19944]
15550 Subject: [PATCH] "without parens" vs "without parentheses"
15551 From: Iain Truskett <spoon@cpan.org>
15552 Date: Thu, 3 Jul 2003 12:40:42 +1000
15553 Message-ID: <20030703024042.GI12380@ouroboros.anu.edu.au>
15554
15555 [ 19945]
15556 Subject: Re: perldelta for 5.8.1
15557 From: Nicholas Clark <nick@unfortu.net>
15558 Date: Wed, 2 Jul 2003 23:08:26 +0100
15559 Message-ID: <20030702220825.GA558@Bagpuss.unfortu.net>
15560
15561 [ 19946]
15562 Pod::LaTeX has been updated (from tjenness).
15563
15564 [ 19947]
15565 Apply Schwern's suggested warning code from
15566 [perl #22209] Test::Harness::Straps vs. $Config{path_sep}
15567
15568 [ 19948]
15569 Underline the fact that XSLoader is not DynaLoader
15570 ([perl #21974] dl_load_flags not honored by XSLoader)
15571
15572 [ 19949]
15573 No fancy binmode() if no perlio.
15574
15575 [ 19950]
15576 Mention Modules in AUTHORS.
15577 Branch: maint-5.8/perl
15578 !> (integrate 41 files)
15579____________________________________________________________________________
15580[ 19950] By: jhi on 2003/07/03 07:46:45
15581 Log: Mention Modules in AUTHORS.
15582 Branch: perl
15583 ! AUTHORS
15584____________________________________________________________________________
15585[ 19949] By: jhi on 2003/07/03 06:58:01
15586 Log: No fancy binmode() if no perlio.
15587 Branch: perl
15588 ! ext/IO/lib/IO/t/io_sock.t
15589____________________________________________________________________________
15590[ 19948] By: jhi on 2003/07/03 06:55:12
15591 Log: Underline the fact that XSLoader is not DynaLoader
15592 ([perl #21974] dl_load_flags not honored by XSLoader)
15593 Branch: perl
15594 ! ext/DynaLoader/XSLoader_pm.PL
15595____________________________________________________________________________
15596[ 19947] By: jhi on 2003/07/03 06:35:29
15597 Log: Apply Schwern's suggested warning code from
15598 [perl #22209] Test::Harness::Straps vs. $Config{path_sep}
15599 Branch: perl
15600 ! lib/Test/Harness/Straps.pm
15601____________________________________________________________________________
15602[ 19946] By: jhi on 2003/07/03 06:33:04
15603 Log: Pod::LaTeX has been updated (from tjenness).
15604 Branch: maint-5.8/perl
15605 ! pod/perldelta.pod
15606____________________________________________________________________________
15607[ 19945] By: jhi on 2003/07/03 06:32:10
15608 Log: Subject: Re: perldelta for 5.8.1
15609 From: Nicholas Clark <nick@unfortu.net>
15610 Date: Wed, 2 Jul 2003 23:08:26 +0100
15611 Message-ID: <20030702220825.GA558@Bagpuss.unfortu.net>
15612 Branch: maint-5.8/perl
15613 ! pod/perldelta.pod
15614____________________________________________________________________________
15615[ 19944] By: jhi on 2003/07/03 06:30:11
15616 Log: Subject: [PATCH] "without parens" vs "without parentheses"
15617 From: Iain Truskett <spoon@cpan.org>
15618 Date: Thu, 3 Jul 2003 12:40:42 +1000
15619 Message-ID: <20030703024042.GI12380@ouroboros.anu.edu.au>
15620 Branch: perl
15621 ! t/lib/warnings/toke toke.c
15622____________________________________________________________________________
15623[ 19943] By: jhi on 2003/07/03 06:27:18
15624 Log: Subject: [PATCH] Re: ext/List/Util/t/weak.t panic
15625 From: Dave Mitchell <davem@fdgroup.com>
15626 Date: Thu, 3 Jul 2003 01:32:11 +0100
15627 Message-ID: <20030703003211.GB3747@fdgroup.com>
15628 Branch: perl
15629 ! mg.c sv.c
15630____________________________________________________________________________
15631[ 19942] By: jhi on 2003/07/03 06:25:30
15632 Log: Nicer options for Porting/Modules.
15633 Branch: perl
15634 ! MANIFEST Porting/Modules
15635____________________________________________________________________________
15636[ 19941] By: rgs on 2003/07/02 21:38:19
15637 Log: Minor test adjustments :
15638 - test name correction in op/concat.t by Yitzchak Scott-Thoennes
15639 - prototypes added to some public functions in t/test.pl,
15640 as suggested by Enache Adrian
15641 Branch: perl
15642 ! t/op/concat.t t/test.pl
15643____________________________________________________________________________
15644[ 19940] By: rgs on 2003/07/02 20:58:19
15645 Log: Skip a socketpair test on SCO OSR
15646 Branch: perl
15647 ! ext/Socket/socketpair.t
15648____________________________________________________________________________
15649[ 19939] By: jhi on 2003/07/02 20:10:47
15650 Log: Subject: [PATCH] various Deparse fixes
15651 From: Dave Mitchell <davem@fdgroup.com>
15652 Date: Wed, 2 Jul 2003 18:10:45 +0100
15653 Message-ID: <20030702171045.GF2137@fdgroup.com>
15654 Branch: perl
15655 ! ext/B/B/Concise.pm ext/B/B/Debug.pm ext/B/B/Deparse.pm
15656 ! ext/B/defsubs_h.PL t/TEST t/op/ord.t
15657____________________________________________________________________________
15658[ 19938] By: jhi on 2003/07/02 20:07:12
15659 Log: Subject: Perldelta 5.8.1 typos
15660 From: Simon Glover <scog@amnh.org>
15661 Date: Wed, 2 Jul 2003 13:42:58 -0400 (EDT)
15662 Message-ID: <Pine.GSO.4.43.0307021341020.8877-100000@egg.amnh.org>
15663 Branch: maint-5.8/perl
15664 ! pod/perldelta.pod
15665____________________________________________________________________________
15666[ 19937] By: jhi on 2003/07/02 20:06:17
15667 Log: Decomplexing by Jim Cromie.
15668 Branch: maint-5.8/perl
15669 ! pod/perldelta.pod
15670____________________________________________________________________________
15671[ 19936] By: jhi on 2003/07/02 20:04:39
15672 Log: Subject: Re: perldelta for 5.8.1
15673 From: Dave Mitchell <davem@fdgroup.com>
15674 Date: Wed, 2 Jul 2003 17:46:32 +0100
15675 Message-ID: <20030702164632.GE2137@fdgroup.com>
15676 Branch: maint-5.8/perl
15677 ! pod/perldelta.pod
15678____________________________________________________________________________
15679[ 19935] By: jhi on 2003/07/02 20:01:06
15680 Log: It would seem that in Linux 2.2 there is no way
15681 we can do the right thing to make ps(1) see $0
15682 our way. Also amend the $0 documentation a bit.
15683 Branch: perl
15684 ! pod/perlvar.pod t/op/magic.t
15685____________________________________________________________________________
15686[ 19934] By: jhi on 2003/07/02 19:39:11
15687 Log: Subject: [PATCH] line numbers are given % 64k
15688 From: James Jurach <muaddib@erf.net>
15689 Date: Wed, 2 Jul 2003 13:31:05 -0500
15690 Message-ID: <20030702183105.GA4837@lebowski>
15691 Branch: perl
15692 ! bytecode.pl ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
15693 ! handy.h pp_ctl.c scope.h
15694____________________________________________________________________________
15695[ 19933] By: jhi on 2003/07/02 14:55:49
15696 Log: Subject: Re: maint @ 19923
15697 From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
15698 Date: Wed, 2 Jul 2003 11:43:05 -0400
15699 Message-ID: <20030702154304.GD206089@linguist.thayer.dartmouth.edu>
15700 Branch: perl
15701 ! pod/perlfunc.pod
15702____________________________________________________________________________
15703[ 19932] By: jhi on 2003/07/02 14:29:42
15704 Log: Subject: Re: maint @ 19923
15705 From: Jim Cromie <jcromie@divsol.com>
15706 Date: Wed, 02 Jul 2003 05:35:06 -0600
15707 Message-ID: <3F02C36A.9030704@divsol.com>
15708 Branch: perl
15709 ! pod/perlfunc.pod
15710____________________________________________________________________________
15711[ 19931] By: jhi on 2003/07/02 11:34:49
15712 Log: Fix for [perl #22759 insufficient format string checking];
15713 using ewix makes no sense, assuming evix was intended,
15714 no old tests fail; add the test case.
15715 Branch: perl
15716 ! sv.c t/op/sprintf.t
15717____________________________________________________________________________
15718[ 19930] By: jhi on 2003/07/02 11:28:02
15719 Log: Let the perldelta iteration begin.
15720 Branch: maint-5.8/perl
15721 ! pod/perldelta.pod
15722____________________________________________________________________________
15723[ 19929] By: jhi on 2003/07/02 09:13:33
15724 Log: Better links.
15725 Branch: perl
15726 ! pod/perlipc.pod pod/perlrun.pod
15727____________________________________________________________________________
15728[ 19928] By: jhi on 2003/07/02 08:58:26
15729 Log: Darwin: -Dprefix=$HOME/Perl tried to install to /Library.
15730 Branch: perl
15731 ! hints/darwin.sh
15732____________________________________________________________________________
15733[ 19927] By: jhi on 2003/07/02 08:48:00
15734 Log: ...and getting the comma right, too.
15735 Branch: perl
15736 ! t/op/magic.t
15737____________________________________________________________________________
15738[ 19926] By: jhi on 2003/07/02 08:46:18
15739 Log: Getting the whitespace right.
15740 Branch: perl
15741 ! t/op/magic.t
15742____________________________________________________________________________
15743[ 19925] By: jhi on 2003/07/02 08:40:36
15744 Log: FreeBSD $0 dance.
15745 Branch: perl
15746 ! pod/perlvar.pod t/op/magic.t
15747____________________________________________________________________________
15748[ 19924] By: jhi on 2003/07/02 08:17:31
15749 Log: Fix from Enache Adrian for the magic.t failure in
15750 FreeBSD: setproctitle() cannot get rid of the " (perl)".
15751 Branch: perl
15752 ! t/op/magic.t
15753____________________________________________________________________________
15754[ 19923] By: jhi on 2003/07/02 05:51:32
15755 Log: Update Changes.
15756 Branch: maint-5.8/perl
15757 ! Changes patchlevel.h
15758____________________________________________________________________________
15759[ 19922] By: jhi on 2003/07/02 05:43:27
15760 Log: Integrate:
15761 [ 19920]
15762 Move the libgcc.a hack into a section for pre-1.6 NetBSD releases.
15763 The latest releases of NetBSD don't require the hack. From
15764 Johnny Lam.
15765
15766 [ 19921]
15767 VMS: with this, 100% make test in Compaq C V6.5-001
15768 on OpenVMS Alpha V7.3-1, from Craig Berry.
15769 Branch: maint-5.8/perl
15770 !> configure.com ext/Devel/DProf/DProf.t hints/netbsd.sh
15771 !> t/op/magic.t
15772____________________________________________________________________________
15773[ 19921] By: jhi on 2003/07/02 05:26:33
15774 Log: VMS: with this, 100% make test in Compaq C V6.5-001
15775 on OpenVMS Alpha V7.3-1, from Craig Berry.
15776 Branch: perl
15777 ! configure.com ext/Devel/DProf/DProf.t t/op/magic.t
15778____________________________________________________________________________
15779[ 19920] By: jhi on 2003/07/02 05:21:23
15780 Log: Move the libgcc.a hack into a section for pre-1.6 NetBSD releases.
15781 The latest releases of NetBSD don't require the hack. From
15782 Johnny Lam.
15783 Branch: perl
15784 ! hints/netbsd.sh
15785____________________________________________________________________________
15786[ 19919] By: jhi on 2003/07/01 21:28:15
15787 Log: Integrate:
15788 [ 19896]
15789 Integrate #19892, #19895 from perlio to compile and avoid
15790 crashing on Win32.
15791
15792 [ 19897]
15793 Subject: Re: Subject: Problems: 5.8.1, Solaris, Configure, sched_yield(), -lrt & -lposix4
15794 From: Alan Burlison <Alan.Burlison@sun.com>
15795 Date: Tue, 01 Jul 2003 00:03:24 +0100
15796 Message-ID: <3F00C1BC.3020103@sun.com>
15797
15798 [ 19898]
15799 Rework Time::HiRes not to need HAS_NANOSLEEP from Configure.
15800
15801 [ 19899]
15802 More nanosleep removal.
15803
15804 [ 19900]
15805 Regen Configure.
15806
15807 [ 19902]
15808 Regen Glossary et al.
15809
15810 [ 19903]
15811 Switch on PERL_IMPLICIT_SYS, not on Win32.
15812
15813 [ 19906]
15814 Do the "aligned contiguous" check only if the arguments
15815 look like aligned; re-introduce the "traditional contiguous"
15816 checks with OS/2 special quirks and all.
15817
15818 [ 19910]
15819 Integrate from perlio:
15820 [ 19909]
15821 binmode() should affect IoOFP() as well as IoIFP() if it is
15822 distinct (e.g. sockets).
15823
15824 [ 19911]
15825 Tweak an existing IO test to test also the change #19910.
15826
15827 [ 19912]
15828 One more test (does binmode()ing a socket succeed)
15829 and add -w.
15830
15831 [ 19913]
15832 Even more :utf8 socket testing, now in both directions.
15833
15834 [ 19914]
15835 A naked values() caused shuffling of lib/Config.pm,
15836 which in turn caused unnecessary rebuilds.
15837
15838 [ 19915]
15839 Upgrade to Unicode::Normalize 0.23.
15840
15841 [ 19916]
15842 Subject: [PATCH] B:: fixes + 'When were CVOPs gone ?'
15843 From: Enache Adrian <enache@rdslink.ro>
15844 Date: Tue, 1 Jul 2003 19:51:25 +0300
15845 Message-ID: <20030701165125.GA1521@ratsnest.hole>
15846
15847 [ 19917]
15848 Subject: [PATCH] long C<=item>s in pod/perlunicode.pod
15849 From: Robin Barker <Robin.Barker@npl.co.uk>
15850 Date: Tue, 1 Jul 2003 18:21:34 +0100
15851 Message-ID: <533D273D4014D411AB1D00062938C4D9040465A9@hotel.npl.co.uk>
15852
15853 Subject: [PATCH] long C<=item>s in lib/CGI.pm
15854 From: Robin Barker <Robin.Barker@npl.co.uk>
15855 Message-ID: <533D273D4014D411AB1D00062938C4D9040465AA@hotel.npl.co.uk>
15856 Date: Tue, 1 Jul 2003 18:25:17 +0100
15857
15858 Subject: [PATCH] long <=item>s in lib/ExtUtils/MakeMaker/FAQ.pod
15859 From: Robin Barker <Robin.Barker@npl.co.uk>
15860 Date: Tue, 1 Jul 2003 18:29:09 +0100
15861 Message-ID: <533D273D4014D411AB1D00062938C4D9040465AB@hotel.npl.co.uk>
15862
15863 [ 19918]
15864 Add a new utility, Porting/Modules.
15865 Branch: maint-5.8/perl
15866 +> Porting/Modules ext/Time/HiRes/hints/dec_osf.pl
15867 ! Configure config_h.SH
15868 !> (integrate 39 files)
15869____________________________________________________________________________
15870[ 19918] By: jhi on 2003/07/01 20:02:33
15871 Log: Add a new utility, Porting/Modules.
15872 Branch: perl
15873 + Porting/Modules
15874 ! MANIFEST
15875____________________________________________________________________________
15876[ 19917] By: jhi on 2003/07/01 17:00:02
15877 Log: Subject: [PATCH] long C<=item>s in pod/perlunicode.pod
15878 From: Robin Barker <Robin.Barker@npl.co.uk>
15879 Date: Tue, 1 Jul 2003 18:21:34 +0100
15880 Message-ID: <533D273D4014D411AB1D00062938C4D9040465A9@hotel.npl.co.uk>
15881
15882 Subject: [PATCH] long C<=item>s in lib/CGI.pm
15883 From: Robin Barker <Robin.Barker@npl.co.uk>
15884 Message-ID: <533D273D4014D411AB1D00062938C4D9040465AA@hotel.npl.co.uk>
15885 Date: Tue, 1 Jul 2003 18:25:17 +0100
15886
15887 Subject: [PATCH] long <=item>s in lib/ExtUtils/MakeMaker/FAQ.pod
15888 From: Robin Barker <Robin.Barker@npl.co.uk>
15889 Date: Tue, 1 Jul 2003 18:29:09 +0100
15890 Message-ID: <533D273D4014D411AB1D00062938C4D9040465AB@hotel.npl.co.uk>
15891 Branch: perl
15892 ! lib/CGI.pm lib/ExtUtils/MakeMaker/FAQ.pod pod/perlunicode.pod
15893____________________________________________________________________________
15894[ 19916] By: jhi on 2003/07/01 16:51:31
15895 Log: Subject: [PATCH] B:: fixes + 'When were CVOPs gone ?'
15896 From: Enache Adrian <enache@rdslink.ro>
15897 Date: Tue, 1 Jul 2003 19:51:25 +0300
15898 Message-ID: <20030701165125.GA1521@ratsnest.hole>
15899 Branch: perl
15900 ! ext/B/B.pm ext/B/B.xs ext/B/B/Debug.pm ext/B/defsubs_h.PL
15901 ! ext/B/typemap t/op/magic.t
15902____________________________________________________________________________
15903[ 19915] By: jhi on 2003/07/01 16:22:09
15904 Log: Upgrade to Unicode::Normalize 0.23.
15905 Branch: perl
15906 ! ext/Unicode/Normalize/Changes
15907 ! ext/Unicode/Normalize/Normalize.pm
15908 ! ext/Unicode/Normalize/Normalize.xs
15909____________________________________________________________________________
15910[ 19914] By: jhi on 2003/07/01 13:08:44
15911 Log: A naked values() caused shuffling of lib/Config.pm,
15912 which in turn caused unnecessary rebuilds.
15913 Branch: perl
15914 ! configpm
15915____________________________________________________________________________
15916[ 19913] By: jhi on 2003/07/01 13:01:10
15917 Log: Even more :utf8 socket testing, now in both directions.
15918 Branch: perl
15919 ! ext/IO/lib/IO/t/io_sock.t
15920____________________________________________________________________________
15921[ 19912] By: jhi on 2003/07/01 12:44:32
15922 Log: One more test (does binmode()ing a socket succeed)
15923 and add -w.
15924 Branch: perl
15925 ! ext/IO/lib/IO/t/io_sock.t
15926____________________________________________________________________________
15927[ 19911] By: jhi on 2003/07/01 12:38:13
15928 Log: Tweak an existing IO test to test also the change #19910.
15929 Branch: perl
15930 ! ext/IO/lib/IO/t/io_sock.t
15931____________________________________________________________________________
15932[ 19910] By: jhi on 2003/07/01 11:18:27
15933 Log: Integrate from perlio:
15934 [ 19909]
15935 binmode() should affect IoOFP() as well as IoIFP() if it is
15936 distinct (e.g. sockets).
15937 Branch: perl
15938 !> pp_sys.c
15939____________________________________________________________________________
15940[ 19909] By: nick on 2003/07/01 10:50:25
15941 Log: binmode() should affect IoOFP() as well as IoIFP() if it is
15942 distinct (e.g. sockets).
15943 Branch: perlio
15944 ! pp_sys.c
15945____________________________________________________________________________
15946[ 19908] By: nick on 2003/07/01 08:38:20
15947 Log: regen_config_h
15948 Branch: perlio
15949 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
15950 ! win32/makefile.mk
15951____________________________________________________________________________
15952[ 19907] By: nick on 2003/07/01 08:27:22
15953 Log: Integrate mainline (untested)
15954 Branch: perlio
15955 +> ext/Time/HiRes/hints/dec_osf.pl
15956 ! t/op/sysio-compat.t
15957 !> Configure Cross/config.sh-arm-linux MANIFEST
15958 !> NetWare/config_H.wc Porting/Glossary Porting/config.sh
15959 !> Porting/config_H epoc/config.sh ext/Time/HiRes/HiRes.xs
15960 !> ext/Time/HiRes/Makefile.PL ext/Time/HiRes/hints/sco.pl
15961 !> hints/vos.sh perl.c win32/config.gc win32/config.vc
15962 !> win32/config.vc64 win32/config_H.bc win32/config_H.gc
15963 !> win32/config_H.vc win32/config_H.vc64 wince/config.ce
15964 !> wince/config_H.ce
15965____________________________________________________________________________
15966[ 19906] By: jhi on 2003/07/01 08:03:17
15967 Log: Do the "aligned contiguous" check only if the arguments
15968 look like aligned; re-introduce the "traditional contiguous"
15969 checks with OS/2 special quirks and all.
15970 Branch: perl
15971 ! perl.c
15972____________________________________________________________________________
15973[ 19905] By: nick on 2003/07/01 06:57:13
15974 Log: dmake regen_config_h
15975 Branch: perlio
15976 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
15977____________________________________________________________________________
15978[ 19904] By: nick on 2003/07/01 06:48:32
15979 Log: Integrate Mainline
15980 Branch: perlio
15981 !> Configure Makefile.SH config_h.SH configure.com
15982 !> hints/solaris_2.sh perl.h uconfig.h uconfig.sh
15983____________________________________________________________________________
15984[ 19903] By: jhi on 2003/07/01 06:22:12
15985 Log: Switch on PERL_IMPLICIT_SYS, not on Win32.
15986 Branch: perl
15987 ! perl.c
15988____________________________________________________________________________
15989[ 19902] By: jhi on 2003/07/01 06:20:48
15990 Log: Regen Glossary et al.
15991 Branch: perl
15992 ! Porting/Glossary Porting/config.sh Porting/config_H
15993____________________________________________________________________________
15994[ 19901] By: jhi on 2003/07/01 05:59:04
15995 Log: metaconfig unit change for #19900.
15996 Branch: metaconfig
15997 ! U/modified/Myinit.U
15998____________________________________________________________________________
15999[ 19900] By: jhi on 2003/07/01 05:56:38
16000 Log: Regen Configure.
16001 Branch: perl
16002 ! Configure
16003____________________________________________________________________________
16004[ 19899] By: jhi on 2003/07/01 05:56:14
16005 Log: More nanosleep removal.
16006 Branch: perl
16007 ! Cross/config.sh-arm-linux NetWare/config_H.wc epoc/config.sh
16008 ! hints/vos.sh win32/config.gc win32/config.vc win32/config.vc64
16009 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
16010 ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
16011____________________________________________________________________________
16012[ 19898] By: jhi on 2003/07/01 05:54:58
16013 Log: Rework Time::HiRes not to need HAS_NANOSLEEP from Configure.
16014 Branch: perl
16015 + ext/Time/HiRes/hints/dec_osf.pl
16016 ! MANIFEST ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
16017 ! ext/Time/HiRes/hints/sco.pl
16018____________________________________________________________________________
16019[ 19897] By: jhi on 2003/07/01 05:04:50
16020 Log: Subject: Re: Subject: Problems: 5.8.1, Solaris, Configure, sched_yield(), -lrt & -lposix4
16021 From: Alan Burlison <Alan.Burlison@sun.com>
16022 Date: Tue, 01 Jul 2003 00:03:24 +0100
16023 Message-ID: <3F00C1BC.3020103@sun.com>
16024 Branch: perl
16025 ! Configure Makefile.SH config_h.SH configure.com
16026 ! hints/solaris_2.sh perl.h uconfig.h uconfig.sh
16027____________________________________________________________________________
16028[ 19896] By: jhi on 2003/06/30 20:20:54
16029 Log: Integrate #19892, #19895 from perlio to compile and avoid
16030 crashing on Win32.
16031 Branch: perl
16032 !> perl.c
16033____________________________________________________________________________
16034[ 19895] By: nick on 2003/06/30 14:24:57
16035 Log: Win32 hack for doing_taint()
16036 Branch: perlio
16037 ! perl.c
16038____________________________________________________________________________
16039[ 19894] By: nick on 2003/06/30 12:31:51
16040 Log: Integrate mainline
16041 Branch: perlio
16042 !> (integrate 37 files)
16043____________________________________________________________________________
16044[ 19893] By: jhi on 2003/06/30 09:46:21
16045 Log: Update Changes.
16046 Branch: maint-5.8/perl
16047 ! Changes patchlevel.h
16048____________________________________________________________________________
16049[ 19892] By: nick on 2003/06/30 09:42:22
16050 Log: "Missing" dTHX for Win32's re-direction of getuid etc.
16051 Branch: perlio
16052 ! perl.c
16053____________________________________________________________________________
16054[ 19891] By: jhi on 2003/06/30 09:39:29
16055 Log: Integrate:
16056 [ 19857]
16057 Regen Changes.
16058
16059 [ 19858]
16060 perlhack update, by Steve Grazzini
16061 about macro support in gdb and gcc.
16062
16063 [ 19859]
16064 Hash/Util.t and Encode/t/Aliases.t seem to be having
16065 random failures. To make these easier to reproduce,
16066 add a variable, PERL_HASH_SEED_DEBUG, to display the
16067 hash seed. E.g. in Debian/x86 Linux 3.0 PERL_HASH_SEED
16068 of 82972356 makes the first one to fail.
16069
16070 [ 19860]
16071 Subject: Re: Change 19854: Bite the bullet and apply the hash randomisation patch.
16072 From: Tim Bunce <Tim.Bunce@pobox.com>
16073 Date: Thu, 26 Jun 2003 10:53:22 +0100
16074 Message-ID: <20030626095322.GE97463@dansat.data-plan.com>
16075
16076 [ 19861]
16077 Do not obey PERL_HASH_SEED or PERL_HASH_SEED_DEBUG
16078 if tainting-- but is this a good thing or a bad thing?
16079 (At least it makes debugging lib/Hash/Util.t harder,
16080 since it has, for no apparent good reason, -T: one must
16081 make a copy of it without the -T.)
16082
16083 [ 19862]
16084 Make doing_taint() always available (though not
16085 part of the public API).
16086
16087 [ 19863]
16088 Introduce (global) variable PL_earlytaint which
16089 is set very early in main(), before perl_parse()
16090 has been called and PL_tainting (or PL_taint_warn)
16091 might have been set.
16092
16093 [ 19864]
16094 Use the PL_earlytaint. (PL_earlytaint is a global,
16095 not per-interp, since perl_construct() is not passed
16096 the argc, argv, and therefore it can't set the per-interp
16097 PL_tainting.)
16098
16099 [ 19865]
16100 atoi() doesn't cut the mustard if the PERL_HASH_SEED
16101 is larger than INT_MAX (atoi() returns -1 in that case).
16102
16103 [ 19866]
16104 Some warnings about the (im)proper uses of the hash randomisation.
16105
16106 [ 19867]
16107 The two-for-loops is no more a valid way to walk through
16108 a hash (this was the reason the Hash/Util.t intermittently
16109 failed, the two-loop didn't find all the SVs of the HV).
16110
16111 [ 19868]
16112 Integrate mainline
16113
16114 [ 19869]
16115 Fix test count, by Abe Timmerman.
16116
16117 [ 19870]
16118 Two debugging patches.
16119 The first allows to hold symbolic switches in $^D
16120 and more generally fixes assignment to $^D. The
16121 second one improves the information given by -Dl.
16122
16123 Subject: [PATCH] allow $^D = "flags"
16124 From: Dave Mitchell <davem@fdgroup.com>
16125 Date: Fri, 27 Jun 2003 22:26:24 +0100
16126 Message-ID: <20030627212624.GB12887@fdgroup.com>
16127
16128 Subject: [PATCH] make -Dl show more scope info
16129 From: Dave Mitchell <davem@fdgroup.com>
16130 Date: Fri, 27 Jun 2003 23:00:36 +0100
16131 Message-ID: <20030627220036.GC12887@fdgroup.com>
16132
16133 [ 19871]
16134 Subject: [Encode] pre-1.97 patches
16135 From: Dan Kogai <dankogai@dan.co.jp>
16136 Date: Sat, 28 Jun 2003 01:20:59 +0900
16137 Message-Id: <56D5BFEE-A8BB-11D7-9092-000393AE4244@dan.co.jp>
16138
16139 [ 19872]
16140 Some clarification about the current semantics of CHECK and
16141 INIT blocks. See bug [perl #22826].
16142
16143 [ 19873]
16144 Using $1 without testing success of the regexp, bad.
16145
16146 [ 19874]
16147 Retract #19867; the bug was really much simpler:
16148 the < max must be <= max instead.
16149
16150 [ 19875]
16151 Duh.
16152
16153 [ 19876]
16154 Subject: Re: your malloc patches
16155 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
16156 Date: Fri, 27 Jun 2003 06:54:06 -0700
16157 Message-ID: <20030627135406.GA8914@math.berkeley.edu>
16158
16159 More malloc patches: now they seem to work even in Tru64.
16160
16161 [ 19877]
16162 The #19842 is no more needed thanks to #19876,
16163 and the #19842 was wrong anyway (it affected
16164 only the threaded case.)
16165
16166 [ 19878]
16167 Move the PL_earlytaint initialization to the PERL_SYS_INIT()
16168 as per suggestion from Sarathy.
16169
16170 [ 19879]
16171 Another spot where a zero $test{$max} can make things go boom.
16172
16173 [ 19880]
16174 argc, argv.
16175
16176 [ 19881]
16177 More coffee...
16178
16179 [ 19882]
16180 Perl_doing_taint must be public, for programs that embed perl
16181
16182 [ 19883]
16183 More on the macro debugging and expansion.
16184
16185 [ 19884]
16186 The joy of $0. Undoing the #16399 makes Andreas'
16187 tests (see [perl #22811]) pass (yes, padding with space instead
16188 of nul makes no sense, but that seems to work, maybe Linux does
16189 some deep magic in ps(1)?); moving the PL_origalen computation
16190 earlier makes also the threaded-first case fully pass.
16191
16192 But in general modifying the argv[] is very non-portable.
16193 (e.g. in Tru64 it seems to be limited to the size of the
16194 original argv[0] since the argv[] are not contiguous?)
16195
16196 Everybody should just have setproctitle().
16197
16198 [ 19885]
16199 Fix a faulty alias.
16200
16201 [ 19886]
16202 Misc Pod Nits.
16203
16204 [ 19887]
16205 $0 test tweaks from Andreas.
16206
16207 [ 19888]
16208 $0 doc tweakage.
16209
16210 [ 19889]
16211 The 'contiguous' test for argv[], envp[] was bogus
16212 since those need not be in memory end-to-end, e.g.
16213 in Tru64 they are aligned by eight. Loosen the test
16214 so that 'contiguousness' is fulfilled if the elements
16215 are within PTRSIZE alignment. This makes Tru64 to pass
16216 the join.t, too.
16217
16218 [ 19890]
16219 int is not UV.
16220 Branch: maint-5.8/perl
16221 !> (integrate 39 files)
16222____________________________________________________________________________
16223[ 19890] By: jhi on 2003/06/30 08:41:51
16224 Log: int is not UV.
16225 Branch: perl
16226 ! perl.c
16227____________________________________________________________________________
16228[ 19889] By: jhi on 2003/06/30 08:36:38
16229 Log: The 'contiguous' test for argv[], envp[] was bogus
16230 since those need not be in memory end-to-end, e.g.
16231 in Tru64 they are aligned by eight. Loosen the test
16232 so that 'contiguousness' is fulfilled if the elements
16233 are within PTRSIZE alignment. This makes Tru64 to pass
16234 the join.t, too.
16235 Branch: perl
16236 ! ext/threads/t/join.t mg.c perl.c
16237____________________________________________________________________________
16238[ 19888] By: jhi on 2003/06/30 07:24:18
16239 Log: $0 doc tweakage.
16240 Branch: perl
16241 ! pod/perlvar.pod
16242____________________________________________________________________________
16243[ 19887] By: jhi on 2003/06/30 07:20:58
16244 Log: $0 test tweaks from Andreas.
16245 Branch: perl
16246 ! ext/threads/t/join.t t/op/magic.t
16247____________________________________________________________________________
16248[ 19886] By: rgs on 2003/06/29 19:18:43
16249 Log: Misc Pod Nits.
16250 Branch: perl
16251 ! ext/B/B.pm pod/perlrun.pod
16252____________________________________________________________________________
16253[ 19885] By: jhi on 2003/06/29 15:49:52
16254 Log: Fix a faulty alias.
16255 Branch: perl
16256 ! ext/Encode/lib/Encode/Alias.pm
16257____________________________________________________________________________
16258[ 19884] By: jhi on 2003/06/29 15:41:05
16259 Log: The joy of $0. Undoing the #16399 makes Andreas'
16260 tests (see [perl #22811]) pass (yes, padding with space instead
16261 of nul makes no sense, but that seems to work, maybe Linux does
16262 some deep magic in ps(1)?); moving the PL_origalen computation
16263 earlier makes also the threaded-first case fully pass.
16264
16265 But in general modifying the argv[] is very non-portable.
16266 (e.g. in Tru64 it seems to be limited to the size of the
16267 original argv[0] since the argv[] are not contiguous?)
16268
16269 Everybody should just have setproctitle().
16270 Branch: perl
16271 ! mg.c perl.c pod/perlvar.pod
16272____________________________________________________________________________
16273[ 19883] By: jhi on 2003/06/29 13:47:36
16274 Log: More on the macro debugging and expansion.
16275 Branch: perl
16276 ! pod/perlhack.pod
16277____________________________________________________________________________
16278[ 19882] By: rgs on 2003/06/29 13:17:09
16279 Log: Perl_doing_taint must be public, for programs that embed perl
16280 Branch: perl
16281 ! embed.fnc embed.h global.sym
16282____________________________________________________________________________
16283[ 19881] By: jhi on 2003/06/29 10:17:28
16284 Log: More coffee...
16285 Branch: perl
16286 ! lib/Test/Harness.pm
16287____________________________________________________________________________
16288[ 19880] By: jhi on 2003/06/29 09:48:50
16289 Log: argc, argv.
16290 Branch: perl
16291 ! perl.h
16292____________________________________________________________________________
16293[ 19879] By: jhi on 2003/06/29 09:34:47
16294 Log: Another spot where a zero $test{$max} can make things go boom.
16295 Branch: perl
16296 ! lib/Test/Harness.pm
16297____________________________________________________________________________
16298[ 19878] By: jhi on 2003/06/29 09:28:58
16299 Log: Move the PL_earlytaint initialization to the PERL_SYS_INIT()
16300 as per suggestion from Sarathy.
16301 Branch: perl
16302 ! dosish.h epoc/epocish.h miniperlmain.c mpeix/mpeixish.h
16303 ! os2/os2ish.h perl.h plan9/plan9ish.h unixish.h vms/vmsish.h
16304____________________________________________________________________________
16305[ 19877] By: jhi on 2003/06/28 18:28:01
16306 Log: The #19842 is no more needed thanks to #19876,
16307 and the #19842 was wrong anyway (it affected
16308 only the threaded case.)
16309 Branch: perl
16310 ! hints/dec_osf.sh
16311____________________________________________________________________________
16312[ 19876] By: jhi on 2003/06/28 18:24:46
16313 Log: Subject: Re: your malloc patches
16314 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
16315 Date: Fri, 27 Jun 2003 06:54:06 -0700
16316 Message-ID: <20030627135406.GA8914@math.berkeley.edu>
16317
16318 More malloc patches: now they seem to work even in Tru64.
16319 Branch: perl
16320 ! malloc.c
16321____________________________________________________________________________
16322[ 19875] By: jhi on 2003/06/28 18:09:30
16323 Log: Duh.
16324 Branch: perl
16325 ! perl.h
16326____________________________________________________________________________
16327[ 19874] By: jhi on 2003/06/28 17:30:52
16328 Log: Retract #19867; the bug was really much simpler:
16329 the < max must be <= max instead.
16330 Branch: perl
16331 ! hv.c
16332____________________________________________________________________________
16333[ 19873] By: rgs on 2003/06/28 16:02:53
16334 Log: Using $1 without testing success of the regexp, bad.
16335 Branch: perl
16336 ! pod/perlretut.pod
16337____________________________________________________________________________
16338[ 19872] By: rgs on 2003/06/28 16:01:08
16339 Log: Some clarification about the current semantics of CHECK and
16340 INIT blocks. See bug [perl #22826].
16341 Branch: perl
16342 ! pod/perlmod.pod
16343____________________________________________________________________________
16344[ 19871] By: rgs on 2003/06/28 15:47:22
16345 Log: Subject: [Encode] pre-1.97 patches
16346 From: Dan Kogai <dankogai@dan.co.jp>
16347 Date: Sat, 28 Jun 2003 01:20:59 +0900
16348 Message-Id: <56D5BFEE-A8BB-11D7-9092-000393AE4244@dan.co.jp>
16349 Branch: perl
16350 ! ext/Encode/Changes ext/Encode/Encode.pm
16351 ! ext/Encode/lib/Encode/Guess.pm
16352____________________________________________________________________________
16353[ 19870] By: rgs on 2003/06/28 15:39:57
16354 Log: Two debugging patches.
16355 The first allows to hold symbolic switches in $^D
16356 and more generally fixes assignment to $^D. The
16357 second one improves the information given by -Dl.
16358
16359 Subject: [PATCH] allow $^D = "flags"
16360 From: Dave Mitchell <davem@fdgroup.com>
16361 Date: Fri, 27 Jun 2003 22:26:24 +0100
16362 Message-ID: <20030627212624.GB12887@fdgroup.com>
16363
16364 Subject: [PATCH] make -Dl show more scope info
16365 From: Dave Mitchell <davem@fdgroup.com>
16366 Date: Fri, 27 Jun 2003 23:00:36 +0100
16367 Message-ID: <20030627220036.GC12887@fdgroup.com>
16368 Branch: perl
16369 ! cop.h embed.fnc embed.h mg.c perl.c perl.h pod/perlvar.pod
16370 ! proto.h scope.h
16371____________________________________________________________________________
16372[ 19869] By: rgs on 2003/06/28 14:39:40
16373 Log: Fix test count, by Abe Timmerman.
16374 Branch: perl
16375 ! t/comp/require.t
16376____________________________________________________________________________
16377[ 19868] By: nick on 2003/06/27 12:59:51
16378 Log: Integrate mainline
16379 Branch: perlio
16380 +> lib/FileCache/t/01open.t lib/FileCache/t/02maxopen.t
16381 +> lib/FileCache/t/03append.t lib/FileCache/t/04twoarg.t
16382 +> lib/FileCache/t/05override.t malloc_ctl.h os2/OS2/typemap
16383 +> os2/perlrexx.cmd
16384 - lib/FileCache.t os2/OS2/PrfDB/typemap
16385 !> (integrate 157 files)
16386____________________________________________________________________________
16387[ 19867] By: jhi on 2003/06/27 10:08:20
16388 Log: The two-for-loops is no more a valid way to walk through
16389 a hash (this was the reason the Hash/Util.t intermittently
16390 failed, the two-loop didn't find all the SVs of the HV).
16391 Branch: perl
16392 ! hv.c
16393____________________________________________________________________________
16394[ 19866] By: jhi on 2003/06/27 08:54:16
16395 Log: Some warnings about the (im)proper uses of the hash randomisation.
16396 Branch: perl
16397 ! pod/perlsec.pod
16398____________________________________________________________________________
16399[ 19865] By: jhi on 2003/06/27 08:40:45
16400 Log: atoi() doesn't cut the mustard if the PERL_HASH_SEED
16401 is larger than INT_MAX (atoi() returns -1 in that case).
16402 Branch: perl
16403 ! perl.c
16404____________________________________________________________________________
16405[ 19864] By: jhi on 2003/06/27 08:18:47
16406 Log: Use the PL_earlytaint. (PL_earlytaint is a global,
16407 not per-interp, since perl_construct() is not passed
16408 the argc, argv, and therefore it can't set the per-interp
16409 PL_tainting.)
16410 Branch: perl
16411 ! perl.c perl.h
16412____________________________________________________________________________
16413[ 19863] By: jhi on 2003/06/27 08:15:11
16414 Log: Introduce (global) variable PL_earlytaint which
16415 is set very early in main(), before perl_parse()
16416 has been called and PL_tainting (or PL_taint_warn)
16417 might have been set.
16418 Branch: perl
16419 ! embed.fnc embedvar.h miniperlmain.c perl.c perl.h perlapi.h
16420 ! perlvars.h proto.h
16421____________________________________________________________________________
16422[ 19862] By: jhi on 2003/06/27 07:39:58
16423 Log: Make doing_taint() always available (though not
16424 part of the public API).
16425 Branch: perl
16426 ! embed.fnc embed.h perl.c proto.h
16427____________________________________________________________________________
16428[ 19861] By: jhi on 2003/06/27 05:30:03
16429 Log: Do not obey PERL_HASH_SEED or PERL_HASH_SEED_DEBUG
16430 if tainting-- but is this a good thing or a bad thing?
16431 (At least it makes debugging lib/Hash/Util.t harder,
16432 since it has, for no apparent good reason, -T: one must
16433 make a copy of it without the -T.)
16434 Branch: perl
16435 ! perl.c
16436____________________________________________________________________________
16437[ 19860] By: jhi on 2003/06/27 05:02:14
16438 Log: Subject: Re: Change 19854: Bite the bullet and apply the hash randomisation patch.
16439 From: Tim Bunce <Tim.Bunce@pobox.com>
16440 Date: Thu, 26 Jun 2003 10:53:22 +0100
16441 Message-ID: <20030626095322.GE97463@dansat.data-plan.com>
16442 Branch: perl
16443 ! INSTALL
16444____________________________________________________________________________
16445[ 19859] By: jhi on 2003/06/27 04:59:23
16446 Log: Hash/Util.t and Encode/t/Aliases.t seem to be having
16447 random failures. To make these easier to reproduce,
16448 add a variable, PERL_HASH_SEED_DEBUG, to display the
16449 hash seed. E.g. in Debian/x86 Linux 3.0 PERL_HASH_SEED
16450 of 82972356 makes the first one to fail.
16451 Branch: perl
16452 ! perl.c pod/perlrun.pod
16453____________________________________________________________________________
16454[ 19858] By: rgs on 2003/06/26 20:21:53
16455 Log: perlhack update, by Steve Grazzini
16456 about macro support in gdb and gcc.
16457 Branch: perl
16458 ! pod/perlhack.pod
16459____________________________________________________________________________
16460[ 19857] By: jhi on 2003/06/26 08:29:59
16461 Log: Regen Changes.
16462 Branch: maint-5.8/perl
16463 ! Changes
16464____________________________________________________________________________
16465[ 19856] By: jhi on 2003/06/26 05:55:24
16466 Log: Update Changes.
16467 Branch: maint-5.8/perl
16468 ! Changes patchlevel.h
16469____________________________________________________________________________
16470[ 19855] By: jhi on 2003/06/26 05:36:41
16471 Log: Integrate:
16472 [ 19851]
16473 Fix [perl #21742] :
16474 require() should always be called in scalar context,
16475 even when it's the last statement in an eval("").
16476
16477 [ 19852]
16478 Enhance some macro robustness.
16479
16480 [ 19853]
16481 Subject: Re: P and V
16482 From: "Philip Newton" <pnewton@gmx.de>
16483 Date: Wed, 25 Jun 2003 17:50:22 +0200
16484 Message-ID: <3EF9E0DE.4786.16A6869@localhost>
16485
16486 [ 19854]
16487 Bite the bullet and apply the hash randomisation patch.
16488 [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
16489 Branch: maint-5.8/perl
16490 !> INSTALL embedvar.h ext/Data/Dumper/Dumper.pm
16491 !> ext/Data/Dumper/t/dumper.t hv.h intrpvar.h
16492 !> lib/Thread/Semaphore.pm opcode.h opcode.pl perl.c perl.h
16493 !> perlapi.h pod/perlfunc.pod pod/perlrun.pod pod/perlsec.pod
16494 !> pp_ctl.c sv.c t/comp/require.t
16495____________________________________________________________________________
16496[ 19854] By: jhi on 2003/06/26 05:32:02
16497 Log: Bite the bullet and apply the hash randomisation patch.
16498 [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
16499 Branch: perl
16500 ! INSTALL embedvar.h ext/Data/Dumper/Dumper.pm
16501 ! ext/Data/Dumper/t/dumper.t hv.h intrpvar.h perl.c perl.h
16502 ! perlapi.h pod/perlfunc.pod pod/perlrun.pod pod/perlsec.pod
16503 ! sv.c
16504____________________________________________________________________________
16505[ 19853] By: rgs on 2003/06/25 19:35:02
16506 Log: Subject: Re: P and V
16507 From: "Philip Newton" <pnewton@gmx.de>
16508 Date: Wed, 25 Jun 2003 17:50:22 +0200
16509 Message-ID: <3EF9E0DE.4786.16A6869@localhost>
16510 Branch: perl
16511 ! lib/Thread/Semaphore.pm
16512____________________________________________________________________________
16513[ 19852] By: rgs on 2003/06/25 19:27:42
16514 Log: Enhance some macro robustness.
16515 Branch: perl
16516 ! opcode.h opcode.pl
16517____________________________________________________________________________
16518[ 19851] By: rgs on 2003/06/25 19:25:47
16519 Log: Fix [perl #21742] :
16520 require() should always be called in scalar context,
16521 even when it's the last statement in an eval("").
16522 Branch: perl
16523 ! pp_ctl.c t/comp/require.t
16524____________________________________________________________________________
16525[ 19850] By: jhi on 2003/06/24 18:49:22
16526 Log: Integrate:
16527 [ 18557]
16528 Subject: [PATCH] Re: [perl #9394] Re: [ID 20020525.002] coredump/ bad free warning in blead with SIGWARN
16529 From: Nicholas Clark <nick@unfortu.net>
16530 Date: Tue, 21 Jan 2003 22:27:21 +0000
16531 Message-ID: <20030121222720.GG293@Bagpuss.unfortu.net>
16532
16533 [ 19277]
16534 Fix bug #21347 (segfault in UNIVERSAL::AUTOLOAD with qr//)
16535 by adding a dummy destructor method Regexp::DESTROY.
16536 This prevents infinite recursion, since Regexp::DESTROY
16537 is no more autoloaded.
16538
16539 Subject: Re: [perl #21347] segfault in UNIVERSAL::AUTOLOAD
16540 From: Enache Adrian <enache@rdslink.ro>
16541 Date: Wed, 2 Apr 2003 05:02:42 +0300
16542 Message-ID: <20030402020242.GA2966@ratsnest.hole>
16543
16544 [ 19300]
16545 Fix another segfault case (warn called from UNIVERSAL::DESTROY).
16546
16547 Subject: Re: [perl #21347] segfault in UNIVERSAL::AUTOLOAD
16548 From: Enache Adrian <enache@rdslink.ro>
16549 Date: Sun, 20 Apr 2003 02:45:48 +0300
16550 Message-ID: <20030419234548.GA849@ratsnest.hole>
16551 and
16552 Date: Wed, 2 Apr 2003 07:52:28 +0300
16553 Message-ID: <20030402045227.GA1023@ratsnest.hole>
16554
16555 [ 19729]
16556 Subject: [PATCH] Re: nitpick with \(0..2)
16557 From: Steve Grazzini <grazz@pobox.com>
16558 Date: Fri, 6 Jun 2003 01:42:59 -0400
16559 Message-ID: <20030606054259.GA30249@grazzini.net>
16560
16561 [ 19845]
16562 Test tweaks for VMS from Craig Berry.
16563
16564 [ 19846]
16565 Subject: [perlport.pod] code point of \cU
16566 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
16567 Date: Tue, 24 Jun 2003 01:00:16 +0900
16568 Message-Id: <20030624004743.1237.BQW10602@nifty.com>
16569
16570 [ 19848]
16571 Subject: [PATCH] lib/Perldoc.pm patch for Cygwin Bleadperl
16572 From: "Gerrit P. Haase" <gerrit@familiehaase.de>
16573 Date: Tue, 24 Jun 2003 11:00:34 +0200
16574 Message-ID: <186930306740.20030624110034@familiehaase.de>
16575
16576 [ 19849]
16577 Subject: [PATCH] Re: [perl #22719] ISA cache problem with blessed stash objects
16578 From: Dave Mitchell <davem@fdgroup.com>
16579 Date: Tue, 24 Jun 2003 13:16:18 +0100
16580 Message-ID: <20030624121618.GC22675@fdgroup.com>
16581 Branch: maint-5.8/perl
16582 !> ext/B/t/stash.t lib/Pod/Perldoc.pm lib/strict.t lib/warnings.t
16583 !> pod/perlport.pod pp_sys.c sv.c t/op/ref.t universal.c util.c
16584____________________________________________________________________________
16585[ 19849] By: jhi on 2003/06/24 17:32:37
16586 Log: Subject: [PATCH] Re: [perl #22719] ISA cache problem with blessed stash objects
16587 From: Dave Mitchell <davem@fdgroup.com>
16588 Date: Tue, 24 Jun 2003 13:16:18 +0100
16589 Message-ID: <20030624121618.GC22675@fdgroup.com>
16590 Branch: perl
16591 ! sv.c t/op/ref.t
16592____________________________________________________________________________
16593[ 19848] By: merijn on 2003/06/24 08:06:57
16594 Log: Subject: [PATCH] lib/Perldoc.pm patch for Cygwin Bleadperl
16595 From: "Gerrit P. Haase" <gerrit@familiehaase.de>
16596 Date: Tue, 24 Jun 2003 11:00:34 +0200
16597 Message-ID: <186930306740.20030624110034@familiehaase.de>
16598 Branch: perl
16599 ! lib/Pod/Perldoc.pm
16600____________________________________________________________________________
16601[ 19847] By: jhi on 2003/06/24 04:52:42
16602 Log: Subject: [PATCH] version.pm up to date with CPAN
16603 From: John Peacock <jpeacock@rowman.com>
16604 Date: Mon, 23 Jun 2003 21:58:18 -0400
16605 Message-ID: <3EF7B03A.2060705@rowman.com>
16606 Branch: perl
16607 ! lib/version.pm lib/version.t universal.c
16608____________________________________________________________________________
16609[ 19846] By: rgs on 2003/06/23 20:52:26
16610 Log: Subject: [perlport.pod] code point of \cU
16611 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
16612 Date: Tue, 24 Jun 2003 01:00:16 +0900
16613 Message-Id: <20030624004743.1237.BQW10602@nifty.com>
16614 Branch: perl
16615 ! pod/perlport.pod
16616____________________________________________________________________________
16617[ 19845] By: jhi on 2003/06/23 04:55:39
16618 Log: Test tweaks for VMS from Craig Berry.
16619 Branch: perl
16620 ! lib/strict.t lib/warnings.t
16621____________________________________________________________________________
16622[ 19844] By: jhi on 2003/06/22 19:38:58
16623 Log: Integrate:
16624 [ 19830]
16625 Retract #19785 and #19756: JPL nowadays works without this
16626 (verified by a true JPL user).
16627
16628 [ 19831]
16629 More Perl malloc debugging magic from Ilya. Seems to work in
16630 Linux, Solaris, AIX. Had to do #ifdef OS2 for the <io.h> in
16631 malloc.c, found in AIX since there is no such header.
16632 In Tru64 miniperl fails an assert: "free()ed/realloc()ed-away
16633 memory was overwritten?"
16634 (In IRIX compiles but that doesn't prove much since in IRIX
16635 Perl's malloc is simply not used.)
16636
16637 [ 19832]
16638 Show the source code location of an "assertion botch".
16639
16640 [ 19833]
16641 Don't do sprintf().
16642
16643 [ 19834]
16644 Allow for things like -DFILL_CHECK_DEFAULT=0 (from Ilya).
16645
16646 [ 19835]
16647 For characters beyond the BMP the $bits will be undef,
16648 which will cause utf8_heavy.pl noise (reported by Daniel Yacob,
16649 analysis and fix from SADAHIRO Tomoyuki)
16650
16651 [ 19836]
16652 Debian fix from Brendan O'Dea:
16653 Bug#156284: the stucture used by pp_accept is too small to hold an
16654 IPv6 address.
16655
16656 [ 19837]
16657 Debian fix from Brendan O'Dea:
16658 Use a temporary directory to avoid symlink attacks.
16659 Specify -gstabs explicitly (not the default format for gcc 3.2).
16660
16661 [ 19838]
16662 Debian fix from Brendan O'Dea:
16663 Adjust output to screen width.
16664 (adjusted to probe for the stty command)
16665
16666 [ 19839]
16667 Subject: FileCache 1.03 broken on VMS -- possible patch
16668 From: "Craig A. Berry" <craigberry@mac.com>
16669 Date: Sat, 21 Jun 2003 10:31:59 -0500
16670 Message-ID: <3EF47A6F.9060904@mac.com>
16671
16672 [ 19840]
16673 Subject: [perl #22753] overload::StrVal() fails for regexp refs
16674 From: "fergal@esatclear.ie (via RT)" <perlbug-followup@perl.org>
16675 Date: 21 Jun 2003 19:02:30 -0000
16676 Message-ID: <rt-22753-59662.14.6066295633041@rt.perl.org>
16677
16678 [ 19841]
16679 Subject: [PATCH] Re: Is it a Bug? ($c .= "5") . "6"
16680 From: Enache Adrian <enache@rdslink.ro>
16681 Date: Sat, 21 Jun 2003 03:19:31 +0300
16682 Message-ID: <20030621001931.GB1255@ratsnest.hole>
16683
16684 [ 19842]
16685 Until the Perl malloc problems in Tru64 are fixed.
16686
16687 [ 19843]
16688 Move the (pseudo)seed functio for (pseudo)random numbers to util.c.
16689 Branch: maint-5.8/perl
16690 +> malloc_ctl.h
16691 !> (integrate 29 files)
16692____________________________________________________________________________
16693[ 19843] By: jhi on 2003/06/22 17:00:10
16694 Log: Move the (pseudo)seed functio for (pseudo)random numbers to util.c.
16695 Branch: perl
16696 ! embed.fnc embed.h pp.c proto.h util.c
16697____________________________________________________________________________
16698[ 19842] By: jhi on 2003/06/22 16:44:16
16699 Log: Until the Perl malloc problems in Tru64 are fixed.
16700 Branch: perl
16701 ! hints/dec_osf.sh
16702____________________________________________________________________________
16703[ 19841] By: jhi on 2003/06/22 16:35:33
16704 Log: Subject: [PATCH] Re: Is it a Bug? ($c .= "5") . "6"
16705 From: Enache Adrian <enache@rdslink.ro>
16706 Date: Sat, 21 Jun 2003 03:19:31 +0300
16707 Message-ID: <20030621001931.GB1255@ratsnest.hole>
16708 Branch: perl
16709 ! op.c t/op/concat.t
16710____________________________________________________________________________
16711[ 19840] By: jhi on 2003/06/22 16:33:25
16712 Log: Subject: [perl #22753] overload::StrVal() fails for regexp refs
16713 From: "fergal@esatclear.ie (via RT)" <perlbug-followup@perl.org>
16714 Date: 21 Jun 2003 19:02:30 -0000
16715 Message-ID: <rt-22753-59662.14.6066295633041@rt.perl.org>
16716 Branch: perl
16717 ! lib/overload.pm lib/overload.t
16718____________________________________________________________________________
16719[ 19839] By: jhi on 2003/06/22 16:31:05
16720 Log: Subject: FileCache 1.03 broken on VMS -- possible patch
16721 From: "Craig A. Berry" <craigberry@mac.com>
16722 Date: Sat, 21 Jun 2003 10:31:59 -0500
16723 Message-ID: <3EF47A6F.9060904@mac.com>
16724 Branch: perl
16725 ! lib/FileCache.pm lib/FileCache/t/01open.t
16726 ! lib/FileCache/t/03append.t lib/FileCache/t/05override.t
16727____________________________________________________________________________
16728[ 19838] By: jhi on 2003/06/22 16:16:01
16729 Log: Debian fix from Brendan O'Dea:
16730 Adjust output to screen width.
16731 (adjusted to probe for the stty command)
16732 Branch: perl
16733 ! utils/dprofpp.PL
16734____________________________________________________________________________
16735[ 19837] By: jhi on 2003/06/22 15:56:45
16736 Log: Debian fix from Brendan O'Dea:
16737 Use a temporary directory to avoid symlink attacks.
16738 Specify -gstabs explicitly (not the default format for gcc 3.2).
16739 Branch: perl
16740 ! utils/c2ph.PL
16741____________________________________________________________________________
16742[ 19836] By: jhi on 2003/06/22 15:55:13
16743 Log: Debian fix from Brendan O'Dea:
16744 Bug#156284: the stucture used by pp_accept is too small to hold an
16745 IPv6 address.
16746 Branch: perl
16747 ! pp_sys.c
16748____________________________________________________________________________
16749[ 19835] By: jhi on 2003/06/22 15:46:50
16750 Log: For characters beyond the BMP the $bits will be undef,
16751 which will cause utf8_heavy.pl noise (reported by Daniel Yacob,
16752 analysis and fix from SADAHIRO Tomoyuki)
16753 Branch: perl
16754 ! lib/utf8_heavy.pl
16755____________________________________________________________________________
16756[ 19834] By: jhi on 2003/06/20 08:42:58
16757 Log: Allow for things like -DFILL_CHECK_DEFAULT=0 (from Ilya).
16758 Branch: perl
16759 ! malloc.c
16760____________________________________________________________________________
16761[ 19833] By: jhi on 2003/06/20 08:16:02
16762 Log: Don't do sprintf().
16763 Branch: perl
16764 ! malloc.c
16765____________________________________________________________________________
16766[ 19832] By: jhi on 2003/06/20 07:43:48
16767 Log: Show the source code location of an "assertion botch".
16768 Branch: perl
16769 ! malloc.c
16770____________________________________________________________________________
16771[ 19831] By: jhi on 2003/06/20 07:31:11
16772 Log: More Perl malloc debugging magic from Ilya. Seems to work in
16773 Linux, Solaris, AIX. Had to do #ifdef OS2 for the <io.h> in
16774 malloc.c, found in AIX since there is no such header.
16775 In Tru64 miniperl fails an assert: "free()ed/realloc()ed-away
16776 memory was overwritten?"
16777 (In IRIX compiles but that doesn't prove much since in IRIX
16778 Perl's malloc is simply not used.)
16779 Branch: perl
16780 + malloc_ctl.h
16781 ! MANIFEST dosish.h epoc/epocish.h malloc.c os2/os2ish.h perl.c
16782 ! perl.h plan9/plan9ish.h sv.c unixish.h vms/vmsish.h
16783____________________________________________________________________________
16784[ 19830] By: jhi on 2003/06/20 06:02:21
16785 Log: Retract #19785 and #19756: JPL nowadays works without this
16786 (verified by a true JPL user).
16787 Branch: perl
16788 ! perl.c
16789____________________________________________________________________________
16790[ 19829] By: jhi on 2003/06/19 20:29:35
16791 Log: Update Changes.
16792 Branch: maint-5.8/perl
16793 ! Changes patchlevel.h
16794____________________________________________________________________________
16795[ 19828] By: jhi on 2003/06/19 20:23:43
16796 Log: Integrate:
16797 [ 19827]
16798 Apparently this is needed for VMS (Craig Berry).
16799 Branch: maint-5.8/perl
16800 !> lib/Tie/File.pm
16801____________________________________________________________________________
16802[ 19827] By: jhi on 2003/06/19 20:18:31
16803 Log: Apparently this is needed for VMS (Craig Berry).
16804 Branch: perl
16805 ! lib/Tie/File.pm
16806____________________________________________________________________________
16807[ 19826] By: jhi on 2003/06/19 15:16:27
16808 Log: Update Changes.
16809 Branch: maint-5.8/perl
16810 ! Changes patchlevel.h
16811____________________________________________________________________________
16812[ 19825] By: jhi on 2003/06/19 15:12:52
16813 Log: Integrate:
16814 [ 19824]
16815 Bump Time::HiRes to 1.49.
16816 Branch: maint-5.8/perl
16817 !> ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
16818 !> ext/Time/HiRes/HiRes.xs
16819____________________________________________________________________________
16820[ 19824] By: jhi on 2003/06/19 15:11:48
16821 Log: Bump Time::HiRes to 1.49.
16822 Branch: perl
16823 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
16824 ! ext/Time/HiRes/HiRes.xs
16825____________________________________________________________________________
16826[ 19823] By: jhi on 2003/06/19 14:51:22
16827 Log: Integrate:
16828 [ 19818]
16829 Subject: [PATCH -current] email address correction
16830 Date: Thu, 19 Jun 2003 02:19:31 -0700
16831 Message-ID: <CGEAIAFGDFMPCFCBLLCOEENKCBAA.rs@crystalflame.net>
16832 From: rs@crystalflame.net (Richard Soderberg)
16833
16834 [ 19819]
16835 Subject: [PATCH] Re: [perl #17934] tied STDERR and internal warnings
16836 From: grazz@pobox.com (Steve Grazzini)
16837 Date: Wed, 18 Jun 2003 19:42:37 -0400
16838 Message-ID: <20030618234237.GA6267@grazzini.net>
16839
16840 [ 19820]
16841 Upgrade to MakeMaker 6.10_07 (from makemaker.org snapshot
16842 as of 2003-06-19 18:39 EET).
16843
16844 [ 19821]
16845 A tweak from Alan Burlison for MM 6.10_07 that makes Solaris
16846 make happy.
16847
16848 [ 19822]
16849 This change chunk doesn't work well with blead.
16850 Branch: maint-5.8/perl
16851 !> embed.fnc embed.h ext/threads/threads.pm
16852 !> lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_OS2.pm
16853 !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
16854 !> lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/Command.t
16855 !> lib/ExtUtils/t/MM_OS2.t lib/ExtUtils/t/MM_Unix.t
16856 !> pod/perltie.pod pp_ctl.c proto.h t/op/runlevel.t
16857 !> t/op/tiehandle.t util.c
16858____________________________________________________________________________
16859[ 19822] By: jhi on 2003/06/19 14:49:37
16860 Log: This change chunk doesn't work well with blead.
16861 Branch: perl
16862 ! lib/ExtUtils/t/Command.t
16863____________________________________________________________________________
16864[ 19821] By: jhi on 2003/06/19 14:27:52
16865 Log: A tweak from Alan Burlison for MM 6.10_07 that makes Solaris
16866 make happy.
16867 Branch: perl
16868 ! lib/ExtUtils/MM_Unix.pm
16869____________________________________________________________________________
16870[ 19820] By: jhi on 2003/06/19 14:25:53
16871 Log: Upgrade to MakeMaker 6.10_07 (from makemaker.org snapshot
16872 as of 2003-06-19 18:39 EET).
16873 Branch: perl
16874 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_OS2.pm
16875 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
16876 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/t/Command.t
16877 ! lib/ExtUtils/t/MM_OS2.t lib/ExtUtils/t/MM_Unix.t
16878____________________________________________________________________________
16879[ 19819] By: jhi on 2003/06/19 14:08:13
16880 Log: Subject: [PATCH] Re: [perl #17934] tied STDERR and internal warnings
16881 From: grazz@pobox.com (Steve Grazzini)
16882 Date: Wed, 18 Jun 2003 19:42:37 -0400
16883 Message-ID: <20030618234237.GA6267@grazzini.net>
16884 Branch: perl
16885 ! embed.fnc embed.h pod/perltie.pod pp_ctl.c proto.h
16886 ! t/op/runlevel.t t/op/tiehandle.t util.c
16887____________________________________________________________________________
16888[ 19818] By: jhi on 2003/06/19 13:57:55
16889 Log: Subject: [PATCH -current] email address correction
16890 Date: Thu, 19 Jun 2003 02:19:31 -0700
16891 Message-ID: <CGEAIAFGDFMPCFCBLLCOEENKCBAA.rs@crystalflame.net>
16892 From: rs@crystalflame.net (Richard Soderberg)
16893 Branch: perl
16894 ! ext/threads/threads.pm
16895____________________________________________________________________________
16896[ 19817] By: jhi on 2003/06/19 05:24:45
16897 Log: Integrate:
16898 [ 19804]
16899 Subject: DOCPATCH Re: $1 remains uncleared for failed matches
16900 From: david nicol <whatever@davidnicol.com>
16901 Date: 16 Jun 2003 20:35:24 -0500
16902 Message-Id: <1055813724.1580.19.camel@plaza.davidnicol.com>
16903
16904 Subject: Re: DOCPATCH Re: $1 remains uncleared for failed matches
16905 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
16906 Date: Tue, 17 Jun 2003 00:12:04 -0400
16907 Message-ID: <20030617041204.GA34960@linguist.thayer.dartmouth.edu>
16908
16909 [ 19805]
16910 Subject: /ext/DynaLoader/dl_dyld.xs
16911 From: "Peter O'Gorman" <peter@pogma.com>
16912 Date: Tue, 17 Jun 2003 23:45:47 +0900
16913 Message-Id: <619B6B53-A0D2-11D7-BAF7-003065F6C222@pogma.com>
16914
16915 No need to see dlclose() and dlsym() outside the dl_dyld.xs
16916 (Mac OS X, NeXT), and seeing them is harmful for libdlcompat
16917 of OpenDarwin.
16918
16919 [ 19806]
16920 io_dir.t tweak from Craig Berry.
16921
16922 [ 19809]
16923 If the first argument of sigaction() was a string, not a number
16924 (or a SIGXXX 'constant') one got first (if using -w) 'Argument "FOO"
16925 isn't numeric in subroutine entry ...' but after that one got
16926 (depending on the OS) either a coredump (because of trying to
16927 assign to *0 in mg_get) or a hang (because of the sigprocmask()
16928 blocking signals inside POSIX::sigaction, a nasty hang since
16929 one obviously cannot interrupt it...only SIGKILL works).
16930 In older Perls (tried with 5.6.1) one got 'No such signal: SIGZERO ...'
16931 because of the string becoming zero due to the XS typemap magic.
16932 Resolved by making the POSIX::sigaction to try harder to figure
16933 out a valid signal number (one still gets the warning, though),
16934 and returning undef if no sense can be made.
16935
16936 [ 19810]
16937 Oops in change #19809.
16938
16939 [ 19811]
16940 Subject: Encode] 1.96 Released
16941 From: Dan Kogai <dankogai@dan.co.jp>
16942 Date: Wed, 18 Jun 2003 19:09:11 +0900
16943 Message-Id: <E7FFAE2E-A174-11D7-ACE4-000393AE4244@dan.co.jp>
16944
16945 [ 19812]
16946 Sync with libnet 1.16
16947
16948 [ 19813]
16949 Upgrade to Tie::File 0.97.
16950
16951 [ 19814]
16952 Subject: Re: [perl #22727] split() with re_eval segfaults/panics
16953 From: Enache Adrian <enache@rdslink.ro>
16954 Date: Wed, 18 Jun 2003 23:00:43 +0300
16955 Message-ID: <20030618200043.GA1249@ratsnest.hole>
16956
16957 [ 19815]
16958 A bunch of minor changes to perlguts.pod.
16959
16960 [ 19816]
16961 MPE/iX gets serious indigestion on w-packed infinities.
16962 Branch: maint-5.8/perl
16963 !> (integrate 31 files)
16964____________________________________________________________________________
16965[ 19816] By: jhi on 2003/06/19 05:02:22
16966 Log: MPE/iX gets serious indigestion on w-packed infinities.
16967 Branch: perl
16968 ! t/op/pack.t
16969____________________________________________________________________________
16970[ 19815] By: rgs on 2003/06/18 20:47:47
16971 Log: A bunch of minor changes to perlguts.pod.
16972 Branch: perl
16973 ! pod/perlguts.pod
16974____________________________________________________________________________
16975[ 19814] By: jhi on 2003/06/18 19:19:38
16976 Log: Subject: Re: [perl #22727] split() with re_eval segfaults/panics
16977 From: Enache Adrian <enache@rdslink.ro>
16978 Date: Wed, 18 Jun 2003 23:00:43 +0300
16979 Message-ID: <20030618200043.GA1249@ratsnest.hole>
16980 Branch: perl
16981 ! pp.c regexec.c t/op/pat.t
16982____________________________________________________________________________
16983[ 19813] By: jhi on 2003/06/18 17:31:50
16984 Log: Upgrade to Tie::File 0.97.
16985 Branch: perl
16986 ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
16987 ! lib/Tie/File/t/09_gen_rs.t lib/Tie/File/t/28_mtwrite.t
16988 ! lib/Tie/File/t/29_downcopy.t
16989____________________________________________________________________________
16990[ 19812] By: gbarr on 2003/06/18 16:41:31
16991 Log: Sync with libnet 1.16
16992 Branch: perl
16993 ! lib/Net/ChangeLog.libnet lib/Net/FTP.pm
16994____________________________________________________________________________
16995[ 19811] By: jhi on 2003/06/18 12:11:07
16996 Log: Subject: Encode] 1.96 Released
16997 From: Dan Kogai <dankogai@dan.co.jp>
16998 Date: Wed, 18 Jun 2003 19:09:11 +0900
16999 Message-Id: <E7FFAE2E-A174-11D7-ACE4-000393AE4244@dan.co.jp>
17000 Branch: perl
17001 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
17002 ! ext/Encode/META.yml ext/Encode/Unicode/Unicode.pm
17003 ! ext/Encode/Unicode/Unicode.xs ext/Encode/bin/piconv
17004 ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Encoding.pm
17005 ! ext/Encode/lib/Encode/JP/JIS7.pm ext/Encode/t/Unicode.t
17006 ! ext/Encode/t/guess.t
17007____________________________________________________________________________
17008[ 19810] By: jhi on 2003/06/18 09:20:43
17009 Log: Oops in change #19809.
17010 Branch: perl
17011 ! ext/POSIX/POSIX.xs
17012____________________________________________________________________________
17013[ 19809] By: jhi on 2003/06/18 09:08:47
17014 Log: If the first argument of sigaction() was a string, not a number
17015 (or a SIGXXX 'constant') one got first (if using -w) 'Argument "FOO"
17016 isn't numeric in subroutine entry ...' but after that one got
17017 (depending on the OS) either a coredump (because of trying to
17018 assign to *0 in mg_get) or a hang (because of the sigprocmask()
17019 blocking signals inside POSIX::sigaction, a nasty hang since
17020 one obviously cannot interrupt it...only SIGKILL works).
17021 In older Perls (tried with 5.6.1) one got 'No such signal: SIGZERO ...'
17022 because of the string becoming zero due to the XS typemap magic.
17023 Resolved by making the POSIX::sigaction to try harder to figure
17024 out a valid signal number (one still gets the warning, though),
17025 and returning undef if no sense can be made.
17026 Branch: perl
17027 ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs ext/POSIX/t/sigaction.t
17028____________________________________________________________________________
17029[ 19808] By: rgs on 2003/06/17 21:10:06
17030 Log: Some docs for the assertions.
17031 Branch: perl
17032 ! lib/assertions.pm lib/assertions/activate.pm
17033 ! pod/perllexwarn.pod pod/perlrun.pod t/run/switch_A.t
17034____________________________________________________________________________
17035[ 19807] By: jhi on 2003/06/17 19:52:07
17036 Log: Subject: [PATCH] fixes for debugger bugs noted while documenting
17037 From: Joe McMahon <mcmahon@ibiblio.org>
17038 Date: Tue, 17 Jun 2003 16:42:42 -0400
17039 Message-Id: <3E62E1B3-A104-11D7-8CDD-000393BCA0FC@ibiblio.org>
17040 Branch: maint-5.8/perl
17041 ! lib/perl5db.pl
17042____________________________________________________________________________
17043[ 19806] By: jhi on 2003/06/17 18:12:26
17044 Log: io_dir.t tweak from Craig Berry.
17045 Branch: perl
17046 ! ext/IO/lib/IO/t/io_dir.t
17047____________________________________________________________________________
17048[ 19805] By: jhi on 2003/06/17 16:47:06
17049 Log: Subject: /ext/DynaLoader/dl_dyld.xs
17050 From: "Peter O'Gorman" <peter@pogma.com>
17051 Date: Tue, 17 Jun 2003 23:45:47 +0900
17052 Message-Id: <619B6B53-A0D2-11D7-BAF7-003065F6C222@pogma.com>
17053
17054 No need to see dlclose() and dlsym() outside the dl_dyld.xs
17055 (Mac OS X, NeXT), and seeing them is harmful for libdlcompat
17056 of OpenDarwin.
17057 Branch: perl
17058 ! ext/DynaLoader/dl_dyld.xs
17059____________________________________________________________________________
17060[ 19804] By: jhi on 2003/06/17 13:12:21
17061 Log: Subject: DOCPATCH Re: $1 remains uncleared for failed matches
17062 From: david nicol <whatever@davidnicol.com>
17063 Date: 16 Jun 2003 20:35:24 -0500
17064 Message-Id: <1055813724.1580.19.camel@plaza.davidnicol.com>
17065
17066 Subject: Re: DOCPATCH Re: $1 remains uncleared for failed matches
17067 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
17068 Date: Tue, 17 Jun 2003 00:12:04 -0400
17069 Message-ID: <20030617041204.GA34960@linguist.thayer.dartmouth.edu>
17070 Branch: perl
17071 ! pod/perlre.pod pod/perltrap.pod
17072____________________________________________________________________________
17073[ 19803] By: jhi on 2003/06/17 05:18:41
17074 Log: Integrate:
17075 [ 19793]
17076 Remove all magic in untie()
17077
17078 Subject: Re: untie from within FETCH/STORE not working under 5.8.0 (fwd)
17079 From: Aaron J Mackey <ajm6q@virginia.edu>
17080 Date: Fri, 13 Jun 2003 08:22:05 -0400 (EDT)
17081 Message-ID: <Pine.OSF.4.33.0306130820570.29017-100000@alpha10.bioch.virginia.edu>
17082 (plus a test case)
17083
17084 [ 19795]
17085 Instead of fancy condvar footwork do a simple join,
17086 as suggested by Arthur.
17087
17088 [ 19796]
17089 Add O_NOATIME.
17090
17091 [ 19797]
17092 Even more glibc O_ modes.
17093
17094 [ 19798]
17095 And even more glibc fcntl constants, this time mostly F_XXX.
17096 Be more conservative and use @EXPORT_OK instead of @EXPORT.
17097
17098 [ 19799]
17099 Subject: [perl #22622] Bogus error codes from File::Copy::move
17100 From: "Amick, Eric" (via RT) <perlbug-followup@perl.org>
17101 Date: 9 Jun 2003 15:48:09 -0000
17102 Message-ID: <rt-22622-59134.12.3966151660257@rt.perl.org>
17103
17104 [ 19800]
17105 Subject: [PATCH] unnecessary stringification in eval/die
17106 From: Steve Grazzini <grazz@pobox.com>
17107 Date: 15 Jun 2003 21:02:26 -0000
17108 Message-ID: <20030615210226.56430.qmail@onion.perl.org>
17109 (See also <slrnbek5u6.cfi.joey@dragon.kitenet.net>
17110 in c.l.p.misc and bug #17763)
17111
17112 [ 19801]
17113 Revert change #19126, a poor attempt at fixing bug #21742.
17114 The test for #21742 is marked as TODO.
17115 Plus new regression tests from :
17116
17117 Subject: [perl #22708] void context in string eval is broken
17118 From: "Marcus Holland-Moritz" (via RT) <perlbug-followup@perl.org>
17119 Date: 15 Jun 2003 23:09:03 -0000
17120 Message-ID: <rt-22708-59432.14.6755501393177@rt.perl.org>
17121
17122 [ 19802]
17123 UNICOS: try papering over the Configure symbol scan problems
17124 by disavowing any knowledge of dynaloading.
17125 Branch: maint-5.8/perl
17126 !> ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
17127 !> ext/threads/shared/t/hv_refs.t hints/unicos.sh
17128 !> lib/File/Copy.pm pod/perlfunc.pod pp_ctl.c pp_sys.c
17129 !> t/comp/require.t t/op/eval.t t/op/tie.t
17130____________________________________________________________________________
17131[ 19802] By: jhi on 2003/06/17 04:51:33
17132 Log: UNICOS: try papering over the Configure symbol scan problems
17133 by disavowing any knowledge of dynaloading.
17134 Branch: perl
17135 ! hints/unicos.sh
17136____________________________________________________________________________
17137[ 19801] By: rgs on 2003/06/16 22:47:28
17138 Log: Revert change #19126, a poor attempt at fixing bug #21742.
17139 The test for #21742 is marked as TODO.
17140 Plus new regression tests from :
17141
17142 Subject: [perl #22708] void context in string eval is broken
17143 From: "Marcus Holland-Moritz" (via RT) <perlbug-followup@perl.org>
17144 Date: 15 Jun 2003 23:09:03 -0000
17145 Message-ID: <rt-22708-59432.14.6755501393177@rt.perl.org>
17146 Branch: perl
17147 ! pp_ctl.c t/comp/require.t t/op/eval.t
17148____________________________________________________________________________
17149[ 19800] By: rgs on 2003/06/16 21:14:26
17150 Log: Subject: [PATCH] unnecessary stringification in eval/die
17151 From: Steve Grazzini <grazz@pobox.com>
17152 Date: 15 Jun 2003 21:02:26 -0000
17153 Message-ID: <20030615210226.56430.qmail@onion.perl.org>
17154 (See also <slrnbek5u6.cfi.joey@dragon.kitenet.net>
17155 in c.l.p.misc and bug #17763)
17156 Branch: perl
17157 ! pod/perlfunc.pod pp_ctl.c
17158____________________________________________________________________________
17159[ 19799] By: rgs on 2003/06/16 20:15:28
17160 Log: Subject: [perl #22622] Bogus error codes from File::Copy::move
17161 From: "Amick, Eric" (via RT) <perlbug-followup@perl.org>
17162 Date: 9 Jun 2003 15:48:09 -0000
17163 Message-ID: <rt-22622-59134.12.3966151660257@rt.perl.org>
17164 Branch: perl
17165 ! lib/File/Copy.pm
17166____________________________________________________________________________
17167[ 19798] By: jhi on 2003/06/16 12:26:29
17168 Log: And even more glibc fcntl constants, this time mostly F_XXX.
17169 Be more conservative and use @EXPORT_OK instead of @EXPORT.
17170 Branch: perl
17171 ! ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
17172____________________________________________________________________________
17173[ 19797] By: jhi on 2003/06/16 08:05:11
17174 Log: Even more glibc O_ modes.
17175 Branch: perl
17176 ! ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
17177____________________________________________________________________________
17178[ 19796] By: jhi on 2003/06/16 07:59:26
17179 Log: Add O_NOATIME.
17180 Branch: perl
17181 ! ext/Fcntl/Fcntl.pm ext/Fcntl/Makefile.PL
17182____________________________________________________________________________
17183[ 19795] By: jhi on 2003/06/16 06:51:19
17184 Log: Instead of fancy condvar footwork do a simple join,
17185 as suggested by Arthur.
17186 Branch: perl
17187 ! ext/threads/shared/t/hv_refs.t
17188____________________________________________________________________________
17189[ 19794] By: rgs on 2003/06/15 21:01:18
17190 Log: Rename again the warning about $* being no longer supported
17191 (and update perldiag this time!)
17192 Branch: perl
17193 ! gv.c pod/perldiag.pod t/lib/warnings/gv
17194____________________________________________________________________________
17195[ 19793] By: rgs on 2003/06/15 19:47:21
17196 Log: Remove all magic in untie()
17197
17198 Subject: Re: untie from within FETCH/STORE not working under 5.8.0 (fwd)
17199 From: Aaron J Mackey <ajm6q@virginia.edu>
17200 Date: Fri, 13 Jun 2003 08:22:05 -0400 (EDT)
17201 Message-ID: <Pine.OSF.4.33.0306130820570.29017-100000@alpha10.bioch.virginia.edu>
17202 (plus a test case)
17203 Branch: perl
17204 ! pp_sys.c t/op/tie.t
17205____________________________________________________________________________
17206[ 19792] By: jhi on 2003/06/15 18:29:32
17207 Log: Update Changes.
17208 Branch: maint-5.8/perl
17209 ! Changes patchlevel.h
17210____________________________________________________________________________
17211[ 19791] By: jhi on 2003/06/15 17:57:06
17212 Log: Integrate:
17213 [ 19775]
17214 test.pl-ify and add a couple of tests.
17215
17216 [ 19776]
17217 Slight tweaks on the length() and chr() entries,
17218 passing-by rewrapping on the rmdir entry.
17219
17220 [ 19778]
17221 Exercise the utf8:: "internal" functions.
17222
17223 [ 19779]
17224 Subject: [PATCH: sv.c] strchr() running amok in sv_vcatpvfn()
17225 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
17226 Date: Sat, 14 Jun 2003 12:51:31 +0200
17227 Message-ID: <041901c33262$eac8ae30$f248eed9@R2D2>
17228
17229 (choosing the safe alternative)
17230
17231 [ 19781]
17232 Followup on #19779: make the helper function static,
17233 and rename it for paranoia reasons.
17234
17235 [ 19782]
17236 Mention the Unicode::Regex::Set module.
17237
17238 [ 19783]
17239 The FileCache 1.03 tests from belg4mit.
17240
17241 [ 19785]
17242 Most often unused variables.
17243
17244 [ 19786]
17245 Subject: Re: [PATCH: sv.c] strchr() running amok in sv_vcatpvfn()
17246 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
17247 Date: Sun, 15 Jun 2003 10:48:40 +0200
17248 Message-ID: <004a01c3331a$ec001320$3445eed9@R2D2>
17249
17250 [ 19787]
17251 Unused variable.
17252
17253 [ 19788]
17254 Reindent a section of the file.
17255
17256 [ 19789]
17257 Subject: [PATCH 5.8.1 @19774] OS2 patches
17258 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
17259 Date: Sat, 14 Jun 2003 17:49:57 -0700
17260 Message-ID: <20030615004956.GA28272@math.berkeley.edu>
17261
17262 [ 19790]
17263 Start using Perl malloc in FreeBSD since the system malloc
17264 is reaaally slooow for Perl.
17265
17266 Subject: FreeBSD 5.1 vs. -Uusemymalloc
17267 From: Dan Kogai <dankogai@dan.co.jp>
17268 Date: Mon, 16 Jun 2003 01:48:49 +0900
17269 Message-Id: <3CE9B94D-9F51-11D7-AF50-000393AE4244@dan.co.jp>
17270 Branch: maint-5.8/perl
17271 +> lib/FileCache/t/01open.t lib/FileCache/t/02maxopen.t
17272 +> lib/FileCache/t/03append.t lib/FileCache/t/04twoarg.t
17273 +> lib/FileCache/t/05override.t os2/OS2/typemap os2/perlrexx.cmd
17274 - lib/FileCache.t os2/OS2/PrfDB/typemap
17275 !> (integrate 33 files)
17276____________________________________________________________________________
17277[ 19790] By: jhi on 2003/06/15 17:22:08
17278 Log: Start using Perl malloc in FreeBSD since the system malloc
17279 is reaaally slooow for Perl.
17280
17281 Subject: FreeBSD 5.1 vs. -Uusemymalloc
17282 From: Dan Kogai <dankogai@dan.co.jp>
17283 Date: Mon, 16 Jun 2003 01:48:49 +0900
17284 Message-Id: <3CE9B94D-9F51-11D7-AF50-000393AE4244@dan.co.jp>
17285 Branch: perl
17286 ! hints/freebsd.sh
17287____________________________________________________________________________
17288[ 19789] By: jhi on 2003/06/15 17:08:02
17289 Log: Subject: [PATCH 5.8.1 @19774] OS2 patches
17290 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
17291 Date: Sat, 14 Jun 2003 17:49:57 -0700
17292 Message-ID: <20030615004956.GA28272@math.berkeley.edu>
17293 Branch: perl
17294 + os2/OS2/typemap os2/perlrexx.cmd
17295 - os2/OS2/PrfDB/typemap
17296 ! MANIFEST doio.c emacs/ptags ext/Time/HiRes/Makefile.PL handy.h
17297 ! hints/os2.sh lib/ExtUtils/t/MM_OS2.t makedef.pl
17298 ! os2/OS2/Process/Makefile.PL os2/OS2/Process/Process.pm
17299 ! os2/OS2/Process/Process.xs os2/OS2/REXX/DLL/DLL.pm
17300 ! os2/OS2/REXX/DLL/DLL.xs os2/OS2/REXX/t/rx_emxrv.t
17301 ! os2/OS2/REXX/t/rx_objcall.t os2/dl_os2.c os2/os2.c
17302 ! os2/os2ish.h pp_sys.c utils/h2xs.PL
17303____________________________________________________________________________
17304[ 19788] By: jhi on 2003/06/15 15:05:40
17305 Log: Reindent a section of the file.
17306 Branch: perl
17307 ! universal.c
17308____________________________________________________________________________
17309[ 19787] By: jhi on 2003/06/15 15:01:26
17310 Log: Unused variable.
17311 Branch: perl
17312 ! universal.c
17313____________________________________________________________________________
17314[ 19786] By: jhi on 2003/06/15 07:41:23
17315 Log: Subject: Re: [PATCH: sv.c] strchr() running amok in sv_vcatpvfn()
17316 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
17317 Date: Sun, 15 Jun 2003 10:48:40 +0200
17318 Message-ID: <004a01c3331a$ec001320$3445eed9@R2D2>
17319 Branch: perl
17320 ! embed.fnc embed.h proto.h sv.c
17321____________________________________________________________________________
17322[ 19785] By: jhi on 2003/06/15 07:37:02
17323 Log: Most often unused variables.
17324 Branch: perl
17325 ! perl.c
17326____________________________________________________________________________
17327[ 19784] By: rgs on 2003/06/14 20:08:52
17328 Log: Rename the warning about $* being removed,
17329 as suggested by Dave Mitchell
17330 Branch: perl
17331 ! gv.c t/lib/warnings/gv
17332____________________________________________________________________________
17333[ 19783] By: jhi on 2003/06/14 16:30:23
17334 Log: The FileCache 1.03 tests from belg4mit.
17335 Branch: perl
17336 + lib/FileCache/t/01open.t lib/FileCache/t/02maxopen.t
17337 + lib/FileCache/t/03append.t lib/FileCache/t/04twoarg.t
17338 + lib/FileCache/t/05override.t
17339 - lib/FileCache.t
17340 ! MANIFEST
17341____________________________________________________________________________
17342[ 19782] By: jhi on 2003/06/14 13:45:01
17343 Log: Mention the Unicode::Regex::Set module.
17344 Branch: perl
17345 ! pod/perlunicode.pod
17346____________________________________________________________________________
17347[ 19781] By: jhi on 2003/06/14 13:39:45
17348 Log: Followup on #19779: make the helper function static,
17349 and rename it for paranoia reasons.
17350 Branch: perl
17351 ! embed.fnc embed.h proto.h sv.c
17352____________________________________________________________________________
17353[ 19779] By: jhi on 2003/06/14 13:13:34
17354 Log: Subject: [PATCH: sv.c] strchr() running amok in sv_vcatpvfn()
17355 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
17356 Date: Sat, 14 Jun 2003 12:51:31 +0200
17357 Message-ID: <041901c33262$eac8ae30$f248eed9@R2D2>
17358
17359 (choosing the safe alternative)
17360 Branch: perl
17361 ! sv.c
17362____________________________________________________________________________
17363[ 19778] By: jhi on 2003/06/14 09:28:01
17364 Log: Exercise the utf8:: "internal" functions.
17365 Branch: perl
17366 ! lib/utf8.pm lib/utf8.t
17367____________________________________________________________________________
17368[ 19777] By: jhi on 2003/06/14 09:05:07
17369 Log: Having to pull in the whole Encode just to get SvUTF8()
17370 is a bit too much: introduce utf8::is_utf8().
17371 Branch: perl
17372 ! lib/utf8.pm pod/perluniintro.pod universal.c
17373____________________________________________________________________________
17374[ 19776] By: jhi on 2003/06/14 08:56:11
17375 Log: Slight tweaks on the length() and chr() entries,
17376 passing-by rewrapping on the rmdir entry.
17377 Branch: perl
17378 ! pod/perlfunc.pod
17379____________________________________________________________________________
17380[ 19775] By: jhi on 2003/06/14 08:50:16
17381 Log: test.pl-ify and add a couple of tests.
17382 Branch: perl
17383 ! lib/bytes.t
17384____________________________________________________________________________
17385[ 19774] By: jhi on 2003/06/14 08:06:18
17386 Log: Integrate:
17387 [ 19772]
17388 Illegal cpp.
17389
17390 [ 19773]
17391 Slight reorg of the binmode() entry.
17392 Branch: maint-5.8/perl
17393 !> pod/perlfunc.pod util.c
17394____________________________________________________________________________
17395[ 19773] By: jhi on 2003/06/14 08:05:01
17396 Log: Slight reorg of the binmode() entry.
17397 Branch: perl
17398 ! pod/perlfunc.pod
17399____________________________________________________________________________
17400[ 19772] By: jhi on 2003/06/14 07:07:38
17401 Log: Illegal cpp.
17402 Branch: perl
17403 ! util.c
17404____________________________________________________________________________
17405[ 19771] By: jhi on 2003/06/14 04:40:49
17406 Log: Integrate:
17407 [ 19763]
17408 Define a cpp symbol, BSDish, if that looks appropriate.
17409
17410 [ 19764]
17411 Apparently the __APPLE__ cpp symbol is not Officially Sanctioned
17412 way of detecting Darwin/Mac OS X; instead it is recommended to
17413 detect the OS at a higher level and pass the information manually
17414 down to the application, using e.g. a -Ddefinition.
17415
17416 [ 19765]
17417 Subject: [PATCH] Re: [perl #18849] fork/system bug on FreeBSD
17418 From: alan <alan@pair.com>
17419 Date: Wed, 11 Jun 2003 14:07:00 -0400 (EDT)
17420 Message-ID: <Pine.BSF.4.30.0306111348450.32145-100000@smx.pair.com>
17421
17422 (the first alternative)
17423
17424 [ 19766]
17425 Somehow MPE/iX managed to get
17426 "18/0Illegal division by zero at ../lib/Test/Harness.pm line 921."
17427
17428 [ 19767]
17429 Redundancy removal from Brian De Pradine;
17430 both the forms, pthread_mutexattr_settype() and
17431 pthread_mutexattr_setkind_np(), exist on z/OS.
17432
17433 [ 19768]
17434 Encode simply needs more work on EBCDIC.
17435
17436 [ 19770]
17437 Subject: Re: FileCache
17438 From: belg4mit <belg4mit@MIT.EDU>
17439 Date: Sat, 14 Jun 2003 01:35:05 -0400
17440 Message-ID: <3EEAB409.7B4C21EA@mit.edu>
17441
17442 FileCache 1.03.
17443 Branch: maint-5.8/perl
17444 !> ext/Encode/t/Unicode.t hints/darwin.sh lib/FileCache.pm
17445 !> lib/Test/Harness.pm perl.h thread.h util.c x2p/util.c
17446____________________________________________________________________________
17447[ 19770] By: jhi on 2003/06/14 04:36:18
17448 Log: Subject: Re: FileCache
17449 From: belg4mit <belg4mit@MIT.EDU>
17450 Date: Sat, 14 Jun 2003 01:35:05 -0400
17451 Message-ID: <3EEAB409.7B4C21EA@mit.edu>
17452
17453 FileCache 1.03.
17454 Branch: perl
17455 ! lib/FileCache.pm
17456____________________________________________________________________________
17457[ 19769] By: rgs on 2003/06/13 19:17:50
17458 Log: Remove the deprecated $* variable.
17459 Incidentally, this fixes bug #22354, about unwanted
17460 action-at-distance of the /m regexp modifier.
17461 Add a new warning to advertise this fact.
17462 Branch: perl
17463 ! gv.c lib/English.pm mg.c pod/perldelta.pod pod/perldiag.pod
17464 ! pod/perlre.pod pod/perlvar.pod pp.c pp_hot.c t/lib/warnings/gv
17465 ! t/op/pat.t t/op/study.t
17466____________________________________________________________________________
17467[ 19768] By: jhi on 2003/06/13 17:08:45
17468 Log: Encode simply needs more work on EBCDIC.
17469 Branch: perl
17470 ! ext/Encode/t/Unicode.t
17471____________________________________________________________________________
17472[ 19767] By: jhi on 2003/06/13 17:05:01
17473 Log: Redundancy removal from Brian De Pradine;
17474 both the forms, pthread_mutexattr_settype() and
17475 pthread_mutexattr_setkind_np(), exist on z/OS.
17476 Branch: perl
17477 ! thread.h
17478____________________________________________________________________________
17479[ 19766] By: jhi on 2003/06/13 17:02:57
17480 Log: Somehow MPE/iX managed to get
17481 "18/0Illegal division by zero at ../lib/Test/Harness.pm line 921."
17482 Branch: perl
17483 ! lib/Test/Harness.pm
17484____________________________________________________________________________
17485[ 19765] By: jhi on 2003/06/13 14:36:18
17486 Log: Subject: [PATCH] Re: [perl #18849] fork/system bug on FreeBSD
17487 From: alan <alan@pair.com>
17488 Date: Wed, 11 Jun 2003 14:07:00 -0400 (EDT)
17489 Message-ID: <Pine.BSF.4.30.0306111348450.32145-100000@smx.pair.com>
17490
17491 (the first alternative)
17492 Branch: perl
17493 ! util.c
17494____________________________________________________________________________
17495[ 19764] By: jhi on 2003/06/13 14:33:51
17496 Log: Apparently the __APPLE__ cpp symbol is not Officially Sanctioned
17497 way of detecting Darwin/Mac OS X; instead it is recommended to
17498 detect the OS at a higher level and pass the information manually
17499 down to the application, using e.g. a -Ddefinition.
17500 Branch: perl
17501 ! hints/darwin.sh perl.h x2p/util.c
17502____________________________________________________________________________
17503[ 19763] By: jhi on 2003/06/13 14:12:13
17504 Log: Define a cpp symbol, BSDish, if that looks appropriate.
17505 Branch: perl
17506 ! perl.h
17507____________________________________________________________________________
17508[ 19762] By: jhi on 2003/06/13 12:09:16
17509 Log: Integrate:
17510 [ 19760]
17511 Even more tweakage on symbol scanning from Alan Burlison.
17512 Branch: maint-5.8/perl
17513 !> Configure
17514____________________________________________________________________________
17515[ 19761] By: jhi on 2003/06/13 12:00:26
17516 Log: metaconfig unit change for #19760.
17517 Branch: metaconfig
17518 ! U/compline/Csym.U
17519____________________________________________________________________________
17520[ 19760] By: jhi on 2003/06/13 12:00:06
17521 Log: Even more tweakage on symbol scanning from Alan Burlison.
17522 Branch: perl
17523 ! Configure
17524____________________________________________________________________________
17525[ 19759] By: jhi on 2003/06/13 07:22:57
17526 Log: Integrate:
17527 [ 19740]
17528 Doc nit.
17529
17530 [ 19741]
17531 Subject: [PATCH: perl@19733] fix vmsish.t #25 by letting $0 find itself in the face of chdir() calls
17532 From: PPrymmer@factset.com
17533 Date: Wed, 11 Jun 2003 09:00:34 -0400
17534 Message-ID: <OF2535E971.A30D9C74-ON85256D42.00461FF9-85256D42.004776C4@factset.com>
17535
17536 [ 19742]
17537 Subject: [PATCH] Configure -Dnoextensions would not accept a list
17538 From: Andy Dougherty <doughera@lafayette.edu>
17539 Date: Wed, 11 Jun 2003 13:35:26 -0400 (EDT)
17540 Message-ID: <Pine.SOL.4.53.0306111331550.2477@maxwell.phys.lafayette.edu>
17541
17542 [ 19744]
17543 Subject: Re: [PATCH] Annoyingly unhelpful messages from lib/File/Temp/t/security.t
17544 From: Andy Dougherty <doughera@lafayette.edu>
17545 Date: Wed, 11 Jun 2003 12:57:58 -0400 (EDT)
17546 Message-ID: <Pine.SOL.4.53.0306111252540.19074@maxwell.phys.lafayette.edu>
17547
17548 [ 19746]
17549 Be polite and destroy the mutexes and conditions we use!
17550
17551 [ 19747]
17552 Slightly amended version of the proposed patch for
17553 "[perl #22390] export PERLIO=bytes segfaults";
17554 the amendment is to set errno.
17555 TODO: we really should not get here if the layer
17556 stack is corrupt or non-sensical (like "bytes").
17557
17558 [ 19748]
17559 Further perlio doc tweaks.
17560
17561 [ 19749]
17562 More perlio ->Open paranoia. Set errno to EINVAL if there's
17563 no ->Open, not if ->Open returns NULL.
17564
17565 [ 19750]
17566 In free we want to destroy, not init, thanks to Tim Bunce for
17567 detecting this. Should hopefully fix memory leak on Tru64
17568
17569 [ 19751]
17570 Patch for a warning emitted twice, from :
17571 Subject: [PATCH: perl@19733] "perldoc -f -X" + "extra warning from -T"
17572 From: Steve Grazzini <grazz@pobox.com>
17573 Date: Wed, 11 Jun 2003 00:46:47 -0400
17574 Message-ID: <20030611044647.GA16696@grazzini.net>
17575
17576 [ 19752]
17577 Add a new warning, "Newline in left-justified string for printf/sprintf"
17578 to be issued if the string to be left-justified by s?printf contains
17579 a newline.
17580
17581 Subject: [PATCH] RE: [perl #22599] Strange behaviour when combining foreac h and printf
17582 From: Robin Barker <Robin.Barker@npl.co.uk>
17583 Date: Wed, 11 Jun 2003 18:10:14 +0100
17584 Message-ID: <533D273D4014D411AB1D00062938C4D904046571@hotel.npl.co.uk>
17585
17586 [ 19756]
17587 The changes #8803 and #8896 that fixed JPL for use with
17588 JDK 1.2/1.3 had somehow disappeared.
17589
17590 [ 19758]
17591 Sync with libnet 1.15
17592 Branch: maint-5.8/perl
17593 !> Configure INSTALL ext/threads/shared/shared.xs
17594 !> lib/File/Temp/t/security.t lib/Net/ChangeLog.libnet
17595 !> lib/Net/FTP.pm lib/PerlIO.pm lib/vmsish.t perl.c perl.h
17596 !> perlio.c pod/perldiag.pod pod/perlrun.pod pp_sys.c sv.c
17597 !> t/lib/warnings/sv
17598____________________________________________________________________________
17599[ 19758] By: gbarr on 2003/06/13 07:01:11
17600 Log: Sync with libnet 1.15
17601 Branch: perl
17602 ! lib/Net/ChangeLog.libnet lib/Net/FTP.pm
17603____________________________________________________________________________
17604[ 19757] By: jhi on 2003/06/13 05:23:22
17605 Log: To go with #19745.
17606 Branch: maint-5.8/perl
17607 ! pad.h
17608____________________________________________________________________________
17609[ 19756] By: jhi on 2003/06/13 05:09:17
17610 Log: The changes #8803 and #8896 that fixed JPL for use with
17611 JDK 1.2/1.3 had somehow disappeared.
17612 Branch: perl
17613 ! perl.c perl.h
17614____________________________________________________________________________
17615[ 19755] By: jhi on 2003/06/13 04:56:10
17616 Log: Uncurliff.
17617 Branch: maint-5.8/perl
17618 ! djgpp/configure.bat
17619____________________________________________________________________________
17620[ 19754] By: jhi on 2003/06/13 04:54:04
17621 Log: Forgotten check-in.
17622 Branch: maint-5.8/perl
17623 ! Cross/config.sh-arm-linux
17624____________________________________________________________________________
17625[ 19753] By: jhi on 2003/06/13 04:52:36
17626 Log: Regen perlintern.
17627 Branch: maint-5.8/perl
17628 ! pod/perlintern.pod
17629____________________________________________________________________________
17630[ 19752] By: rgs on 2003/06/12 20:49:25
17631 Log: Add a new warning, "Newline in left-justified string for printf/sprintf"
17632 to be issued if the string to be left-justified by s?printf contains
17633 a newline.
17634
17635 Subject: [PATCH] RE: [perl #22599] Strange behaviour when combining foreac h and printf
17636 From: Robin Barker <Robin.Barker@npl.co.uk>
17637 Date: Wed, 11 Jun 2003 18:10:14 +0100
17638 Message-ID: <533D273D4014D411AB1D00062938C4D904046571@hotel.npl.co.uk>
17639 Branch: perl
17640 ! pod/perldiag.pod sv.c t/lib/warnings/sv
17641____________________________________________________________________________
17642[ 19751] By: rgs on 2003/06/12 20:25:41
17643 Log: Patch for a warning emitted twice, from :
17644 Subject: [PATCH: perl@19733] "perldoc -f -X" + "extra warning from -T"
17645 From: Steve Grazzini <grazz@pobox.com>
17646 Date: Wed, 11 Jun 2003 00:46:47 -0400
17647 Message-ID: <20030611044647.GA16696@grazzini.net>
17648 Branch: perl
17649 ! pp_sys.c
17650____________________________________________________________________________
17651[ 19750] By: sky on 2003/06/12 15:03:55
17652 Log: In free we want to destroy, not init, thanks to Tim Bunce for
17653 detecting this. Should hopefully fix memory leak on Tru64
17654 Branch: perl
17655 ! ext/threads/shared/shared.xs
17656____________________________________________________________________________
17657[ 19749] By: jhi on 2003/06/12 13:27:44
17658 Log: More perlio ->Open paranoia. Set errno to EINVAL if there's
17659 no ->Open, not if ->Open returns NULL.
17660 Branch: perl
17661 ! perlio.c
17662____________________________________________________________________________
17663[ 19748] By: jhi on 2003/06/12 11:32:44
17664 Log: Further perlio doc tweaks.
17665 Branch: perl
17666 ! lib/PerlIO.pm pod/perlrun.pod
17667____________________________________________________________________________
17668[ 19747] By: jhi on 2003/06/12 11:25:19
17669 Log: Slightly amended version of the proposed patch for
17670 "[perl #22390] export PERLIO=bytes segfaults";
17671 the amendment is to set errno.
17672 TODO: we really should not get here if the layer
17673 stack is corrupt or non-sensical (like "bytes").
17674 Branch: perl
17675 ! perlio.c
17676____________________________________________________________________________
17677[ 19746] By: sky on 2003/06/12 08:37:39
17678 Log: Be polite and destroy the mutexes and conditions we use!
17679 Branch: perl
17680 ! ext/threads/shared/shared.xs
17681____________________________________________________________________________
17682[ 19745] By: jhi on 2003/06/12 06:35:47
17683 Log: Bandaid from Dave Mitchell for various pad-related
17684 breakages in 5005threads builds.
17685 Branch: maint-5.8/perl
17686 ! embedvar.h intrpvar.h perlapi.h thrdvar.h util.c
17687____________________________________________________________________________
17688[ 19744] By: rgs on 2003/06/11 20:49:04
17689 Log: Subject: Re: [PATCH] Annoyingly unhelpful messages from lib/File/Temp/t/security.t
17690 From: Andy Dougherty <doughera@lafayette.edu>
17691 Date: Wed, 11 Jun 2003 12:57:58 -0400 (EDT)
17692 Message-ID: <Pine.SOL.4.53.0306111252540.19074@maxwell.phys.lafayette.edu>
17693 Branch: perl
17694 ! lib/File/Temp/t/security.t
17695____________________________________________________________________________
17696[ 19743] By: jhi on 2003/06/11 18:28:33
17697 Log: metaconfig unit change for #19742.
17698 Branch: metaconfig/U/perl
17699 ! Extensions.U
17700____________________________________________________________________________
17701[ 19742] By: jhi on 2003/06/11 18:28:12
17702 Log: Subject: [PATCH] Configure -Dnoextensions would not accept a list
17703 From: Andy Dougherty <doughera@lafayette.edu>
17704 Date: Wed, 11 Jun 2003 13:35:26 -0400 (EDT)
17705 Message-ID: <Pine.SOL.4.53.0306111331550.2477@maxwell.phys.lafayette.edu>
17706 Branch: perl
17707 ! Configure
17708____________________________________________________________________________
17709[ 19741] By: merijn on 2003/06/11 14:06:49
17710 Log: Subject: [PATCH: perl@19733] fix vmsish.t #25 by letting $0 find itself in the face of chdir() calls
17711 From: PPrymmer@factset.com
17712 Date: Wed, 11 Jun 2003 09:00:34 -0400
17713 Message-ID: <OF2535E971.A30D9C74-ON85256D42.00461FF9-85256D42.004776C4@factset.com>
17714 Branch: perl
17715 ! lib/vmsish.t
17716____________________________________________________________________________
17717[ 19740] By: jhi on 2003/06/11 13:29:59
17718 Log: Doc nit.
17719 Branch: perl
17720 ! INSTALL
17721____________________________________________________________________________
17722[ 19739] By: jhi on 2003/06/11 05:30:53
17723 Log: Integrate from maint:
17724 [ 19738]
17725 Subject: Re: [PATCH: maint @ 19733] CL compiler warnings on MSWin32
17726 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
17727 Date: Tue, 10 Jun 2003 22:10:47 +0200
17728 Message-ID: <011701c32f8c$62d85ee0$0c2f1fac@R2D2>
17729 Branch: perl
17730 !> ext/Encode/encengine.c ext/List/Util/Util.xs
17731 !> ext/POSIX/POSIX.xs ext/Storable/Storable.xs
17732 !> ext/Thread/Thread.xs ext/threads/threads.xs op.c perl.c pp.h
17733 !> sv.c
17734____________________________________________________________________________
17735[ 19738] By: jhi on 2003/06/11 05:13:38
17736 Log: Subject: Re: [PATCH: maint @ 19733] CL compiler warnings on MSWin32
17737 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
17738 Date: Tue, 10 Jun 2003 22:10:47 +0200
17739 Message-ID: <011701c32f8c$62d85ee0$0c2f1fac@R2D2>
17740
17741 (the perl.h being open in mainline was accidental)
17742 Branch: maint-5.8/perl
17743 ! ext/Encode/encengine.c ext/List/Util/Util.xs
17744 ! ext/POSIX/POSIX.xs ext/Storable/Storable.xs
17745 ! ext/Thread/Thread.xs ext/threads/threads.xs op.c perl.c pp.h
17746 ! sv.c
17747 Branch: perl
17748 ! perl.h
17749____________________________________________________________________________
17750[ 19737] By: nick on 2003/06/10 08:18:30
17751 Log: Integrate mainline
17752 Branch: perlio
17753 !> (integrate 88 files)
17754____________________________________________________________________________
17755[ 19736] By: jhi on 2003/06/10 06:43:29
17756 Log: Integrate:
17757 [ 19734]
17758 Upgrade to Unicode::Collate 0.25.
17759
17760 [ 19735]
17761 Upgrade to Unicode::Normalize 0.22.
17762 Branch: maint-5.8/perl
17763 !> ext/Unicode/Normalize/Changes
17764 !> ext/Unicode/Normalize/Makefile.PL
17765 !> ext/Unicode/Normalize/Normalize.pm
17766 !> ext/Unicode/Normalize/Normalize.xs
17767 !> ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
17768 !> ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
17769 !> ext/Unicode/Normalize/t/test.t lib/Unicode/Collate.pm
17770 !> lib/Unicode/Collate/Changes lib/Unicode/Collate/README
17771 !> lib/Unicode/Collate/t/index.t lib/Unicode/Collate/t/test.t
17772____________________________________________________________________________
17773[ 19735] By: jhi on 2003/06/10 05:27:33
17774 Log: Upgrade to Unicode::Normalize 0.22.
17775 Branch: perl
17776 ! ext/Unicode/Normalize/Changes
17777 ! ext/Unicode/Normalize/Makefile.PL
17778 ! ext/Unicode/Normalize/Normalize.pm
17779 ! ext/Unicode/Normalize/Normalize.xs
17780 ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
17781 ! ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
17782 ! ext/Unicode/Normalize/t/test.t
17783____________________________________________________________________________
17784[ 19734] By: jhi on 2003/06/10 05:14:18
17785 Log: Upgrade to Unicode::Collate 0.25.
17786 Branch: perl
17787 ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
17788 ! lib/Unicode/Collate/README lib/Unicode/Collate/t/index.t
17789 ! lib/Unicode/Collate/t/test.t
17790____________________________________________________________________________
17791[ 19733] By: jhi on 2003/06/09 20:55:44
17792 Log: Update Changes.
17793 Branch: maint-5.8/perl
17794 ! Changes patchlevel.h
17795____________________________________________________________________________
17796[ 19732] By: jhi on 2003/06/09 20:52:02
17797 Log: Integrate:
17798 [ 19729]
17799 Subject: [PATCH] Re: nitpick with \(0..2)
17800 From: Steve Grazzini <grazz@pobox.com>
17801 Date: Fri, 6 Jun 2003 01:42:59 -0400
17802 Message-ID: <20030606054259.GA30249@grazzini.net>
17803
17804 [ 19730]
17805 Subject: [PATCH] Annoyingly unhelpful messages from lib/File/Temp/t/security.t
17806 From: Andy Dougherty <doughera@lafayette.edu>
17807 Date: Mon, 9 Jun 2003 14:45:38 -0400 (EDT)
17808 Message-ID: <Pine.SOL.4.53.0306091323300.4467@maxwell.phys.lafayette.edu>
17809
17810 [ 19731]
17811 On a real multicpu box the child thread could still be running
17812 when the parent thread was already testing.
17813 Branch: maint-5.8/perl
17814 !> INSTALL ext/threads/shared/t/hv_refs.t op.c pod/perlop.pod
17815 !> t/op/ref.t
17816____________________________________________________________________________
17817[ 19731] By: jhi on 2003/06/09 20:48:14
17818 Log: On a real multicpu box the child thread could still be running
17819 when the parent thread was already testing.
17820 Branch: perl
17821 ! ext/threads/shared/t/hv_refs.t
17822____________________________________________________________________________
17823[ 19730] By: rgs on 2003/06/09 19:56:29
17824 Log: Subject: [PATCH] Annoyingly unhelpful messages from lib/File/Temp/t/security.t
17825 From: Andy Dougherty <doughera@lafayette.edu>
17826 Date: Mon, 9 Jun 2003 14:45:38 -0400 (EDT)
17827 Message-ID: <Pine.SOL.4.53.0306091323300.4467@maxwell.phys.lafayette.edu>
17828 Branch: perl
17829 ! INSTALL
17830____________________________________________________________________________
17831[ 19729] By: rgs on 2003/06/09 19:13:16
17832 Log: Subject: [PATCH] Re: nitpick with \(0..2)
17833 From: Steve Grazzini <grazz@pobox.com>
17834 Date: Fri, 6 Jun 2003 01:42:59 -0400
17835 Message-ID: <20030606054259.GA30249@grazzini.net>
17836 Branch: perl
17837 ! op.c pod/perlop.pod t/op/ref.t
17838____________________________________________________________________________
17839[ 19728] By: jhi on 2003/06/09 19:09:09
17840 Log: Update Changes.
17841 Branch: maint-5.8/perl
17842 ! Changes patchlevel.h
17843____________________________________________________________________________
17844[ 19727] By: jhi on 2003/06/09 18:53:58
17845 Log: Integrate:
17846 [ 19723]
17847 one of the Net::Ping time-dependent tests fails sporadically
17848 when the response from localhost is "too quick"
17849
17850 [ 19724]
17851 mark 450_service.t#18 as a todo test on windows
17852
17853 [ 19725]
17854 In the debugger, flush stdout/stderr before the prompt is printed
17855 Subject: Re: [PATCH] Perlbug #15228
17856 From: Alex Vandiver <alexmv@MIT.EDU>
17857 Date: 04 Jun 2003 04:50:10 -0400
17858 Message-Id: <1054716610.21402.45.camel@supox>
17859
17860 [ 19726]
17861 Possible fix for the problems in EBCDIC from Sadahiro Tomoyuki.
17862 Branch: maint-5.8/perl
17863 !> ext/Unicode/Normalize/Normalize.pm
17864 !> lib/Net/Ping/t/250_ping_hires.t lib/Net/Ping/t/450_service.t
17865 !> lib/perl5db.pl
17866____________________________________________________________________________
17867[ 19726] By: jhi on 2003/06/09 18:45:00
17868 Log: Possible fix for the problems in EBCDIC from Sadahiro Tomoyuki.
17869 Branch: perl
17870 ! ext/Unicode/Normalize/Normalize.pm
17871____________________________________________________________________________
17872[ 19725] By: rgs on 2003/06/09 18:33:50
17873 Log: In the debugger, flush stdout/stderr before the prompt is printed
17874 Subject: Re: [PATCH] Perlbug #15228
17875 From: Alex Vandiver <alexmv@MIT.EDU>
17876 Date: 04 Jun 2003 04:50:10 -0400
17877 Message-Id: <1054716610.21402.45.camel@supox>
17878 Branch: perl
17879 ! lib/perl5db.pl
17880____________________________________________________________________________
17881[ 19724] By: gsar on 2003/06/09 18:17:42
17882 Log: mark 450_service.t#18 as a todo test on windows
17883 Branch: perl
17884 ! lib/Net/Ping/t/450_service.t
17885____________________________________________________________________________
17886[ 19723] By: gsar on 2003/06/09 18:00:57
17887 Log: one of the Net::Ping time-dependent tests fails sporadically
17888 when the response from localhost is "too quick"
17889 Branch: perl
17890 ! lib/Net/Ping/t/250_ping_hires.t
17891____________________________________________________________________________
17892[ 19722] By: jhi on 2003/06/09 17:52:25
17893 Log: Integrate:
17894 [ 19705]
17895 Work in non core env.
17896
17897 [ 19706]
17898 Remove warnings from tests.
17899
17900 [ 19707]
17901 Last patch broke this slightly because INC was wrong.
17902
17903 [ 19708]
17904 Major (internal) change to make it much more easy to embed
17905 threaded perl because we don't use our own TLS for the current
17906 thread info, but instead use PL_modglobal. Should make the
17907 mod_perl2 team (Hi Stas!) happy. Should also be more robust.
17908
17909 [ 19709]
17910 More symbol scan logic from Alan Burlison.
17911
17912 [ 19710]
17913 Regen Configure et al.
17914
17915 [ 19712]
17916 Subject: Re: forwarded you a test result
17917 From: Dan Kogai <dankogai@dan.co.jp>
17918 Date: Sun, 8 Jun 2003 11:04:43 +0900
17919 Message-Id: <92344ED4-9955-11D7-8DFA-000393AE4244@dan.co.jp>
17920
17921 [ 19714]
17922 Subject: [PATCH] pack.t tweak for non-IEEE VMS systems
17923 From: "Craig A. Berry" <craigberry@mac.com>
17924 Date: Sun, 08 Jun 2003 16:49:43 -0500
17925 Message-ID: <3EE3AF77.7060302@mac.com>
17926
17927 [ 19715]
17928 Support blessed shared references.
17929
17930 [ 19717]
17931 windows: fix memory leak in %ENV handling (shows up as a
17932 leak even in the simplest fork() loop, because perl_construct()
17933 now does the equivalent of %ENV assignments using mg_set())
17934
17935 [ 19719]
17936 Subject: [PATCH: perl@19683] fix ups for perlivp on VMS plus more symbols for utils
17937 From: PPrymmer@factset.com
17938 Date: Mon, 9 Jun 2003 09:57:43 -0400
17939 Message-ID: <OFBA811434.A612F1C0-ON85256D40.004B5ECC-85256D40.004CB24D@factset.com>
17940
17941 [ 19720]
17942 fix for perlio.t failures on windows (from Dan Kogai)
17943
17944 [ 19721]
17945 Subject: [PATCH] ExtUtils::MakeMaker 6.10_06 (plus FAQ update)
17946 From: Michael G Schwern <schwern@pobox.com>
17947 Date: Sat, 7 Jun 2003 01:16:32 -0700
17948 Message-ID: <20030607081632.GA16228@windhund.schwern.org>
17949
17950 (and regen Configure et al)
17951 Branch: maint-5.8/perl
17952 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
17953 ! config_h.SH
17954 !> (integrate 26 files)
17955____________________________________________________________________________
17956[ 19721] By: jhi on 2003/06/09 17:04:50
17957 Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_06 (plus FAQ update)
17958 From: Michael G Schwern <schwern@pobox.com>
17959 Date: Sat, 7 Jun 2003 01:16:32 -0700
17960 Message-ID: <20030607081632.GA16228@windhund.schwern.org>
17961 Branch: perl
17962 ! lib/ExtUtils/Changes lib/ExtUtils/META.yml
17963 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MakeMaker/FAQ.pod
17964 ! lib/ExtUtils/t/Liblist.t
17965____________________________________________________________________________
17966[ 19720] By: gsar on 2003/06/09 15:59:52
17967 Log: fix for perlio.t failures on windows (from Dan Kogai)
17968 Branch: perl
17969 ! ext/Encode/t/perlio.t
17970____________________________________________________________________________
17971[ 19719] By: jhi on 2003/06/09 15:28:18
17972 Log: Subject: [PATCH: perl@19683] fix ups for perlivp on VMS plus more symbols for utils
17973 From: PPrymmer@factset.com
17974 Date: Mon, 9 Jun 2003 09:57:43 -0400
17975 Message-ID: <OFBA811434.A612F1C0-ON85256D40.004B5ECC-85256D40.004CB24D@factset.com>
17976 Branch: perl
17977 ! configure.com utils/perlivp.PL
17978____________________________________________________________________________
17979[ 19718] By: gsar on 2003/06/09 14:11:52
17980 Log: integrate change#19717 from mainline
17981
17982 windows: fix memory leak in %ENV handling (shows up as a
17983 leak even in the simplest fork() loop, because perl_construct()
17984 now does the equivalent of %ENV assignments using mg_set())
17985 Branch: maint-5.6/perl
17986 !> win32/perlhost.h
17987____________________________________________________________________________
17988[ 19717] By: gsar on 2003/06/09 14:09:55
17989 Log: windows: fix memory leak in %ENV handling (shows up as a
17990 leak even in the simplest fork() loop, because perl_construct()
17991 now does the equivalent of %ENV assignments using mg_set())
17992 Branch: perl
17993 ! win32/perlhost.h
17994____________________________________________________________________________
17995[ 19716] By: gsar on 2003/06/09 13:29:07
17996 Log: integrate changes#19384,19533,19537,19628,19666,19668 from mainline
17997
17998 resurrect change#19628 and make it work by generalizing
17999 a spot that had a hardcoded dependency on the cmd.exe
18000 arguments being "/x/c" or "/c"
18001
18002 change#19628 broke many win32/system.t tests, so back it out
18003
18004 Subject: [PATCH] Use "cmd.exe /x/d/c" as the default PERL5SHELL on Windows NT/2K/XP
18005 From: Jan Dubois <jand@ActiveState.com>
18006 Date: Mon, 26 May 2003 23:33:53 -0700
18007 Message-ID: <dv06dv48900iqv5hqddmbc6vt0efvto8d6@4ax.com>
18008
18009 missing init in change#19533
18010
18011 avoid select() on windows destroying errno (used to typically
18012 always sets it to EINVAL due to the way it maps the FD_SETs)
18013
18014 Subject: [PATCH win32/win32.c] silence compiler warnings
18015 From: Abe Timmerman <abe@ztreet.demon.nl>
18016 Date: Fri, 2 May 2003 00:51:42 +0200
18017 Message-Id: <200305020051.43166.abe@ztreet.demon.nl>
18018 Branch: maint-5.6/perl
18019 !> pod/perlrun.pod win32/win32.c win32/win32sck.c
18020____________________________________________________________________________
18021[ 19715] By: sky on 2003/06/09 09:35:47
18022 Log: Support blessed shared references.
18023 Branch: perl
18024 ! ext/threads/shared/shared.pm ext/threads/shared/shared.xs
18025 ! ext/threads/shared/t/hv_refs.t
18026____________________________________________________________________________
18027[ 19714] By: jhi on 2003/06/09 04:29:04
18028 Log: Subject: [PATCH] pack.t tweak for non-IEEE VMS systems
18029 From: "Craig A. Berry" <craigberry@mac.com>
18030 Date: Sun, 08 Jun 2003 16:49:43 -0500
18031 Message-ID: <3EE3AF77.7060302@mac.com>
18032 Branch: perl
18033 ! t/op/pack.t
18034____________________________________________________________________________
18035[ 19713] By: gsar on 2003/06/08 18:33:25
18036 Log: add basic test coverage for the sysio compatibility issues on dosish
18037 platforms
18038 Branch: perlio
18039 + t/op/sysio-compat.t
18040 ! MANIFEST
18041____________________________________________________________________________
18042[ 19712] By: jhi on 2003/06/08 17:05:59
18043 Log: Subject: Re: forwarded you a test result
18044 From: Dan Kogai <dankogai@dan.co.jp>
18045 Date: Sun, 8 Jun 2003 11:04:43 +0900
18046 Message-Id: <92344ED4-9955-11D7-8DFA-000393AE4244@dan.co.jp>
18047 Branch: perl
18048 ! ext/Encode/t/Encode.t
18049____________________________________________________________________________
18050[ 19711] By: jhi on 2003/06/08 17:03:20
18051 Log: metaconfig unit change for #19710.
18052 Branch: metaconfig
18053 ! U/compline/Csym.U
18054____________________________________________________________________________
18055[ 19710] By: jhi on 2003/06/08 17:03:07
18056 Log: Regen Configure et al.
18057 Branch: perl
18058 ! Configure Porting/config.sh Porting/config_H
18059____________________________________________________________________________
18060[ 19709] By: jhi on 2003/06/08 16:45:50
18061 Log: More symbol scan logic from Alan Burlison.
18062 Branch: perl
18063 ! Configure Porting/Glossary hints/solaris_2.sh
18064____________________________________________________________________________
18065[ 19708] By: sky on 2003/06/07 13:28:50
18066 Log: Major (internal) change to make it much more easy to embed
18067 threaded perl because we don't use our own TLS for the current
18068 thread info, but instead use PL_modglobal. Should make the
18069 mod_perl2 team (Hi Stas!) happy. Should also be more robust.
18070 Branch: perl
18071 ! ext/threads/threads.xs
18072____________________________________________________________________________
18073[ 19707] By: sky on 2003/06/07 13:27:01
18074 Log: Last patch broke this slightly because INC was wrong.
18075 Branch: perl
18076 ! ext/threads/t/thread.t
18077____________________________________________________________________________
18078[ 19706] By: sky on 2003/06/07 13:07:53
18079 Log: Remove warnings from tests.
18080 Branch: perl
18081 ! ext/threads/t/basic.t ext/threads/t/end.t ext/threads/t/join.t
18082 ! ext/threads/t/list.t
18083____________________________________________________________________________
18084[ 19705] By: sky on 2003/06/07 12:42:28
18085 Log: Work in non core env.
18086 Branch: perl
18087 ! ext/threads/t/basic.t ext/threads/t/end.t ext/threads/t/join.t
18088 ! ext/threads/t/libc.t ext/threads/t/list.t
18089 ! ext/threads/t/problems.t ext/threads/t/stress_cv.t
18090 ! ext/threads/t/stress_re.t ext/threads/t/stress_string.t
18091 ! ext/threads/t/thread.t
18092____________________________________________________________________________
18093[ 19704] By: jhi on 2003/06/07 05:24:27
18094 Log: Integrate:
18095 [ 19685]
18096 Align the 'graph' property definition with the proposed
18097 Unicode UTS #18 update (v7).
18098
18099 [ 19686]
18100 On closer reading the proposed UTS#18 update required
18101 even more changes.
18102
18103 [ 19687]
18104 Subject: Re: [MacOS X] consider useshrplib='false' by default
18105 From: Andy Dougherty <doughera@lafayette.edu>
18106 Date: Wed, 4 Jun 2003 11:33:29 -0400 (EDT)
18107 Message-ID: <Pine.SOL.4.53.0306041128350.15343@maxwell.phys.lafayette.edu>
18108
18109 [ 19688]
18110 Prevent a potential null pointer dereference.
18111 Noticed by Ryan Koga <rkoga@caida.org> in
18112 Message-ID: <Pine.BSF.4.44.0306031659090.1489-100000@login.caida.org>
18113
18114 [ 19689]
18115 Upgrade to Time::HiRes 1.48.
18116
18117 [ 19690]
18118 z/OS threads tweak from Brian De Pradine.
18119
18120 [ 19691]
18121 Even more getspecific patches from Brian De Pradine;
18122 macrofy the construct.
18123
18124 [ 19692]
18125 z/OS makedepend fix from Peter Prymmer;
18126 still needed as reported by Brian De Pradine.
18127
18128 [ 19693]
18129 SKIP label was missing.
18130
18131 [ 19694]
18132 Subject: [PATCH] RE: maint @ 19683
18133 From: Robin Barker <Robin.Barker@npl.co.uk>
18134 Date: Thu, 5 Jun 2003 17:16:58 +0100
18135 Message-ID: <533D273D4014D411AB1D00062938C4D904046564@hotel.npl.co.uk>
18136
18137 (skipped the MIME::Base64 part, leaving that to Gisle)
18138
18139 [ 19695]
18140 Subject: [PATCH] Re: SPUG:-s option doesn't always work!
18141 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
18142 Date: Wed, 04 Jun 2003 00:08:32 -0700
18143 Message-ID: <wrZ3+gzkg2iX092yn@efn.org>
18144
18145 [ 19696]
18146 Perl *is* 100% 64bit compliant on HP-UX 11.00 and up (as long
18147 as the compiler supports it)
18148
18149 [ 19697]
18150 Oops, Joe's edits had been undone by #19682.
18151
18152 [ 19698]
18153 Clarify that => doesn't quote compound identifiers.
18154
18155 [ 19699]
18156 Subject: [patch] L<perlguts/"API LISTING"> is now L<perlapi>
18157 From: Stas Bekman <stas@stason.org>
18158 Date: Thu, 05 Jun 2003 10:10:36 +1000
18159 Message-ID: <3EDE8A7C.2080302@stason.org>
18160
18161 Subject: [patch] perlguts authors dup
18162 From: Stas Bekman <stas@stason.org>
18163 Date: Thu, 05 Jun 2003 10:14:12 +1000
18164 Message-ID: <3EDE8B54.6090808@stason.org>
18165
18166 [ 19700]
18167 Minor grammatical nit.
18168
18169 [ 19701]
18170 Complement to change #19698 :
18171 add also this information (=> and curly braces doesn't
18172 quote compound identifiers) to the strict manpage.
18173 As an experiment in documentation, add a "HISTORY" section
18174 to the strict manpage.
18175
18176 [ 19702]
18177 Upgrade to Time::Local 1.06, by Dave Rolsky
18178
18179 [ 19703]
18180 Subject: [PATCH] ExtUtils::MakeMaker 6.10_04 -> 6.10_05
18181 From: Michael G Schwern <schwern@pobox.com>
18182 Date: Fri, 6 Jun 2003 18:41:45 -0700
18183 Message-ID: <20030607014145.GB12031@windhund.schwern.org>
18184 Branch: maint-5.8/perl
18185 !> (integrate 42 files)
18186____________________________________________________________________________
18187[ 19703] By: jhi on 2003/06/07 05:11:50
18188 Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_04 -> 6.10_05
18189 From: Michael G Schwern <schwern@pobox.com>
18190 Date: Fri, 6 Jun 2003 18:41:45 -0700
18191 Message-ID: <20030607014145.GB12031@windhund.schwern.org>
18192 Branch: perl
18193 ! lib/ExtUtils/Changes lib/ExtUtils/Install.pm
18194 ! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/META.yml
18195 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_Unix.pm
18196 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/Manifest.pm
18197 ! lib/ExtUtils/TODO lib/ExtUtils/t/00compile.t
18198 ! lib/ExtUtils/t/Install.t lib/ExtUtils/t/basic.t
18199 ! lib/ExtUtils/t/zz_cleanup_dummy.t
18200____________________________________________________________________________
18201[ 19702] By: rgs on 2003/06/06 23:00:00
18202 Log: Upgrade to Time::Local 1.06, by Dave Rolsky
18203 Branch: perl
18204 ! lib/Time/Local.pm lib/Time/Local.t
18205____________________________________________________________________________
18206[ 19701] By: rgs on 2003/06/06 22:50:37
18207 Log: Complement to change #19698 :
18208 add also this information (=> and curly braces doesn't
18209 quote compound identifiers) to the strict manpage.
18210 As an experiment in documentation, add a "HISTORY" section
18211 to the strict manpage.
18212 Branch: perl
18213 ! lib/strict.pm
18214____________________________________________________________________________
18215[ 19700] By: rgs on 2003/06/06 22:31:50
18216 Log: Minor grammatical nit.
18217 Branch: perl
18218 ! README.hpux
18219____________________________________________________________________________
18220[ 19699] By: rgs on 2003/06/06 22:29:38
18221 Log: Subject: [patch] L<perlguts/"API LISTING"> is now L<perlapi>
18222 From: Stas Bekman <stas@stason.org>
18223 Date: Thu, 05 Jun 2003 10:10:36 +1000
18224 Message-ID: <3EDE8A7C.2080302@stason.org>
18225
18226 Subject: [patch] perlguts authors dup
18227 From: Stas Bekman <stas@stason.org>
18228 Date: Thu, 05 Jun 2003 10:14:12 +1000
18229 Message-ID: <3EDE8B54.6090808@stason.org>
18230 Branch: perl
18231 ! pod/perl5005delta.pod pod/perlguts.pod pod/perlxs.pod
18232____________________________________________________________________________
18233[ 19698] By: rgs on 2003/06/06 22:23:56
18234 Log: Clarify that => doesn't quote compound identifiers.
18235 Branch: perl
18236 ! pod/perldata.pod
18237____________________________________________________________________________
18238[ 19697] By: jhi on 2003/06/06 13:22:52
18239 Log: Oops, Joe's edits had been undone by #19682.
18240 Branch: maint-5.8/perl
18241 ! lib/perl5db.pl
18242____________________________________________________________________________
18243[ 19696] By: merijn on 2003/06/06 12:21:43
18244 Log: Perl *is* 100% 64bit compliant on HP-UX 11.00 and up (as long
18245 as the compiler supports it)
18246 Branch: perl
18247 ! README.hpux
18248____________________________________________________________________________
18249[ 19695] By: jhi on 2003/06/05 18:50:51
18250 Log: Subject: [PATCH] Re: SPUG:-s option doesn't always work!
18251 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
18252 Date: Wed, 04 Jun 2003 00:08:32 -0700
18253 Message-ID: <wrZ3+gzkg2iX092yn@efn.org>
18254 Branch: perl
18255 ! t/run/switches.t toke.c
18256____________________________________________________________________________
18257[ 19694] By: jhi on 2003/06/05 18:37:02
18258 Log: Subject: [PATCH] RE: maint @ 19683
18259 From: Robin Barker <Robin.Barker@npl.co.uk>
18260 Date: Thu, 5 Jun 2003 17:16:58 +0100
18261 Message-ID: <533D273D4014D411AB1D00062938C4D904046564@hotel.npl.co.uk>
18262
18263 (skipped the MIME::Base64 part, leaving that to Gisle)
18264 Branch: perl
18265 ! ext/POSIX/POSIX.xs gv.c op.c perl.c perl.h
18266____________________________________________________________________________
18267[ 19693] By: jhi on 2003/06/05 17:26:04
18268 Log: SKIP label was missing.
18269 Branch: perl
18270 ! t/io/utf8.t
18271____________________________________________________________________________
18272[ 19692] By: jhi on 2003/06/05 16:58:23
18273 Log: z/OS makedepend fix from Peter Prymmer;
18274 still needed as reported by Brian De Pradine.
18275 Branch: perl
18276 ! makedepend.SH
18277____________________________________________________________________________
18278[ 19691] By: jhi on 2003/06/05 16:56:01
18279 Log: Even more getspecific patches from Brian De Pradine;
18280 macrofy the construct.
18281 Branch: perl
18282 ! ext/threads/threads.xs
18283____________________________________________________________________________
18284[ 19690] By: jhi on 2003/06/05 16:19:40
18285 Log: z/OS threads tweak from Brian De Pradine.
18286 Branch: perl
18287 ! ext/threads/threads.xs
18288____________________________________________________________________________
18289[ 19689] By: jhi on 2003/06/05 05:43:31
18290 Log: Upgrade to Time::HiRes 1.48.
18291 Branch: perl
18292 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
18293____________________________________________________________________________
18294[ 19688] By: rgs on 2003/06/04 18:53:48
18295 Log: Prevent a potential null pointer dereference.
18296 Noticed by Ryan Koga <rkoga@caida.org> in
18297 Message-ID: <Pine.BSF.4.44.0306031659090.1489-100000@login.caida.org>
18298 Branch: perl
18299 ! perlio.c
18300____________________________________________________________________________
18301[ 19687] By: jhi on 2003/06/04 18:26:08
18302 Log: Subject: Re: [MacOS X] consider useshrplib='false' by default
18303 From: Andy Dougherty <doughera@lafayette.edu>
18304 Date: Wed, 4 Jun 2003 11:33:29 -0400 (EDT)
18305 Message-ID: <Pine.SOL.4.53.0306041128350.15343@maxwell.phys.lafayette.edu>
18306 Branch: perl
18307 ! hints/darwin.sh
18308____________________________________________________________________________
18309[ 19686] By: jhi on 2003/06/04 11:02:54
18310 Log: On closer reading the proposed UTS#18 update required
18311 even more changes.
18312 Branch: perl
18313 ! lib/unicore/lib/Blank.pl lib/unicore/lib/Graph.pl
18314 ! lib/unicore/lib/Print.pl lib/unicore/lib/Space.pl
18315 ! lib/unicore/lib/SpacePer.pl lib/unicore/lib/Word.pl
18316 ! lib/unicore/mktables
18317____________________________________________________________________________
18318[ 19685] By: jhi on 2003/06/04 10:14:09
18319 Log: Align the 'graph' property definition with the proposed
18320 Unicode UTS #18 update (v7).
18321 Branch: perl
18322 ! lib/unicore/lib/Graph.pl lib/unicore/mktables
18323____________________________________________________________________________
18324[ 19684] By: jhi on 2003/06/04 05:40:24
18325 Log: Change entries from the wrong branches.
18326 Branch: maint-5.8/perl
18327 ! Changes
18328____________________________________________________________________________
18329[ 19683] By: jhi on 2003/06/04 05:28:27
18330 Log: Update Changes.
18331 Branch: maint-5.8/perl
18332 ! Changes patchlevel.h
18333____________________________________________________________________________
18334[ 19682] By: jhi on 2003/06/04 05:22:46
18335 Log: Integrate:
18336 [ 19654]
18337 Two Cygwin patches from Gerrit.
18338
18339 Subject: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue
18340 From: "Gerrit P. Haase" <gp@familiehaase.de>
18341 Date: Sat, 31 May 2003 14:12:07 +0200
18342 Message-ID: <179860591535.20030531141207@familiehaase.de>
18343
18344 Subject: [PATCH] t/io/layers.t, Cygwin != DOSISH
18345 Date: Sat, 31 May 2003 13:57:49 +0200
18346 Message-ID: <11859733881.20030531135749@familiehaase.de>
18347
18348 [ 19655]
18349 A pointless test, noticed by Craig Berry.
18350
18351 [ 19656]
18352 Since pulling in File::Temp for tempfiles would pull in
18353 also Fcntl, miniperl could not open up tempfiles. This broke
18354 the use of miniperl in VMS, as noticed by Craig Berry.
18355 Try to cure this by moving the creation of tempfile into its
18356 own routine, my_tmpfp(), which gets compiled differently
18357 for miniperl and perl.
18358
18359 [ 19657]
18360 Stick with the original (5.8.0) logic.
18361
18362 [ 19658]
18363 I thought I tried building threaded. Never think. Try.
18364
18365 [ 19659]
18366 Duplicate definition bad.
18367
18368 [ 19660]
18369 Beautification.
18370
18371 [ 19661]
18372 Sync with libnet 1.14
18373
18374 [ 19662]
18375 U/WIN: final (for now) touches from John P. Linderman;
18376 now we get 97% success rate, the remaining failures are
18377 quite obscure.
18378
18379 [ 19663]
18380 Whitespace tweaks.
18381
18382 [ 19664]
18383 Upgrade to the CGI.pm 2.93.
18384
18385 (Lincoln keeps ripping out the BEGIN/PERL_CORE blocks. Sigh.)
18386
18387 [ 19665]
18388 A little bit more of weird-code-proofing in B::Deparse.
18389 Fixes a bug reported by Alexey Tourbin in
18390 Message-ID: <20030602085348.GA24023@solemn.turbinal.org>
18391
18392 [ 19666]
18393 change#19628 broke many win32/system.t tests, so back it out
18394
18395 [ 19667]
18396 don't use File::Temp to implement PerlIO_tmpfile() on windows;
18397 reuse the straightforward native implementation instead
18398
18399 this fixes the warning from io_xs.t
18400
18401 NOTE: File::Temp has a less-than-robust implementation on windows
18402 that relies on END blocks being run (this may not happen always)
18403
18404 [ 19668]
18405 resurrect change#19628 and make it work by generalizing
18406 a spot that had a hardcoded dependency on the cmd.exe
18407 arguments being "/x/c" or "/c"
18408
18409 [ 19669]
18410 fix for 09_gen_rs.t#59 failure on windows
18411
18412 [ 19670]
18413 Retract #19667, #19660, #19659, #19658, #19657, #19656,
18414 #19655, #19418; File::Temp no more used internally.
18415 Some parts of these will be salvaged later.
18416
18417 [ 19671]
18418 Subject: Re: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue
18419 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
18420 Date: Tue, 03 Jun 2003 01:55:06 -0700
18421 Message-ID: <qJG3+gzkgajL092yn@efn.org>
18422
18423 [ 19672]
18424 Salvage parts of #19418 (the ext/PerlIO/t/open.t
18425 still is there).
18426
18427 [ 19673]
18428 Salvage parts of #19667.
18429
18430 [ 19678]
18431 According to Arthur this should help
18432 #22060 Perl 5.8.0 on FreeBSD 5.0 threads (threads->list) possible bug
18433
18434 [ 19679]
18435 Urk. Joe's patches were for the maint branch,
18436 not for the blead (which has assertions and stuff).
18437 Retract #19677, #19676, #19674.
18438
18439 [ 19681]
18440 Subject: [MacOS X] consider useshrplib='false' by default
18441 From: Dan Kogai <dankogai@dan.co.jp>
18442 Date: Wed, 4 Jun 2003 01:29:42 +0900
18443 Message-Id: <94213618-95E0-11D7-8A27-000393AE4244@dan.co.jp>
18444 Branch: maint-5.8/perl
18445 +> lib/CGI/t/util-58.t
18446 !> (integrate 48 files)
18447____________________________________________________________________________
18448[ 19681] By: jhi on 2003/06/04 05:16:38
18449 Log: Subject: [MacOS X] consider useshrplib='false' by default
18450 From: Dan Kogai <dankogai@dan.co.jp>
18451 Date: Wed, 4 Jun 2003 01:29:42 +0900
18452 Message-Id: <94213618-95E0-11D7-8A27-000393AE4244@dan.co.jp>
18453 Branch: perl
18454 ! hints/darwin.sh
18455____________________________________________________________________________
18456[ 19680] By: jhi on 2003/06/03 15:53:57
18457 Log: Restore the perl5db.pl of #19677 into the maint branch.
18458 Branch: maint-5.8/perl
18459 ! lib/perl5db.pl
18460____________________________________________________________________________
18461[ 19679] By: jhi on 2003/06/03 15:51:36
18462 Log: Urk. Joe's patches were for the maint branch,
18463 not for the blead (which has assertions and stuff).
18464 Retract #19677, #19676, #19674.
18465 Branch: perl
18466 ! lib/perl5db.pl
18467____________________________________________________________________________
18468[ 19678] By: jhi on 2003/06/03 15:05:19
18469 Log: According to Arthur this should help
18470 #22060 Perl 5.8.0 on FreeBSD 5.0 threads (threads->list) possible bug
18471 Branch: perl
18472 ! ext/threads/threads.xs
18473____________________________________________________________________________
18474[ 19677] By: jhi on 2003/06/03 14:07:06
18475 Log: Tiny tweaks from Joe McMahon.
18476 Branch: perl
18477 ! lib/perl5db.pl
18478____________________________________________________________________________
18479[ 19676] By: jhi on 2003/06/03 12:38:46
18480 Log: Tiny pod and speling tweaks.
18481 Branch: perl
18482 ! lib/perl5db.pl
18483____________________________________________________________________________
18484[ 19675] By: nick on 2003/06/03 12:38:25
18485 Log: Integrate mainline
18486 Branch: perlio
18487 +> ext/IO/lib/IO/t/io_utf8.t lib/CGI/t/util-58.t
18488 !> (integrate 82 files)
18489____________________________________________________________________________
18490[ 19674] By: jhi on 2003/06/03 12:20:59
18491 Log: Subject: Extensive documentation patch redux
18492 From: Joe McMahon <mcmahon@ibiblio.org>
18493 Date: Mon, 2 Jun 2003 09:53:40 -0400
18494 Message-Id: <9DB6529E-9501-11D7-9377-000393BCA0FC@ibiblio.org>
18495
18496 Subject: RE: [PATCH] RE: Extensive documentation patch redux
18497 From: Robin Barker <Robin.Barker@npl.co.uk>
18498 Date: Tue, 3 Jun 2003 10:00:22 +0100
18499 Message-ID: <533D273D4014D411AB1D00062938C4D904046555@hotel.npl.co.uk>
18500 Branch: perl
18501 ! lib/perl5db.pl
18502____________________________________________________________________________
18503[ 19673] By: jhi on 2003/06/03 09:51:59
18504 Log: Salvage parts of #19667.
18505 Branch: perl
18506 ! perlio.c win32/win32.c win32/win32iop.h
18507____________________________________________________________________________
18508[ 19672] By: jhi on 2003/06/03 09:26:45
18509 Log: Salvage parts of #19418 (the ext/PerlIO/t/open.t
18510 still is there).
18511 Branch: perl
18512 ! MANIFEST pod/perlfunc.pod
18513____________________________________________________________________________
18514[ 19671] By: merijn on 2003/06/03 08:27:07
18515 Log: Subject: Re: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue
18516 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
18517 Date: Tue, 03 Jun 2003 01:55:06 -0700
18518 Message-ID: <qJG3+gzkgajL092yn@efn.org>
18519 Branch: perl
18520 ! README.cygwin
18521____________________________________________________________________________
18522[ 19670] By: jhi on 2003/06/03 08:04:39
18523 Log: Retract #19667, #19660, #19659, #19658, #19657, #19656,
18524 #19655, #19418; File::Temp no more used internally.
18525 Some parts of these will be salvaged later.
18526 Branch: perl
18527 ! MANIFEST embed.fnc embed.h op.c perlio.c pod/perlfunc.pod
18528 ! proto.h win32/win32.c win32/win32iop.h
18529____________________________________________________________________________
18530[ 19669] By: gsar on 2003/06/02 20:59:39
18531 Log: fix for 09_gen_rs.t#59 failure on windows
18532 Branch: perl
18533 ! lib/Tie/File/t/09_gen_rs.t
18534____________________________________________________________________________
18535[ 19668] By: gsar on 2003/06/02 20:40:19
18536 Log: resurrect change#19628 and make it work by generalizing
18537 a spot that had a hardcoded dependency on the cmd.exe
18538 arguments being "/x/c" or "/c"
18539 Branch: perl
18540 ! pod/perlrun.pod win32/win32.c
18541____________________________________________________________________________
18542[ 19667] By: gsar on 2003/06/02 18:44:34
18543 Log: don't use File::Temp to implement PerlIO_tmpfile() on windows;
18544 reuse the straightforward native implementation instead
18545
18546 this fixes the warning from io_xs.t
18547
18548 NOTE: File::Temp has a less-than-robust implementation on windows
18549 that relies on END blocks being run (this may not happen always)
18550 Branch: perl
18551 ! op.c win32/win32.c win32/win32iop.h
18552____________________________________________________________________________
18553[ 19666] By: gsar on 2003/06/02 18:29:46
18554 Log: change#19628 broke many win32/system.t tests, so back it out
18555 Branch: perl
18556 ! pod/perlrun.pod win32/win32.c
18557____________________________________________________________________________
18558[ 19665] By: rgs on 2003/06/02 18:22:06
18559 Log: A little bit more of weird-code-proofing in B::Deparse.
18560 Fixes a bug reported by Alexey Tourbin in
18561 Message-ID: <20030602085348.GA24023@solemn.turbinal.org>
18562 Branch: perl
18563 ! ext/B/B/Deparse.pm
18564____________________________________________________________________________
18565[ 19664] By: jhi on 2003/06/02 16:41:37
18566 Log: Upgrade to the CGI.pm 2.93.
18567
18568 (Lincoln keeps ripping out the BEGIN/PERL_CORE blocks. Sigh.)
18569 Branch: perl
18570 + lib/CGI/t/util-58.t
18571 ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
18572 ! lib/CGI/Fast.pm lib/CGI/Pretty.pm lib/CGI/Util.pm
18573 ! lib/CGI/t/apache.t lib/CGI/t/carp.t lib/CGI/t/cookie.t
18574 ! lib/CGI/t/fast.t lib/CGI/t/form.t lib/CGI/t/function.t
18575 ! lib/CGI/t/html.t lib/CGI/t/push.t lib/CGI/t/request.t
18576 ! lib/CGI/t/switch.t lib/CGI/t/util.t
18577____________________________________________________________________________
18578[ 19663] By: jhi on 2003/06/02 16:16:51
18579 Log: Whitespace tweaks.
18580 Branch: perl
18581 ! hints/uwin.sh
18582____________________________________________________________________________
18583[ 19662] By: jhi on 2003/06/02 16:08:22
18584 Log: U/WIN: final (for now) touches from John P. Linderman;
18585 now we get 97% success rate, the remaining failures are
18586 quite obscure.
18587 Branch: perl
18588 ! hints/uwin.sh lib/locale.t
18589____________________________________________________________________________
18590[ 19661] By: gbarr on 2003/06/02 12:13:35
18591 Log: Sync with libnet 1.14
18592 Branch: perl
18593 ! lib/Net/ChangeLog.libnet lib/Net/Cmd.pm lib/Net/Domain.pm
18594 ! lib/Net/FTP.pm lib/Net/FTP/A.pm lib/Net/NNTP.pm
18595 ! lib/Net/POP3.pm lib/Net/README.libnet lib/Net/SMTP.pm
18596 ! lib/Net/libnetFAQ.pod lib/Net/t/hostname.t
18597____________________________________________________________________________
18598[ 19660] By: jhi on 2003/06/02 09:28:30
18599 Log: Beautification.
18600 Branch: perl
18601 ! op.c
18602____________________________________________________________________________
18603[ 19659] By: jhi on 2003/06/02 09:07:38
18604 Log: Duplicate definition bad.
18605 Branch: perl
18606 ! op.c
18607____________________________________________________________________________
18608[ 19658] By: jhi on 2003/06/02 09:02:18
18609 Log: I thought I tried building threaded. Never think. Try.
18610 Branch: perl
18611 ! perlio.c
18612____________________________________________________________________________
18613[ 19657] By: jhi on 2003/06/02 08:54:04
18614 Log: Stick with the original (5.8.0) logic.
18615 Branch: perl
18616 ! op.c
18617____________________________________________________________________________
18618[ 19656] By: jhi on 2003/06/02 08:28:51
18619 Log: Since pulling in File::Temp for tempfiles would pull in
18620 also Fcntl, miniperl could not open up tempfiles. This broke
18621 the use of miniperl in VMS, as noticed by Craig Berry.
18622 Try to cure this by moving the creation of tempfile into its
18623 own routine, my_tmpfp(), which gets compiled differently
18624 for miniperl and perl.
18625 Branch: perl
18626 ! embed.fnc embed.h op.c perlio.c proto.h
18627____________________________________________________________________________
18628[ 19655] By: jhi on 2003/06/02 06:54:05
18629 Log: A pointless test, noticed by Craig Berry.
18630 Branch: perl
18631 ! perlio.c
18632____________________________________________________________________________
18633[ 19654] By: rgs on 2003/06/01 07:37:50
18634 Log: Two Cygwin patches from Gerrit.
18635
18636 Subject: [PATCH] perl.h, README.cygwin: Cygwin O_TEXT <> O_BINARY issue
18637 From: "Gerrit P. Haase" <gp@familiehaase.de>
18638 Date: Sat, 31 May 2003 14:12:07 +0200
18639 Message-ID: <179860591535.20030531141207@familiehaase.de>
18640
18641 Subject: [PATCH] t/io/layers.t, Cygwin != DOSISH
18642 Date: Sat, 31 May 2003 13:57:49 +0200
18643 Message-ID: <11859733881.20030531135749@familiehaase.de>
18644 Branch: perl
18645 ! README.cygwin perl.h t/io/layers.t
18646____________________________________________________________________________
18647[ 19653] By: jhi on 2003/06/01 07:35:55
18648 Log: Integrate:
18649 [ 19638]
18650 Comment tweakage.
18651
18652 [ 19639]
18653 Add the test case for the already fixed
18654 [perl #22351] perl bug with 'e' substitution modifier
18655
18656 [ 19640]
18657 Fix for "#22375 'split'/'index' problem for utf8".
18658
18659 [ 19641]
18660 A bit of networking notworking negativity.
18661 (Inspiration from Jos.)
18662
18663 [ 19642]
18664 test.pl-isation.
18665
18666 [ 19643]
18667 Upgrade to Tie::File 0.96.
18668
18669 [ 19644]
18670 Subject: [PATCH] ext/Encode/t/perlio.t filename tweak
18671 From: "Craig A. Berry" <craigberry@mac.com>
18672 Date: Fri, 30 May 2003 13:08:01 -0500
18673 Message-ID: <3ED79E01.8050401@mac.com>
18674
18675 [ 19645]
18676 Subject: Re: [perl #22372] [PATCH] sv_chop() broken
18677 From: Enache Adrian <enache@rdslink.ro>
18678 Date: Fri, 30 May 2003 18:52:28 +0300
18679 Message-ID: <20030530155228.GA872@ratsnest.hole>
18680
18681 [ 19646]
18682 Interesting patch(1) glitch.
18683
18684 [ 19647]
18685 Subject: Re: [perl #22372] [PATCH] sv_chop() broken
18686 From: Enache Adrian <enache@rdslink.ro>
18687 Date: Sat, 31 May 2003 14:18:11 +0300
18688 Message-ID: <20030531111811.GA1240@ratsnest.hole>
18689
18690 [ 19648]
18691 Better patch from Inaba Hiroto for
18692 [perl #22375] 'split'/'index' problem for utf8
18693
18694 [ 19650]
18695 Regenerate internals pods.
18696
18697 [ 19651]
18698 Don't install test.pl files.
18699
18700 [ 19652]
18701 Fix a case of segfault in gv_check(), by making
18702 it ignore non-GV values in stashes.
18703 Branch: maint-5.8/perl
18704 !> ext/Encode/t/perlio.t gv.c installperl intrpvar.h
18705 !> lib/Tie/File.pm lib/Tie/File/t/00_version.t
18706 !> lib/Tie/File/t/09_gen_rs.t pod/perlapi.pod pod/perlintern.pod
18707 !> pod/perlport.pod sv.c t/op/index.t t/op/stash.t t/op/subst.t
18708 !> t/op/write.t
18709____________________________________________________________________________
18710[ 19652] By: rgs on 2003/05/31 19:54:31
18711 Log: Fix a case of segfault in gv_check(), by making
18712 it ignore non-GV values in stashes.
18713 Branch: perl
18714 ! gv.c t/op/stash.t
18715____________________________________________________________________________
18716[ 19651] By: rgs on 2003/05/31 18:48:59
18717 Log: Don't install test.pl files.
18718 Branch: perl
18719 ! installperl
18720____________________________________________________________________________
18721[ 19650] By: rgs on 2003/05/31 18:47:50
18722 Log: Regenerate internals pods.
18723 Branch: perl
18724 ! pod/perlapi.pod pod/perlintern.pod
18725____________________________________________________________________________
18726[ 19649] By: rgs on 2003/05/31 18:33:07
18727 Log: Subject: [PATCH] jumbo closure patch broke formats
18728 From: Dave Mitchell <davem@fdgroup.com>
18729 Date: Sat, 31 May 2003 19:54:48 +0100
18730 Message-ID: <20030531185448.GA6055@fdgroup.com>
18731 Plus restore the original test script for bug #22372
18732 Branch: perl
18733 ! pad.c t/op/write.t
18734____________________________________________________________________________
18735[ 19648] By: jhi on 2003/05/31 17:37:36
18736 Log: Better patch from Inaba Hiroto for
18737 [perl #22375] 'split'/'index' problem for utf8
18738 Branch: perl
18739 ! sv.c
18740____________________________________________________________________________
18741[ 19647] By: rgs on 2003/05/31 11:46:52
18742 Log: Subject: Re: [perl #22372] [PATCH] sv_chop() broken
18743 From: Enache Adrian <enache@rdslink.ro>
18744 Date: Sat, 31 May 2003 14:18:11 +0300
18745 Message-ID: <20030531111811.GA1240@ratsnest.hole>
18746 Branch: perl
18747 ! t/op/write.t
18748____________________________________________________________________________
18749[ 19646] By: jhi on 2003/05/31 05:40:15
18750 Log: Interesting patch(1) glitch.
18751 Branch: perl
18752 ! lib/Tie/File.pm
18753____________________________________________________________________________
18754[ 19645] By: jhi on 2003/05/31 05:37:10
18755 Log: Subject: Re: [perl #22372] [PATCH] sv_chop() broken
18756 From: Enache Adrian <enache@rdslink.ro>
18757 Date: Fri, 30 May 2003 18:52:28 +0300
18758 Message-ID: <20030530155228.GA872@ratsnest.hole>
18759 Branch: perl
18760 ! sv.c t/op/write.t
18761____________________________________________________________________________
18762[ 19644] By: jhi on 2003/05/31 05:31:11
18763 Log: Subject: [PATCH] ext/Encode/t/perlio.t filename tweak
18764 From: "Craig A. Berry" <craigberry@mac.com>
18765 Date: Fri, 30 May 2003 13:08:01 -0500
18766 Message-ID: <3ED79E01.8050401@mac.com>
18767 Branch: perl
18768 ! ext/Encode/t/perlio.t
18769____________________________________________________________________________
18770[ 19643] By: jhi on 2003/05/31 05:28:56
18771 Log: Upgrade to Tie::File 0.96.
18772 Branch: perl
18773 ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
18774 ! lib/Tie/File/t/09_gen_rs.t
18775____________________________________________________________________________
18776[ 19642] By: jhi on 2003/05/30 19:06:02
18777 Log: test.pl-isation.
18778 Branch: perl
18779 ! t/op/index.t
18780____________________________________________________________________________
18781[ 19641] By: jhi on 2003/05/30 15:59:57
18782 Log: A bit of networking notworking negativity.
18783 (Inspiration from Jos.)
18784 Branch: perl
18785 ! pod/perlport.pod
18786____________________________________________________________________________
18787[ 19640] By: jhi on 2003/05/30 05:47:15
18788 Log: Fix for "#22375 'split'/'index' problem for utf8".
18789 Branch: perl
18790 ! sv.c t/op/index.t
18791____________________________________________________________________________
18792[ 19639] By: jhi on 2003/05/29 19:07:35
18793 Log: Add the test case for the already fixed
18794 [perl #22351] perl bug with 'e' substitution modifier
18795 Branch: perl
18796 ! t/op/subst.t
18797____________________________________________________________________________
18798[ 19638] By: jhi on 2003/05/29 18:56:46
18799 Log: Comment tweakage.
18800 Branch: perl
18801 ! intrpvar.h
18802____________________________________________________________________________
18803[ 19637] By: rgs on 2003/05/29 18:47:40
18804 Log: Subject: [PATCH] jumbo closure fix
18805 From: Dave Mitchell <davem@fdgroup.com>
18806 Date: Wed, 26 Feb 2003 14:49:47 +0000
18807 Message-ID: <20030226144947.A14444@fdgroup.com>
18808 Branch: perl
18809 ! embed.fnc embed.h embedvar.h ext/Devel/Peek/Peek.t intrpvar.h
18810 ! op.c pad.c perlapi.h pod/perldiag.pod pod/perlintern.pod
18811 ! pod/perlref.pod proto.h regcomp.c t/lib/warnings/pad
18812 ! t/op/closure.t
18813____________________________________________________________________________
18814[ 19636] By: jhi on 2003/05/29 14:19:35
18815 Log: Integrate:
18816 [ 19618]
18817 Subject: [Encode] Minor bug in piconv induced by Getopt::Long
18818 From: Dan Kogai <dankogai@dan.co.jp>
18819 Date: 24 May 2003 19:50:48 -0000
18820 Message-ID: <20030524195048.16052.qmail@dan-gm.gm.dan.co.jp>
18821
18822 [ 19619]
18823 Protect against race conditions: if the pid is not seen,
18824 neither will be the $0 change be seen (and vice versa).
18825
18826 [ 19620]
18827 Subject: Re: [PATCH: perlio.h] maint snap @ 19613
18828 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
18829 Date: Sun, 25 May 2003 21:17:42 +0200
18830 Message-ID: <003701c322f2$517fb5e0$0c2f1fac@R2D2>
18831
18832 [ 19621]
18833 Run external commands only with localized sanitized $ENV{PATH}.
18834
18835 [ 19622]
18836 Regen modlib and toc.
18837
18838 [ 19623]
18839 Subject: [PATCH] for cygwin/perlld.in
18840 From: "Gerrit P. Haase" <gp@familiehaase.de>
18841 Date: Sat, 24 May 2003 16:51:29 +0200
18842 Message-ID: <162265353578.20030524165129@familiehaase.de>
18843
18844 [ 19625]
18845 Subject: Re: [perl #22299] goto doesn't find label
18846 From: Dave Mitchell <davem@fdgroup.com>
18847 Date: Sat, 24 May 2003 12:25:17 +0100
18848 Message-ID: <20030524112517.GA11761@fdgroup.com>
18849
18850 Subject: [PATCH] Re: [perl #22299] goto doesn't find label
18851 From: Dave Mitchell <davem@fdgroup.com>
18852 Date: Mon, 26 May 2003 13:47:11 +0100
18853 Message-ID: <20030526124710.GA17670@fdgroup.com>
18854
18855 [ 19626]
18856 For now reword the sysread/syswrite description to
18857 stress the fact that by default everything is still bytes.
18858
18859 [ 19627]
18860 OpenZaurus cross-compilation patches from Redvers Davies.
18861
18862 [ 19628]
18863 Subject: [PATCH] Use "cmd.exe /x/d/c" as the default PERL5SHELL on Windows NT/2K/XP
18864 From: Jan Dubois <jand@ActiveState.com>
18865 Date: Mon, 26 May 2003 23:33:53 -0700
18866 Message-ID: <dv06dv48900iqv5hqddmbc6vt0efvto8d6@4ax.com>
18867
18868 [ 19629]
18869 Subject: [PATCH] Re: a2p is linked against too many libraries
18870 From: Andy Dougherty <doughera@lafayette.edu>
18871 Date: Wed, 28 May 2003 09:20:06 -0400 (EDT)
18872 Message-ID: <Pine.SOL.4.53.0305280913350.27138@maxwell.phys.lafayette.edu>
18873
18874 [ 19630]
18875 Subject: typo in pod/perlfunc.pod
18876 From: Alexey Mahotkin <alexm@w-m.ru>
18877 Date: Wed, 28 May 2003 15:18:04 +0400
18878 Message-ID: <878ysrs4k3.fsf@dim.w-m.ru>
18879
18880 [ 19631]
18881 Document that setvbuf() is not probably any more available.
18882 Many reports, most recently by mjd in
18883 [perl #22339] IO::Handle::setvbuf not defined properly
18884
18885 [ 19632]
18886 Subject: [PATCH] $x = $empty_hash{$undef_val} doesn't give a warning
18887 From: Dave Mitchell <davem@fdgroup.com>
18888 Date: Tue, 27 May 2003 19:31:10 +0100
18889 Message-ID: <20030527183110.GA22715@fdgroup.com>
18890
18891 [ 19633]
18892 A *much* cut-down version of the patches in the thread
18893 Subject: [perl #22224] 2 patches to perldiag.pod; for POSIX and Win32 errors
18894 From: Jim Cromie (via RT) <perlbug-followup@perl.org>
18895 Date: 16 May 2003 19:04:28 -0000
18896 Message-Id: <rt-22224-57743.7.22990607358@bugs6.perl.org>
18897
18898 [ 19634]
18899 Subject: [patch] IO::File->open() with encoding
18900 From: Pradeep Hodigere <phodigere@yahoo.com>
18901 Date: Mon, 19 May 2003 16:05:47 -0700 (PDT)
18902 Message-ID: <20030519230547.39731.qmail@web12302.mail.yahoo.com>
18903
18904 [ 19635]
18905 Subject: Credits patch
18906 From: Ed Avis <ed@membled.com>
18907 Date: Sun, 18 May 2003 18:08:55 +0100 (BST)
18908 Message-ID: <Pine.LNX.4.20L2.0305181807080.10859-100000@budvar.future-i.net>
18909
18910 (the cygwin/perlld.in and Cross/config.sh-arm-linux edited
18911 to talk of 5.8.1 instead of 5.9.0)
18912 Branch: maint-5.8/perl
18913 +> ext/IO/lib/IO/t/io_utf8.t
18914 !> Cross/Makefile Cross/Makefile.SH.patch Cross/README
18915 !> Cross/config.sh-arm-linux Cross/generate_config_sh
18916 !> Cross/installperl.patch MANIFEST cygwin/perlld.in
18917 !> ext/Encode/bin/piconv ext/IO/lib/IO/File.pm
18918 !> ext/IO/lib/IO/Handle.pm ext/Sys/Hostname/Hostname.pm
18919 !> ext/threads/t/join.t hv.c lib/Tie/RefHash.pm perlio.h
18920 !> pod/perldiag.pod pod/perlfunc.pod pod/perlmodlib.pod
18921 !> pod/perlrun.pod pod/perltoc.pod pp_ctl.c t/op/goto.t
18922 !> win32/win32.c x2p/Makefile.SH
18923____________________________________________________________________________
18924[ 19635] By: jhi on 2003/05/29 09:13:06
18925 Log: Subject: Credits patch
18926 From: Ed Avis <ed@membled.com>
18927 Date: Sun, 18 May 2003 18:08:55 +0100 (BST)
18928 Message-ID: <Pine.LNX.4.20L2.0305181807080.10859-100000@budvar.future-i.net>
18929 Branch: perl
18930 ! lib/Tie/RefHash.pm
18931____________________________________________________________________________
18932[ 19634] By: jhi on 2003/05/29 09:11:30
18933 Log: Subject: [patch] IO::File->open() with encoding
18934 From: Pradeep Hodigere <phodigere@yahoo.com>
18935 Date: Mon, 19 May 2003 16:05:47 -0700 (PDT)
18936 Message-ID: <20030519230547.39731.qmail@web12302.mail.yahoo.com>
18937 Branch: perl
18938 + ext/IO/lib/IO/t/io_utf8.t
18939 ! MANIFEST ext/IO/lib/IO/File.pm
18940____________________________________________________________________________
18941[ 19633] By: jhi on 2003/05/29 08:18:09
18942 Log: A *much* cut-down version of the patches in the thread
18943 Subject: [perl #22224] 2 patches to perldiag.pod; for POSIX and Win32 errors
18944 From: Jim Cromie (via RT) <perlbug-followup@perl.org>
18945 Date: 16 May 2003 19:04:28 -0000
18946 Message-Id: <rt-22224-57743.7.22990607358@bugs6.perl.org>
18947 Branch: perl
18948 ! pod/perldiag.pod
18949____________________________________________________________________________
18950[ 19632] By: jhi on 2003/05/29 08:12:46
18951 Log: Subject: [PATCH] $x = $empty_hash{$undef_val} doesn't give a warning
18952 From: Dave Mitchell <davem@fdgroup.com>
18953 Date: Tue, 27 May 2003 19:31:10 +0100
18954 Message-ID: <20030527183110.GA22715@fdgroup.com>
18955 Branch: perl
18956 ! hv.c
18957____________________________________________________________________________
18958[ 19631] By: jhi on 2003/05/29 08:11:42
18959 Log: Document that setvbuf() is not probably any more available.
18960 Many reports, most recently by mjd in
18961 [perl #22339] IO::Handle::setvbuf not defined properly
18962 Branch: perl
18963 ! ext/IO/lib/IO/Handle.pm
18964____________________________________________________________________________
18965[ 19630] By: jhi on 2003/05/29 07:59:51
18966 Log: Subject: typo in pod/perlfunc.pod
18967 From: Alexey Mahotkin <alexm@w-m.ru>
18968 Date: Wed, 28 May 2003 15:18:04 +0400
18969 Message-ID: <878ysrs4k3.fsf@dim.w-m.ru>
18970 Branch: perl
18971 ! pod/perlfunc.pod
18972____________________________________________________________________________
18973[ 19629] By: merijn on 2003/05/28 12:24:42
18974 Log: Subject: [PATCH] Re: a2p is linked against too many libraries
18975 From: Andy Dougherty <doughera@lafayette.edu>
18976 Date: Wed, 28 May 2003 09:20:06 -0400 (EDT)
18977 Message-ID: <Pine.SOL.4.53.0305280913350.27138@maxwell.phys.lafayette.edu>
18978 Branch: perl
18979 ! x2p/Makefile.SH
18980____________________________________________________________________________
18981[ 19628] By: jhi on 2003/05/28 05:26:43
18982 Log: Subject: [PATCH] Use "cmd.exe /x/d/c" as the default PERL5SHELL on Windows NT/2K/XP
18983 From: Jan Dubois <jand@ActiveState.com>
18984 Date: Mon, 26 May 2003 23:33:53 -0700
18985 Message-ID: <dv06dv48900iqv5hqddmbc6vt0efvto8d6@4ax.com>
18986 Branch: perl
18987 ! pod/perlrun.pod win32/win32.c
18988____________________________________________________________________________
18989[ 19627] By: jhi on 2003/05/28 05:08:07
18990 Log: OpenZaurus cross-compilation patches from Redvers Davies.
18991 Branch: perl
18992 ! Cross/Makefile Cross/Makefile.SH.patch Cross/README
18993 ! Cross/config.sh-arm-linux Cross/generate_config_sh
18994 ! Cross/installperl.patch
18995____________________________________________________________________________
18996[ 19626] By: jhi on 2003/05/27 06:30:54
18997 Log: For now reword the sysread/syswrite description to
18998 stress the fact that by default everything is still bytes.
18999 Branch: perl
19000 ! pod/perlfunc.pod
19001____________________________________________________________________________
19002[ 19625] By: jhi on 2003/05/26 20:31:56
19003 Log: Subject: Re: [perl #22299] goto doesn't find label
19004 From: Dave Mitchell <davem@fdgroup.com>
19005 Date: Sat, 24 May 2003 12:25:17 +0100
19006 Message-ID: <20030524112517.GA11761@fdgroup.com>
19007
19008 Subject: [PATCH] Re: [perl #22299] goto doesn't find label
19009 From: Dave Mitchell <davem@fdgroup.com>
19010 Date: Mon, 26 May 2003 13:47:11 +0100
19011 Message-ID: <20030526124710.GA17670@fdgroup.com>
19012 Branch: perl
19013 ! pp_ctl.c t/op/goto.t
19014____________________________________________________________________________
19015[ 19624] By: nick on 2003/05/26 15:51:53
19016 Log: Integrate mainline
19017 Branch: perlio
19018 !> cygwin/perlld.in ext/Encode/bin/piconv
19019 !> ext/Sys/Hostname/Hostname.pm ext/threads/t/join.t
19020 !> pod/perlmodlib.pod pod/perltoc.pod
19021____________________________________________________________________________
19022[ 19623] By: merijn on 2003/05/26 11:19:38
19023 Log: Subject: [PATCH] for cygwin/perlld.in
19024 From: "Gerrit P. Haase" <gp@familiehaase.de>
19025 Date: Sat, 24 May 2003 16:51:29 +0200
19026 Message-ID: <162265353578.20030524165129@familiehaase.de>
19027 Branch: perl
19028 ! cygwin/perlld.in
19029____________________________________________________________________________
19030[ 19622] By: jhi on 2003/05/25 18:57:18
19031 Log: Regen modlib and toc.
19032 Branch: perl
19033 ! pod/perlmodlib.pod pod/perltoc.pod
19034____________________________________________________________________________
19035[ 19621] By: jhi on 2003/05/25 18:51:00
19036 Log: Run external commands only with localized sanitized $ENV{PATH}.
19037 Branch: perl
19038 ! ext/Sys/Hostname/Hostname.pm
19039____________________________________________________________________________
19040[ 19620] By: jhi on 2003/05/25 18:39:04
19041 Log: Subject: Re: [PATCH: perlio.h] maint snap @ 19613
19042 From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
19043 Date: Sun, 25 May 2003 21:17:42 +0200
19044 Message-ID: <003701c322f2$517fb5e0$0c2f1fac@R2D2>
19045 Branch: perl
19046 ! perlio.h
19047____________________________________________________________________________
19048[ 19619] By: jhi on 2003/05/25 18:36:17
19049 Log: Protect against race conditions: if the pid is not seen,
19050 neither will be the $0 change be seen (and vice versa).
19051 Branch: perl
19052 ! ext/threads/t/join.t
19053____________________________________________________________________________
19054[ 19618] By: jhi on 2003/05/24 19:54:39
19055 Log: Subject: [Encode] Minor bug in piconv induced by Getopt::Long
19056 From: Dan Kogai <dankogai@dan.co.jp>
19057 Date: 24 May 2003 19:50:48 -0000
19058 Message-ID: <20030524195048.16052.qmail@dan-gm.gm.dan.co.jp>
19059 Branch: perl
19060 ! ext/Encode/bin/piconv
19061____________________________________________________________________________
19062[ 19617] By: nick on 2003/05/24 18:47:42
19063 Log: More work-in-progress on sysread() abstraction.
19064 - sysread() does not want to retry on EINTR but too many places have that logic.
19065 now stdio and unix are both doing re-try on EINTR it makes sense to move
19066 that logic up to PerlIO_read()/PerlIO_write() and leave layers as raw without
19067 retry (which should help them be re-used for sysread).
19068 - also noted (old?) comment in pp_sys.c that says PerlIO_read() returns 0 on error
19069 but perlapio.pod says it returns -ve. Match the pod for :stdio.
19070 - all tests pass (:perlio/:stdio) if pp_sys.c is re-hacked to turn off new-sysread
19071 logic so above re-factoring is not a disaster...
19072 Branch: perlio
19073 ! perlio.c
19074____________________________________________________________________________
19075[ 19616] By: nick on 2003/05/24 16:09:55
19076 Log: Tweak Base_read - which needed indentation change
19077 re-indent perlio.c using indent
19078 add .indent.pro so indent-ing is reproducable.
19079 Branch: perlio
19080 + .indent.pro
19081 ! perlio.c
19082____________________________________________________________________________
19083[ 19615] By: nick on 2003/05/24 14:53:02
19084 Log: re-instate warning with syslayer abstraction.
19085 Branch: perlio
19086 ! perlio.c
19087____________________________________________________________________________
19088[ 19614] By: nick on 2003/05/24 14:03:12
19089 Log: Integrate mainline (but don't integrate back yet).
19090 Branch: perlio
19091 +> lib/ExtUtils/META.yml lib/ExtUtils/MakeMaker/bytes.pm
19092 +> lib/ExtUtils/t/bytes.t lib/ExtUtils/t/vmsish.t
19093 - lib/CPAN/README lib/ftp.pl
19094 !> (integrate 121 files)
19095____________________________________________________________________________
19096[ 19613] By: jhi on 2003/05/24 08:03:55
19097 Log: Update Changes.
19098 Branch: maint-5.8/perl
19099 ! Changes patchlevel.h
19100____________________________________________________________________________
19101[ 19612] By: jhi on 2003/05/24 07:53:25
19102 Log: Regen the old-style VOS config files.
19103 Branch: maint-5.8/perl
19104 ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
19105 ! vos/config.ga.h
19106____________________________________________________________________________
19107[ 19611] By: jhi on 2003/05/24 07:50:43
19108 Log: Integrate:
19109 [ 19592]
19110 Workaround for buggy gcc 2.95.3 in openbsd/sparc64.
19111
19112 [ 19593]
19113 Subject: Stateful PerlIO implemented [Was: [perl #22261] Was: Unrecognised BOM...]
19114 From: Dan Kogai <dankogai@dan.co.jp>
19115 Date: Fri, 23 May 2003 20:17:16 +0900
19116 Message-Id: <1C123D88-8D10-11D7-B277-000393AE4244@dan.co.jp>
19117
19118 [ 19594]
19119 Subject: [PATCH] ExtUtils::MakeMaker 6.10_03 -> 6.10_04
19120 From: Michael G Schwern <schwern@pobox.com>
19121 Date: Fri, 23 May 2003 02:10:46 -0700
19122 Message-ID: <20030523091046.GB11662@windhund.schwern.org>
19123
19124 [ 19595]
19125 Subject: Re: Stateful PerlIO implemented [Was: [perl #22261] Was: Unrecognised BOM...]
19126 From: Dan Kogai <dankogai@dan.co.jp>
19127 Date: Sat, 24 May 2003 00:15:49 +0900
19128 Message-Id: <6F7B29DA-8D31-11D7-9F95-000393AE4244@dan.co.jp>
19129
19130 [ 19596]
19131 U/WIN extension fix from John P. Linderman.
19132
19133 [ 19597]
19134 Linewrapping MUAs, grumble.
19135
19136 [ 19598]
19137 Hasty editing, grumble.
19138
19139 [ 19599]
19140 Subject: [PATCH] RE: [PATCH] RE: maint snapshot @ 19525
19141 From: Robin Barker <Robin.Barker@npl.co.uk>
19142 Date: Fri, 23 May 2003 17:32:22 +0100
19143 Message-ID: <533D273D4014D411AB1D00062938C4D90404653C@hotel.npl.co.uk>
19144
19145 [ 19600]
19146 Subject: [PATCH] for Configure -Dnoextensions=Encode
19147 From: Robin Barker <Robin.Barker@npl.co.uk>
19148 Date: Fri, 23 May 2003 17:37:09 +0100
19149 Message-ID: <533D273D4014D411AB1D00062938C4D90404653D@hotel.npl.co.uk>
19150
19151 [ 19601]
19152 Subject: [PATCH] RE: state of deparse?
19153 From: Robin Barker <Robin.Barker@npl.co.uk>
19154 Date: Fri, 23 May 2003 17:42:37 +0100
19155 Message-ID: <533D273D4014D411AB1D00062938C4D90404653E@hotel.npl.co.uk>
19156
19157 [ 19602]
19158 Noticed by John P. Linderman.
19159
19160 [ 19603]
19161 lib/ftp.pl requires the obsoleted (and removed) chat2.pl.
19162
19163 [ 19604]
19164 Add a real scan for pthread_attr_setscope().
19165
19166 [ 19606]
19167 Regen Glossary et al.
19168
19169 [ 19607]
19170 Introduce (undefined) pthread_attr_setscope to non-Configure lands.
19171
19172 [ 19608]
19173 Missing "to".
19174
19175 [ 19610]
19176 Subject: [PATCH #2] Re: [perl #22181] goto undefines my() variables
19177 From: Dave Mitchell <davem@fdgroup.com>
19178 Date: Thu, 22 May 2003 10:13:19 +0100
19179 Message-ID: <20030522091319.GA4568@fdgroup.com>
19180
19181 Subject: Re: [PATCH #2] Re: [perl #22181] goto undefines my() variables
19182 From: Dave Mitchell <davem@fdgroup.com>
19183 Date: Fri, 23 May 2003 17:09:44 +0100
19184 Message-ID: <20030523160944.GC9194@fdgroup.com>
19185
19186 (Regen Configure, Glossary, et al)
19187 (One metaconfig beauty tweak sneaked in)
19188 Branch: maint-5.8/perl
19189 +> lib/ExtUtils/META.yml lib/ExtUtils/MakeMaker/bytes.pm
19190 +> lib/ExtUtils/t/bytes.t lib/ExtUtils/t/vmsish.t
19191 - lib/ftp.pl
19192 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
19193 ! config_h.SH
19194 !> (integrate 71 files)
19195 Branch: metaconfig
19196 ! U/compline/Csym.U
19197____________________________________________________________________________
19198[ 19610] By: jhi on 2003/05/24 06:42:52
19199 Log: Subject: [PATCH #2] Re: [perl #22181] goto undefines my() variables
19200 From: Dave Mitchell <davem@fdgroup.com>
19201 Date: Thu, 22 May 2003 10:13:19 +0100
19202 Message-ID: <20030522091319.GA4568@fdgroup.com>
19203
19204 Subject: Re: [PATCH #2] Re: [perl #22181] goto undefines my() variables
19205 From: Dave Mitchell <davem@fdgroup.com>
19206 Date: Fri, 23 May 2003 17:09:44 +0100
19207 Message-ID: <20030523160944.GC9194@fdgroup.com>
19208 Branch: perl
19209 ! ext/B/B/Concise.pm ext/B/B/Deparse.pm ext/B/t/debug.t
19210 ! ext/B/t/deparse.t op.c op.h t/op/goto.t t/run/switchd.t
19211____________________________________________________________________________
19212[ 19609] By: jhi on 2003/05/24 06:30:57
19213 Log: metaconfig unit change for #19608.
19214 Branch: metaconfig
19215 ! U/threads/d_pthread_atfork.U
19216____________________________________________________________________________
19217[ 19608] By: jhi on 2003/05/24 06:30:40
19218 Log: Missing "to".
19219 Branch: perl
19220 ! NetWare/config_H.wc Porting/config_H config_h.SH
19221 ! plan9/config.plan9 plan9/config_h.sample uconfig.h
19222 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
19223 ! win32/config_H.vc64 wince/config_H.ce
19224____________________________________________________________________________
19225[ 19607] By: jhi on 2003/05/24 06:23:51
19226 Log: Introduce (undefined) pthread_attr_setscope to non-Configure lands.
19227 Branch: perl
19228 ! Cross/config.sh-arm-linux NetWare/config.wc
19229 ! NetWare/config_H.wc configure.com epoc/config.sh
19230 ! plan9/config.plan9 plan9/config_h.sample
19231 ! plan9/config_sh.sample uconfig.h uconfig.sh win32/config.bc
19232 ! win32/config.gc win32/config.vc win32/config.vc64
19233 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
19234 ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
19235____________________________________________________________________________
19236[ 19606] By: jhi on 2003/05/24 06:05:17
19237 Log: Regen Glossary et al.
19238 Branch: perl
19239 ! Porting/Glossary Porting/config.sh Porting/config_H
19240____________________________________________________________________________
19241[ 19605] By: jhi on 2003/05/24 05:58:10
19242 Log: metaconfig unit change for #19604.
19243 Branch: metaconfig/U/perl
19244 + d_pthread_attr_ss.U
19245____________________________________________________________________________
19246[ 19604] By: jhi on 2003/05/24 05:57:49
19247 Log: Add a real scan for pthread_attr_setscope().
19248 Branch: perl
19249 ! Configure config_h.SH ext/threads/threads.xs
19250____________________________________________________________________________
19251[ 19603] By: jhi on 2003/05/24 05:32:34
19252 Log: lib/ftp.pl requires the obsoleted (and removed) chat2.pl.
19253 Branch: perl
19254 - lib/ftp.pl
19255 ! MANIFEST
19256____________________________________________________________________________
19257[ 19602] By: jhi on 2003/05/23 17:02:28
19258 Log: Noticed by John P. Linderman.
19259 Branch: perl
19260 ! epoc/epocish.h mpeix/mpeixish.h perl.h unixish.h
19261____________________________________________________________________________
19262[ 19601] By: jhi on 2003/05/23 16:58:04
19263 Log: Subject: [PATCH] RE: state of deparse?
19264 From: Robin Barker <Robin.Barker@npl.co.uk>
19265 Date: Fri, 23 May 2003 17:42:37 +0100
19266 Message-ID: <533D273D4014D411AB1D00062938C4D90404653E@hotel.npl.co.uk>
19267 Branch: perl
19268 ! ext/B/B/Deparse.pm
19269____________________________________________________________________________
19270[ 19600] By: jhi on 2003/05/23 16:55:09
19271 Log: Subject: [PATCH] for Configure -Dnoextensions=Encode
19272 From: Robin Barker <Robin.Barker@npl.co.uk>
19273 Date: Fri, 23 May 2003 17:37:09 +0100
19274 Message-ID: <533D273D4014D411AB1D00062938C4D90404653D@hotel.npl.co.uk>
19275 Branch: perl
19276 ! ext/PerlIO/t/encoding.t ext/PerlIO/t/fallback.t
19277 ! ext/Storable/t/utf8hash.t lib/open.pm lib/open.t
19278____________________________________________________________________________
19279[ 19599] By: jhi on 2003/05/23 16:51:18
19280 Log: Subject: [PATCH] RE: [PATCH] RE: maint snapshot @ 19525
19281 From: Robin Barker <Robin.Barker@npl.co.uk>
19282 Date: Fri, 23 May 2003 17:32:22 +0100
19283 Message-ID: <533D273D4014D411AB1D00062938C4D90404653C@hotel.npl.co.uk>
19284 Branch: perl
19285 ! embed.pl perl.h perlio.c perlio.h proto.h
19286____________________________________________________________________________
19287[ 19598] By: jhi on 2003/05/23 16:05:36
19288 Log: Hasty editing, grumble.
19289 Branch: perl
19290 ! ext/POSIX/POSIX.xs
19291____________________________________________________________________________
19292[ 19597] By: jhi on 2003/05/23 16:02:30
19293 Log: Linewrapping MUAs, grumble.
19294 Branch: perl
19295 ! ext/POSIX/POSIX.xs
19296____________________________________________________________________________
19297[ 19596] By: jhi on 2003/05/23 16:00:51
19298 Log: U/WIN extension fix from John P. Linderman.
19299 Branch: perl
19300 ! ext/POSIX/POSIX.xs
19301____________________________________________________________________________
19302[ 19595] By: jhi on 2003/05/23 14:19:53
19303 Log: Subject: Re: Stateful PerlIO implemented [Was: [perl #22261] Was: Unrecognised BOM...]
19304 From: Dan Kogai <dankogai@dan.co.jp>
19305 Date: Sat, 24 May 2003 00:15:49 +0900
19306 Message-Id: <6F7B29DA-8D31-11D7-9F95-000393AE4244@dan.co.jp>
19307 Branch: perl
19308 ! ext/Encode/Changes ext/Encode/Unicode/Unicode.xs
19309 ! ext/Encode/t/perlio.t ext/PerlIO/encoding/encoding.pm
19310____________________________________________________________________________
19311[ 19594] By: jhi on 2003/05/23 13:06:25
19312 Log: Subject: [PATCH] ExtUtils::MakeMaker 6.10_03 -> 6.10_04
19313 From: Michael G Schwern <schwern@pobox.com>
19314 Date: Fri, 23 May 2003 02:10:46 -0700
19315 Message-ID: <20030523091046.GB11662@windhund.schwern.org>
19316 Branch: perl
19317 + lib/ExtUtils/META.yml lib/ExtUtils/MakeMaker/bytes.pm
19318 + lib/ExtUtils/t/bytes.t lib/ExtUtils/t/vmsish.t
19319 ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Install.pm
19320 ! lib/ExtUtils/Liblist/Kid.pm lib/ExtUtils/MM_Any.pm
19321 ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_Unix.pm
19322 ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
19323 ! lib/ExtUtils/MakeMaker/FAQ.pod
19324 ! lib/ExtUtils/MakeMaker/Tutorial.pod lib/ExtUtils/Manifest.pm
19325 ! lib/ExtUtils/TODO lib/ExtUtils/t/Install.t
19326 ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
19327____________________________________________________________________________
19328[ 19593] By: jhi on 2003/05/23 12:56:23
19329 Log: Subject: Stateful PerlIO implemented [Was: [perl #22261] Was: Unrecognised BOM...]
19330 From: Dan Kogai <dankogai@dan.co.jp>
19331 Date: Fri, 23 May 2003 20:17:16 +0900
19332 Message-Id: <1C123D88-8D10-11D7-B277-000393AE4244@dan.co.jp>
19333 Branch: perl
19334 ! ext/Encode/Encode.pm ext/Encode/Encode.xs
19335 ! ext/Encode/Unicode/Unicode.pm ext/Encode/Unicode/Unicode.xs
19336 ! ext/Encode/lib/Encode/Encoding.pm
19337 ! ext/PerlIO/encoding/encoding.xs
19338____________________________________________________________________________
19339[ 19592] By: jhi on 2003/05/23 12:52:05
19340 Log: Workaround for buggy gcc 2.95.3 in openbsd/sparc64.
19341 Branch: perl
19342 ! ext/Time/HiRes/HiRes.pm ext/Time/HiRes/HiRes.t
19343 ! ext/Time/HiRes/HiRes.xs
19344____________________________________________________________________________
19345[ 19591] By: jhi on 2003/05/22 11:59:21
19346 Log: Integrate:
19347 [ 19578]
19348 Subject: [Encode] 1.95 released
19349 From: Dan Kogai <dankogai@dan.co.jp>
19350 Date: Wed, 21 May 2003 18:26:26 +0900
19351 Message-Id: <4B8D9AB5-8B6E-11D7-848A-000393AE4244@dan.co.jp>
19352
19353 [ 19579]
19354 U/WIN test nit for John P. Linderman.
19355
19356 [ 19580]
19357 VMS test tweak from Craig Berry.
19358
19359 [ 19581]
19360 U/WIN test tweak from John P. Linderman.
19361
19362 [ 19582]
19363 MAN3PODS => {} good. (Was in 5.8.0, has been lost at some point.)
19364
19365 [ 19583]
19366 Subject: Re: [perl #22231] <$foo> is parsed as glob(' ' . $foo) if Switch.pm is used
19367 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
19368 Date: Mon, 19 May 2003 17:53:25 -0400
19369 Message-ID: <20030519215325.GE1629175@linguist.thayer.dartmouth.edu>
19370
19371 (the bug id corrected to be #22231, not #22238)
19372
19373 [ 19584]
19374 Subject: [PATCH] perldata.pod revamp rev. 3
19375 From: Shlomi Fish <shlomif@vipe.technion.ac.il>
19376 Date: Wed, 14 May 2003 17:46:05 +0300 (IDT)
19377 Message-ID: <Pine.LNX.4.33L2.0305141744520.24207-200000@vipe.technion.ac.il>
19378
19379 [ 19585]
19380 More U/WIN tweaks from John P. Linderman.
19381
19382 [ 19586]
19383 Introduce a new preprocessor symbol, PERL_DISABLE_PMC, to
19384 disable the loading of .pmc files if defined.
19385 Rename the function S_doopen_pmc to S_doopen_pm.
19386
19387 [ 19589]
19388 Subject: [PATCH] [perl #21887] h2xs becoming enum-aware
19389 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
19390 Date: Tue, 13 May 2003 10:36:32 +0200
19391 Message-id: <20030513083631.GA21782@ethan>
19392
19393 [ 19590]
19394 Subject: Re: [cpan #2629] Wrong assumption in numeric comparison
19395 From: Dan Kogai <dankogai@dan.co.jp>
19396 Date: Thu, 22 May 2003 18:46:40 +0900
19397 Message-Id: <49E36875-8C3A-11D7-9C91-000393AE4244@dan.co.jp>
19398 Branch: maint-5.8/perl
19399 !> (integrate 39 files)
19400____________________________________________________________________________
19401[ 19590] By: jhi on 2003/05/22 11:51:46
19402 Log: Subject: Re: [cpan #2629] Wrong assumption in numeric comparison
19403 From: Dan Kogai <dankogai@dan.co.jp>
19404 Date: Thu, 22 May 2003 18:46:40 +0900
19405 Message-Id: <49E36875-8C3A-11D7-9C91-000393AE4244@dan.co.jp>
19406 Branch: perl
19407 ! ext/Encode/encoding.pm
19408____________________________________________________________________________
19409[ 19589] By: rgs on 2003/05/21 21:37:28
19410 Log: Subject: [PATCH] [perl #21887] h2xs becoming enum-aware
19411 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
19412 Date: Tue, 13 May 2003 10:36:32 +0200
19413 Message-id: <20030513083631.GA21782@ethan>
19414 Branch: perl
19415 ! utils/h2xs.PL
19416____________________________________________________________________________
19417[ 19588] By: rgs on 2003/05/21 21:03:04
19418 Log: New warning "Useless localization of %s", based on
19419 Subject: [PATCH] new warning "Useless localization of %s is deprecated"
19420 From: Dave Mitchell <davem@fdgroup.com>
19421 Date: Wed, 30 Apr 2003 21:17:38 +0100
19422 Message-ID: <20030430201738.GA22054@fdgroup.com>
19423
19424 The proposed patch added this warning in the 'deprecated' category ;
19425 I think this category is for things that exist and will be removed,
19426 rather than for things that don't exist and that will maybe be added.
19427 Branch: perl
19428 ! op.c pod/perldiag.pod t/lib/warnings/op
19429____________________________________________________________________________
19430[ 19587] By: nick on 2003/05/21 20:16:45
19431 Log: Work-in-progress - do not integrate yet
19432 Experimental PerlIO_syslayer() [or sysread only at this point]
19433 3 fails on a UNIX :perlio stack
19434 - warnings misses Filehandle F opened only for output (weird)
19435 - socketpair discovers that Unix_read() restarts on EINTR (gotcha)
19436 - lib/open fails to sysread() chars (a feature?)
19437 Branch: perlio
19438 ! makedef.pl perlio.c perlio.h perliol.h pp_sys.c
19439____________________________________________________________________________
19440[ 19586] By: rgs on 2003/05/21 19:56:38
19441 Log: Introduce a new preprocessor symbol, PERL_DISABLE_PMC, to
19442 disable the loading of .pmc files if defined.
19443 Rename the function S_doopen_pmc to S_doopen_pm.
19444 Branch: perl
19445 ! Porting/thirdclean embed.fnc embed.h pp_ctl.c proto.h
19446____________________________________________________________________________
19447[ 19585] By: jhi on 2003/05/21 19:28:23
19448 Log: More U/WIN tweaks from John P. Linderman.
19449 Branch: perl
19450 ! t/io/layers.t t/io/tell.t
19451____________________________________________________________________________
19452[ 19584] By: rgs on 2003/05/21 19:27:13
19453 Log: Subject: [PATCH] perldata.pod revamp rev. 3
19454 From: Shlomi Fish <shlomif@vipe.technion.ac.il>
19455 Date: Wed, 14 May 2003 17:46:05 +0300 (IDT)
19456 Message-ID: <Pine.LNX.4.33L2.0305141744520.24207-200000@vipe.technion.ac.il>
19457 Branch: perl
19458 ! pod/perldata.pod
19459____________________________________________________________________________
19460[ 19583] By: jhi on 2003/05/21 19:18:21
19461 Log: Subject: Re: [perl #22231] <$foo> is parsed as glob(' ' . $foo) if Switch.pm is used
19462 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
19463 Date: Mon, 19 May 2003 17:53:25 -0400
19464 Message-ID: <20030519215325.GE1629175@linguist.thayer.dartmouth.edu>
19465
19466 (the bug id corrected to be #22231, not #22238)
19467 Branch: perl
19468 ! lib/Switch.pm
19469____________________________________________________________________________
19470[ 19582] By: jhi on 2003/05/21 14:17:14
19471 Log: MAN3PODS => {} good. (Was in 5.8.0, has been lost at some point.)
19472 Branch: perl
19473 ! ext/MIME/Base64/Makefile.PL
19474____________________________________________________________________________
19475[ 19581] By: jhi on 2003/05/21 14:15:26
19476 Log: U/WIN test tweak from John P. Linderman.
19477 Branch: perl
19478 ! t/op/chdir.t
19479____________________________________________________________________________
19480[ 19580] By: jhi on 2003/05/21 13:06:13
19481 Log: VMS test tweak from Craig Berry.
19482 Branch: perl
19483 ! lib/DirHandle.t
19484____________________________________________________________________________
19485[ 19579] By: jhi on 2003/05/21 13:03:34
19486 Log: U/WIN test nit for John P. Linderman.
19487 Branch: perl
19488 ! ext/Cwd/t/cwd.t
19489____________________________________________________________________________
19490[ 19578] By: jhi on 2003/05/21 13:01:42
19491 Log: Subject: [Encode] 1.95 released
19492 From: Dan Kogai <dankogai@dan.co.jp>
19493 Date: Wed, 21 May 2003 18:26:26 +0900
19494 Message-Id: <4B8D9AB5-8B6E-11D7-848A-000393AE4244@dan.co.jp>
19495 Branch: perl
19496 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/MANIFEST
19497 ! ext/Encode/META.yml ext/Encode/Unicode/Unicode.pm
19498 ! ext/Encode/lib/Encode/Alias.pm ext/Encode/lib/Encode/Config.pm
19499 ! ext/Encode/lib/Encode/Unicode/UTF7.pm ext/Encode/t/Unicode.t
19500 ! ext/Encode/ucm/8859-1.ucm ext/Encode/ucm/8859-10.ucm
19501 ! ext/Encode/ucm/8859-11.ucm ext/Encode/ucm/8859-13.ucm
19502 ! ext/Encode/ucm/8859-14.ucm ext/Encode/ucm/8859-15.ucm
19503 ! ext/Encode/ucm/8859-16.ucm ext/Encode/ucm/8859-2.ucm
19504 ! ext/Encode/ucm/8859-3.ucm ext/Encode/ucm/8859-4.ucm
19505 ! ext/Encode/ucm/8859-5.ucm ext/Encode/ucm/8859-6.ucm
19506 ! ext/Encode/ucm/8859-7.ucm ext/Encode/ucm/8859-8.ucm
19507 ! ext/Encode/ucm/8859-9.ucm
19508____________________________________________________________________________
19509[ 19577] By: jhi on 2003/05/20 20:21:44
19510 Log: Update Changes.
19511 Branch: maint-5.8/perl
19512 ! Changes patchlevel.h
19513____________________________________________________________________________
19514[ 19576] By: jhi on 2003/05/20 20:05:45
19515 Log: Integrate:
19516 [ 19569]
19517 More Ultrix double definition avoidance.
19518
19519 [ 19570]
19520 Subject: Re: Possible precedence problem on bitwise ^ operator
19521 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
19522 Date: Sun, 18 May 2003 19:21:01 -0700
19523 Message-ID: <N+Dy+gzkg+XX092yn@efn.org>
19524 (with tweaks to perldiag.pod)
19525
19526 [ 19571]
19527 Further -Uuseperlio tweaking.
19528
19529 [ 19573]
19530 Upgrade to CPAN 1.70_54
19531 Subject: Re: CPAN.pm into blead
19532 From: Andreas J Koenig <andreas.koenig@anima.de>
19533 Date: Tue, 20 May 2003 11:31:16 +0200
19534 Message-ID: <87of1y6k2j.fsf@franz.ak.mind.de>
19535
19536 [ 19574]
19537 Upgrade to Getopt::Long 2.33
19538 (mostly a version number increment)
19539
19540 [ 19575]
19541 Enhance the failure reporting for the pod2html tests
19542 Branch: maint-5.8/perl
19543 - lib/CPAN/README
19544 !> MANIFEST ext/Encode/t/Unicode.t ext/Socket/Socket.xs
19545 !> lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
19546 !> lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
19547 !> lib/Getopt/Long/README lib/Pod/t/htmlview.t
19548 !> lib/Pod/t/pod2html-lib.pl op.c pod/perldiag.pod
19549____________________________________________________________________________
19550[ 19575] By: rgs on 2003/05/20 19:22:30
19551 Log: Enhance the failure reporting for the pod2html tests
19552 Branch: perl
19553 ! lib/Pod/t/htmlview.t lib/Pod/t/pod2html-lib.pl
19554____________________________________________________________________________
19555[ 19574] By: rgs on 2003/05/20 18:52:21
19556 Log: Upgrade to Getopt::Long 2.33
19557 (mostly a version number increment)
19558 Branch: perl
19559 ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
19560 ! lib/Getopt/Long/README
19561____________________________________________________________________________
19562[ 19573] By: rgs on 2003/05/20 18:43:37
19563 Log: Upgrade to CPAN 1.70_54
19564 Subject: Re: CPAN.pm into blead
19565 From: Andreas J Koenig <andreas.koenig@anima.de>
19566 Date: Tue, 20 May 2003 11:31:16 +0200
19567 Message-ID: <87of1y6k2j.fsf@franz.ak.mind.de>
19568 Branch: perl
19569 - lib/CPAN/README
19570 ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
19571____________________________________________________________________________
19572[ 19572] By: nick on 2003/05/20 15:38:30
19573 Log: Integrate mainline.
19574 Branch: perlio
19575 !> ext/Encode/t/Unicode.t ext/Socket/Socket.xs op.c
19576 !> pod/perldiag.pod
19577____________________________________________________________________________
19578[ 19571] By: jhi on 2003/05/19 19:52:23
19579 Log: Further -Uuseperlio tweaking.
19580 Branch: perl
19581 ! ext/Encode/t/Unicode.t
19582____________________________________________________________________________
19583[ 19570] By: rgs on 2003/05/19 19:20:48
19584 Log: Subject: Re: Possible precedence problem on bitwise ^ operator
19585 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
19586 Date: Sun, 18 May 2003 19:21:01 -0700
19587 Message-ID: <N+Dy+gzkg+XX092yn@efn.org>
19588 (with tweaks to perldiag.pod)
19589 Branch: perl
19590 ! op.c pod/perldiag.pod
19591____________________________________________________________________________
19592[ 19569] By: jhi on 2003/05/19 19:02:23
19593 Log: More Ultrix double definition avoidance.
19594 Branch: perl
19595 ! ext/Socket/Socket.xs
19596____________________________________________________________________________
19597[ 19568] By: nick on 2003/05/19 15:55:20
19598 Log: Integrate mainline
19599 Branch: perlio
19600 !> ext/Encode/t/Unicode.t ext/Socket/Socket.xs
19601 !> ext/threads/threads.xs pod/perlsyn.pod pod/perltrap.pod
19602____________________________________________________________________________
19603[ 19567] By: jhi on 2003/05/19 05:01:26
19604 Log: Integrate:
19605 [ 19558]
19606 Subject: [PATCH] Re: [PATCH pod/perlsyn.pod pod/perltrap.pod] Unseding perlsyn
19607 From: Michael G Schwern <schwern@pobox.com>
19608 Date: Wed, 14 May 2003 15:36:23 -0700
19609 Message-ID: <20030514223623.GD23350@windhund.schwern.org>
19610
19611 [ 19559]
19612 Make the test work without perlio, from Dan Kogai.
19613
19614 [ 19560]
19615 Based on
19616
19617 Subject: [PATCH threads.xs] no system scope on VMS
19618 From: "Craig A. Berry" <craigberry@mac.com>
19619 Date: Sun, 18 May 2003 23:02:07 -0500
19620 Message-ID: <3EC8573F.6050005@mac.com>
19621
19622 but instead go for #ifdef PTHREAD_SCOPE_SYSTEM.
19623
19624 [ 19561]
19625 Ultrix: the #19435 helped the IO extension, so this should
19626 help the Socket extension (socket structs redefinitions).
19627
19628 [ 19562]
19629 Slightly wrong panic messages.
19630
19631 [ 19563]
19632 Make Perl_ithread_self() a bit more helpful when
19633 finding the thread fails (suggested by Stas in
19634 perl-ithreads Mar 01)
19635
19636 [ 19564]
19637 Meaningless cosmetics.
19638
19639 [ 19565]
19640 Nekkid numbers.
19641
19642 [ 19566]
19643 Integrate perlio:
19644 [ 19556]
19645 Fix ticket 18265
19646
19647 [ 19557]
19648 EINTR retry should exit on count >= 0 not !=0
19649 Branch: maint-5.8/perl
19650 !> ext/Encode/t/Unicode.t ext/Socket/Socket.xs
19651 !> ext/threads/threads.xs perlio.c pod/perlsyn.pod
19652 !> pod/perltrap.pod
19653____________________________________________________________________________
19654[ 19566] By: jhi on 2003/05/19 04:58:25
19655 Log: Integrate perlio:
19656 [ 19556]
19657 Fix ticket 18265
19658
19659 [ 19557]
19660 EINTR retry should exit on count >= 0 not !=0
19661 Branch: perl
19662 !> perlio.c
19663____________________________________________________________________________
19664[ 19565] By: jhi on 2003/05/19 04:56:16
19665 Log: Nekkid numbers.
19666 Branch: perl
19667 ! ext/threads/threads.xs
19668____________________________________________________________________________
19669[ 19564] By: jhi on 2003/05/19 04:52:49
19670 Log: Meaningless cosmetics.
19671 Branch: perl
19672 ! ext/threads/threads.xs
19673____________________________________________________________________________
19674[ 19563] By: jhi on 2003/05/19 04:47:53
19675 Log: Make Perl_ithread_self() a bit more helpful when
19676 finding the thread fails (suggested by Stas in
19677 perl-ithreads Mar 01)
19678 Branch: perl
19679 ! ext/threads/threads.xs
19680____________________________________________________________________________
19681[ 19562] By: jhi on 2003/05/19 04:40:11
19682 Log: Slightly wrong panic messages.
19683 Branch: perl
19684 ! ext/threads/threads.xs
19685____________________________________________________________________________
19686[ 19561] By: jhi on 2003/05/19 04:33:31
19687 Log: Ultrix: the #19435 helped the IO extension, so this should
19688 help the Socket extension (socket structs redefinitions).
19689 Branch: perl
19690 ! ext/Socket/Socket.xs
19691____________________________________________________________________________
19692[ 19560] By: jhi on 2003/05/19 04:30:01
19693 Log: Based on
19694
19695 Subject: [PATCH threads.xs] no system scope on VMS
19696 From: "Craig A. Berry" <craigberry@mac.com>
19697 Date: Sun, 18 May 2003 23:02:07 -0500
19698 Message-ID: <3EC8573F.6050005@mac.com>
19699
19700 but instead go for #ifdef PTHREAD_SCOPE_SYSTEM.
19701 Branch: perl
19702 ! ext/threads/threads.xs
19703____________________________________________________________________________
19704[ 19559] By: jhi on 2003/05/19 04:24:27
19705 Log: Make the test work without perlio, from Dan Kogai.
19706 Branch: perl
19707 ! ext/Encode/t/Unicode.t
19708____________________________________________________________________________
19709[ 19558] By: rgs on 2003/05/18 21:40:10
19710 Log: Subject: [PATCH] Re: [PATCH pod/perlsyn.pod pod/perltrap.pod] Unseding perlsyn
19711 From: Michael G Schwern <schwern@pobox.com>
19712 Date: Wed, 14 May 2003 15:36:23 -0700
19713 Message-ID: <20030514223623.GD23350@windhund.schwern.org>
19714 Branch: perl
19715 ! pod/perlsyn.pod pod/perltrap.pod
19716____________________________________________________________________________
19717[ 19557] By: nick on 2003/05/18 18:19:42
19718 Log: EINTR retry should exit on count >= 0 not !=0
19719 Branch: perlio
19720 ! perlio.c
19721____________________________________________________________________________
19722[ 19556] By: nick on 2003/05/18 10:29:26
19723 Log: Fix ticket 18265
19724 Branch: perlio
19725 ! perlio.c
19726____________________________________________________________________________
19727[ 19555] By: nick on 2003/05/18 09:09:29
19728 Log: Integrate UTF7 (now initial create has been submitted)
19729 Branch: perlio
19730 !> ext/Encode/lib/Encode/Unicode/UTF7.pm
19731____________________________________________________________________________
19732[ 19554] By: nick on 2003/05/18 08:48:17
19733 Log: Integrate mainline
19734 Branch: perlio
19735 +> ext/Encode/lib/Encode/Unicode/UTF7.pm
19736 !> Configure MANIFEST Makefile.SH ext/B/B/Deparse.pm
19737 !> ext/Encode/Changes ext/Encode/MANIFEST
19738 !> ext/Encode/Unicode/Unicode.pm ext/Encode/lib/Encode/Alias.pm
19739 !> ext/Encode/lib/Encode/Config.pm
19740 !> ext/Encode/lib/Encode/Supported.pod ext/Encode/t/Unicode.t
19741 !> lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
19742 !> lib/Getopt/Long/README lib/Getopt/Long/t/gol-basic.t
19743 !> lib/Getopt/Long/t/gol-compat.t lib/Getopt/Long/t/gol-linkage.t
19744 !> lib/Getopt/Long/t/gol-oo.t pod/perldiag.pod
19745____________________________________________________________________________
19746[ 19553] By: jhi on 2003/05/18 07:59:03
19747 Log: Integrate:
19748 [ 19552]
19749 Integrate from perlio:
19750 [ 19542]
19751 Fix ticket #22219
19752
19753 [ 19543]
19754 Spotted a bare close() where PerlLIO_close() seems correct.
19755 Branch: maint-5.8/perl
19756 !> doio.c perlio.c
19757____________________________________________________________________________
19758[ 19552] By: jhi on 2003/05/18 07:57:23
19759 Log: Integrate from perlio:
19760 [ 19542]
19761 Fix ticket #22219
19762
19763 [ 19543]
19764 Spotted a bare close() where PerlLIO_close() seems correct.
19765 Branch: perl
19766 !> doio.c perlio.c
19767____________________________________________________________________________
19768[ 19551] By: jhi on 2003/05/18 07:55:50
19769 Log: Integrate:
19770 [ 19527]
19771 Subject: [PATCH] RE: maint snapshot @ 19525
19772 From: Robin Barker <Robin.Barker@npl.co.uk>
19773 Date: Fri, 16 May 2003 17:16:57 +0100
19774 Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk>
19775
19776 (Part #1: the __format__ and __printf__)
19777
19778 [ 19528]
19779 Subject: [PATCH] RE: maint snapshot @ 19525
19780 From: Robin Barker <Robin.Barker@npl.co.uk>
19781 Date: Fri, 16 May 2003 17:16:57 +0100
19782 Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk>
19783
19784 (Part #2: the hv.c SVf)
19785
19786 [ 19531]
19787 Apply the supplied patch for [perl #22195]
19788 "File::Find, sorted directory traversal order is inverted"
19789
19790 [ 19532]
19791 The suggested patch for [perl #22201] "patch: perl 5.8.0
19792 compile error on ia64/HP-UX (comparing incompatible pointers)"
19793 plus a possible cure for the warning mentioned in the case.
19794
19795 [ 19533]
19796 avoid select() on windows destroying errno (used to typically
19797 always sets it to EINVAL due to the way it maps the FD_SETs)
19798
19799 [ 19534]
19800 change#16723 broke the ioctl() return value on platforms
19801 that have ioctl() but no fcntl() (e.g. windows)
19802
19803 change#17577 then attempted to fix the bustage, but got
19804 it wrong
19805
19806 [ 19535]
19807 improve the implementation of Net::Ping on windows by avoiding
19808 fork(), which is pretty heavy-weight for this kind of
19809 application; use non-blocking sockets instead
19810
19811 has been verified to work on Win2k but will need testing on
19812 other flavors of windows
19813
19814 there is a single known failure on windows in 450_service.t (test 18)
19815 due to what appears to be bugs in the ping_syn()/ack() code
19816
19817 [ 19536]
19818 apply Net::Ping patch that makes the fork()-based approach
19819 work better on windows (Marcus Holland-Moritz <mhx-perl@gmx.net>)
19820
19821 the code this affects is currently not enabled anywhere, but
19822 could be enabled if the non-blocking approach runs into problems
19823 on older windows versions
19824
19825 [ 19537]
19826 missing init in change#19533
19827
19828 [ 19539]
19829 Fix bug #22216 : B::Deparse can't handle "use Module Version"
19830 with fractional version numbers or v-strings.
19831
19832 [ 19540]
19833 Clarify the explanation of the warning "Possible precedence problem
19834 on bitwise operator".
19835
19836 [ 19541]
19837 Upgrade to Getopt::Long 2.32_05
19838
19839 [ 19545]
19840 Subject: Re: Last Call For (Least) Favourite Issues For 5.8.1
19841 From: Alan Burlison <Alan.Burlison@sun.com>
19842 Date: Thu, 15 May 2003 22:17:55 +0100
19843 Message-ID: <3EC40403.9000804@sun.com>
19844
19845 (fixed symbol scanning for Solaris 10)
19846
19847 [ 19547]
19848 Old (4.2BSD, like Ultrix) Bourne shells do not understand
19849 non-left-aligned heredocs.
19850
19851 [ 19548]
19852 Subject: [Encode] UTF-7 Support
19853 From: Dan Kogai <dankogai@dan.co.jp>
19854 Date: Sun, 18 May 2003 00:45:35 +0900
19855 Message-Id: <99C4504E-887E-11D7-840A-000393AE4244@dan.co.jp>
19856
19857 [ 19549]
19858 The 'quotes' really are important (caught by Enache Adrian).
19859
19860 [ 19550]
19861 UTF-7 tweak from Dan Kogai.
19862 Branch: maint-5.8/perl
19863 +> ext/Encode/lib/Encode/Unicode/UTF7.pm
19864 !> (integrate 28 files)
19865____________________________________________________________________________
19866[ 19550] By: jhi on 2003/05/18 06:23:50
19867 Log: UTF-7 tweak from Dan Kogai.
19868 Branch: perl
19869 ! ext/Encode/lib/Encode/Unicode/UTF7.pm
19870____________________________________________________________________________
19871[ 19549] By: jhi on 2003/05/18 05:58:58
19872 Log: The 'quotes' really are important (caught by Enache Adrian).
19873 Branch: perl
19874 ! Makefile.SH
19875____________________________________________________________________________
19876[ 19548] By: jhi on 2003/05/17 16:39:19
19877 Log: Subject: [Encode] UTF-7 Support
19878 From: Dan Kogai <dankogai@dan.co.jp>
19879 Date: Sun, 18 May 2003 00:45:35 +0900
19880 Message-Id: <99C4504E-887E-11D7-840A-000393AE4244@dan.co.jp>
19881 Branch: perl
19882 + ext/Encode/lib/Encode/Unicode/UTF7.pm
19883 ! MANIFEST ext/Encode/Changes ext/Encode/MANIFEST
19884 ! ext/Encode/Unicode/Unicode.pm ext/Encode/lib/Encode/Alias.pm
19885 ! ext/Encode/lib/Encode/Config.pm
19886 ! ext/Encode/lib/Encode/Supported.pod ext/Encode/t/Unicode.t
19887____________________________________________________________________________
19888[ 19547] By: jhi on 2003/05/17 16:26:47
19889 Log: Old (4.2BSD, like Ultrix) Bourne shells do not understand
19890 non-left-aligned heredocs.
19891 Branch: perl
19892 ! Makefile.SH
19893____________________________________________________________________________
19894[ 19546] By: jhi on 2003/05/17 16:17:23
19895 Log: metaconfig unit changes for #19545.
19896 Branch: metaconfig
19897 ! U/compline/Csym.U U/modified/libc.U
19898____________________________________________________________________________
19899[ 19545] By: jhi on 2003/05/17 15:51:07
19900 Log: Subject: Re: Last Call For (Least) Favourite Issues For 5.8.1
19901 From: Alan Burlison <Alan.Burlison@sun.com>
19902 Date: Thu, 15 May 2003 22:17:55 +0100
19903 Message-ID: <3EC40403.9000804@sun.com>
19904
19905 (fixed symbol scanning for Solaris 10)
19906 Branch: perl
19907 ! Configure
19908____________________________________________________________________________
19909[ 19544] By: nick on 2003/05/17 15:37:45
19910 Log: Enache Adrian <enache@rdslink.ro> test for Win32 sysread/O_TEXT issue.
19911 Branch: perlio
19912 ! t/op/sysio.t
19913____________________________________________________________________________
19914[ 19543] By: nick on 2003/05/17 13:38:35
19915 Log: Spotted a bare close() where PerlLIO_close() seems correct.
19916 Branch: perlio
19917 ! perlio.c
19918____________________________________________________________________________
19919[ 19542] By: nick on 2003/05/17 13:36:28
19920 Log: Fix ticket #22219
19921 Branch: perlio
19922 ! doio.c
19923____________________________________________________________________________
19924[ 19541] By: rgs on 2003/05/17 12:10:14
19925 Log: Upgrade to Getopt::Long 2.32_05
19926 Branch: perl
19927 ! lib/Getopt/Long.pm lib/Getopt/Long/CHANGES
19928 ! lib/Getopt/Long/README lib/Getopt/Long/t/gol-basic.t
19929 ! lib/Getopt/Long/t/gol-compat.t lib/Getopt/Long/t/gol-linkage.t
19930 ! lib/Getopt/Long/t/gol-oo.t
19931____________________________________________________________________________
19932[ 19540] By: rgs on 2003/05/17 11:46:25
19933 Log: Clarify the explanation of the warning "Possible precedence problem
19934 on bitwise operator".
19935 Branch: perl
19936 ! pod/perldiag.pod
19937____________________________________________________________________________
19938[ 19539] By: rgs on 2003/05/17 11:36:08
19939 Log: Fix bug #22216 : B::Deparse can't handle "use Module Version"
19940 with fractional version numbers or v-strings.
19941 Branch: perl
19942 ! ext/B/B/Deparse.pm
19943____________________________________________________________________________
19944[ 19538] By: nick on 2003/05/17 08:08:17
19945 Log: Integrate mainline
19946 Branch: perlio
19947 +> Porting/curliff.pl Porting/sort_perldiag.pl
19948 !> (integrate 34 files)
19949____________________________________________________________________________
19950[ 19537] By: gsar on 2003/05/17 06:32:46
19951 Log: missing init in change#19533
19952 Branch: perl
19953 ! win32/win32sck.c
19954____________________________________________________________________________
19955[ 19536] By: gsar on 2003/05/17 06:07:07
19956 Log: apply Net::Ping patch that makes the fork()-based approach
19957 work better on windows (Marcus Holland-Moritz <mhx-perl@gmx.net>)
19958
19959 the code this affects is currently not enabled anywhere, but
19960 could be enabled if the non-blocking approach runs into problems
19961 on older windows versions
19962 Branch: perl
19963 ! lib/Net/Ping.pm
19964____________________________________________________________________________
19965[ 19535] By: gsar on 2003/05/17 05:54:39
19966 Log: improve the implementation of Net::Ping on windows by avoiding
19967 fork(), which is pretty heavy-weight for this kind of
19968 application; use non-blocking sockets instead
19969
19970 has been verified to work on Win2k but will need testing on
19971 other flavors of windows
19972
19973 there is a single known failure on windows in 450_service.t (test 18)
19974 due to what appears to be bugs in the ping_syn()/ack() code
19975 Branch: perl
19976 ! lib/Net/Ping.pm
19977____________________________________________________________________________
19978[ 19534] By: gsar on 2003/05/17 04:53:06
19979 Log: change#16723 broke the ioctl() return value on platforms
19980 that have ioctl() but no fcntl() (e.g. windows)
19981
19982 change#17577 then attempted to fix the bustage, but got
19983 it wrong
19984 Branch: perl
19985 ! pp_sys.c
19986____________________________________________________________________________
19987[ 19533] By: gsar on 2003/05/17 04:49:18
19988 Log: avoid select() on windows destroying errno (used to typically
19989 always sets it to EINVAL due to the way it maps the FD_SETs)
19990 Branch: perl
19991 ! win32/win32sck.c
19992____________________________________________________________________________
19993[ 19532] By: jhi on 2003/05/16 18:21:27
19994 Log: The suggested patch for [perl #22201] "patch: perl 5.8.0
19995 compile error on ia64/HP-UX (comparing incompatible pointers)"
19996 plus a possible cure for the warning mentioned in the case.
19997 Branch: perl
19998 ! ext/Storable/Storable.xs
19999____________________________________________________________________________
20000[ 19531] By: jhi on 2003/05/16 17:56:06
20001 Log: Apply the supplied patch for [perl #22195]
20002 "File::Find, sorted directory traversal order is inverted"
20003 Branch: perl
20004 ! lib/File/Find.pm
20005____________________________________________________________________________
20006[ 19530] By: jhi on 2003/05/16 17:48:42
20007 Log: metaconfig unit change to go with #19527.
20008 Branch: metaconfig
20009 ! U/modified/d_attribut.U
20010____________________________________________________________________________
20011[ 19529] By: jhi on 2003/05/16 17:34:21
20012 Log: Take care of [perl #17424].
20013 Branch: maint-5.8/perl
20014 ! perl.h
20015____________________________________________________________________________
20016[ 19528] By: jhi on 2003/05/16 15:56:33
20017 Log: Subject: [PATCH] RE: maint snapshot @ 19525
20018 From: Robin Barker <Robin.Barker@npl.co.uk>
20019 Date: Fri, 16 May 2003 17:16:57 +0100
20020 Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk>
20021
20022 (Part #2: the hv.c SVf)
20023 Branch: perl
20024 ! hv.c
20025____________________________________________________________________________
20026[ 19527] By: jhi on 2003/05/16 15:55:10
20027 Log: Subject: [PATCH] RE: maint snapshot @ 19525
20028 From: Robin Barker <Robin.Barker@npl.co.uk>
20029 Date: Fri, 16 May 2003 17:16:57 +0100
20030 Message-ID: <533D273D4014D411AB1D00062938C4D90404651D@hotel.npl.co.uk>
20031
20032 (Part #1: the __format__ and __printf__)
20033 Branch: perl
20034 ! Configure embed.pl perlio.c proto.h
20035____________________________________________________________________________
20036[ 19526] By: jhi on 2003/05/14 19:23:10
20037 Log: A part of #19454.
20038 Branch: maint-5.8/perl
20039 ! pp_hot.c
20040____________________________________________________________________________
20041[ 19525] By: jhi on 2003/05/14 05:41:06
20042 Log: Update Changes.
20043 Branch: maint-5.8/perl
20044 ! Changes patchlevel.h
20045____________________________________________________________________________
20046[ 19524] By: jhi on 2003/05/14 05:25:28
20047 Log: Integrate:
20048 [ 19516]
20049 Subject: [PATCH] More perldiag.pod sorting
20050 From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
20051 Date: Tue, 13 May 2003 15:13:53 -0400
20052 Message-ID: <20030513191353.GB1556429@linguist.thayer.dartmouth.edu>
20053
20054 (plus add 'no locale;')
20055
20056 [ 19517]
20057 Subject: [PATCH] Sync up MIME-Base64 to latest on CPAN
20058 From: Gisle Aas <gisle@ActiveState.com>
20059 Date: 13 May 2003 09:59:50 -0700
20060 Message-ID: <lru1byzss9.fsf@caliper.activestate.com>
20061
20062 [ 19518]
20063 Subject: [PATCH] [perl #8599] s/catenate/concatenate/
20064 From: Casey West <casey@geeknest.com>
20065 Date: Fri, 9 May 2003 04:00:44 -0400
20066 Message-ID: <20030509080044.GA49820@geeknest.com>
20067
20068 (except for the dup.t patch which diddled with system().)
20069
20070 [ 19520]
20071 Use /usr/bin/perl (de facto in Porting/ scripts).
20072
20073 [ 19521]
20074 Curliff and liff with ease.
20075
20076 [ 19522]
20077 More Panther moves.
20078
20079 [ 19523]
20080 Subject: Re: [PATCH] Sync up MIME-Base64 to latest on CPAN
20081 From: Gisle Aas <gisle@ActiveState.com>
20082 Date: 13 May 2003 19:51:19 -0700
20083 Message-ID: <lrptmmw89k.fsf@caliper.activestate.com>
20084 Branch: maint-5.8/perl
20085 +> Porting/curliff.pl Porting/sort_perldiag.pl
20086 !> Configure MANIFEST Makefile.SH NetWare/config_H.wc
20087 !> Porting/config_H README.Y2K config_h.SH
20088 !> ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
20089 !> ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
20090 !> ext/MIME/Base64/t/quoted-print.t hints/darwin.sh
20091 !> lib/File/Spec.pm lib/File/Spec/Unix.pm plan9/config.plan9
20092 !> plan9/config_h.sample pod/perldiag.pod uconfig.h
20093 !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
20094 !> win32/config_H.vc64 wince/config_H.ce
20095____________________________________________________________________________
20096[ 19523] By: jhi on 2003/05/14 05:19:05
20097 Log: Subject: Re: [PATCH] Sync up MIME-Base64 to latest on CPAN
20098 From: Gisle Aas <gisle@ActiveState.com>
20099 Date: 13 May 2003 19:51:19 -0700
20100 Message-ID: <lrptmmw89k.fsf@caliper.activestate.com>
20101 Branch: perl
20102 ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
20103 ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
20104 ! ext/MIME/Base64/t/quoted-print.t
20105____________________________________________________________________________
20106[ 19522] By: jhi on 2003/05/14 05:11:49
20107 Log: More Panther moves.
20108 Branch: perl
20109 ! Makefile.SH hints/darwin.sh
20110____________________________________________________________________________
20111[ 19521] By: jhi on 2003/05/13 19:33:44
20112 Log: Curliff and liff with ease.
20113 Branch: perl
20114 + Porting/curliff.pl
20115 ! MANIFEST
20116____________________________________________________________________________
20117[ 19520] By: jhi on 2003/05/13 18:59:51
20118 Log: Use /usr/bin/perl (de facto in Porting/ scripts).
20119 Branch: perl
20120 ! Porting/sort_perldiag.pl
20121____________________________________________________________________________
20122[ 19519] By: jhi on 2003/05/13 18:56:14
20123 Log: metaconfig unit change for #19518.
20124 Branch: metaconfig
20125 ! U/modified/cpp_stuff.U
20126____________________________________________________________________________
20127[ 19518] By: jhi on 2003/05/13 18:53:48
20128 Log: Subject: [PATCH] [perl #8599] s/catenate/concatenate/
20129 From: Casey West <casey@geeknest.com>
20130 Date: Fri, 9 May 2003 04:00:44 -0400
20131 Message-ID: <20030509080044.GA49820@geeknest.com>
20132
20133 (except for the dup.t patch which diddled with system().)
20134 Branch: perl
20135 ! Configure NetWare/config_H.wc Porting/config_H README.Y2K
20136 ! config_h.SH lib/File/Spec.pm lib/File/Spec/Unix.pm
20137 ! plan9/config.plan9 plan9/config_h.sample uconfig.h
20138 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
20139 ! win32/config_H.vc64 wince/config_H.ce
20140____________________________________________________________________________
20141[ 19517] By: jhi on 2003/05/13 18:39:40
20142 Log: Subject: [PATCH] Sync up MIME-Base64 to latest on CPAN
20143 From: Gisle Aas <gisle@ActiveState.com>
20144 Date: 13 May 2003 09:59:50 -0700
20145 Message-ID: <lru1byzss9.fsf@caliper.activestate.com>
20146 Branch: perl
20147 ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
20148 ! ext/MIME/Base64/Changes ext/MIME/Base64/QuotedPrint.pm
20149 ! ext/MIME/Base64/t/quoted-print.t
20150____________________________________________________________________________
20151[ 19516] By: jhi on 2003/05/13 18:37:11
20152 Log: Subject: [PATCH] More perldiag.pod sorting
20153 From: Ronald J Kimball <rjk@linguist.thayer.dartmouth.edu>
20154 Date: Tue, 13 May 2003 15:13:53 -0400
20155 Message-ID: <20030513191353.GB1556429@linguist.thayer.dartmouth.edu>
20156
20157 (plus add 'no locale;')
20158 Branch: perl
20159 + Porting/sort_perldiag.pl
20160 ! MANIFEST pod/perldiag.pod
20161____________________________________________________________________________
20162[ 19515] By: jhi on 2003/05/13 17:51:05
20163 Log: Integrate:
20164 [ 19514]
20165 Detypo.
20166
20167 [ 19512]
20168 make it easier to reproduce the bug
20169
20170 [ 19511]
20171 the \do {local *FH} trick in Tie::File was really only needed
20172 on 5.005 and earlier, since later versions can autovivify
20173 the handle
20174
20175 however, a search in the p5p archives reveals the trick doesn't
20176 fully work in the versions it is needed in, so use the more
20177 standard Symbol::gensym() way
20178
20179 [ 19510]
20180 $Config{usethreads} wasn't being set on windows
20181
20182 [ 19509]
20183 Reinstate the #19498 but now skip the crashing
20184 tests (when threaded) as TODOs.
20185
20186 [ 19508]
20187 Revert #19498 since it broke threaded builds.
20188
20189 [ 19506]
20190 Detypo Pantherisms.
20191
20192 [ 19503]
20193 Use a more sophisticated heuristics to produce the warning
20194 'Parentheses missing around "%s" list'. This fixes bug #22147.
20195 Also, the warning is now produced for C<local *a,*b;>.
20196
20197 [ 19502]
20198 Work also without perlio.
20199
20200 [ 19500]
20201 Panther preparation.
20202
20203 [ 19499]
20204 More moves to intrpvar.h.
20205
20206 [ 19498]
20207 fix for Tie::File test failures on windows: the problem was
20208 that Tie::File did not close any file handles it opens internally,
20209 leading to file handle leaks and t/tf* temporary file littering;
20210 we now close the handle iff Tie::File opened it
20211
20212 this fix unearths what appears to be a perl bug in localizing globs:
20213 09_gen_rs.t fails due to a prematurely closed filehandle, although
20214 it wasn't explicitly closed anywhere by the code (renaming the
20215 *FH at line 97 to *FH1 makes it work, but I haven't done this
20216 to allow the bug to be tracked down)
20217
20218 [ 19497]
20219 Move the thread *hook into interpreter.
20220
20221 [ 19496]
20222 Subject: [PATCH] [perl #7391] Perl crashes with certain write() formats.
20223 From: Dave Mitchell <davem@fdgroup.com>
20224 Date: Sat, 10 May 2003 01:45:23 +0100
20225 Message-ID: <20030510004523.GC20871@fdgroup.com>
20226
20227 [ 19495]
20228 Open UNIX is not really "formerly Unixware", since the most
20229 recent releases are known as Unixware, not as Open UNIX.
20230
20231 [ 19494]
20232 Slight tweaks to the platform list.
20233
20234 [ 19493]
20235 Subject: Re: [PATCH] [perl #8636] [perl #8634] Both patches together for perlop
20236 From: Casey West <casey@geeknest.com>
20237 Date: Fri, 9 May 2003 10:30:13 -0400
20238 Message-ID: <20030509143013.GM49820@geeknest.com>
20239
20240 [ 19492]
20241 perlport.pod nit for doc bug #8253.
20242
20243 [ 19491]
20244 Use test.pl.
20245
20246 [ 19490]
20247 Try to handle a $^X with spaces in it.
20248
20249 [ 19489]
20250 Separate the creation of the command to run by
20251 runperl() into its own function, _create_runperl().
20252
20253 [ 19488]
20254 Fixup the method behaviour table.
20255
20256 [ 19487]
20257 Integrate from perlio:
20258 [ 19474]
20259 Tweaks to Jarkko's NULL deref checks in perlio.c
20260
20261 [ 19475]
20262 Fix for bugs 21717 and 22140.
20263 Win32's lseek claims to have succeeded in pipes etc. Which confuses :perlio
20264 and derived layers. So have :unix's "pushed" method stat() the fd and
20265 cache non S_ISREG nature. Have Unix_seek fail if fd is NOT S_ISREG to match
20266 UNIX behaviour.
20267
20268 [ 19479]
20269 Better but still unproven fix for lseek() on pipes.
20270
20271 [ 19483]
20272 Unused variable
20273
20274 [ 19485]
20275 Tests to prove Ticket 9468 is fixed.
20276
20277 [ 19486]
20278 add test for change#19475,19479 (bugs#21717,22140)
20279
20280 [ 19484]
20281 fix Embed.t failure on windows: PERL_SYS_TERM() is implemented
20282 in terms of an exported function rather than as an inlined
20283 macro (latter wants PL_op_mutex which isn't exported as such)
20284
20285 Jarkko: please merge into maint-5.8
20286
20287 [ 19482]
20288 Test _getcode().
20289
20290 [ 19481]
20291 Clarify the doc (and the code) for Unicode code points.
20292
20293 [ 19480]
20294 Another doc suggestion from terry@eatoni.com (terry jones):
20295 use codepoints that return undef.
20296
20297 [ 19478]
20298 Add Encode's META.yml.
20299
20300 [ 19477]
20301 Upgrade to Encode 1.94.
20302
20303 [ 19476]
20304 Doc bug noticed by terry@eatoni.com (terry jones).
20305
20306 [ 19472]
20307 Try to plug more potential PerlIO NULL method
20308 dereferences; try to document the matter.
20309
20310 [ 19471]
20311 UseNicerNames instead of SHOUTING_LIKE_THIS.
20312
20313 [ 19470]
20314 In eof() the errno can get stomped by the peek-ahead.
20315
20316 [ 19469]
20317 A regression test for the remaining "Final $ should be..." error.
20318
20319 [ 19468]
20320 Remove the error messages "Final @ should be \@ or @name"
20321 and "Final % should be \% or %name", that appear to be
20322 only produced in addition to another syntax error, and therefore
20323 misleading, if I understand correctly that kind of black magic.
20324
20325 [ 19467]
20326 Have to think this test more when I'm awake.
20327
20328 [ 19466]
20329 Document that perl tries to load .pmc files before .pm files.
20330 Subject: Re: [perl #8860] [not RESOLVED] .pmc extension not documented in require
20331 From: Casey West <casey@geeknest.com>
20332 Date: Fri, 9 May 2003 17:03:50 -0400
20333 Message-ID: <20030509210350.GW49820@geeknest.com>
20334
20335 [ 19465]
20336 Fix for doc bug #8602 : clarify eof() example comments
20337
20338 [ 19464]
20339 Subject: [PATCH] [perl #8702] Clean up perltrap mis-information
20340 From: Casey West <casey@geeknest.com>
20341 Date: Fri, 9 May 2003 11:09:39 -0400
20342 Message-ID: <20030509150939.GN49820@geeknest.com>
20343
20344 [ 19463]
20345 Subject: Re: [DOC PATCH] [perl #1165] crypt accepts any character as salt
20346 From: Casey West <casey@geeknest.com>
20347 Date: Fri, 9 May 2003 15:25:59 -0400
20348 Message-ID: <20030509192559.GS49820@geeknest.com>
20349
20350 [ 19462]
20351 Try to comprehensively have a plan B if a PerlIO
20352 layer doesn't have a particular function.
20353 (1) If there's a corresponding PerlIOBase, call it.
20354 (2) If not having the function is 'harmless', be silently happy.
20355 (Currently only Flush is in this category.)
20356 (3) Otherwise set errno and return failure.
20357
20358 [ 19461]
20359 Subject: [PATCH] [perl #8703] unescaped @ is fine
20360 From: Casey West <casey@geeknest.com>
20361 Date: Fri, 9 May 2003 11:17:53 -0400
20362 Message-ID: <20030509151753.GO49820@geeknest.com>
20363
20364 [ 19460]
20365 Add the PerlIOBase_noop_* to the public API as suggested by Stas.
20366
20367 [ 19459]
20368 Result of change #19458.
20369
20370 [ 19458]
20371 Subject: Weekend fun: MANIFEST sorting
20372 From: andreas.koenig@anima.de (Andreas J. Koenig)
20373 Date: Fri, 09 May 2003 15:12:05 +0200
20374 Message-ID: <m3y91g463e.fsf@franz.ak.mind.de>
20375
20376 (both sorts need LC_ALL=C)
20377 (add also manicheck target)
20378
20379 [ 19457]
20380 Better skip this test on OpenBSD and BSD/OS since it
20381 does not seem to work (Slaven Rezic).
20382
20383 [ 19456]
20384 Subject: [PATCH] Re: [perl #16834] Anomolous behaviour of SUBSTR() used as LValue
20385 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20386 Date: Wed, 07 May 2003 23:37:47 -0700
20387 Message-ID: <7sfu+gzkg+AY092yn@efn.org>
20388
20389 [ 19455]
20390 Missing files.
20391
20392 [ 19453]
20393 Remove duplicate entries from perldiag
20394
20395 [ 19452]
20396 Subject: Re: [perl #17718] %tiedhash in bool context doesn't check if hash is empty
20397 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20398 Date: Wed, 07 May 2003 15:27:07 -0700
20399 Message-ID: <7gYu+gzkgaFU092yn@efn.org>
20400
20401 [ 19451]
20402 Tiny nit from mjd.
20403
20404 [ 19450]
20405 Upgrade to Tie::File 0.95.
20406
20407 [ 19449]
20408 Subject: [perl #22141] patch for Time::HiRes to get rid of -lrt on linux
20409 From: Marc Lehmann (via RT) <perlbug-followup@perl.org>
20410 Message-Id: <rt-22141-56710.3.69543054121962@bugs6.perl.org>
20411 Date: 8 May 2003 00:42:18 -0000
20412
20413 [ 19448]
20414 Subject: [PATCH] alphabetize perldiag.pod
20415 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
20416 Date: Thu, 8 May 2003 11:52:39 -0400
20417 Message-ID: <20030508155239.GC1495587@linguist.thayer.dartmouth.edu>
20418
20419 [ 19447]
20420 Subject: [PATCH] [perl #22127] get(av|cv|hv|sv) added to Devel::PPPort
20421 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
20422 Date: Thu, 08 May 2003 08:42:20 +0200
20423 Message-id: <20030508064220.GA763@ethan>
20424
20425 [ 19445]
20426 A variant of
20427
20428 Subject: Re: 0 is not perl (was Re: Report /export/home/nwc10/Gripping-Smoke/Smoke)
20429 From: enache@rdslink.ro (Enache Adrian)
20430 Date: Tue, 22 Apr 2003 02:54:05 +0300
20431 Message-ID: <20030421235405.GA1162@ratsnest.hole>
20432
20433 to quench the black smoke from the BSD builds.
20434
20435 [ 19444]
20436 Subject: Re: [DOC PATCH] & More File::Path issues
20437 From: Casey West <casey@geeknest.com>
20438 Date: Mon, 5 May 2003 13:25:47 -0400
20439 Message-ID: <20030505172547.GB20508@geeknest.com>
20440
20441 [ 19443]
20442 Spelling correction from Nicholas Clark.
20443 Branch: maint-5.8/perl
20444 +> ext/Encode/META.yml lib/Tie/File/t/27_iwrite.t
20445 +> lib/Tie/File/t/28_mtwrite.t lib/Tie/File/t/29_downcopy.t
20446 +> lib/Tie/File/t/29a_upcopy.t lib/Tie/File/t/42_offset.t
20447 !> (integrate 69 files)
20448____________________________________________________________________________
20449[ 19514] By: jhi on 2003/05/13 17:38:09
20450 Log: Detypo.
20451 Branch: perl
20452 ! lib/Unicode/UCD.pm
20453____________________________________________________________________________
20454[ 19513] By: nick on 2003/05/13 16:35:00
20455 Log: Integrate mainline
20456 Branch: perlio
20457 !> Makefile.SH dump.c gv.c hints/darwin.sh hv.c lib/Tie/File.pm
20458 !> lib/Tie/File/t/09_gen_rs.t op.c pod/perldiag.pod
20459 !> pod/perlsyn.pod pp.c pp_hot.c sv.c t/comp/package.t t/io/dup.t
20460 !> t/lib/warnings/op win32/Makefile win32/makefile.mk
20461____________________________________________________________________________
20462[ 19512] By: gsar on 2003/05/13 13:28:42
20463 Log: make it easier to reproduce the bug
20464 Branch: perl
20465 ! lib/Tie/File.pm
20466____________________________________________________________________________
20467[ 19511] By: gsar on 2003/05/13 13:08:47
20468 Log: the \do {local *FH} trick in Tie::File was really only needed
20469 on 5.005 and earlier, since later versions can autovivify
20470 the handle
20471
20472 however, a search in the p5p archives reveals the trick doesn't
20473 fully work in the versions it is needed in, so use the more
20474 standard Symbol::gensym() way
20475 Branch: perl
20476 ! lib/Tie/File.pm lib/Tie/File/t/09_gen_rs.t
20477____________________________________________________________________________
20478[ 19510] By: gsar on 2003/05/13 12:36:01
20479 Log: $Config{usethreads} wasn't being set on windows
20480 Branch: perl
20481 ! win32/Makefile win32/makefile.mk
20482____________________________________________________________________________
20483[ 19509] By: jhi on 2003/05/13 12:24:19
20484 Log: Reinstate the #19498 but now skip the crashing
20485 tests (when threaded) as TODOs.
20486 Branch: perl
20487 ! lib/Tie/File.pm lib/Tie/File/t/09_gen_rs.t
20488____________________________________________________________________________
20489[ 19508] By: jhi on 2003/05/13 11:22:06
20490 Log: Revert #19498 since it broke threaded builds.
20491 Branch: perl
20492 ! lib/Tie/File.pm
20493____________________________________________________________________________
20494[ 19507] By: jhi on 2003/05/13 05:20:56
20495 Log: Better be explicit with dangling elses.
20496 Branch: perl
20497 ! pp.c
20498____________________________________________________________________________
20499[ 19506] By: jhi on 2003/05/13 04:46:18
20500 Log: Detypo Pantherisms.
20501 Branch: perl
20502 ! Makefile.SH hints/darwin.sh
20503____________________________________________________________________________
20504[ 19505] By: rgs on 2003/05/12 21:49:21
20505 Log: Subject: Re: Bug stomping fun. [PATCH: bug #1016]
20506 From: Alex Vandiver <alexmv@MIT.EDU>
20507 Date: 02 May 2003 06:45:05 -0400
20508 Message-Id: <1051872303.26203.104.camel@supox>
20509 (plus perldiag nit)
20510 Branch: perl
20511 ! dump.c gv.c hv.c pod/perldiag.pod pp.c pp_hot.c sv.c
20512 ! t/comp/package.t
20513____________________________________________________________________________
20514[ 19504] By: rgs on 2003/05/12 20:52:52
20515 Log: Small nit in perlsyn about the new // operator
20516 Branch: perl
20517 ! pod/perlsyn.pod
20518____________________________________________________________________________
20519[ 19503] By: rgs on 2003/05/12 19:43:07
20520 Log: Use a more sophisticated heuristics to produce the warning
20521 'Parentheses missing around "%s" list'. This fixes bug #22147.
20522 Also, the warning is now produced for C<local *a,*b;>.
20523 Branch: perl
20524 ! op.c t/lib/warnings/op
20525____________________________________________________________________________
20526[ 19502] By: jhi on 2003/05/12 19:34:10
20527 Log: Work also without perlio.
20528 Branch: perl
20529 ! t/io/dup.t
20530____________________________________________________________________________
20531[ 19501] By: nick on 2003/05/12 17:57:45
20532 Log: Integrate mainline
20533 Branch: perlio
20534 +> ext/Encode/META.yml
20535 !> (integrate 29 files)
20536____________________________________________________________________________
20537[ 19500] By: jhi on 2003/05/12 05:25:14
20538 Log: Panther preparation.
20539 Branch: perl
20540 ! Makefile.SH hints/darwin.sh
20541____________________________________________________________________________
20542[ 19499] By: jhi on 2003/05/12 04:49:57
20543 Log: More moves to intrpvar.h.
20544 Branch: perl
20545 ! embedvar.h intrpvar.h perlapi.h perlvars.h sv.c
20546____________________________________________________________________________
20547[ 19498] By: gsar on 2003/05/12 01:40:46
20548 Log: fix for Tie::File test failures on windows: the problem was
20549 that Tie::File did not close any file handles it opens internally,
20550 leading to file handle leaks and t/tf* temporary file littering;
20551 we now close the handle iff Tie::File opened it
20552
20553 this fix unearths what appears to be a perl bug in localizing globs:
20554 09_gen_rs.t fails due to a prematurely closed filehandle, although
20555 it wasn't explicitly closed anywhere by the code (renaming the
20556 *FH at line 97 to *FH1 makes it work, but I haven't done this
20557 to allow the bug to be tracked down)
20558 Branch: perl
20559 ! lib/Tie/File.pm
20560____________________________________________________________________________
20561[ 19497] By: jhi on 2003/05/11 20:17:30
20562 Log: Move the thread *hook into interpreter.
20563 Branch: perl
20564 ! embedvar.h intrpvar.h perlapi.h perlvars.h sv.c
20565____________________________________________________________________________
20566[ 19496] By: rgs on 2003/05/11 20:06:03
20567 Log: Subject: [PATCH] [perl #7391] Perl crashes with certain write() formats.
20568 From: Dave Mitchell <davem@fdgroup.com>
20569 Date: Sat, 10 May 2003 01:45:23 +0100
20570 Message-ID: <20030510004523.GC20871@fdgroup.com>
20571 Branch: perl
20572 ! pp_ctl.c
20573____________________________________________________________________________
20574[ 19495] By: rgs on 2003/05/11 20:01:10
20575 Log: Open UNIX is not really "formerly Unixware", since the most
20576 recent releases are known as Unixware, not as Open UNIX.
20577 Branch: perl
20578 ! pod/perlport.pod
20579____________________________________________________________________________
20580[ 19494] By: jhi on 2003/05/11 19:52:38
20581 Log: Slight tweaks to the platform list.
20582 Branch: perl
20583 ! pod/perlport.pod
20584____________________________________________________________________________
20585[ 19493] By: rgs on 2003/05/11 19:13:00
20586 Log: Subject: Re: [PATCH] [perl #8636] [perl #8634] Both patches together for perlop
20587 From: Casey West <casey@geeknest.com>
20588 Date: Fri, 9 May 2003 10:30:13 -0400
20589 Message-ID: <20030509143013.GM49820@geeknest.com>
20590 Branch: perl
20591 ! pod/perlop.pod
20592____________________________________________________________________________
20593[ 19492] By: rgs on 2003/05/11 19:04:27
20594 Log: perlport.pod nit for doc bug #8253.
20595 Branch: perl
20596 ! pod/perlport.pod
20597____________________________________________________________________________
20598[ 19491] By: jhi on 2003/05/11 17:50:49
20599 Log: Use test.pl.
20600 Branch: perl
20601 ! t/io/fflush.t
20602____________________________________________________________________________
20603[ 19490] By: jhi on 2003/05/11 17:46:09
20604 Log: Try to handle a $^X with spaces in it.
20605 Branch: perl
20606 ! t/test.pl
20607____________________________________________________________________________
20608[ 19489] By: jhi on 2003/05/11 17:44:28
20609 Log: Separate the creation of the command to run by
20610 runperl() into its own function, _create_runperl().
20611 Branch: perl
20612 ! t/test.pl
20613____________________________________________________________________________
20614[ 19488] By: jhi on 2003/05/11 16:52:00
20615 Log: Fixup the method behaviour table.
20616 Branch: perl
20617 ! pod/perliol.pod
20618____________________________________________________________________________
20619[ 19487] By: jhi on 2003/05/11 16:43:26
20620 Log: Integrate from perlio:
20621 [ 19474]
20622 Tweaks to Jarkko's NULL deref checks in perlio.c
20623
20624 [ 19475]
20625 Fix for bugs 21717 and 22140.
20626 Win32's lseek claims to have succeeded in pipes etc. Which confuses :perlio
20627 and derived layers. So have :unix's "pushed" method stat() the fd and
20628 cache non S_ISREG nature. Have Unix_seek fail if fd is NOT S_ISREG to match
20629 UNIX behaviour.
20630
20631 [ 19479]
20632 Better but still unproven fix for lseek() on pipes.
20633
20634 [ 19483]
20635 Unused variable
20636
20637 [ 19485]
20638 Tests to prove Ticket 9468 is fixed.
20639
20640 [ 19486]
20641 add test for change#19475,19479 (bugs#21717,22140)
20642 Branch: perl
20643 !> ext/Encode/Encode.xs perlio.c perliol.h t/io/dup.t
20644 !> t/io/fflush.t
20645____________________________________________________________________________
20646[ 19486] By: gsar on 2003/05/11 16:11:55
20647 Log: add test for change#19475,19479 (bugs#21717,22140)
20648 Branch: perlio
20649 ! t/io/fflush.t
20650____________________________________________________________________________
20651[ 19485] By: nick on 2003/05/11 15:40:08
20652 Log: Tests to prove Ticket 9468 is fixed.
20653 Branch: perlio
20654 ! t/io/dup.t
20655____________________________________________________________________________
20656[ 19484] By: gsar on 2003/05/11 15:37:14
20657 Log: fix Embed.t failure on windows: PERL_SYS_TERM() is implemented
20658 in terms of an exported function rather than as an inlined
20659 macro (latter wants PL_op_mutex which isn't exported as such)
20660
20661 Jarkko: please merge into maint-5.8
20662 Branch: perl
20663 ! dosish.h makedef.pl win32/win32.c win32/win32.h
20664____________________________________________________________________________
20665[ 19483] By: nick on 2003/05/11 14:04:31
20666 Log: Unused variable
20667 Branch: perlio
20668 ! perlio.c
20669____________________________________________________________________________
20670[ 19482] By: jhi on 2003/05/11 07:53:26
20671 Log: Test _getcode().
20672 Branch: perl
20673 ! lib/Unicode/UCD.t
20674____________________________________________________________________________
20675[ 19481] By: jhi on 2003/05/11 06:25:08
20676 Log: Clarify the doc (and the code) for Unicode code points.
20677 Branch: perl
20678 ! lib/Unicode/UCD.pm
20679____________________________________________________________________________
20680[ 19480] By: jhi on 2003/05/11 06:18:06
20681 Log: Another doc suggestion from terry@eatoni.com (terry jones):
20682 use codepoints that return undef.
20683 Branch: perl
20684 ! lib/Unicode/UCD.pm
20685____________________________________________________________________________
20686[ 19479] By: nick on 2003/05/10 20:14:27
20687 Log: Better but still unproven fix for lseek() on pipes.
20688 Branch: perlio
20689 ! perlio.c
20690____________________________________________________________________________
20691[ 19478] By: jhi on 2003/05/10 19:01:17
20692 Log: Add Encode's META.yml.
20693 Branch: perl
20694 + ext/Encode/META.yml
20695 ! MANIFEST
20696____________________________________________________________________________
20697[ 19477] By: jhi on 2003/05/10 18:59:29
20698 Log: Upgrade to Encode 1.94.
20699 Branch: perl
20700 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
20701 ! ext/Encode/MANIFEST ext/Encode/bin/piconv
20702 ! ext/Encode/lib/Encode/MIME/Header.pm ext/Encode/t/enc_module.t
20703 ! ext/Encode/t/mime-header.t
20704____________________________________________________________________________
20705[ 19476] By: jhi on 2003/05/10 18:56:08
20706 Log: Doc bug noticed by terry@eatoni.com (terry jones).
20707 Branch: perl
20708 ! lib/Unicode/UCD.pm
20709____________________________________________________________________________
20710[ 19475] By: nick on 2003/05/10 15:59:26
20711 Log: Fix for bugs 21717 and 22140.
20712 Win32's lseek claims to have succeeded in pipes etc. Which confuses :perlio
20713 and derived layers. So have :unix's "pushed" method stat() the fd and
20714 cache non S_ISREG nature. Have Unix_seek fail if fd is NOT S_ISREG to match
20715 UNIX behaviour.
20716 Branch: perlio
20717 ! perlio.c perliol.h
20718____________________________________________________________________________
20719[ 19474] By: nick on 2003/05/10 15:01:26
20720 Log: Tweaks to Jarkko's NULL deref checks in perlio.c
20721 Branch: perlio
20722 ! perlio.c
20723 !> pod/perliol.pod
20724____________________________________________________________________________
20725[ 19473] By: nick on 2003/05/10 12:45:15
20726 Log: Integrate mainline
20727 Branch: perlio
20728 +> lib/Tie/File/t/27_iwrite.t lib/Tie/File/t/28_mtwrite.t
20729 +> lib/Tie/File/t/29_downcopy.t lib/Tie/File/t/29a_upcopy.t
20730 +> lib/Tie/File/t/42_offset.t
20731 !> (integrate 34 files)
20732____________________________________________________________________________
20733[ 19472] By: jhi on 2003/05/10 10:55:49
20734 Log: Try to plug more potential PerlIO NULL method
20735 dereferences; try to document the matter.
20736 Branch: perl
20737 ! perlio.c pod/perliol.pod
20738____________________________________________________________________________
20739[ 19471] By: jhi on 2003/05/10 07:07:30
20740 Log: UseNicerNames instead of SHOUTING_LIKE_THIS.
20741 Branch: perl
20742 ! perlio.c
20743____________________________________________________________________________
20744[ 19470] By: jhi on 2003/05/10 06:51:24
20745 Log: In eof() the errno can get stomped by the peek-ahead.
20746 Branch: perl
20747 ! doio.c ext/Socket/socketpair.t
20748____________________________________________________________________________
20749[ 19469] By: rgs on 2003/05/09 21:33:15
20750 Log: A regression test for the remaining "Final $ should be..." error.
20751 Branch: perl
20752 ! t/comp/parser.t
20753____________________________________________________________________________
20754[ 19468] By: rgs on 2003/05/09 21:23:57
20755 Log: Remove the error messages "Final @ should be \@ or @name"
20756 and "Final % should be \% or %name", that appear to be
20757 only produced in addition to another syntax error, and therefore
20758 misleading, if I understand correctly that kind of black magic.
20759 Branch: perl
20760 ! pod/perldiag.pod toke.c
20761____________________________________________________________________________
20762[ 19467] By: jhi on 2003/05/09 20:11:18
20763 Log: Have to think this test more when I'm awake.
20764 Branch: perl
20765 ! ext/Socket/socketpair.t
20766____________________________________________________________________________
20767[ 19466] By: rgs on 2003/05/09 19:56:37
20768 Log: Document that perl tries to load .pmc files before .pm files.
20769 Subject: Re: [perl #8860] [not RESOLVED] .pmc extension not documented in require
20770 From: Casey West <casey@geeknest.com>
20771 Date: Fri, 9 May 2003 17:03:50 -0400
20772 Message-ID: <20030509210350.GW49820@geeknest.com>
20773 Branch: perl
20774 ! pod/perlfunc.pod
20775____________________________________________________________________________
20776[ 19465] By: rgs on 2003/05/09 19:47:49
20777 Log: Fix for doc bug #8602 : clarify eof() example comments
20778 Branch: perl
20779 ! pod/perlfunc.pod
20780____________________________________________________________________________
20781[ 19464] By: rgs on 2003/05/09 19:34:30
20782 Log: Subject: [PATCH] [perl #8702] Clean up perltrap mis-information
20783 From: Casey West <casey@geeknest.com>
20784 Date: Fri, 9 May 2003 11:09:39 -0400
20785 Message-ID: <20030509150939.GN49820@geeknest.com>
20786 Branch: perl
20787 ! pod/perltrap.pod
20788____________________________________________________________________________
20789[ 19463] By: rgs on 2003/05/09 19:33:25
20790 Log: Subject: Re: [DOC PATCH] [perl #1165] crypt accepts any character as salt
20791 From: Casey West <casey@geeknest.com>
20792 Date: Fri, 9 May 2003 15:25:59 -0400
20793 Message-ID: <20030509192559.GS49820@geeknest.com>
20794 Branch: perl
20795 ! pod/perlfunc.pod
20796____________________________________________________________________________
20797[ 19462] By: jhi on 2003/05/09 18:53:27
20798 Log: Try to comprehensively have a plan B if a PerlIO
20799 layer doesn't have a particular function.
20800 (1) If there's a corresponding PerlIOBase, call it.
20801 (2) If not having the function is 'harmless', be silently happy.
20802 (Currently only Flush is in this category.)
20803 (3) Otherwise set errno and return failure.
20804 Branch: perl
20805 ! perlio.c
20806____________________________________________________________________________
20807[ 19461] By: rgs on 2003/05/09 18:45:39
20808 Log: Subject: [PATCH] [perl #8703] unescaped @ is fine
20809 From: Casey West <casey@geeknest.com>
20810 Date: Fri, 9 May 2003 11:17:53 -0400
20811 Message-ID: <20030509151753.GO49820@geeknest.com>
20812 Branch: perl
20813 ! pod/perltrap.pod
20814____________________________________________________________________________
20815[ 19460] By: jhi on 2003/05/09 14:25:49
20816 Log: Add the PerlIOBase_noop_* to the public API as suggested by Stas.
20817 Branch: perl
20818 ! makedef.pl
20819____________________________________________________________________________
20820[ 19459] By: jhi on 2003/05/09 14:22:08
20821 Log: Result of change #19458.
20822 Branch: perl
20823 ! MANIFEST
20824____________________________________________________________________________
20825[ 19458] By: jhi on 2003/05/09 14:21:51
20826 Log: Subject: Weekend fun: MANIFEST sorting
20827 From: andreas.koenig@anima.de (Andreas J. Koenig)
20828 Date: Fri, 09 May 2003 15:12:05 +0200
20829 Message-ID: <m3y91g463e.fsf@franz.ak.mind.de>
20830
20831 (both sorts need LC_ALL=C)
20832 (add also manicheck target)
20833 Branch: perl
20834 ! Makefile.SH
20835____________________________________________________________________________
20836[ 19457] By: jhi on 2003/05/09 04:30:13
20837 Log: Better skip this test on OpenBSD and BSD/OS since it
20838 does not seem to work (Slaven Rezic).
20839 Branch: perl
20840 ! lib/filetest.t
20841____________________________________________________________________________
20842[ 19456] By: jhi on 2003/05/09 03:41:56
20843 Log: Subject: [PATCH] Re: [perl #16834] Anomolous behaviour of SUBSTR() used as LValue
20844 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20845 Date: Wed, 07 May 2003 23:37:47 -0700
20846 Message-ID: <7sfu+gzkg+AY092yn@efn.org>
20847 Branch: perl
20848 ! pod/perlfunc.pod
20849____________________________________________________________________________
20850[ 19455] By: jhi on 2003/05/09 03:36:54
20851 Log: Missing files.
20852 Branch: perl
20853 ! MANIFEST
20854____________________________________________________________________________
20855[ 19454] By: rgs on 2003/05/08 18:49:25
20856 Log: Suppress a few compilation warnings in pp_hot.c.
20857 Branch: perl
20858 ! pp_hot.c
20859____________________________________________________________________________
20860[ 19453] By: rgs on 2003/05/08 18:42:16
20861 Log: Remove duplicate entries from perldiag
20862 Branch: perl
20863 ! pod/perldiag.pod
20864____________________________________________________________________________
20865[ 19452] By: jhi on 2003/05/08 18:12:46
20866 Log: Subject: Re: [perl #17718] %tiedhash in bool context doesn't check if hash is empty
20867 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
20868 Date: Wed, 07 May 2003 15:27:07 -0700
20869 Message-ID: <7gYu+gzkgaFU092yn@efn.org>
20870 Branch: perl
20871 ! pod/perldata.pod pod/perldiag.pod pod/perltie.pod pp.c
20872 ! pp_hot.c t/op/magic.t
20873____________________________________________________________________________
20874[ 19451] By: jhi on 2003/05/08 17:47:13
20875 Log: Tiny nit from mjd.
20876 Branch: perl
20877 ! lib/Tie/File.pm
20878____________________________________________________________________________
20879[ 19450] By: jhi on 2003/05/08 17:46:26
20880 Log: Upgrade to Tie::File 0.95.
20881 Branch: perl
20882 + lib/Tie/File/t/27_iwrite.t lib/Tie/File/t/28_mtwrite.t
20883 + lib/Tie/File/t/29_downcopy.t lib/Tie/File/t/29a_upcopy.t
20884 + lib/Tie/File/t/42_offset.t
20885 ! lib/Tie/File.pm lib/Tie/File/t/00_version.t
20886 ! lib/Tie/File/t/01_gen.t lib/Tie/File/t/04_splice.t
20887 ! lib/Tie/File/t/09_gen_rs.t lib/Tie/File/t/16_handle.t
20888 ! lib/Tie/File/t/19_cache.t lib/Tie/File/t/21_win32.t
20889 ! lib/Tie/File/t/25_gen_nocache.t lib/Tie/File/t/26_twrite.t
20890 ! lib/Tie/File/t/30_defer.t
20891____________________________________________________________________________
20892[ 19449] By: jhi on 2003/05/08 17:35:10
20893 Log: Subject: [perl #22141] patch for Time::HiRes to get rid of -lrt on linux
20894 From: Marc Lehmann (via RT) <perlbug-followup@perl.org>
20895 Message-Id: <rt-22141-56710.3.69543054121962@bugs6.perl.org>
20896 Date: 8 May 2003 00:42:18 -0000
20897 Branch: perl
20898 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
20899 ! ext/Time/HiRes/Makefile.PL
20900____________________________________________________________________________
20901[ 19448] By: jhi on 2003/05/08 17:27:47
20902 Log: Subject: [PATCH] alphabetize perldiag.pod
20903 From: Ronald J Kimball <rjk@linguist.Thayer.dartmouth.edu>
20904 Date: Thu, 8 May 2003 11:52:39 -0400
20905 Message-ID: <20030508155239.GC1495587@linguist.thayer.dartmouth.edu>
20906 Branch: perl
20907 ! pod/perldiag.pod
20908____________________________________________________________________________
20909[ 19447] By: jhi on 2003/05/08 17:19:06
20910 Log: Subject: [PATCH] [perl #22127] get(av|cv|hv|sv) added to Devel::PPPort
20911 From: Tassilo von Parseval <tassilo.parseval@post.rwth-aachen.de>
20912 Date: Thu, 08 May 2003 08:42:20 +0200
20913 Message-id: <20030508064220.GA763@ethan>
20914 Branch: perl
20915 ! ext/Devel/PPPort/Changes ext/Devel/PPPort/PPPort.pm
20916 ! ext/Devel/PPPort/t/test.t
20917____________________________________________________________________________
20918[ 19446] By: nick on 2003/05/08 14:32:17
20919 Log: Integrate mainline
20920 Branch: perlio
20921 !> Configure ext/IO/poll.c ext/POSIX/POSIX.pod
20922 !> lib/ExtUtils/MM_Unix.pm lib/File/Path.pm
20923____________________________________________________________________________
20924[ 19445] By: jhi on 2003/05/08 05:21:44
20925 Log: A variant of
20926
20927 Subject: Re: 0 is not perl (was Re: Report /export/home/nwc10/Gripping-Smoke/Smoke)
20928 From: enache@rdslink.ro (Enache Adrian)
20929 Date: Tue, 22 Apr 2003 02:54:05 +0300
20930 Message-ID: <20030421235405.GA1162@ratsnest.hole>
20931
20932 to quench the black smoke from the BSD builds.
20933 Branch: perl
20934 ! lib/ExtUtils/MM_Unix.pm
20935____________________________________________________________________________
20936[ 19444] By: rgs on 2003/05/07 20:25:45
20937 Log: Subject: Re: [DOC PATCH] & More File::Path issues
20938 From: Casey West <casey@geeknest.com>
20939 Date: Mon, 5 May 2003 13:25:47 -0400
20940 Message-ID: <20030505172547.GB20508@geeknest.com>
20941 Branch: perl
20942 ! lib/File/Path.pm
20943____________________________________________________________________________
20944[ 19443] By: jhi on 2003/05/07 20:03:58
20945 Log: Spelling correction from Nicholas Clark.
20946 Branch: perl
20947 ! ext/POSIX/POSIX.pod
20948____________________________________________________________________________
20949[ 19442] By: jhi on 2003/05/07 19:36:18
20950 Log: Integrate:
20951 [ 19440]
20952 One more possible extensions permutation.
20953 Branch: maint-5.8/perl
20954 !> Configure
20955____________________________________________________________________________
20956[ 19441] By: jhi on 2003/05/07 19:21:16
20957 Log: metaconfig unit change for #19440.
20958 Branch: metaconfig/U/perl
20959 ! Extensions.U
20960____________________________________________________________________________
20961[ 19440] By: jhi on 2003/05/07 19:20:53
20962 Log: One more possible extensions permutation.
20963 Branch: perl
20964 ! Configure
20965____________________________________________________________________________
20966[ 19439] By: jhi on 2003/05/07 17:11:48
20967 Log: Integrate:
20968 [ 19409]
20969 Subject: Re: Bug in Storable???
20970 From: Slaven Rezic <slaven@rezic.de>
20971 Date: 04 May 2003 18:00:40 +0200
20972 Message-Id: <87of2iwvkn.fsf@vran.herceg.de>
20973
20974 [ 19411]
20975 Update changelog for 2.07 release.
20976
20977 [ 19412]
20978 Oops. More Storable 2.07 preparations.
20979
20980 [ 19413]
20981 None of that "our" stuff here, please.
20982
20983 [ 19414]
20984 Doc nit from mjd.
20985
20986 [ 19415]
20987 Subject: [PATCH] Embed.t flushing problem
20988 From: "Craig A. Berry" <craigberry@mac.com>
20989 Date: Sun, 04 May 2003 16:25:38 -0500
20990 Message-ID: <3EB58552.2070207@mac.com>
20991
20992 [ 19416]
20993 pack/unpack fixes from Wolfgang Laun:
20994 - fix bug in UNICOS (where SIZE16 != sizeof(short))
20995 - introduce and use new internal pack/unpack API
20996 (packlist, unpackstring)
20997 that does away with the unused arguments in the old API
20998 (pack_cat, unpack_str).
20999
21000 [ 19417]
21001 perlartistic and perlgpl reformatting from Sean Burke.
21002
21003 [ 19418]
21004 Switch the new perlio way of opening anonymous temporary files
21005 open my $fh, '+>', undef
21006 to using File::Temp. Test it, and test also the "accidental
21007 feature" of +< working the same way.
21008 This should address [perl #21937].
21009
21010 [ 19419]
21011 Reintroduce the mention of the fact that the Artistic/GPL
21012 also are Perl's own licenses.
21013
21014 [ 19420]
21015 Subject: [PATCH 5.8.0 UTIL] h2xs generates false comments about ABSTRACT
21016 From: Steve Hay <steve.hay@uk.radan.com>
21017 Date: Wed, 30 Apr 2003 09:52:30 +0100
21018 Message-ID: <3EAF8ECE.8060403@uk.radan.com>
21019
21020 [ 19421]
21021 Subject: [PATCH] ExtUtils::Install and the don't-really-do-it switch
21022 From: Slaven Rezic <slaven@rezic.de>
21023 Date: Thu, 24 Apr 2003 00:42:11 +0200 (CEST)
21024 Message-Id: <200304232242.h3NMgBqD028515@vran.herceg.de>
21025
21026 [ 19422]
21027 Subject: [PATCH] [perl #18341] random nits in perlrequick.pod
21028 From: Casey West <casey@geeknest.com>
21029 Date: Tue, 29 Apr 2003 16:14:20 -0400
21030 Message-ID: <20030429201420.GT62281@geeknest.com>
21031
21032 [ 19423]
21033 Subject: Re: hv.c patch - pathological hashes too easy
21034 From: "Tye McQueen" <tye@metronet.com>
21035 Date: Thu, 1 May 2003 13:34:50 -0500 (CDT)
21036 Message-Id: <200305011834.h41IYoE08503@metronet.com>
21037
21038 [ 19424]
21039 Subject: [PATCH] [perl #3096] undefing hash with object values
21040 From: Dave Mitchell <davem@fdgroup.com>
21041 Date: Thu, 1 May 2003 21:06:57 +0100
21042 Message-ID: <20030501200657.GA25456@fdgroup.com>
21043
21044 [ 19425]
21045 Subject: [PATCH pod/perlmod.pod] Simpler $Revision$ based $VERSION. Plus, repentance!
21046 From: Michael G Schwern <schwern@pobox.com>
21047 Date: Sat, 3 May 2003 15:30:16 -0700
21048 Message-ID: <20030503223016.GE1234@windhund.schwern.org>
21049
21050 [ 19426]
21051 Subject: [DOC PATCH] missing ')' in File::Path docs
21052 From: "Jos I.Boumans" <kane@dwim.org>
21053 Date: 30 Apr 2003 09:45:16 -0000
21054 Message-ID: <20030430114513165+0200@nntp.perl.org>
21055
21056 [ 19427]
21057 Subject: Re: Minor change to strict.pm. Who? How?
21058 From: Adam Kennedy <adam@ali.as>
21059 Date: Wed, 30 Apr 2003 00:02:40 +1000
21060 Message-ID: <3EAE8600.2000806@ali.as>
21061
21062 Subject: [PATCH] Re: Minor change to strict.pm. Who? How?
21063 From: Michael G Schwern <schwern@pobox.com>
21064 Date: Tue, 29 Apr 2003 12:26:32 -0700
21065 Message-ID: <20030429192632.GA6129@windhund.schwern.org>
21066
21067 [ 19428]
21068 Snip away the perlunicode slowness demo since the new
21069 caching scheme should help things a bit.
21070
21071 [ 19429]
21072 Fix : the svr5 hints file doesn't propagate libswanted with
21073 threads enabled. Now threads are OK on OpenUNIX 8, except a
21074 mysterious failure in ext/POSIX/t/sigaction.t.
21075
21076 [ 19430]
21077 Fix doc bug #22067, noticed by Mark Knutsen
21078
21079 [ 19431]
21080 Subject: [patch] Re: [perl #21728] regexp SEGV
21081 From: Enache Adrian <enache@rdslink.ro>
21082 Date: Fri, 28 Mar 2003 23:53:09 +0200
21083 Message-ID: <20030328215309.GA6413@ratsnest.hole>
21084 (with minor tweaks)
21085
21086 [ 19432]
21087 Subject: [PATCH] [perl #8063] perlfilter doesn't mention potential DATA clobber
21088 From: Casey West <casey@geeknest.com>
21089 Date: Mon, 28 Apr 2003 11:07:36 -0400
21090 Message-ID: <20030428150736.GD62281@geeknest.com>
21091
21092 [ 19433]
21093 Document which interfaces are NOT Unicode-aware.
21094
21095 [ 19435]
21096 Worth a try for [perl #17146]
21097
21098 [ 19436]
21099 More long double logic from Alan Burlison.
21100
21101 [ 19437]
21102 Allow platforms to manipulate their archname by creating
21103 a archname.cbu in their hints files.
21104 Branch: maint-5.8/perl
21105 +> ext/PerlIO/t/open.t
21106 !> (integrate 37 files)
21107____________________________________________________________________________
21108[ 19438] By: jhi on 2003/05/07 16:59:34
21109 Log: The metaconfig unit changes for #19436 and #19437.
21110 Branch: metaconfig
21111 ! U/threads/archname.U
21112 Branch: metaconfig/U/perl
21113 ! d_modfl.U
21114____________________________________________________________________________
21115[ 19437] By: jhi on 2003/05/07 16:58:21
21116 Log: Allow platforms to manipulate their archname by creating
21117 a archname.cbu in their hints files.
21118 Branch: perl
21119 ! Configure
21120____________________________________________________________________________
21121[ 19436] By: jhi on 2003/05/07 16:53:26
21122 Log: More long double logic from Alan Burlison.
21123 Branch: perl
21124 ! Configure
21125____________________________________________________________________________
21126[ 19435] By: jhi on 2003/05/06 15:21:55
21127 Log: Worth a try for [perl #17146]
21128 Branch: perl
21129 ! ext/IO/poll.c
21130____________________________________________________________________________
21131[ 19434] By: nick on 2003/05/06 10:58:27
21132 Log: Integrate mainline
21133 Branch: perlio
21134 +> (branch 31 files)
21135 !> (integrate 184 files)
21136____________________________________________________________________________
21137[ 19433] By: jhi on 2003/05/06 05:12:23
21138 Log: Document which interfaces are NOT Unicode-aware.
21139 Branch: perl
21140 ! pod/perltodo.pod pod/perlunicode.pod
21141____________________________________________________________________________
21142[ 19432] By: rgs on 2003/05/05 20:31:22
21143 Log: Subject: [PATCH] [perl #8063] perlfilter doesn't mention potential DATA clobber
21144 From: Casey West <casey@geeknest.com>
21145 Date: Mon, 28 Apr 2003 11:07:36 -0400
21146 Message-ID: <20030428150736.GD62281@geeknest.com>
21147 Branch: perl
21148 ! pod/perlfilter.pod
21149____________________________________________________________________________
21150[ 19431] By: rgs on 2003/05/05 20:07:33
21151 Log: Subject: [patch] Re: [perl #21728] regexp SEGV
21152 From: Enache Adrian <enache@rdslink.ro>
21153 Date: Fri, 28 Mar 2003 23:53:09 +0200
21154 Message-ID: <20030328215309.GA6413@ratsnest.hole>
21155 (with minor tweaks)
21156 Branch: perl
21157 ! embed.fnc embed.h global.sym proto.h regexec.c scope.c scope.h
21158____________________________________________________________________________
21159[ 19430] By: rgs on 2003/05/05 20:01:36
21160 Log: Fix doc bug #22067, noticed by Mark Knutsen
21161 Branch: perl
21162 ! pod/perlfunc.pod
21163____________________________________________________________________________
21164[ 19429] By: rgs on 2003/05/05 18:59:59
21165 Log: Fix : the svr5 hints file doesn't propagate libswanted with
21166 threads enabled. Now threads are OK on OpenUNIX 8, except a
21167 mysterious failure in ext/POSIX/t/sigaction.t.
21168 Branch: perl
21169 ! hints/svr5.sh
21170____________________________________________________________________________
21171[ 19428] By: jhi on 2003/05/05 16:54:34
21172 Log: Snip away the perlunicode slowness demo since the new
21173 caching scheme should help things a bit.
21174 Branch: perl
21175 ! pod/perlunicode.pod
21176____________________________________________________________________________
21177[ 19427] By: jhi on 2003/05/05 16:14:09
21178 Log: Subject: Re: Minor change to strict.pm. Who? How?
21179 From: Adam Kennedy <adam@ali.as>
21180 Date: Wed, 30 Apr 2003 00:02:40 +1000
21181 Message-ID: <3EAE8600.2000806@ali.as>
21182
21183 Subject: [PATCH] Re: Minor change to strict.pm. Who? How?
21184 From: Michael G Schwern <schwern@pobox.com>
21185 Date: Tue, 29 Apr 2003 12:26:32 -0700
21186 Message-ID: <20030429192632.GA6129@windhund.schwern.org>
21187 Branch: perl
21188 ! lib/strict.pm
21189____________________________________________________________________________
21190[ 19426] By: jhi on 2003/05/05 15:48:57
21191 Log: Subject: [DOC PATCH] missing ')' in File::Path docs
21192 From: "Jos I.Boumans" <kane@dwim.org>
21193 Date: 30 Apr 2003 09:45:16 -0000
21194 Message-ID: <20030430114513165+0200@nntp.perl.org>
21195 Branch: perl
21196 ! lib/File/Path.pm
21197____________________________________________________________________________
21198[ 19425] By: jhi on 2003/05/05 15:47:19
21199 Log: Subject: [PATCH pod/perlmod.pod] Simpler $Revision$ based $VERSION. Plus, repentance!
21200 From: Michael G Schwern <schwern@pobox.com>
21201 Date: Sat, 3 May 2003 15:30:16 -0700
21202 Message-ID: <20030503223016.GE1234@windhund.schwern.org>
21203 Branch: perl
21204 ! pod/perlmod.pod
21205____________________________________________________________________________
21206[ 19424] By: jhi on 2003/05/05 15:44:39
21207 Log: Subject: [PATCH] [perl #3096] undefing hash with object values
21208 From: Dave Mitchell <davem@fdgroup.com>
21209 Date: Thu, 1 May 2003 21:06:57 +0100
21210 Message-ID: <20030501200657.GA25456@fdgroup.com>
21211 Branch: perl
21212 ! hv.c t/op/undef.t
21213____________________________________________________________________________
21214[ 19423] By: jhi on 2003/05/05 15:42:58
21215 Log: Subject: Re: hv.c patch - pathological hashes too easy
21216 From: "Tye McQueen" <tye@metronet.com>
21217 Date: Thu, 1 May 2003 13:34:50 -0500 (CDT)
21218 Message-Id: <200305011834.h41IYoE08503@metronet.com>
21219 Branch: perl
21220 ! hv.c
21221____________________________________________________________________________
21222[ 19422] By: jhi on 2003/05/05 15:40:02
21223 Log: Subject: [PATCH] [perl #18341] random nits in perlrequick.pod
21224 From: Casey West <casey@geeknest.com>
21225 Date: Tue, 29 Apr 2003 16:14:20 -0400
21226 Message-ID: <20030429201420.GT62281@geeknest.com>
21227 Branch: perl
21228 ! pod/perlrequick.pod
21229____________________________________________________________________________
21230[ 19421] By: jhi on 2003/05/05 15:38:23
21231 Log: Subject: [PATCH] ExtUtils::Install and the don't-really-do-it switch
21232 From: Slaven Rezic <slaven@rezic.de>
21233 Date: Thu, 24 Apr 2003 00:42:11 +0200 (CEST)
21234 Message-Id: <200304232242.h3NMgBqD028515@vran.herceg.de>
21235 Branch: perl
21236 ! lib/ExtUtils/Install.pm lib/ExtUtils/t/Install.t
21237____________________________________________________________________________
21238[ 19420] By: jhi on 2003/05/05 15:36:39
21239 Log: Subject: [PATCH 5.8.0 UTIL] h2xs generates false comments about ABSTRACT
21240 From: Steve Hay <steve.hay@uk.radan.com>
21241 Date: Wed, 30 Apr 2003 09:52:30 +0100
21242 Message-ID: <3EAF8ECE.8060403@uk.radan.com>
21243 Branch: perl
21244 ! utils/h2xs.PL
21245____________________________________________________________________________
21246[ 19419] By: jhi on 2003/05/05 08:20:34
21247 Log: Reintroduce the mention of the fact that the Artistic/GPL
21248 also are Perl's own licenses.
21249 Branch: perl
21250 ! pod/perlartistic.pod pod/perlgpl.pod
21251____________________________________________________________________________
21252[ 19418] By: jhi on 2003/05/05 07:23:57
21253 Log: Switch the new perlio way of opening anonymous temporary files
21254 open my $fh, '+>', undef
21255 to using File::Temp. Test it, and test also the "accidental
21256 feature" of +< working the same way.
21257 This should address [perl #21937].
21258 Branch: perl
21259 + ext/PerlIO/t/open.t
21260 ! MANIFEST perlio.c pod/perlfunc.pod
21261____________________________________________________________________________
21262[ 19417] By: jhi on 2003/05/05 05:52:47
21263 Log: perlartistic and perlgpl reformatting from Sean Burke.
21264 Branch: perl
21265 ! pod/perlartistic.pod pod/perlgpl.pod
21266____________________________________________________________________________
21267[ 19416] By: jhi on 2003/05/05 05:33:43
21268 Log: pack/unpack fixes from Wolfgang Laun:
21269 - fix bug in UNICOS (where SIZE16 != sizeof(short))
21270 - introduce and use new internal pack/unpack API
21271 (packlist, unpackstring)
21272 that does away with the unused arguments in the old API
21273 (pack_cat, unpack_str).
21274 Branch: perl
21275 ! embed.fnc embed.h global.sym pod/perlapi.pod pp_pack.c proto.h
21276____________________________________________________________________________
21277[ 19415] By: jhi on 2003/05/05 04:58:39
21278 Log: Subject: [PATCH] Embed.t flushing problem
21279 From: "Craig A. Berry" <craigberry@mac.com>
21280 Date: Sun, 04 May 2003 16:25:38 -0500
21281 Message-ID: <3EB58552.2070207@mac.com>
21282 Branch: perl
21283 ! lib/ExtUtils/t/Embed.t
21284____________________________________________________________________________
21285[ 19414] By: jhi on 2003/05/05 04:52:37
21286 Log: Doc nit from mjd.
21287 Branch: perl
21288 ! ext/DB_File/DB_File.pm
21289____________________________________________________________________________
21290[ 19413] By: ams on 2003/05/05 04:03:10
21291 Log: None of that "our" stuff here, please.
21292 Branch: perl
21293 ! ext/Storable/t/tied.t
21294____________________________________________________________________________
21295[ 19412] By: ams on 2003/05/05 03:57:06
21296 Log: Oops. More Storable 2.07 preparations.
21297 Branch: perl
21298 ! ext/Storable/README ext/Storable/Storable.pm
21299____________________________________________________________________________
21300[ 19411] By: ams on 2003/05/05 03:53:44
21301 Log: Update changelog for 2.07 release.
21302 Branch: perl
21303 ! ext/Storable/ChangeLog
21304____________________________________________________________________________
21305[ 19410] By: ams on 2003/05/05 03:31:36
21306 Log: Update Changes.
21307 Branch: perl
21308 ! Changes
a2e0df50 21309____________________________________________________________________________
9d1d2f03
AMS
21310[ 19409] By: ams on 2003/05/05 03:21:41
21311 Log: Subject: Re: Bug in Storable???
21312 From: Slaven Rezic <slaven@rezic.de>
21313 Date: 04 May 2003 18:00:40 +0200
21314 Message-Id: <87of2iwvkn.fsf@vran.herceg.de>
21315 Branch: perl
21316 ! ext/Storable/Storable.xs ext/Storable/t/integer.t
21317____________________________________________________________________________
21318[ 19408] By: jhi on 2003/05/04 19:57:14
21319 Log: For some reason a fragment of change #19314 had not been merged.
21320 Branch: maint-5.8/perl
21321 ! uconfig.h uconfig.sh
21322____________________________________________________________________________
21323[ 19407] By: jhi on 2003/05/04 19:39:01
21324 Log: This way reads a bit better with pod2man.
21325 Branch: perl
21326 ! pod/perlartistic.pod pod/perlgpl.pod
21327____________________________________________________________________________
21328[ 19406] By: jhi on 2003/05/04 12:01:00
21329 Log: Integrate from maint:
21330 [ 18568]
21331 Add the POSIX::sigaction() trick by Slaven Rezic
21332 for [perl #17341].
21333 Branch: perl
21334 !> pod/perlfunc.pod pod/perlipc.pod
21335____________________________________________________________________________
21336[ 19405] By: jhi on 2003/05/04 11:51:42
21337 Log: Cosmic rays? Whatever it was, now it is gone and the test works
21338 also in maint.
21339 Branch: maint-5.8/perl
21340 ! t/run/switchd.t
21341____________________________________________________________________________
21342[ 19404] By: jhi on 2003/05/04 11:15:59
21343 Log: It seems as if this issue wouldn't be fixed in maint yet?
21344 Branch: maint-5.8/perl
21345 ! t/run/switchd.t
21346____________________________________________________________________________
21347[ 19403] By: jhi on 2003/05/04 11:14:49
21348 Log: Integrate:
21349 [ 19401]
21350 Add Artistic as perlartistic and GPL (the Copying) as perlgpl;
21351 regen perltoc, perlmodlib. The GPL added as verbatim as possible,
21352 the perlartistic is a straightforward podification.
21353 Branch: maint-5.8/perl
21354 +> pod/perlartistic.pod pod/perlgpl.pod
21355 !> MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlmodlib.PL
21356 !> pod/perlmodlib.pod pod/perlmodstyle.pod pod/perltoc.pod
21357____________________________________________________________________________
21358[ 19402] By: jhi on 2003/05/04 11:10:26
21359 Log: Integrate:
21360 [ 19381]
21361 Forgot to check in the -d: file.
21362 Branch: maint-5.8/perl
21363 !> t/run/switchd.t
21364____________________________________________________________________________
21365[ 19401] By: jhi on 2003/05/04 09:25:48
21366 Log: Add Artistic as perlartistic and GPL (the Copying) as perlgpl;
21367 regen perltoc, perlmodlib. The GPL added as verbatim as possible,
21368 the perlartistic is a straightforward podification.
21369 Branch: perl
21370 + pod/perlartistic.pod pod/perlgpl.pod
21371 ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perlmodlib.PL
21372 ! pod/perlmodlib.pod pod/perlmodstyle.pod pod/perltoc.pod
21373____________________________________________________________________________
21374[ 19400] By: jhi on 2003/05/04 08:29:43
21375 Log: Integrate:
21376 [ 19242]
21377 Fix up Larry's copyright statements to my best knowledge.
21378 (Lots of Perl 5 source code archaeology was involved.)
21379 Larry didn't make strangled noises when I showed him
21380 the patch, either :-)
21381 Branch: maint-5.8/perl
21382 !> (integrate 98 files)
21383____________________________________________________________________________
21384[ 19399] By: jhi on 2003/05/04 08:25:06
21385 Log: Integrate:
21386 [ 19398]
21387 Doesn't make any difference for the test but is more logical.
21388 Branch: maint-5.8/perl
21389 !> t/lib/Devel/switchd.pm
21390____________________________________________________________________________
21391[ 19398] By: jhi on 2003/05/04 08:19:14
21392 Log: Doesn't make any difference for the test but is more logical.
21393 Branch: perl
21394 ! t/lib/Devel/switchd.pm
21395____________________________________________________________________________
21396[ 19397] By: jhi on 2003/05/04 08:16:21
21397 Log: Integrate:
21398 [ 19378]
21399 The [perl #21890] (Devel::Coverage breakage) has been fixed
21400 by change #18589 (it was broken by change #9754); add test case.
21401
21402 [ 19380]
21403 Solaris: make -Duse64bitall'ed to have an archname of
21404 sun4-solaris-64, from Alan Burlison. (The default is to not
21405 to suffix anything with -Duse64bitall if longs are 64 bit.
21406 This may lead into confusion and much sorrow if 32-bit binaries
21407 and 64-bit binaries are installed under the same directories.
21408 Why is "-64" or something like that the default? Well, there
21409 are platforms where 64 bits really is the default default.
21410 There adding a "-64" would be kind of odd. Better to let
21411 each 64-bit capable platform to choose their archnames.)
21412
21413 [ 19381]
21414 Forgot to check in the -d: file.
21415
21416 [ 19382]
21417 Subject: [PATCH ext/POSIX/POSIX.pod] Deceptive POSIX exporting docs
21418 From: Michael G Schwern <schwern@pobox.com>
21419 Date: Wed, 30 Apr 2003 18:19:32 -0700
21420 Message-ID: <20030501011932.GM701@windhund.schwern.org>
21421
21422 [ 19383]
21423 Subject: [PATCH win32/win32.h] Re: Smoke [5.9.0] 19367 FAIL(F) MSWin32 5.0 Service Pack 3 (x86/1 cpu)
21424 From: Abe Timmerman <abe@ztreet.demon.nl>
21425 Date: Thu, 1 May 2003 18:34:35 +0200
21426 Message-Id: <200305011834.35685.abe@ztreet.demon.nl>
21427
21428 [ 19384]
21429 Subject: [PATCH win32/win32.c] silence compiler warnings
21430 From: Abe Timmerman <abe@ztreet.demon.nl>
21431 Date: Fri, 2 May 2003 00:51:42 +0200
21432 Message-Id: <200305020051.43166.abe@ztreet.demon.nl>
21433
21434 [ 19385]
21435 Subject: [PATCH] OpenUNIX 8 support
21436 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
21437 Date: Fri, 2 May 2003 12:12:08 +0200
21438 Message-Id: <20030502121208.3d235027.rgarciasuarez@free.fr>
21439
21440 [ 19386]
21441 Subject: [PATCH] Re: maintperl on OpenUNIX 8
21442 From: Andy Dougherty <doughera@lafayette.edu>
21443 Date: Mon, 28 Apr 2003 12:24:38 -0400 (EDT)
21444 Message-ID: <Pine.SOL.4.53.0304281208490.25038@maxwell.phys.lafayette.edu>
21445
21446 [ 19387]
21447 Regen Configure (no changes but that's fine).
21448
21449 [ 19390]
21450 Tru64: PerlIO_tell() was returning about one _megabyte_ for
21451 the fp offset, which was quite a big larger than the input file,
21452 which meant that the SvGROW tried to grow the file to about
21453 2**64-2**20, which made safesysrealloc() to understandably
21454 croak (in argv.t).
21455
21456 [ 19391]
21457 Upgrade to Unicode 4.0.0. (Well, upgrade at least
21458 the Unicode character database to 4.0.0.)
21459
21460 [ 19392]
21461 Salvage 'use filetest "access"' from compiletime to runtime.
21462
21463 [ 19393]
21464 Extra tweakage from Rafael for #19392.
21465
21466 [ 19394]
21467 Subject: Re: Does filetest work at all?
21468 From: Slaven Rezic <slaven@rezic.de>
21469 Date: 03 May 2003 18:26:49 +0200
21470 Message-ID: <87ade4q9me.fsf@vran.herceg.de>
21471
21472 [ 19395]
21473 Must skip more.
21474
21475 [ 19396]
21476 Plagued by thinkos tonight.
21477 Branch: maint-5.8/perl
21478 +> (branch 29 files)
21479 ! Configure config_h.SH
21480 !> (integrate 143 files)
21481____________________________________________________________________________
21482[ 19396] By: jhi on 2003/05/03 15:42:54
21483 Log: Plagued by thinkos tonight.
21484 Branch: perl
21485 ! lib/filetest.t
21486____________________________________________________________________________
21487[ 19395] By: jhi on 2003/05/03 15:37:35
21488 Log: Must skip more.
21489 Branch: perl
21490 ! lib/filetest.t
21491____________________________________________________________________________
21492[ 19394] By: jhi on 2003/05/03 15:30:45
21493 Log: Subject: Re: Does filetest work at all?
21494 From: Slaven Rezic <slaven@rezic.de>
21495 Date: 03 May 2003 18:26:49 +0200
21496 Message-ID: <87ade4q9me.fsf@vran.herceg.de>
21497 Branch: perl
21498 ! lib/filetest.t pp_sys.c
21499____________________________________________________________________________
21500[ 19393] By: jhi on 2003/05/03 05:34:21
21501 Log: Extra tweakage from Rafael for #19392.
21502 Branch: perl
21503 ! ext/B/B/Concise.pm lib/filetest.pm
21504____________________________________________________________________________
21505[ 19392] By: jhi on 2003/05/03 05:33:04
21506 Log: Salvage 'use filetest "access"' from compiletime to runtime.
21507 Branch: perl
21508 ! dump.c op.c op.h pp_sys.c
21509____________________________________________________________________________
21510[ 19391] By: jhi on 2003/05/03 05:19:23
21511 Log: Upgrade to Unicode 4.0.0. (Well, upgrade at least
21512 the Unicode character database to 4.0.0.)
21513 Branch: perl
21514 + lib/unicore/HangulSyllableType.txt
21515 + lib/unicore/NormalizationCorrections.txt
21516 + lib/unicore/StandardizedVariants.txt
21517 + lib/unicore/lib/Braille.pl lib/unicore/lib/Cypriot.pl
21518 + lib/unicore/lib/InAegean.pl lib/unicore/lib/InCyprio.pl
21519 + lib/unicore/lib/InKhmerS.pl lib/unicore/lib/InLimbu.pl
21520 + lib/unicore/lib/InLinea2.pl lib/unicore/lib/InLinear.pl
21521 + lib/unicore/lib/InMisce5.pl lib/unicore/lib/InOsmany.pl
21522 + lib/unicore/lib/InPhonet.pl lib/unicore/lib/InShavia.pl
21523 + lib/unicore/lib/InTaiLe.pl lib/unicore/lib/InTaiXua.pl
21524 + lib/unicore/lib/InUgarit.pl lib/unicore/lib/InVaria2.pl
21525 + lib/unicore/lib/InYijing.pl lib/unicore/lib/Limbu.pl
21526 + lib/unicore/lib/LinearB.pl lib/unicore/lib/Osmanya.pl
21527 + lib/unicore/lib/OtherIdS.pl lib/unicore/lib/Shavian.pl
21528 + lib/unicore/lib/TaiLe.pl lib/unicore/lib/Ugaritic.pl
21529 ! (edit 129 files)
21530____________________________________________________________________________
21531[ 19390] By: jhi on 2003/05/03 04:52:09
21532 Log: Tru64: PerlIO_tell() was returning about one _megabyte_ for
21533 the fp offset, which was quite a big larger than the input file,
21534 which meant that the SvGROW tried to grow the file to about
21535 2**64-2**20, which made safesysrealloc() to understandably
21536 croak (in argv.t).
21537 Branch: perl
21538 ! sv.c
21539____________________________________________________________________________
21540[ 19389] By: jhi on 2003/05/02 19:39:12
21541 Log: Better comment from Rafael.
21542 Branch: metaconfig
21543 ! U/modified/Oldconfig.U
21544____________________________________________________________________________
21545[ 19388] By: jhi on 2003/05/02 19:18:58
21546 Log: metaconfig unit change for change #19387.
21547 Branch: metaconfig
21548 ! U/modified/Oldconfig.U
21549____________________________________________________________________________
21550[ 19387] By: jhi on 2003/05/02 19:18:35
21551 Log: Regen Configure (no changes but that's fine).
21552 Branch: perl
21553 ! Configure
21554____________________________________________________________________________
21555[ 19386] By: jhi on 2003/05/02 19:06:39
21556 Log: Subject: [PATCH] Re: maintperl on OpenUNIX 8
21557 From: Andy Dougherty <doughera@lafayette.edu>
21558 Date: Mon, 28 Apr 2003 12:24:38 -0400 (EDT)
21559 Message-ID: <Pine.SOL.4.53.0304281208490.25038@maxwell.phys.lafayette.edu>
21560 Branch: perl
21561 ! Configure
21562____________________________________________________________________________
21563[ 19385] By: jhi on 2003/05/02 19:01:04
21564 Log: Subject: [PATCH] OpenUNIX 8 support
21565 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
21566 Date: Fri, 2 May 2003 12:12:08 +0200
21567 Message-Id: <20030502121208.3d235027.rgarciasuarez@free.fr>
21568 Branch: perl
21569 ! Configure ext/Socket/socketpair.t hints/svr5.sh pp_sys.c
21570____________________________________________________________________________
21571[ 19384] By: jhi on 2003/05/02 18:58:32
21572 Log: Subject: [PATCH win32/win32.c] silence compiler warnings
21573 From: Abe Timmerman <abe@ztreet.demon.nl>
21574 Date: Fri, 2 May 2003 00:51:42 +0200
21575 Message-Id: <200305020051.43166.abe@ztreet.demon.nl>
21576 Branch: perl
21577 ! win32/win32.c
21578____________________________________________________________________________
21579[ 19383] By: jhi on 2003/05/02 18:55:37
21580 Log: Subject: [PATCH win32/win32.h] Re: Smoke [5.9.0] 19367 FAIL(F) MSWin32 5.0 Service Pack 3 (x86/1 cpu)
21581 From: Abe Timmerman <abe@ztreet.demon.nl>
21582 Date: Thu, 1 May 2003 18:34:35 +0200
21583 Message-Id: <200305011834.35685.abe@ztreet.demon.nl>
21584 Branch: perl
21585 ! win32/win32.h
21586____________________________________________________________________________
21587[ 19382] By: jhi on 2003/05/02 18:50:25
21588 Log: Subject: [PATCH ext/POSIX/POSIX.pod] Deceptive POSIX exporting docs
21589 From: Michael G Schwern <schwern@pobox.com>
21590 Date: Wed, 30 Apr 2003 18:19:32 -0700
21591 Message-ID: <20030501011932.GM701@windhund.schwern.org>
21592 Branch: perl
21593 ! ext/POSIX/POSIX.pod
21594____________________________________________________________________________
21595[ 19381] By: jhi on 2003/05/02 15:12:47
21596 Log: Forgot to check in the -d: file.
21597 Branch: perl
21598 + t/lib/Devel/switchd.pm
21599 ! MANIFEST t/run/switchd.t
21600____________________________________________________________________________
21601[ 19380] By: jhi on 2003/05/02 15:02:04
21602 Log: Solaris: make -Duse64bitall'ed to have an archname of
21603 sun4-solaris-64, from Alan Burlison. (The default is to not
21604 to suffix anything with -Duse64bitall if longs are 64 bit.
21605 This may lead into confusion and much sorrow if 32-bit binaries
21606 and 64-bit binaries are installed under the same directories.
21607 Why is "-64" or something like that the default? Well, there
21608 are platforms where 64 bits really is the default default.
21609 There adding a "-64" would be kind of odd. Better to let
21610 each 64-bit capable platform to choose their archnames.)
21611 Branch: perl
21612 ! hints/solaris_2.sh
21613____________________________________________________________________________
21614[ 19379] By: nick on 2003/05/02 13:37:08
21615 Log: Integrate mainline (run/switchd.t fails).
21616 Branch: perlio
21617 +> t/run/switchd.t
21618 !> (integrate 35 files)
21619____________________________________________________________________________
21620[ 19378] By: jhi on 2003/05/02 08:41:40
21621 Log: The [perl #21890] (Devel::Coverage breakage) has been fixed
21622 by change #18589 (it was broken by change #9754); add test case.
21623 Branch: perl
21624 + t/run/switchd.t
21625 ! MANIFEST
21626____________________________________________________________________________
21627[ 19377] By: jhi on 2003/05/02 07:52:13
21628 Log: Integrate:
21629 [ 19371]
21630 The solution in change #19363 was too unportable.
21631
21632 [ 19372]
21633 miniperl cannot handle layers.t.
21634
21635 [ 19373]
21636 Subject: [PATCH] RE: perl@19333
21637 From: Robin Barker <Robin.Barker@npl.co.uk>
21638 Date: Tue, 29 Apr 2003 17:30:23 +0100
21639 Message-ID: <533D273D4014D411AB1D00062938C4D9040464F7@hotel.npl.co.uk>
21640
21641 [ 19374]
21642 OS X test tweak.
21643
21644 [ 19375]
21645 OS X: could not -Doptimize=-g.
21646
21647 [ 19376]
21648 great_circle_direction() was broken,
21649 reported by Alexander Becher.
21650 Branch: maint-5.8/perl
21651 !> embed.pl ext/Cwd/t/cwd.t hints/darwin.sh lib/Math/Trig.pm
21652 !> lib/Math/Trig.t pp_hot.c pp_pack.c proto.h t/io/layers.t
21653 !> t/io/openpid.t
21654____________________________________________________________________________
21655[ 19376] By: jhi on 2003/05/02 05:31:52
21656 Log: great_circle_direction() was broken,
21657 reported by Alexander Becher.
21658 Branch: perl
21659 ! lib/Math/Trig.pm lib/Math/Trig.t
21660____________________________________________________________________________
21661[ 19375] By: jhi on 2003/05/01 18:18:06
21662 Log: OS X: could not -Doptimize=-g.
21663 Branch: perl
21664 ! hints/darwin.sh
21665____________________________________________________________________________
21666[ 19374] By: jhi on 2003/05/01 12:33:44
21667 Log: OS X test tweak.
21668 Branch: perl
21669 ! ext/Cwd/t/cwd.t
21670____________________________________________________________________________
21671[ 19373] By: jhi on 2003/05/01 11:09:42
21672 Log: Subject: [PATCH] RE: perl@19333
21673 From: Robin Barker <Robin.Barker@npl.co.uk>
21674 Date: Tue, 29 Apr 2003 17:30:23 +0100
21675 Message-ID: <533D273D4014D411AB1D00062938C4D9040464F7@hotel.npl.co.uk>
21676 Branch: perl
21677 ! embed.pl pp_hot.c pp_pack.c proto.h
21678____________________________________________________________________________
21679[ 19372] By: jhi on 2003/05/01 09:52:52
21680 Log: miniperl cannot handle layers.t.
21681 Branch: perl
21682 ! t/io/layers.t
21683____________________________________________________________________________
21684[ 19371] By: jhi on 2003/05/01 08:26:06
21685 Log: The solution in change #19363 was too unportable.
21686 Branch: perl
21687 ! t/io/openpid.t
21688____________________________________________________________________________
21689[ 19370] By: jhi on 2003/05/01 07:57:19
21690 Log: Integrate:
21691 [ 19364]
21692 Subject: [PATCH] [patch #7514] Bug in perlop regex explination
21693 From: Casey West <casey@geeknest.com>
21694 Date: m\8cn apr 28, 2003 19:22:06 Europe/Stockholm
21695 Message-Id: <20030428172206.GK62281@geeknest.com>
21696
21697 [ 19365]
21698 Subject: [PATCH] [perl #7592] Clarify what qw() does in scalar context
21699 From: Casey West <casey@geeknest.com>
21700 Date: m\8cn apr 28, 2003 16:00:05 Europe/Stockholm
21701 Message-Id: <20030428140005.GC62281@geeknest.com>
21702
21703 [ 19366]
21704 If it's S_, it should be STATIC.
21705
21706 [ 19367]
21707 Subject: [PATCH] buglet: sub a(;&) { } doesn't work
21708 From: Enache Adrian <enache@rdslink.ro>
21709 Date: Sat, 19 Apr 2003 01:41:07 +0300
21710 Message-ID: <20030418224107.GA2751@ratsnest.hole>
21711
21712 [ 19368]
21713 z/OS: More threaded build tweaks from Brian De Pradine--
21714 apparently now it works!
21715
21716 [ 19369]
21717 perlreftut updates from mjd.
21718 Branch: maint-5.8/perl
21719 !> embed.fnc embed.h ext/threads/threads.xs handy.h
21720 !> hints/os390.sh numeric.c pod/perlop.pod pod/perlreftut.pod
21721 !> proto.h t/comp/parser.t thread.h toke.c
21722____________________________________________________________________________
21723[ 19369] By: jhi on 2003/05/01 07:48:06
21724 Log: perlreftut updates from mjd.
21725 Branch: perl
21726 ! pod/perlreftut.pod
21727____________________________________________________________________________
21728[ 19368] By: jhi on 2003/05/01 07:45:06
21729 Log: z/OS: More threaded build tweaks from Brian De Pradine--
21730 apparently now it works!
21731 Branch: perl
21732 ! ext/threads/threads.xs handy.h hints/os390.sh thread.h
21733____________________________________________________________________________
21734[ 19367] By: rgs on 2003/04/29 20:31:07
21735 Log: Subject: [PATCH] buglet: sub a(;&) { } doesn't work
21736 From: Enache Adrian <enache@rdslink.ro>
21737 Date: Sat, 19 Apr 2003 01:41:07 +0300
21738 Message-ID: <20030418224107.GA2751@ratsnest.hole>
21739 Branch: perl
21740 ! t/comp/parser.t toke.c
21741____________________________________________________________________________
21742[ 19366] By: jhi on 2003/04/29 08:55:12
21743 Log: If it's S_, it should be STATIC.
21744 Branch: perl
21745 ! embed.fnc embed.h numeric.c proto.h
21746____________________________________________________________________________
21747[ 19365] By: sky on 2003/04/28 16:30:03
21748 Log: Subject: [PATCH] [perl #7592] Clarify what qw() does in scalar context
21749 From: Casey West <casey@geeknest.com>
21750 Date: m\8cn apr 28, 2003 16:00:05 Europe/Stockholm
21751 Message-Id: <20030428140005.GC62281@geeknest.com>
21752 Branch: perl
21753 ! pod/perlop.pod
21754____________________________________________________________________________
21755[ 19364] By: sky on 2003/04/28 16:20:43
21756 Log: Subject: [PATCH] [patch #7514] Bug in perlop regex explination
21757 From: Casey West <casey@geeknest.com>
21758 Date: m\8cn apr 28, 2003 19:22:06 Europe/Stockholm
21759 Message-Id: <20030428172206.GK62281@geeknest.com>
21760 Branch: perl
21761 ! pod/perlop.pod
21762____________________________________________________________________________
21763[ 19363] By: sky on 2003/04/28 15:32:35
21764 Log: Fix bug 2681, change the test not to use the shell and use 3+arg
21765 open.
21766 Branch: perl
21767 ! t/io/openpid.t
21768____________________________________________________________________________
21769[ 19362] By: jhi on 2003/04/28 14:33:35
21770 Log: It helps to count right.
21771 Branch: maint-5.8/perl
21772 ! lib/fields.t
21773____________________________________________________________________________
21774[ 19361] By: jhi on 2003/04/28 09:16:12
21775 Log: The fields test required a little bit of backporting.
21776 Branch: maint-5.8/perl
21777 ! lib/fields.t
21778____________________________________________________________________________
21779[ 19360] By: jhi on 2003/04/28 09:10:08
21780 Log: Integrate:
21781 [ 19348]
21782 Subject: Re: [COMPLETE PATCH lib/UNIVERSAL.pm] RE: [perl #22018] UNIVERSAL documentatio n contradicts itself
21783 From: Casey West <casey@geeknest.com>
21784 Date: Thu, 24 Apr 2003 08:18:42 -0400
21785 Message-ID: <20030424121842.GW34510@geeknest.com>
21786
21787 [ 19349]
21788 Subject: [PATCH] VMS::Stdio test tweak
21789 From: "Craig A. Berry" <craigberry@mac.com>
21790 Date: Sat, 26 Apr 2003 15:53:07 -0500
21791 Message-ID: <3EAAF1B3.7020708@mac.com>
21792
21793 [ 19350]
21794 Add Dave Mitchell's test case for fields.
21795
21796 [ 19351]
21797 Add a test case for [perl #15288] (already solved).
21798
21799 [ 19353]
21800 utime() doc clarifications
21801 based on :
21802 Subject: Re: [PATCH] [perl #18589] Add NFS warning, clarify touch example
21803 From: Casey West <casey@geeknest.com>
21804 Date: Fri, 25 Apr 2003 08:00:54 -0400
21805 Message-ID: <20030425120054.GQ34510@geeknest.com>
21806
21807 [ 19354]
21808 $[ clarifications.
21809
21810 [ 19355]
21811 Document a faint compilation noise.
21812
21813 [ 19356]
21814 Newer glibc's nice(2) return the new nice value, instead of 0 or -1.
21815 Check errno to see if the call to nice(2) succeeded.
21816 Subject: Re: [PATCH++] all about the recent standard conforming glibc's nic
21817 From: Enache Adrian <enache@rdslink.ro>
21818 Date: Wed, 23 Apr 2003 22:48:20 +0300
21819 Message-ID: <20030423194820.GA874@ratsnest.hole>
21820
21821 [ 19357]
21822 Detecting errors of reentrant APIs: getgrgid_r and the like
21823 when returning an int can either return the error in the return
21824 value or in the errno. We need a new per-interp variable to store
21825 the return value instead of clobbering the errno with it. The new
21826 variable, PL_reentrant_retint, is only used within the reentrancy
21827 framework, and immediately after it's set, so there should not be
21828 similar visibility issues as for the errno. Spotted by Edward Moy.
21829
21830 [ 19358]
21831 SysV msg queues can be something hanging (witnessed in IRIX),
21832 so let's use IPC_NOWAIT.
21833
21834 [ 19359]
21835 Feel-good cleanup.
21836 Branch: maint-5.8/perl
21837 !> README.aix embedvar.h ext/IPC/SysV/t/msg.t ext/POSIX/POSIX.xs
21838 !> intrpvar.h lib/UNIVERSAL.pm lib/fields.t perlapi.h
21839 !> pod/perlfunc.pod pod/perlvar.pod reentr.c reentr.h reentr.pl
21840 !> sv.c t/op/pack.t t/op/taint.t vms/ext/Stdio/test.pl
21841____________________________________________________________________________
21842[ 19359] By: jhi on 2003/04/28 08:43:23
21843 Log: Feel-good cleanup.
21844 Branch: perl
21845 ! intrpvar.h sv.c
21846____________________________________________________________________________
21847[ 19358] By: jhi on 2003/04/28 08:27:15
21848 Log: SysV msg queues can be something hanging (witnessed in IRIX),
21849 so let's use IPC_NOWAIT.
21850 Branch: perl
21851 ! ext/IPC/SysV/t/msg.t t/op/taint.t
21852____________________________________________________________________________
21853[ 19357] By: jhi on 2003/04/28 06:32:47
21854 Log: Detecting errors of reentrant APIs: getgrgid_r and the like
21855 when returning an int can either return the error in the return
21856 value or in the errno. We need a new per-interp variable to store
21857 the return value instead of clobbering the errno with it. The new
21858 variable, PL_reentrant_retint, is only used within the reentrancy
21859 framework, and immediately after it's set, so there should not be
21860 similar visibility issues as for the errno. Spotted by Edward Moy.
21861 Branch: perl
21862 ! embedvar.h intrpvar.h perlapi.h reentr.c reentr.h reentr.pl
21863____________________________________________________________________________
21864[ 19356] By: rgs on 2003/04/27 20:09:01
21865 Log: Newer glibc's nice(2) return the new nice value, instead of 0 or -1.
21866 Check errno to see if the call to nice(2) succeeded.
21867 Subject: Re: [PATCH++] all about the recent standard conforming glibc's nic
21868 From: Enache Adrian <enache@rdslink.ro>
21869 Date: Wed, 23 Apr 2003 22:48:20 +0300
21870 Message-ID: <20030423194820.GA874@ratsnest.hole>
21871 Branch: perl
21872 ! ext/POSIX/POSIX.xs
21873____________________________________________________________________________
21874[ 19355] By: jhi on 2003/04/27 19:56:09
21875 Log: Document a faint compilation noise.
21876 Branch: perl
21877 ! README.aix
21878____________________________________________________________________________
21879[ 19354] By: rgs on 2003/04/27 19:35:11
21880 Log: $[ clarifications.
21881 Branch: perl
21882 ! pod/perlvar.pod
21883____________________________________________________________________________
21884[ 19353] By: rgs on 2003/04/27 18:51:37
21885 Log: utime() doc clarifications
21886 based on :
21887 Subject: Re: [PATCH] [perl #18589] Add NFS warning, clarify touch example
21888 From: Casey West <casey@geeknest.com>
21889 Date: Fri, 25 Apr 2003 08:00:54 -0400
21890 Message-ID: <20030425120054.GQ34510@geeknest.com>
21891 Branch: perl
21892 ! pod/perlfunc.pod
21893____________________________________________________________________________
21894[ 19352] By: nick on 2003/04/27 18:49:03
21895 Log: Integrate mainline.
21896 Branch: perlio
21897 +> Cross/Makefile Cross/Makefile.SH.patch Cross/TODO Cross/config
21898 +> Cross/config.sh-arm-linux Cross/generate_config_sh
21899 +> Cross/installperl.patch Cross/warp
21900 !> (integrate 113 files)
21901____________________________________________________________________________
21902[ 19351] By: jhi on 2003/04/27 08:13:34
21903 Log: Add a test case for [perl #15288] (already solved).
21904 Branch: perl
21905 ! t/op/pack.t
21906____________________________________________________________________________
21907[ 19350] By: jhi on 2003/04/27 07:38:17
21908 Log: Add Dave Mitchell's test case for fields.
21909 Branch: perl
21910 ! lib/fields.t
21911____________________________________________________________________________
21912[ 19349] By: jhi on 2003/04/27 06:50:09
21913 Log: Subject: [PATCH] VMS::Stdio test tweak
21914 From: "Craig A. Berry" <craigberry@mac.com>
21915 Date: Sat, 26 Apr 2003 15:53:07 -0500
21916 Message-ID: <3EAAF1B3.7020708@mac.com>
21917 Branch: perl
21918 ! vms/ext/Stdio/test.pl
21919____________________________________________________________________________
21920[ 19348] By: jhi on 2003/04/27 06:46:16
21921 Log: Subject: Re: [COMPLETE PATCH lib/UNIVERSAL.pm] RE: [perl #22018] UNIVERSAL documentatio n contradicts itself
21922 From: Casey West <casey@geeknest.com>
21923 Date: Thu, 24 Apr 2003 08:18:42 -0400
21924 Message-ID: <20030424121842.GW34510@geeknest.com>
21925 Branch: perl
21926 ! lib/UNIVERSAL.pm
21927____________________________________________________________________________
21928[ 19347] By: jhi on 2003/04/27 06:11:14
21929 Log: Integrate:
21930 [ 19342]
21931 Fix bug #15161 by increasing the refcount on the RE and making
21932 sure to restore it correctly. Deals with both s//e and s///g.
21933
21934 [ 19343]
21935 Document that splice() doesn't extend arrays
21936 Subject: Re: slice autoextending ? still another revised doc patch; COW
21937 From: david nicol <whatever@davidnicol.com>
21938 Date: 22 Apr 2003 22:05:02 -0500
21939 Message-Id: <1051067101.1086.113.camel@plaza.davidnicol.com>
21940
21941 [ 19344]
21942 Some doc patches by Casey West :
21943
21944 Subject: Re: [PATCH] Re: [perl #21260] adding error handling info to perlfunc/readline
21945 From: Casey West <casey@geeknest.com>
21946 Date: Fri, 25 Apr 2003 10:46:39 -0400
21947 Message-ID: <20030425144639.GY34510@geeknest.com>
21948
21949 Subject: Re: [perl #21785] [PATCH] clarify readdir in for conditional
21950 From: Casey West <casey@geeknest.com>
21951 Date: Fri, 25 Apr 2003 07:52:13 -0400
21952 Message-ID: <20030425115213.GP34510@geeknest.com>
21953
21954 Subject: Re: [perl #7213] [PATCH] Updating example in perldata
21955 From: Casey West <casey@geeknest.com>
21956 Date: Thu, 24 Apr 2003 21:27:22 -0400
21957 Message-ID: <20030425012722.GN34510@geeknest.com>
21958
21959 [ 19345]
21960 Subject: [PATCH] Re: the revenge of the bride of the son of the night of the living pseudohashes
21961 From: Dave Mitchell <davem@fdgroup.com>
21962 Date: Sat, 26 Apr 2003 18:45:28 +0100
21963 Message-ID: <20030426174528.GA9588@fdgroup.com>
21964
21965 [ 19346]
21966 Document that restricted hashes are not atomic
21967 (from Dave Mitchell).
21968 Branch: maint-5.8/perl
21969 !> hv.c lib/Hash/Util.pm lib/Hash/Util.t pod/perldata.pod
21970 !> pod/perldiag.pod pod/perlfunc.pod pod/perlsyn.pod pp_ctl.c
21971 !> pp_hot.c
21972____________________________________________________________________________
21973[ 19346] By: jhi on 2003/04/27 06:03:48
21974 Log: Document that restricted hashes are not atomic
21975 (from Dave Mitchell).
21976 Branch: perl
21977 ! lib/Hash/Util.pm
21978____________________________________________________________________________
21979[ 19345] By: jhi on 2003/04/27 05:59:39
21980 Log: Subject: [PATCH] Re: the revenge of the bride of the son of the night of the living pseudohashes
21981 From: Dave Mitchell <davem@fdgroup.com>
21982 Date: Sat, 26 Apr 2003 18:45:28 +0100
21983 Message-ID: <20030426174528.GA9588@fdgroup.com>
21984 Branch: perl
21985 ! hv.c lib/Hash/Util.t pod/perldiag.pod
21986____________________________________________________________________________
21987[ 19344] By: rgs on 2003/04/26 22:48:32
21988 Log: Some doc patches by Casey West :
21989
21990 Subject: Re: [PATCH] Re: [perl #21260] adding error handling info to perlfunc/readline
21991 From: Casey West <casey@geeknest.com>
21992 Date: Fri, 25 Apr 2003 10:46:39 -0400
21993 Message-ID: <20030425144639.GY34510@geeknest.com>
21994
21995 Subject: Re: [perl #21785] [PATCH] clarify readdir in for conditional
21996 From: Casey West <casey@geeknest.com>
21997 Date: Fri, 25 Apr 2003 07:52:13 -0400
21998 Message-ID: <20030425115213.GP34510@geeknest.com>
21999
22000 Subject: Re: [perl #7213] [PATCH] Updating example in perldata
22001 From: Casey West <casey@geeknest.com>
22002 Date: Thu, 24 Apr 2003 21:27:22 -0400
22003 Message-ID: <20030425012722.GN34510@geeknest.com>
22004 Branch: perl
22005 ! pod/perldata.pod pod/perlfunc.pod pod/perlsyn.pod
22006____________________________________________________________________________
22007[ 19343] By: rgs on 2003/04/26 22:30:07
22008 Log: Document that splice() doesn't extend arrays
22009 Subject: Re: slice autoextending ? still another revised doc patch; COW
22010 From: david nicol <whatever@davidnicol.com>
22011 Date: 22 Apr 2003 22:05:02 -0500
22012 Message-Id: <1051067101.1086.113.camel@plaza.davidnicol.com>
22013 Branch: perl
22014 ! pod/perlfunc.pod
22015____________________________________________________________________________
22016[ 19342] By: sky on 2003/04/26 21:43:32
22017 Log: Fix bug #15161 by increasing the refcount on the RE and making
22018 sure to restore it correctly. Deals with both s//e and s///g.
22019 Branch: perl
22020 ! pp_ctl.c pp_hot.c
22021____________________________________________________________________________
22022[ 19341] By: jhi on 2003/04/26 04:36:03
22023 Log: Integrate:
22024 [ 19340]
22025 Caught by Mark Lutz in UNICOS: A declaration cannot appear
22026 after an executable statement in a block.
22027 Branch: perl
22028 !> pp_pack.c
22029____________________________________________________________________________
22030[ 19340] By: jhi on 2003/04/26 04:22:24
22031 Log: Caught by Mark Lutz in UNICOS: A declaration cannot appear
22032 after an executable statement in a block.
22033 Branch: maint-5.8/perl
22034 ! pp_pack.c
22035____________________________________________________________________________
22036[ 19339] By: jhi on 2003/04/25 20:22:48
22037 Log: metaconfig unit change for #19337 and #19338.
22038 Branch: metaconfig/U/perl
22039 ! Extensions.U
22040____________________________________________________________________________
22041[ 19338] By: jhi on 2003/04/25 20:22:09
22042 Log: Fix -Dnoextensions and -Donlyextensions.
22043 Branch: maint-5.8/perl
22044 ! Configure
22045____________________________________________________________________________
22046[ 19337] By: jhi on 2003/04/25 20:19:36
22047 Log: Now the -Dnoextensions and -Dnoextensions have the
22048 chance of actually doing something.
22049 Branch: perl
22050 ! Configure
22051____________________________________________________________________________
22052[ 19336] By: jhi on 2003/04/25 19:50:54
22053 Log: metaconfig unit change for #19334 and #19335.
22054 Branch: metaconfig/U/perl
22055 ! Extensions.U
22056____________________________________________________________________________
22057[ 19335] By: jhi on 2003/04/25 19:50:33
22058 Log: Subject: [PATCH] Configure's extension sanity check is too strict
22059 From: Andy Dougherty <doughera@lafayette.edu>
22060 Date: Fri, 25 Apr 2003 16:23:45 -0400 (EDT)
22061 Message-ID: <Pine.SOL.4.53.0304251621250.24848@maxwell.phys.lafayette.edu>
22062 Branch: maint-5.8/perl
22063 ! Configure
22064____________________________________________________________________________
22065[ 19334] By: jhi on 2003/04/25 19:48:31
22066 Log: Subject: [PATCH] Configure's extension sanity check is too strict
22067 From: Andy Dougherty <doughera@lafayette.edu>
22068 Date: Fri, 25 Apr 2003 16:23:45 -0400 (EDT)
22069 Message-ID: <Pine.SOL.4.53.0304251621250.24848@maxwell.phys.lafayette.edu>
22070 Branch: perl
22071 ! Configure
22072____________________________________________________________________________
22073[ 19333] By: jhi on 2003/04/25 16:14:13
22074 Log: Update Changes.
22075 Branch: maint-5.8/perl
22076 ! Changes patchlevel.h
22077____________________________________________________________________________
22078[ 19332] By: jhi on 2003/04/25 15:35:49
22079 Log: Integrate:
22080 [ 19197]
22081 Continue hunting for the cause of the Tru64 failed threaded smokes
22082 most probably introduced by the change #19157. The tweak suggested
22083 by Stephen McCamant trades a possible dangling pointer (CopFILE()
22084 is tricky like that with threads) to a memory leak. (This means
22085 that this tweak shouldn't be left in as-is, but if this helps,
22086 we at least know that the failure was caused by the #19157.)
22087
22088 Firstly, because we nothing better has come up, and secondly
22089 because otherwise the subtest #18 of deparse.t is acting up
22090 in Tru64 (a sub B::NULL::as_string() { '' } appears).
22091 Branch: maint-5.8/perl
22092 !> op.c
22093____________________________________________________________________________
22094[ 19331] By: jhi on 2003/04/25 14:51:16
22095 Log: Integrate:
22096 [ 19195]
22097 Upgrade to Test::Harness 2.27_04.
22098
22099 [ 19325]
22100 Upgrade to Encode 1.93.
22101
22102 [ 19326]
22103 Upgrade to Test::Harness 2.28.
22104
22105 [ 19327]
22106 Clarify(?) the perlio default layers table.
22107
22108 [ 19328]
22109 Subject: typo in Time::HiRes docs
22110 From: mjd@plover.com
22111 Date: 19 Apr 2003 15:13:44 -0000
22112 Message-ID: <20030419151344.28237.qmail@plover.com>
22113
22114 [ 19329]
22115 Upgrade to Time::HiRes 1.46.
22116
22117 [ 19330]
22118 Subject: [PATCH Encode 1.93] another spin on the enc_module.t merry-go-round
22119 From: "Craig A. Berry" <craigberry@mac.com>
22120 Date: Thu, 24 Apr 2003 20:09:48 -0500
22121 Message-ID: <3EA88ADC.3000300@mac.com>
22122 Branch: maint-5.8/perl
22123 +> lib/Test/Harness/t/pod.t t/lib/sample-tests/switches
22124 !> (integrate 26 files)
22125____________________________________________________________________________
22126[ 19330] By: jhi on 2003/04/25 14:11:33
22127 Log: Subject: [PATCH Encode 1.93] another spin on the enc_module.t merry-go-round
22128 From: "Craig A. Berry" <craigberry@mac.com>
22129 Date: Thu, 24 Apr 2003 20:09:48 -0500
22130 Message-ID: <3EA88ADC.3000300@mac.com>
22131 Branch: perl
22132 ! ext/Encode/t/enc_module.t
22133____________________________________________________________________________
22134[ 19329] By: jhi on 2003/04/25 07:06:49
22135 Log: Upgrade to Time::HiRes 1.46.
22136 Branch: perl
22137 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
22138 ! ext/Time/HiRes/Makefile.PL
22139____________________________________________________________________________
22140[ 19328] By: jhi on 2003/04/25 06:57:10
22141 Log: Subject: typo in Time::HiRes docs
22142 From: mjd@plover.com
22143 Date: 19 Apr 2003 15:13:44 -0000
22144 Message-ID: <20030419151344.28237.qmail@plover.com>
22145 Branch: perl
22146 ! ext/Time/HiRes/HiRes.pm
22147____________________________________________________________________________
22148[ 19327] By: jhi on 2003/04/25 04:45:05
22149 Log: Clarify(?) the perlio default layers table.
22150 Branch: perl
22151 ! lib/PerlIO.pm t/io/layers.t
22152____________________________________________________________________________
22153[ 19326] By: jhi on 2003/04/25 04:22:49
22154 Log: Upgrade to Test::Harness 2.28.
22155 Branch: perl
22156 ! lib/Test/Harness.pm lib/Test/Harness/Changes
22157 ! lib/Test/Harness/t/pod.t
22158____________________________________________________________________________
22159[ 19325] By: jhi on 2003/04/24 19:06:29
22160 Log: Upgrade to Encode 1.93.
22161 Branch: perl
22162 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Makefile.PL
22163 ! ext/Encode/lib/Encode/CJKConstants.pm
22164 ! ext/Encode/lib/Encode/CN/HZ.pm
22165 ! ext/Encode/lib/Encode/Encoding.pm
22166 ! ext/Encode/lib/Encode/Guess.pm
22167 ! ext/Encode/lib/Encode/KR/2022_KR.pm
22168 ! ext/Encode/lib/Encode/PerlIO.pod ext/Encode/t/CJKT.t
22169 ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_module.t
22170 ! ext/Encode/t/guess.t ext/Encode/ucm/euc-cn.ucm
22171 ! ext/Encode/ucm/euc-jp.ucm ext/Encode/ucm/euc-kr.ucm
22172____________________________________________________________________________
22173[ 19324] By: jhi on 2003/04/24 17:07:28
22174 Log: Integrate:
22175 [ 19323]
22176 VMS patch for faststdio from Craig Berry.
22177 Branch: maint-5.8/perl
22178 !> configure.com
22179____________________________________________________________________________
22180[ 19323] By: jhi on 2003/04/24 16:57:13
22181 Log: VMS patch for faststdio from Craig Berry.
22182 Branch: perl
22183 ! configure.com
22184____________________________________________________________________________
22185[ 19322] By: jhi on 2003/04/24 12:52:16
22186 Log: Regen perlmodlib and perltoc.
22187 Branch: maint-5.8/perl
22188 ! pod/perlmodlib.pod pod/perltoc.pod
22189____________________________________________________________________________
22190[ 19321] By: jhi on 2003/04/24 05:10:36
22191 Log: Integrate:
22192 [ 19316]
22193 A new fatal error :
22194 Subject: [PATCH] Perl_croak("Use of freed value in iteration")
22195 From: Dave Mitchell <davem@fdgroup.com>
22196 Date: Mon, 21 Apr 2003 13:19:50 +0100
22197 Message-ID: <20030421121950.GB18189@fdgroup.com>
22198 Message-ID: <20030421125433.GC18189@fdgroup.com>
22199
22200 [ 19319]
22201 Subject: [perl #22011] [PATCH] pod/perlmod.pod (v5.8.0)
22202 From: Chris Pepper (via RT) <perlbug-followup@perl.org>
22203 Date: 22 Apr 2003 04:31:17 -0000
22204 Message-Id: <rt-22011-55473.11.0523590303906@bugs6.perl.org>
22205 (with minor further corrections)
22206
22207 [ 19320]
22208 Subject: Re: [PATCH] [perl #18055] Clarify for bug resolution.
22209 From: Casey West <casey@geeknest.com>
22210 Date: Wed, 23 Apr 2003 14:03:20 -0400
22211 Message-ID: <20030423180320.GZ15574@geeknest.com>
22212
22213 plus regen some docs.
22214 Branch: maint-5.8/perl
22215 ! pod/perldiag.pod pod/perlintern.pod pod/perlmod.pod
22216 ! pod/perlmodlib.PL pod/perlmodlib.pod
22217 !> pp_hot.c t/cmd/for.t
22218____________________________________________________________________________
22219[ 19320] By: rgs on 2003/04/23 20:20:58
22220 Log: Subject: Re: [PATCH] [perl #18055] Clarify for bug resolution.
22221 From: Casey West <casey@geeknest.com>
22222 Date: Wed, 23 Apr 2003 14:03:20 -0400
22223 Message-ID: <20030423180320.GZ15574@geeknest.com>
22224 Branch: perl
22225 ! pod/perlmodlib.PL pod/perlmodlib.pod
22226____________________________________________________________________________
22227[ 19319] By: rgs on 2003/04/23 19:54:31
22228 Log: Subject: [perl #22011] [PATCH] pod/perlmod.pod (v5.8.0)
22229 From: Chris Pepper (via RT) <perlbug-followup@perl.org>
22230 Date: 22 Apr 2003 04:31:17 -0000
22231 Message-Id: <rt-22011-55473.11.0523590303906@bugs6.perl.org>
22232 (with minor further corrections)
22233 Branch: perl
22234 ! pod/perlmod.pod
22235____________________________________________________________________________
22236[ 19318] By: jhi on 2003/04/23 19:24:49
22237 Log: config.h fixing.
22238 Branch: maint-5.8/perl
22239 ! NetWare/config_H.wc plan9/config.plan9 plan9/config_h.sample
22240 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
22241 ! win32/config_H.vc64 wince/config_H.ce
22242____________________________________________________________________________
22243[ 19317] By: jhi on 2003/04/23 19:12:05
22244 Log: Integrate:
22245 [ 19314]
22246 Introduce 'fast stdio' symbols to non-Configure lands.
22247
22248 plus edit the usefaststdio as defined plus regen vosish.
22249 Branch: maint-5.8/perl
22250 ! NetWare/config.wc NetWare/config_H.wc configure.com
22251 ! epoc/config.sh plan9/config.plan9 plan9/config_h.sample
22252 ! plan9/config_sh.sample uconfig.h uconfig.sh vos/config.alpha.h
22253 ! vos/config.ga.h win32/config.bc win32/config.gc
22254 ! win32/config.vc win32/config.vc64 win32/config_H.bc
22255 ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
22256 ! wince/config.ce wince/config_H.ce
22257____________________________________________________________________________
22258[ 19316] By: rgs on 2003/04/23 19:11:01
22259 Log: A new fatal error :
22260 Subject: [PATCH] Perl_croak("Use of freed value in iteration")
22261 From: Dave Mitchell <davem@fdgroup.com>
22262 Date: Mon, 21 Apr 2003 13:19:50 +0100
22263 Message-ID: <20030421121950.GB18189@fdgroup.com>
22264 Message-ID: <20030421125433.GC18189@fdgroup.com>
22265 Branch: perl
22266 ! pod/perldiag.pod pp_hot.c t/cmd/for.t
22267____________________________________________________________________________
22268[ 19315] By: jhi on 2003/04/23 19:03:10
22269 Log: Regen Configure, Glossary, et alia.
22270 Branch: maint-5.8/perl
22271 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22272 ! config_h.SH
22273____________________________________________________________________________
22274[ 19314] By: jhi on 2003/04/23 18:53:46
22275 Log: Introduce 'fast stdio' symbols to non-Configure lands.
22276 Branch: perl
22277 ! NetWare/config.wc NetWare/config_H.wc configure.com
22278 ! epoc/config.sh plan9/config.plan9 plan9/config_h.sample
22279 ! plan9/config_sh.sample uconfig.h uconfig.sh win32/config.bc
22280 ! win32/config.gc win32/config.vc win32/config.vc64
22281 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
22282 ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
22283____________________________________________________________________________
22284[ 19313] By: jhi on 2003/04/23 18:22:02
22285 Log: metaconfig unit change for #19312.
22286 Branch: metaconfig/U/perl
22287 ! usefaststdio.U
22288____________________________________________________________________________
22289[ 19312] By: jhi on 2003/04/23 18:21:47
22290 Log: Regen Configure, Glossary, et alia.
22291 Branch: perl
22292 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
22293 ! config_h.SH
22294____________________________________________________________________________
22295[ 19311] By: jhi on 2003/04/23 08:35:52
22296 Log: Integrate:
22297 [ 19310]
22298 Handle the combination of dosish and non-faststdio.
22299 Branch: maint-5.8/perl
22300 !> t/io/layers.t
22301____________________________________________________________________________
22302[ 19310] By: jhi on 2003/04/23 08:34:33
22303 Log: Handle the combination of dosish and non-faststdio.
22304 Branch: perl
22305 ! t/io/layers.t
22306____________________________________________________________________________
22307[ 19309] By: jhi on 2003/04/23 05:35:38
22308 Log: Integrate:
22309 [ 19304]
22310 Re-merge Encode 1.92.
22311
22312 [ 19305]
22313 Enache's turn.
22314
22315 [ 19306]
22316 z/OS: changes for building threaded from "Brian De Pradine"
22317 <PRADINE@uk.ibm.com>.
22318
22319 [ 19307]
22320 Subject: [PATCH] Doc pointers in perlbot.
22321 From: Casey West <casey@geeknest.com>
22322 Date: Tue, 22 Apr 2003 11:19:09 -0400
22323 Message-Id: <20030422151909.GC11119@geeknest.com>
22324 (Applied by hand.)
22325
22326 [ 19308]
22327 Subject: 5.8.0: two problems
22328 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
22329 Date: Tue, 22 Apr 2003 11:43:17 -0700
22330 Message-ID: <20030422184316.GA8602@math.berkeley.edu>
22331 Branch: maint-5.8/perl
22332 !> Makefile.SH XSUB.h ext/Encode/Makefile.PL
22333 !> ext/Encode/t/enc_module.t hints/os390.sh pod/perlbot.pod
22334 !> thread.h util.c
22335____________________________________________________________________________
22336[ 19308] By: rgs on 2003/04/22 20:53:20
22337 Log: Subject: 5.8.0: two problems
22338 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
22339 Date: Tue, 22 Apr 2003 11:43:17 -0700
22340 Message-ID: <20030422184316.GA8602@math.berkeley.edu>
22341 Branch: perl
22342 ! XSUB.h
22343____________________________________________________________________________
22344[ 19307] By: ams on 2003/04/22 16:39:51
22345 Log: Subject: [PATCH] Doc pointers in perlbot.
22346 From: Casey West <casey@geeknest.com>
22347 Date: Tue, 22 Apr 2003 11:19:09 -0400
22348 Message-Id: <20030422151909.GC11119@geeknest.com>
22349 (Applied by hand.)
22350 Branch: perl
22351 ! pod/perlbot.pod
22352____________________________________________________________________________
22353[ 19306] By: jhi on 2003/04/22 13:09:21
22354 Log: z/OS: changes for building threaded from "Brian De Pradine"
22355 <PRADINE@uk.ibm.com>.
22356 Branch: perl
22357 ! Makefile.SH hints/os390.sh thread.h util.c
22358____________________________________________________________________________
22359[ 19305] By: jhi on 2003/04/22 11:42:35
22360 Log: Enache's turn.
22361 Branch: perl
22362 ! ext/Encode/t/enc_module.t
22363____________________________________________________________________________
22364[ 19304] By: jhi on 2003/04/22 10:48:47
22365 Log: Re-merge Encode 1.92.
22366 Branch: perl
22367 ! ext/Encode/Makefile.PL ext/Encode/t/enc_module.t
22368____________________________________________________________________________
22369[ 19303] By: jhi on 2003/04/22 05:30:15
22370 Log: Integrate:
22371 [ 19299]
22372 Croak on non ref to shared methods instead of segfault.
22373 This can really only happen for &share("string").
22374
22375 [ 19301]
22376 Fix bug 17964 by properly refcounting the gv top.
22377 Seems like the entries in rsfp are way different than
22378 normal PVIO objects.
22379
22380 [ 19302]
22381 Argh, cut-and-pasto.
22382 Branch: maint-5.8/perl
22383 !> ext/threads/shared/shared.xs perlio.c sv.c
22384____________________________________________________________________________
22385[ 19302] By: jhi on 2003/04/22 05:26:21
22386 Log: Argh, cut-and-pasto.
22387 Branch: perl
22388 ! perlio.c
22389____________________________________________________________________________
22390[ 19301] By: sky on 2003/04/21 21:33:14
22391 Log: Fix bug 17964 by properly refcounting the gv top.
22392 Seems like the entries in rsfp are way different than
22393 normal PVIO objects.
22394 Branch: perl
22395 ! sv.c
22396____________________________________________________________________________
22397[ 19300] By: rgs on 2003/04/21 19:42:04
22398 Log: Fix another segfault case (warn called from UNIVERSAL::DESTROY).
22399
22400 Subject: Re: [perl #21347] segfault in UNIVERSAL::AUTOLOAD
22401 From: Enache Adrian <enache@rdslink.ro>
22402 Date: Sun, 20 Apr 2003 02:45:48 +0300
22403 Message-ID: <20030419234548.GA849@ratsnest.hole>
22404 and
22405 Date: Wed, 2 Apr 2003 07:52:28 +0300
22406 Message-ID: <20030402045227.GA1023@ratsnest.hole>
22407 Branch: perl
22408 ! pp_sys.c t/op/ref.t util.c
22409____________________________________________________________________________
22410[ 19299] By: sky on 2003/04/21 17:05:31
22411 Log: Croak on non ref to shared methods instead of segfault.
22412 This can really only happen for &share("string").
22413 Branch: perl
22414 ! ext/threads/shared/shared.xs
22415____________________________________________________________________________
22416[ 19298] By: jhi on 2003/04/21 16:26:33
22417 Log: Integrate:
22418 [ 19297]
22419 Add OpenZaurus cross-compilation patches.
22420 Branch: maint-5.8/perl
22421 +> Cross/Makefile Cross/Makefile.SH.patch Cross/TODO Cross/config
22422 +> Cross/config.sh-arm-linux Cross/generate_config_sh
22423 +> Cross/installperl.patch Cross/warp
22424 !> Cross/README INSTALL MANIFEST
22425____________________________________________________________________________
22426[ 19297] By: jhi on 2003/04/21 16:24:36
22427 Log: Add OpenZaurus cross-compilation patches.
22428 Branch: perl
22429 + Cross/Makefile Cross/Makefile.SH.patch Cross/TODO Cross/config
22430 + Cross/config.sh-arm-linux Cross/generate_config_sh
22431 + Cross/installperl.patch Cross/warp
22432 ! Cross/README INSTALL MANIFEST
22433____________________________________________________________________________
22434[ 19296] By: jhi on 2003/04/21 15:54:28
22435 Log: Update vosish headers.
22436 Branch: maint-5.8/perl
22437 ! vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
22438 ! vos/config.ga.h vos/config.pl
22439____________________________________________________________________________
22440[ 19295] By: jhi on 2003/04/21 15:45:24
22441 Log: Integrate:
22442 [ 19286]
22443 Introduce two new Configure symbols:
22444 [1] d_faststdio = d_stdstdio && d_stdio_ptr_lval &&
22445 (d_stdio_cnt_lval || d_stdio_ptr_lval_sets_cnt)
22446 [2] usefaststdio = do we use fast stdio if we have it?
22447 For 5.[68], we do. For anything else, we don't.
22448 (At least, unless otherwise instructed by -Dusefaststdio.)
22449 This means that for bleadperl we no more use stdio, but instead
22450 default to perlio: the effect of PERLIO=perlio, in other words.
22451 (PERLIO=stdio will still switch to using stdio.)
22452 This change may endanger extensions using FILE*-- but if we are
22453 to migrate fully to perlio, better start swallowing the poison now.
22454 For maintperl, the usefaststdio still defaults to yes.
22455
22456 and regen Configure.
22457 Branch: maint-5.8/perl
22458 ! Configure config_h.SH
22459 !> perlio.c t/io/layers.t
22460____________________________________________________________________________
22461[ 19294] By: jhi on 2003/04/21 15:36:02
22462 Log: Integrate:
22463 [ 19276]
22464 Subject: Re: [PATCH] [perl #21875] Hash ref transformed as a list
22465 From: Dave Mitchell <davem@fdgroup.com>
22466 Date: Sat, 19 Apr 2003 20:06:51 +0100
22467 Message-ID: <20030419190651.GD13333@fdgroup.com>
22468
22469 [ 19280]
22470 Document PERL_DEBUGGING_MSTATS in INSTALL and in the Win32 Makefile.
22471 Subject: [DOC PATCH 5.8.0] Re: Problem with Devel::Peek on Perl 5.8.0
22472 From: Steve Hay <steve.hay@uk.radan.com>
22473 Date: Wed, 16 Apr 2003 11:12:22 +0100
22474 Message-ID: <3E9D2C86.8040104@uk.radan.com>
22475
22476 [ 19281]
22477 Subject: Re: [perl #22000] AutoReply: [PATCH] Naughty sv_gets/RsRECORD bug
22478 From: Enache Adrian <enache@rdslink.ro>
22479 Date: Sat, 19 Apr 2003 20:12:18 +0300
22480 Message-ID: <20030419171218.GA974@ratsnest.hole>
22481
22482 [ 19282]
22483 Remove, in the main Makefile, the $(LDLIBPTH) variable from
22484 the commands that invoke $(CC).
22485 Subject: Re: Smoke failure
22486 From: Enache Adrian <enache@rdslink.ro>
22487 Date: Fri, 18 Apr 2003 19:06:07 +0300
22488 Message-ID: <20030418160606.GA797@ratsnest.hole>
22489
22490 [ 19283]
22491 Subject: [PATCH] goto &sub doesn't empty @_
22492 From: Dave Mitchell <davem@fdgroup.com>
22493 Date: Sun, 20 Apr 2003 21:46:51 +0100
22494 Message-ID: <20030420204651.GE15591@fdgroup.com>
22495
22496 [ 19284]
22497 Upgrade to Test 1.24.
22498
22499 [ 19285]
22500 Upgrade to Locale::Maketext 1.05.
22501 Branch: maint-5.8/perl
22502 !> INSTALL Makefile.SH lib/Locale/Maketext.pm
22503 !> lib/Locale/Maketext/ChangeLog lib/Test.pm pp_ctl.c sv.c
22504 !> t/comp/parser.t toke.c win32/Makefile
22505____________________________________________________________________________
22506[ 19293] By: jhi on 2003/04/21 15:28:59
22507 Log: Integrate:
22508 [ 19269]
22509 Bump the test count.
22510 Branch: maint-5.8/perl
22511 !> ext/Storable/t/tied.t
22512____________________________________________________________________________
22513[ 19292] By: jhi on 2003/04/21 15:27:36
22514 Log: Integrate:
22515 [ 19263]
22516 Unused variables.
22517
22518 [ 19264]
22519 UTF8 regexp patch from Inaba Hiroto.
22520
22521 [ 19266]
22522 Subject: [PATCH] Re: any takers for this Storable bug?
22523 From: Enache Adrian <enache@rdslink.ro>
22524 Date: Wed, 16 Apr 2003 21:11:11 +0300
22525 Message-ID: <20030416181111.GA6687@ratsnest.hole>
22526
22527 ams had already fixed the bug by #19227, but take the
22528 test case.
22529
22530 [ 19268]
22531 Subject: [PATCH] allow recursive FETCHes
22532 From: Dave Mitchell <davem@fdgroup.com>
22533 Date: Mon, 7 Apr 2003 10:00:41 +0100
22534 Message-ID: <20030407100041.A1617@fdgroup.com>
22535
22536 [ 19275]
22537 Restore the two variables retired by the change #19268
22538 (for binary backward compatibility)
22539 Branch: maint-5.8/perl
22540 !> av.c dump.c embed.fnc embed.h embedvar.h
22541 !> ext/Storable/t/st-dump.pl ext/Storable/t/tied.t hv.c perl.c
22542 !> perlapi.h perlio.c proto.h regcomp.c sv.c sv.h t/op/pat.t
22543 !> t/op/tie.t thrdvar.h universal.c
22544____________________________________________________________________________
22545[ 19291] By: jhi on 2003/04/21 15:20:58
22546 Log: Integrate:
22547 [ 19262]
22548 Another needle in the voodoo doll.
22549 Now I think it should work with the shared
22550 strings.
22551
22552 [ 19265]
22553 Don't use the stack to allocate a SV that we hand out to another
22554 function, only badness can ensure.
22555 Message-Id: <20030418180131.GD10086@fdgroup.com>
22556 Thanks go to Dave Mitchell for help in tracking down the bug!
22557
22558 [ 19289]
22559 Fixes bug #17043, resets PL_srand_called before the cloning.
22560 Allows people to override the resetting by using srand() in CLONE.
22561 Branch: maint-5.8/perl
22562 !> ext/threads/t/thread.t ext/threads/threads.xs sv.c
22563____________________________________________________________________________
22564[ 19290] By: jhi on 2003/04/21 15:14:17
22565 Log: Integrate:
22566 [ 19196]
22567 Upgrade to Net::Ping 2.29.
22568
22569 [ 19270]
22570 Upgrade to Net::Ping 2.30.
22571 Branch: maint-5.8/perl
22572 +> lib/Net/Ping/t/510_ping_udp.t
22573 - lib/Net/Ping/README
22574 !> MANIFEST lib/Net/Ping.pm lib/Net/Ping/Changes
22575 !> lib/Net/Ping/t/450_service.t
22576____________________________________________________________________________
22577[ 19289] By: sky on 2003/04/21 13:24:40
22578 Log: Fixes bug #17043, resets PL_srand_called before the cloning.
22579 Allows people to override the resetting by using srand() in CLONE.
22580 Branch: perl
22581 ! ext/threads/t/thread.t ext/threads/threads.xs
22582____________________________________________________________________________
22583[ 19288] By: jhi on 2003/04/21 06:53:46
22584 Log: Move the new *.U files into a subdirectory.
22585 Branch: metaconfig
22586 - U/d_faststdio.U U/usefaststdio.U
22587 Branch: metaconfig/U/perl
22588 + d_faststdio.U usefaststdio.U
22589____________________________________________________________________________
22590[ 19287] By: jhi on 2003/04/21 06:52:10
22591 Log: metaconfig units for #19286.
22592 Branch: metaconfig
22593 + U/d_faststdio.U U/usefaststdio.U
22594____________________________________________________________________________
22595[ 19286] By: jhi on 2003/04/21 06:50:42
22596 Log: Introduce two new Configure symbols:
22597 [1] d_faststdio = d_stdstdio && d_stdio_ptr_lval &&
22598 (d_stdio_cnt_lval || d_stdio_ptr_lval_sets_cnt)
22599 [2] usefaststdio = do we use fast stdio if we have it?
22600 For 5.[68], we do. For anything else, we don't.
22601 (At least, unless otherwise instructed by -Dusefaststdio.)
22602 This means that for bleadperl we no more use stdio, but instead
22603 default to perlio: the effect of PERLIO=perlio, in other words.
22604 (PERLIO=stdio will still switch to using stdio.)
22605 This change may endanger extensions using FILE*-- but if we are
22606 to migrate fully to perlio, better start swallowing the poison now.
22607 For maintperl, the usefaststdio still defaults to yes.
22608 Branch: perl
22609 ! Configure config_h.SH perlio.c t/io/layers.t
22610____________________________________________________________________________
22611[ 19285] By: jhi on 2003/04/21 05:43:55
22612 Log: Upgrade to Locale::Maketext 1.05.
22613 Branch: perl
22614 ! lib/Locale/Maketext.pm lib/Locale/Maketext/ChangeLog
22615____________________________________________________________________________
22616[ 19284] By: jhi on 2003/04/21 05:40:34
22617 Log: Upgrade to Test 1.24.
22618 Branch: perl
22619 ! lib/Test.pm
22620____________________________________________________________________________
22621[ 19283] By: rgs on 2003/04/20 22:01:28
22622 Log: Subject: [PATCH] goto &sub doesn't empty @_
22623 From: Dave Mitchell <davem@fdgroup.com>
22624 Date: Sun, 20 Apr 2003 21:46:51 +0100
22625 Message-ID: <20030420204651.GE15591@fdgroup.com>
22626 Branch: perl
22627 ! pp_ctl.c
22628____________________________________________________________________________
22629[ 19282] By: rgs on 2003/04/20 21:22:29
22630 Log: Remove, in the main Makefile, the $(LDLIBPTH) variable from
22631 the commands that invoke $(CC).
22632 Subject: Re: Smoke failure
22633 From: Enache Adrian <enache@rdslink.ro>
22634 Date: Fri, 18 Apr 2003 19:06:07 +0300
22635 Message-ID: <20030418160606.GA797@ratsnest.hole>
22636 Branch: perl
22637 ! Makefile.SH
22638____________________________________________________________________________
22639[ 19281] By: rgs on 2003/04/20 19:53:53
22640 Log: Subject: Re: [perl #22000] AutoReply: [PATCH] Naughty sv_gets/RsRECORD bug
22641 From: Enache Adrian <enache@rdslink.ro>
22642 Date: Sat, 19 Apr 2003 20:12:18 +0300
22643 Message-ID: <20030419171218.GA974@ratsnest.hole>
22644 Branch: perl
22645 ! sv.c
22646____________________________________________________________________________
22647[ 19280] By: rgs on 2003/04/20 18:55:40
22648 Log: Document PERL_DEBUGGING_MSTATS in INSTALL and in the Win32 Makefile.
22649 Subject: [DOC PATCH 5.8.0] Re: Problem with Devel::Peek on Perl 5.8.0
22650 From: Steve Hay <steve.hay@uk.radan.com>
22651 Date: Wed, 16 Apr 2003 11:12:22 +0100
22652 Message-ID: <3E9D2C86.8040104@uk.radan.com>
22653 Branch: perl
22654 ! INSTALL win32/Makefile
22655____________________________________________________________________________
22656[ 19279] By: jhi on 2003/04/20 07:42:33
22657 Log: metaconfig unit changes for #19278.
22658 Branch: metaconfig
22659 ! U/compline/ptrsize.U
22660 Branch: metaconfig/U/perl
22661 ! use64bits.U
22662____________________________________________________________________________
22663[ 19278] By: jhi on 2003/04/20 07:42:17
22664 Log: Give more information of what to do when -Dusexxx fail.
22665 Branch: perl
22666 ! Configure
22667____________________________________________________________________________
22668[ 19277] By: rgs on 2003/04/19 19:40:22
22669 Log: Fix bug #21347 (segfault in UNIVERSAL::AUTOLOAD with qr//)
22670 by adding a dummy destructor method Regexp::DESTROY.
22671 This prevents infinite recursion, since Regexp::DESTROY
22672 is no more autoloaded.
22673
22674 Subject: Re: [perl #21347] segfault in UNIVERSAL::AUTOLOAD
22675 From: Enache Adrian <enache@rdslink.ro>
22676 Date: Wed, 2 Apr 2003 05:02:42 +0300
22677 Message-ID: <20030402020242.GA2966@ratsnest.hole>
22678 Branch: perl
22679 ! ext/B/t/stash.t t/op/ref.t universal.c
22680____________________________________________________________________________
22681[ 19276] By: rgs on 2003/04/19 19:32:25
22682 Log: Subject: Re: [PATCH] [perl #21875] Hash ref transformed as a list
22683 From: Dave Mitchell <davem@fdgroup.com>
22684 Date: Sat, 19 Apr 2003 20:06:51 +0100
22685 Message-ID: <20030419190651.GD13333@fdgroup.com>
22686 Branch: perl
22687 ! t/comp/parser.t toke.c
22688____________________________________________________________________________
22689[ 19275] By: jhi on 2003/04/19 18:52:24
22690 Log: Restore the two variables retired by the change #19268
22691 (for binary backward compatibility)
22692 Branch: perl
22693 ! embedvar.h perlapi.h thrdvar.h
22694____________________________________________________________________________
22695[ 19274] By: jhi on 2003/04/19 17:39:58
22696 Log: metaconfig unit changes for #19273.
22697 Branch: metaconfig
22698 ! U/compline/ptrsize.U
22699 Branch: metaconfig/U/perl
22700 ! d_modfl.U use64bits.U
22701____________________________________________________________________________
22702[ 19273] By: jhi on 2003/04/19 17:36:33
22703 Log: Fail if the specified -Duse64xxx cannot be fulfilled.
22704 (And undo a doublesize probe glitch from change #19272.)
22705 Branch: perl
22706 ! Configure
22707____________________________________________________________________________
22708[ 19272] By: jhi on 2003/04/19 16:38:12
22709 Log: If long doubles fail, we really cannot sensibly
22710 drop back to doubles anymore, therefore abort.
22711 Pointed out by Slaven Rezic. (I tried to fix this
22712 via metaconfig but ended up with a vicious cyclic
22713 dependency.)
22714 Branch: perl
22715 ! Configure
22716____________________________________________________________________________
22717[ 19271] By: jhi on 2003/04/19 12:27:44
22718 Log: metalint nit.
22719 Branch: metaconfig/U/perl
22720 ! Extensions.U
22721____________________________________________________________________________
22722[ 19270] By: jhi on 2003/04/19 12:09:21
22723 Log: Upgrade to Net::Ping 2.30.
22724 Branch: perl
22725 ! lib/Net/Ping.pm lib/Net/Ping/Changes
22726 ! lib/Net/Ping/t/450_service.t
22727____________________________________________________________________________
22728[ 19269] By: jhi on 2003/04/19 07:10:57
22729 Log: Bump the test count.
22730 Branch: perl
22731 ! ext/Storable/t/tied.t
22732____________________________________________________________________________
22733[ 19268] By: jhi on 2003/04/19 07:06:13
22734 Log: Subject: [PATCH] allow recursive FETCHes
22735 From: Dave Mitchell <davem@fdgroup.com>
22736 Date: Mon, 7 Apr 2003 10:00:41 +0100
22737 Message-ID: <20030407100041.A1617@fdgroup.com>
22738 Branch: perl
22739 ! av.c dump.c embed.fnc embed.h embedvar.h
22740 ! ext/Storable/t/st-dump.pl hv.c perl.c perlapi.h proto.h sv.c
22741 ! sv.h t/op/tie.t thrdvar.h
22742____________________________________________________________________________
22743[ 19267] By: jhi on 2003/04/19 06:54:34
22744 Log: Subject: [PATCH] readline.t tweak for VMS
22745 From: "Craig A. Berry" <craigberry@mac.com>
22746 Date: Thu, 17 Apr 2003 17:18:19 -0500
22747 Message-ID: <3E9F282B.6090603@mac.com>
22748 Branch: perl
22749 ! t/op/readline.t
22750____________________________________________________________________________
22751[ 19266] By: jhi on 2003/04/19 06:46:48
22752 Log: Subject: [PATCH] Re: any takers for this Storable bug?
22753 From: Enache Adrian <enache@rdslink.ro>
22754 Date: Wed, 16 Apr 2003 21:11:11 +0300
22755 Message-ID: <20030416181111.GA6687@ratsnest.hole>
22756
22757 ams had already fixed the bug by #19227, but take the
22758 test case.
22759 Branch: perl
22760 ! ext/Storable/t/tied.t
22761____________________________________________________________________________
22762[ 19265] By: sky on 2003/04/19 00:40:42
22763 Log: Don't use the stack to allocate a SV that we hand out to another
22764 function, only badness can ensure.
22765 Message-Id: <20030418180131.GD10086@fdgroup.com>
22766 Thanks go to Dave Mitchell for help in tracking down the bug!
22767 Branch: perl
22768 ! sv.c
22769____________________________________________________________________________
22770[ 19264] By: jhi on 2003/04/18 19:28:04
22771 Log: UTF8 regexp patch from Inaba Hiroto.
22772 Branch: perl
22773 ! regcomp.c t/op/pat.t
22774____________________________________________________________________________
22775[ 19263] By: jhi on 2003/04/18 19:16:43
22776 Log: Unused variables.
22777 Branch: perl
22778 ! perlio.c universal.c
22779____________________________________________________________________________
22780[ 19262] By: sky on 2003/04/17 20:02:33
22781 Log: Another needle in the voodoo doll.
22782 Now I think it should work with the shared
22783 strings.
22784 Branch: perl
22785 ! sv.c
22786____________________________________________________________________________
22787[ 19261] By: jhi on 2003/04/17 18:59:54
22788 Log: Integrate the below, regen Configure. No regen Glossary,
22789 though, that is somehow broken with maint, must investigate more.
22790 Branch: maint-5.8/perl
22791 ! Configure config_h.SH
22792 !> INSTALL NetWare/config.wc NetWare/config_H.wc configure.com
22793 !> djgpp/configure.bat epoc/config.sh hints/solaris_2.sh
22794 !> numeric.c perl.h plan9/config.plan9 plan9/config_h.sample
22795 !> plan9/config_sh.sample pp.c win32/config.bc win32/config.gc
22796 !> win32/config.vc win32/config.vc64 win32/config_H.bc
22797 !> win32/config_H.gc win32/config_H.vc win32/config_H.vc64
22798 !> wince/config.ce wince/config_H.ce
22799____________________________________________________________________________
22800[ 19260] By: jhi on 2003/04/17 18:43:31
22801 Log: Integrate:
22802 [ 19204]
22803 Bump up the version and admonish against aspiring (ab)use.
22804
22805 [ 19205]
22806 Build get_layers() also under -Uuseperlio.
22807
22808 [ 19208]
22809 Skip as early as possible if no perlio since the
22810 use open would be compile-time.
22811
22812 [ 19209]
22813 PERLIO=perlio requires extra steps.
22814
22815 [ 19217]
22816 Don't skip the whole test for PERLIO=perlio.
22817
22818 [ 19223]
22819 Handle PERLIO=stdio, PERLIO=perlio, PERLIO=mmap, and no PERLIO.
22820
22821 [ 19234]
22822 PerlIO::get_layers() usage tip.
22823
22824 [ 19235]
22825 Use the right prototype and a glob is fine (from Rafael).
22826
22827 [ 19237]
22828 What does an empty PERLIO= mean, anyway?
22829
22830 [ 19239]
22831 Try to get the layers.t working also for dosish platforms.
22832
22833 [ 19241]
22834 Handle PERLIO= and document a bit.
22835
22836 [ 19243]
22837 Detect the 'fast stdio' case.
22838 Branch: maint-5.8/perl
22839 !> lib/PerlIO.pm pod/perlrun.pod t/io/layers.t universal.c
22840____________________________________________________________________________
22841[ 19259] By: jhi on 2003/04/17 18:41:23
22842 Log: Integrate:
22843 [ 19203]
22844 Introduce PerlIO::get_layers() to allow people to peek
22845 at the PerlIO layer stack.
22846 Branch: maint-5.8/perl
22847 +> t/io/layers.t
22848 !> MANIFEST lib/PerlIO.pm perlio.c perlio.h t/io/open.t
22849 !> universal.c
22850____________________________________________________________________________
22851[ 19258] By: jhi on 2003/04/17 18:38:58
22852 Log: Integrate:
22853 [ 19232]
22854 Redundant test.
22855
22856 [ 19233]
22857 Syntax terror.
22858 Branch: maint-5.8/perl
22859 !> lib/unicore/mktables
22860____________________________________________________________________________
22861[ 19257] By: jhi on 2003/04/17 18:33:40
22862 Log: Integrate:
22863 [ 19231]
22864 Synchronize the specifications of the POSIX character
22865 classes alnum, graph, and print closer to the planned
22866 Unicode proposal.
22867
22868 [ 19244]
22869 More maneuvering closer to proposed POSIX classes
22870 mapping to Unicode: (1) The definitions of "graph" and
22871 "print" are still in flux: move closer back to how Perl
22872 5.8.0 defined it (though drop Co, that did not make sense)
22873 (2) Add U+0085 (NEL) to "space".
22874 Branch: maint-5.8/perl
22875 !> lib/unicore/lib/Alnum.pl lib/unicore/lib/Graph.pl
22876 !> lib/unicore/lib/Print.pl lib/unicore/lib/Space.pl
22877 !> lib/unicore/mktables utf8.c
22878____________________________________________________________________________
22879[ 19256] By: jhi on 2003/04/17 18:26:24
22880 Log: Integrate:
22881 [ 19194]
22882 Darwin/Rhapsody hints files updates by Wilfredo Sánchez
22883
22884 [ 19198]
22885 The lib/ipc_sysv.t test has a new name.
22886
22887 [ 19199]
22888 Because we chdir to 'Big-Dummy' the lib/utf8.pm may be at
22889 ../../lib for the lc() at line 66 (UTF-8 data possible
22890 if using UTF-8 locales).
22891
22892 [ 19200]
22893 Fix bug #15893 by creating shared scalars with a refcount of 1
22894 instead of 2 and make push and pop increase the refcount.
22895
22896 [ 19201]
22897 Fix bug #16253, use all the CPU that we can :-)
22898
22899 [ 19202]
22900 Subject: [PATCH] vms/vms.c waitpid tweak
22901 From: "Craig A. Berry" <craigberry@mac.com>
22902 Date: Mon, 14 Apr 2003 00:43:00 -0500
22903 Message-ID: <3E9A4A64.6030205@mac.com>
22904
22905 [ 19206]
22906 More docs about running tests and the test suite.
22907 Update perlhack.pod in various places.
22908 Add 'test_harness' as a .PHONY dependency in the Makefile.
22909
22910 [ 19207]
22911 Document and test autovivified dirhandles.
22912 Subject: [perl #21952] [patch] t/op/readdir.t and perlfunc.pod
22913 From: Nathan Torkington (via RT) <perlbug-followup@perl.org>
22914 Date: 12 Apr 2003 12:40:45 -0000
22915 Message-Id: <rt-21952-55079.8.08945458828887@bugs6.perl.org>
22916
22917 [ 19210]
22918 Subject: Re: Parse::RecDescent triggers infinete loop in perl5.9.0 and 5.8.1 [perl #17757]
22919 From: Inaba Hiroto <inaba@st.rim.or.jp>
22920 Date: Fri, 21 Mar 2003 17:35:21 +0900
22921 Message-ID: <3E7ACEC8.E0D57221@st.rim.or.jp>
22922 Date: Sat, 22 Mar 2003 11:28:05 +0900
22923 Message-ID: <3E7BCA34.6824269F@st.rim.or.jp>
22924
22925 [ 19211]
22926 Mention that "make test_harness" lets messages sent through
22927 standard error out. Complements change #19206.
22928
22929 [ 19212]
22930 Fixes to bugs introduced by PL_stashcache
22931 A) Follow suggestion by Benjamin Goldberg to use hv_delete
22932 instead of hv_delete_ent to avoid creating a temporary SV
22933 B) Don't increment the refcount, sneak it into an IV instead
22934 C) When a GP is a deleted that contains a stash, remove the
22935 corresponding entry since hv might be in use in other places.
22936 D) Note that no test cases test the deletion of packages to catch
22937 this bug.
22938
22939 [ 19213]
22940 Ook, run tests on correct build-dir next time.
22941 We must check if the hv is a stash, otherwise we try to delete
22942 something that is a HvNAME of null..... tests pass better now
22943
22944 [ 19214]
22945 [perl #21845] "proto.h": 'id' is a reserved word in Objective-C.
22946
22947 [ 19215]
22948 Add a test for [perl #17753].
22949
22950 [ 19226]
22951 Upgrade to Pod::LaTeX 0.55.
22952
22953 [ 19227]
22954 [#17040] Storable now handles self-tied scalars with NULL mg_obj.
22955
22956 [ 19236]
22957 Document the effect of thread creation context.
22958
22959 [ 19238]
22960 A -C parsed from the #! line can still have line endings in it.
22961
22962 [ 19240]
22963 Fix double join problem for those places where free
22964 actually means free (solaris for example :)
22965 Fixes bug #16681
22966
22967 [ 19245]
22968 Document that the open pragma does not affect
22969 the three-headed hydra, ummm, open.
22970
22971 [ 19247]
22972 Subject: Re: [perl #21950] 5.8.x -- :scalar and magic strings
22973 From: Enache Adrian <enache@rdslink.ro>
22974 Date: Thu, 17 Apr 2003 14:35:36 +0300
22975 Message-Id: <20030417113536.GA898@ratsnest.hole>
22976
22977 [ 19252]
22978 [#21962] Speculative fix: don't set GvNAMELEN to 1 if GvNAME is "".
22979 Anything that's broken by this change should be fixed.
22980
22981 [ 19254]
22982 Extreme Voodoo programming, by not pinching the SV if it is a
22983 PADTMP it happily keeps it's value later on!
22984 Branch: maint-5.8/perl
22985 +> lib/Pod/t/pod2latex.t
22986 - lib/Pod/t/latex.t
22987 ! embedvar.h
22988 !> (integrate 32 files)
22989____________________________________________________________________________
22990[ 19255] By: jhi on 2003/04/17 17:44:24
22991 Log: metaconfig unit change for #19253.
22992 Branch: metaconfig/U/perl
22993 ! Extensions.U
22994____________________________________________________________________________
22995[ 19254] By: sky on 2003/04/17 17:31:52
22996 Log: Extreme Voodoo programming, by not pinching the SV if it is a
22997 PADTMP it happily keeps it's value later on!
22998 Branch: perl
22999 ! sv.c
23000____________________________________________________________________________
23001[ 19253] By: jhi on 2003/04/17 17:09:16
23002 Log: Implement -Dnoextensions=... and -Donlyextensions=...
23003 Branch: perl
23004 ! Configure INSTALL
23005____________________________________________________________________________
23006[ 19252] By: ams on 2003/04/17 16:19:31
23007 Log: Speculative fix: don't set GvNAMELEN to 1 if GvNAME is "".
23008 Anything that's broken by this change should be fixed.
23009 Branch: perl
23010 ! gv.c
23011____________________________________________________________________________
23012[ 19251] By: jhi on 2003/04/17 15:39:56
23013 Log: Introduce the new *l APIs, undefined, to non-Configure lands.
23014 Branch: perl
23015 ! NetWare/config.wc NetWare/config_H.wc configure.com
23016 ! djgpp/configure.bat epoc/config.sh plan9/config.plan9
23017 ! plan9/config_h.sample plan9/config_sh.sample win32/config.bc
23018 ! win32/config.gc win32/config.vc win32/config.vc64
23019 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
23020 ! win32/config_H.vc64 wince/config.ce wince/config_H.ce
23021____________________________________________________________________________
23022[ 19250] By: jhi on 2003/04/17 15:07:08
23023 Log: Regen Glossary et alia.
23024 Branch: perl
23025 ! Porting/Glossary Porting/config.sh Porting/config_H
23026____________________________________________________________________________
23027[ 19249] By: jhi on 2003/04/17 14:54:01
23028 Log: metaconfig unit change for #19248.
23029 Branch: metaconfig/U/perl
23030 ! selectminbits.U
23031____________________________________________________________________________
23032[ 19248] By: jhi on 2003/04/17 14:53:41
23033 Log: Small tidying up of the selectminbits code, but most
23034 importantly allocate the buffer from the heap using
23035 malloc, not from the stack: using stack causes unaligned
23036 access in LP64 Solaris since stack data is not guaranteed
23037 to be 64-bit aligned, while a fd_set is (it has 1024 longs).
23038 (via Alan Burlison)
23039 Branch: perl
23040 ! Configure
23041____________________________________________________________________________
23042[ 19247] By: ams on 2003/04/17 12:24:57
23043 Log: Subject: Re: [perl #21950] 5.8.x -- :scalar and magic strings
23044 From: Enache Adrian <enache@rdslink.ro>
23045 Date: Thu, 17 Apr 2003 14:35:36 +0300
23046 Message-Id: <20030417113536.GA898@ratsnest.hole>
23047 Branch: perl
23048 ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
23049____________________________________________________________________________
23050[ 19246] By: nick on 2003/04/17 10:44:49
23051 Log: Integrate mainline
23052 Branch: perlio
23053 +> lib/ExtUtils/t/MM_Any.t lib/Locale/Maketext/t/00about.t
23054 +> lib/Locale/Maketext/t/01make.t lib/Locale/Maketext/t/02get.t
23055 +> lib/Locale/Maketext/t/03http.t lib/Net/Ping/t/510_ping_udp.t
23056 +> lib/Pod/t/pod2latex.t lib/Test/Harness/t/pod.t t/io/layers.t
23057 +> t/lib/sample-tests/switches
23058 - lib/Locale/Maketext/test.pl lib/Net/Ping/README
23059 - lib/Pod/t/latex.t
23060 !> (integrate 258 files)
23061____________________________________________________________________________
23062[ 19245] By: jhi on 2003/04/17 09:20:27
23063 Log: Document that the open pragma does not affect
23064 the three-headed hydra, ummm, open.
23065 Branch: perl
23066 ! lib/open.pm
23067____________________________________________________________________________
23068[ 19244] By: jhi on 2003/04/17 06:45:26
23069 Log: More maneuvering closer to proposed POSIX classes
23070 mapping to Unicode: (1) The definitions of "graph" and
23071 "print" are still in flux: move closer back to how Perl
23072 5.8.0 defined it (though drop Co, that did not make sense)
23073 (2) Add U+0085 (NEL) to "space".
23074 Branch: perl
23075 ! lib/unicore/lib/Graph.pl lib/unicore/lib/Print.pl
23076 ! lib/unicore/lib/Space.pl lib/unicore/mktables
23077____________________________________________________________________________
23078[ 19243] By: jhi on 2003/04/17 05:29:24
23079 Log: Detect the 'fast stdio' case.
23080 Branch: perl
23081 ! lib/PerlIO.pm t/io/layers.t
23082____________________________________________________________________________
23083[ 19242] By: jhi on 2003/04/16 20:14:01
23084 Log: Fix up Larry's copyright statements to my best knowledge.
23085 (Lots of Perl 5 source code archaeology was involved.)
23086 Larry didn't make strangled noises when I showed him
23087 the patch, either :-)
23088 Branch: perl
23089 ! EXTERN.h INTERN.h Porting/pumpkin.pod README XSUB.h av.c av.h
23090 ! cc_runtime.h cop.h cv.h deb.c doio.c doop.c dosish.h dump.c
23091 ! embed.h embed.pl embedvar.h fakesdio.h fakethr.h form.h
23092 ! global.sym globals.c gv.c gv.h handy.h hv.c hv.h keywords.h
23093 ! keywords.pl locale.c mg.c mg.h miniperlmain.c nostdio.h
23094 ! numeric.c op.c op.h opcode.h opcode.pl opnames.h pad.c pad.h
23095 ! patchlevel.h perl.c perl.h perlapi.c perlapi.h perlio.h
23096 ! perlsdio.h perlsfio.h perlvars.h pp.c pp.h pp_ctl.c pp_hot.c
23097 ! pp_pack.c pp_sort.c pp_sys.c proto.h reentr.c reentr.h
23098 ! reentr.pl regcomp.c regcomp.h regexec.c regexp.h run.c scope.c
23099 ! scope.h sv.c sv.h taint.c thrdvar.h thread.h toke.c
23100 ! universal.c unixish.h utf8.c utf8.h utfebcdic.h util.c util.h
23101 ! x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y
23102 ! x2p/a2py.c x2p/hash.c x2p/hash.h x2p/proto.h x2p/str.c
23103 ! x2p/str.h x2p/util.c x2p/util.h x2p/walk.c xsutils.c
23104____________________________________________________________________________
23105[ 19241] By: jhi on 2003/04/16 17:24:24
23106 Log: Handle PERLIO= and document a bit.
23107 Branch: perl
23108 ! lib/PerlIO.pm pod/perlrun.pod t/io/layers.t
23109____________________________________________________________________________
23110[ 19240] By: sky on 2003/04/16 16:27:43
23111 Log: Fix double join problem for those places where free
23112 actually means free (solaris for example :)
23113 Fixes bug #16681
23114 Branch: perl
23115 ! ext/threads/t/join.t ext/threads/threads.xs
23116____________________________________________________________________________
23117[ 19239] By: jhi on 2003/04/16 14:57:47
23118 Log: Try to get the layers.t working also for dosish platforms.
23119 Branch: perl
23120 ! lib/PerlIO.pm t/io/layers.t
23121____________________________________________________________________________
23122[ 19238] By: jhi on 2003/04/16 13:27:24
23123 Log: A -C parsed from the #! line can still have line endings in it.
23124 Branch: perl
23125 ! util.c
23126____________________________________________________________________________
23127[ 19237] By: jhi on 2003/04/16 13:23:37
23128 Log: What does an empty PERLIO= mean, anyway?
23129 Branch: perl
23130 ! t/io/layers.t
23131____________________________________________________________________________
23132[ 19236] By: jhi on 2003/04/16 13:09:42
23133 Log: Document the effect of thread creation context.
23134 Branch: perl
23135 ! ext/threads/threads.pm
23136____________________________________________________________________________
23137[ 19235] By: jhi on 2003/04/16 12:13:07
23138 Log: Use the right prototype and a glob is fine (from Rafael).
23139 Branch: perl
23140 ! lib/PerlIO.pm universal.c
23141____________________________________________________________________________
23142[ 19234] By: jhi on 2003/04/16 10:20:46
23143 Log: PerlIO::get_layers() usage tip.
23144 Branch: perl
23145 ! lib/PerlIO.pm
23146____________________________________________________________________________
23147[ 19233] By: jhi on 2003/04/16 10:07:48
23148 Log: Syntax terror.
23149 Branch: perl
23150 ! lib/unicore/mktables
23151____________________________________________________________________________
23152[ 19232] By: jhi on 2003/04/16 09:45:51
23153 Log: Redundant test.
23154 Branch: perl
23155 ! lib/unicore/mktables
23156____________________________________________________________________________
23157[ 19231] By: jhi on 2003/04/16 09:21:25
23158 Log: Synchronize the specifications of the POSIX character
23159 classes alnum, graph, and print closer to the planned
23160 Unicode proposal.
23161 Branch: perl
23162 ! lib/unicore/lib/Alnum.pl lib/unicore/lib/Graph.pl
23163 ! lib/unicore/lib/Print.pl lib/unicore/mktables utf8.c
23164____________________________________________________________________________
23165[ 19230] By: jhi on 2003/04/16 08:57:01
23166 Log: Patch from Merijn.
23167 Branch: perl
23168 ! perl.h
23169____________________________________________________________________________
23170[ 19229] By: jhi on 2003/04/16 08:27:53
23171 Log: metaconfig unit change for #19228.
23172 Branch: metaconfig/U/perl
23173 ! d_modfl.U
23174____________________________________________________________________________
23175[ 19228] By: jhi on 2003/04/16 08:27:26
23176 Log: Thinko in modfl detection.
23177 Branch: perl
23178 ! Configure
23179____________________________________________________________________________
23180[ 19227] By: ams on 2003/04/16 02:32:11
23181 Log: Storable now handles self-tied scalars with NULL mg_obj.
23182 Branch: perl
23183 ! ext/Storable/Storable.xs
23184____________________________________________________________________________
23185[ 19226] By: jhi on 2003/04/15 18:00:21
23186 Log: Upgrade to Pod::LaTeX 0.55.
23187 Branch: perl
23188 + lib/Pod/t/pod2latex.t
23189 - lib/Pod/t/latex.t
23190 ! MANIFEST lib/Pod/LaTeX.pm pod/pod2latex.PL
23191____________________________________________________________________________
23192[ 19225] By: jhi on 2003/04/15 17:01:40
23193 Log: metaconfig unit change for #19224.
23194 Branch: metaconfig
23195 ! U/threads/archname.U
23196 Branch: metaconfig/U/perl
23197 - sanelongdbl.U
23198 ! d_modfl.U
23199____________________________________________________________________________
23200[ 19224] By: jhi on 2003/04/15 17:01:27
23201 Log: The 'disable-longdouble-if-no-modfl-sqrtl' part didn't stick.
23202 Branch: perl
23203 ! Configure
23204____________________________________________________________________________
23205[ 19223] By: jhi on 2003/04/15 16:36:32
23206 Log: Handle PERLIO=stdio, PERLIO=perlio, PERLIO=mmap, and no PERLIO.
23207 Branch: perl
23208 ! t/io/layers.t
23209____________________________________________________________________________
23210[ 19222] By: jhi on 2003/04/15 16:28:54
23211 Log: metaconfig unit change for #19221.
23212 Branch: metaconfig
23213 ! U/modified/libs.U
23214____________________________________________________________________________
23215[ 19221] By: jhi on 2003/04/15 16:27:49
23216 Log: False alarm: no cyclic dependency.
23217 Branch: perl
23218 ! Configure config_h.SH
23219____________________________________________________________________________
23220[ 19220] By: jhi on 2003/04/15 16:09:17
23221 Log: metaconfig unit changes for #19219.
23222 Branch: metaconfig
23223 ! U/compline/byteorder.U U/compline/ccflags.U
23224 ! U/compline/d_fd_set.U U/compline/d_isascii.U
23225 ! U/compline/d_open3.U U/compline/d_stdstdio.U
23226 ! U/compline/d_vprintf.U U/compline/i_time.U
23227 ! U/compline/nblock_io.U U/compline/orderlib.U
23228 ! U/modified/Signal.U U/modified/d_access.U
23229 ! U/modified/d_getpgrp.U U/modified/d_setpgrp.U
23230 ! U/modified/prototype.U U/threads/archname.U
23231 Branch: metaconfig/U/perl
23232 + d_aintl.U d_copysignl.U d_ilogbl.U d_scalbnl.U sanelongdbl.U
23233 ! d_dirfd.U d_dlsymun.U d_fcntl_can_lock.U d_sqrtl.U dlsrc.U
23234 ! fflushall.U fpossize.U i_db.U perlxv.U uselfs.U uselongdbl.U
23235____________________________________________________________________________
23236[ 19219] By: jhi on 2003/04/15 16:08:11
23237 Log: Backport of _most_ of the changes in #19218: not one big
23238 cyclic dependency, though, it must be broken up somehow.
23239 Branch: perl
23240 ! Configure config_h.SH
23241____________________________________________________________________________
23242[ 19218] By: jhi on 2003/04/15 14:09:31
23243 Log: Big patch from Alan Burlison to make Solaris long doubles work.
23244 (Also spreads more <stdlib.h> joy.)
23245 Needs backporting to metaconfig units and introducing the new
23246 symbols to non-Configure lands.
23247 Branch: perl
23248 ! Configure config_h.SH hints/solaris_2.sh numeric.c perl.h pp.c
23249____________________________________________________________________________
23250[ 19217] By: jhi on 2003/04/15 14:01:03
23251 Log: Don't skip the whole test for PERLIO=perlio.
23252 Branch: perl
23253 ! t/io/layers.t
23254____________________________________________________________________________
23255[ 19216] By: jhi on 2003/04/15 13:47:16
23256 Log: Revert #19031 now that #19210 fixed the bug (#17757).
23257 Branch: maint-5.8/perl
23258 ! regexec.c t/op/subst.t
23259____________________________________________________________________________
23260[ 19215] By: jhi on 2003/04/15 05:54:17
23261 Log: Add a test for [perl #17753].
23262 Branch: perl
23263 ! t/op/undef.t
23264____________________________________________________________________________
23265[ 19214] By: jhi on 2003/04/15 05:40:52
23266 Log: "proto.h": 'id' is a reserved word in Objective-C.
23267 Branch: perl
23268 ! embed.fnc op.c proto.h
23269____________________________________________________________________________
23270[ 19213] By: sky on 2003/04/14 21:42:10
23271 Log: Ook, run tests on correct build-dir next time.
23272 We must check if the hv is a stash, otherwise we try to delete
23273 something that is a HvNAME of null..... tests pass better now
23274 Branch: perl
23275 ! gv.c
23276____________________________________________________________________________
23277[ 19212] By: sky on 2003/04/14 21:15:00
23278 Log: Fixes to bugs introduced by PL_stashcache
23279 A) Follow suggestion by Benjamin Goldberg to use hv_delete
23280 instead of hv_delete_ent to avoid creating a temporary SV
23281 B) Don't increment the refcount, sneak it into an IV instead
23282 C) When a GP is a deleted that contains a stash, remove the
23283 corresponding entry since hv might be in use in other places.
23284 D) Note that no test cases test the deletion of packages to catch
23285 this bug.
23286 Branch: perl
23287 ! gv.c hv.c pp_hot.c
23288____________________________________________________________________________
23289[ 19211] By: rgs on 2003/04/14 21:11:11
23290 Log: Mention that "make test_harness" lets messages sent through
23291 standard error out. Complements change #19206.
23292 Branch: perl
23293 ! pod/perlhack.pod
23294____________________________________________________________________________
23295[ 19210] By: rgs on 2003/04/14 20:48:02
23296 Log: Subject: Re: Parse::RecDescent triggers infinete loop in perl5.9.0 and 5.8.1 [perl #17757]
23297 From: Inaba Hiroto <inaba@st.rim.or.jp>
23298 Date: Fri, 21 Mar 2003 17:35:21 +0900
23299 Message-ID: <3E7ACEC8.E0D57221@st.rim.or.jp>
23300 Date: Sat, 22 Mar 2003 11:28:05 +0900
23301 Message-ID: <3E7BCA34.6824269F@st.rim.or.jp>
23302 Branch: perl
23303 ! regexec.c t/op/pat.t
23304____________________________________________________________________________
23305[ 19209] By: jhi on 2003/04/14 20:36:55
23306 Log: PERLIO=perlio requires extra steps.
23307 Branch: perl
23308 ! lib/PerlIO.pm t/io/layers.t
23309____________________________________________________________________________
23310[ 19208] By: jhi on 2003/04/14 20:02:04
23311 Log: Skip as early as possible if no perlio since the
23312 use open would be compile-time.
23313 Branch: perl
23314 ! t/io/layers.t
23315____________________________________________________________________________
23316[ 19207] By: rgs on 2003/04/14 19:34:42
23317 Log: Document and test autovivified dirhandles.
23318 Subject: [perl #21952] [patch] t/op/readdir.t and perlfunc.pod
23319 From: Nathan Torkington (via RT) <perlbug-followup@perl.org>
23320 Date: 12 Apr 2003 12:40:45 -0000
23321 Message-Id: <rt-21952-55079.8.08945458828887@bugs6.perl.org>
23322 Branch: perl
23323 ! pod/perlfunc.pod t/op/readdir.t
23324____________________________________________________________________________
23325[ 19206] By: rgs on 2003/04/14 19:13:26
23326 Log: More docs about running tests and the test suite.
23327 Update perlhack.pod in various places.
23328 Add 'test_harness' as a .PHONY dependency in the Makefile.
23329 Branch: perl
23330 ! Makefile.SH pod/perlhack.pod t/README
23331____________________________________________________________________________
23332[ 19205] By: jhi on 2003/04/14 18:58:01
23333 Log: Build get_layers() also under -Uuseperlio.
23334 Branch: perl
23335 ! universal.c
23336____________________________________________________________________________
23337[ 19204] By: jhi on 2003/04/14 18:48:04
23338 Log: Bump up the version and admonish against aspiring (ab)use.
23339 Branch: perl
23340 ! lib/PerlIO.pm
23341____________________________________________________________________________
23342[ 19203] By: jhi on 2003/04/14 17:35:51
23343 Log: Introduce PerlIO::get_layers() to allow people to peek
23344 at the PerlIO layer stack.
23345 Branch: perl
23346 + t/io/layers.t
23347 ! MANIFEST lib/PerlIO.pm perlio.c perlio.h t/io/open.t
23348 ! universal.c
23349____________________________________________________________________________
23350[ 19202] By: merijn on 2003/04/14 05:42:18
23351 Log: Subject: [PATCH] vms/vms.c waitpid tweak
23352 From: "Craig A. Berry" <craigberry@mac.com>
23353 Date: Mon, 14 Apr 2003 00:43:00 -0500
23354 Message-ID: <3E9A4A64.6030205@mac.com>
23355 Branch: perl
23356 ! vms/vms.c
23357____________________________________________________________________________
23358[ 19201] By: sky on 2003/04/13 19:26:46
23359 Log: Fix bug #16253, use all the CPU that we can :-)
23360 Branch: perl
23361 ! ext/threads/threads.xs
23362____________________________________________________________________________
23363[ 19200] By: sky on 2003/04/13 18:38:58
23364 Log: Fix bug #15893 by creating shared scalars with a refcount of 1
23365 instead of 2 and make push and pop increase the refcount.
23366 Branch: perl
23367 ! ext/threads/shared/shared.xs
23368____________________________________________________________________________
23369[ 19199] By: jhi on 2003/04/13 11:45:42
23370 Log: Because we chdir to 'Big-Dummy' the lib/utf8.pm may be at
23371 ../../lib for the lc() at line 66 (UTF-8 data possible
23372 if using UTF-8 locales).
23373 Branch: perl
23374 ! lib/ExtUtils/t/Install.t
23375____________________________________________________________________________
23376[ 19198] By: jhi on 2003/04/13 09:43:09
23377 Log: The lib/ipc_sysv.t test has a new name.
23378 Branch: perl
23379 ! INSTALL
23380____________________________________________________________________________
23381[ 19197] By: jhi on 2003/04/13 09:32:05
23382 Log: Continue hunting for the cause of the Tru64 failed threaded smokes
23383 most probably introduced by the change #19157. The tweak suggested
23384 by Stephen McCamant trades a possible dangling pointer (CopFILE()
23385 is tricky like that with threads) to a memory leak. (This means
23386 that this tweak shouldn't be left in as-is, but if this helps,
23387 we at least know that the failure was caused by the #19157.)
23388 Branch: perl
23389 ! op.c
23390____________________________________________________________________________
23391[ 19196] By: jhi on 2003/04/13 09:20:02
23392 Log: Upgrade to Net::Ping 2.29.
23393 Branch: perl
23394 + lib/Net/Ping/t/510_ping_udp.t
23395 - lib/Net/Ping/README
23396 ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/Changes
23397____________________________________________________________________________
23398[ 19195] By: jhi on 2003/04/13 09:02:05
23399 Log: Upgrade to Test::Harness 2.27_04.
23400 Branch: perl
23401 + lib/Test/Harness/t/pod.t t/lib/sample-tests/switches
23402 ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Straps.pm
23403 ! lib/Test/Harness/t/test-harness.t
23404____________________________________________________________________________
23405[ 19194] By: rgs on 2003/04/12 21:21:04
23406 Log: Darwin/Rhapsody hints files updates by Wilfredo Sánchez
23407 Branch: perl
23408 ! hints/darwin.sh hints/rhapsody.sh
23409____________________________________________________________________________
23410[ 19193] By: jhi on 2003/04/12 18:46:31
23411 Log: Integrate:
23412 [ 19166]
23413 Subject: [PATCH pod/perlpod.pod] was RE: How cross-platform is `foo 2>&1` these days?
23414 From: Robin Barker <Robin.Barker@npl.co.uk>
23415 Date: Tue, 8 Apr 2003 14:23:04 +0100
23416 Message-ID: <533D273D4014D411AB1D00062938C4D904046395@hotel.npl.co.uk>
23417
23418 [ 19167]
23419 Typos fixes by Stas Bekman.
23420
23421 [ 19168]
23422 Document that perl recognizes 2>&1 on the command-line on VMS.
23423
23424 [ 19171]
23425 Implement support for --help and --version in Getopt::Std
23426 Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
23427 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
23428 Date: Mon, 7 Apr 2003 17:07:15 -0700
23429 Message-ID: <20030408000714.GA953@math.berkeley.edu>
23430
23431 [ 19172]
23432 Try to be more descriptive than just __ANONIO__ which is what
23433 you get when you autovivify filehandles into array/hash elements.
23434
23435 [ 19173]
23436 open(my $fh, ">&", STDOUT) should not warn under strict.
23437
23438 [ 19174]
23439 Even more promotion for -lc128 (long doubles on AIX)
23440 More obvious detection of C compiler
23441 cc_type should not promote to config.sh
23442
23443 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
23444 Date: Wed, 09 Apr 2003 14:31:48 +0200
23445 Message-Id: <20030409143007.B4A4.H.M.BRAND@hccnet.nl>
23446
23447 [ 19175]
23448 In case someone is using UTF-8 locales.
23449
23450 [ 19176]
23451 Also locale names can contain illegal UTF-8.
23452
23453 [ 19177]
23454 perlport information about portably embedding string data.
23455
23456 [ 19179]
23457 I assume the idea was to use the *cwd variables for testing.
23458
23459 [ 19180]
23460 With AFS the cwds have little chance of agreeing.
23461
23462 [ 19181]
23463 Unless Inuits are involved...
23464
23465 [ 19183]
23466 The test doesn't work that well when -Uusedl.
23467 Some of the tests could be salvaged even then I guess.
23468
23469 [ 19184]
23470 Add an option for the grok_xxx() to silently ignore bad digits.
23471
23472 [ 19185]
23473 Noted by Nat: -0 didn't work that well with Unicode.
23474
23475 [ 19186]
23476 Be more descriptive.
23477
23478 [ 19188]
23479 PerlFAQ sync.
23480
23481 [ 19189]
23482 Peter Scott suggests that the docs for base.pm should
23483 state explicitely that base.pm doesn't call import()
23484 on base classes. Plus a few typos.
23485
23486 [ 19190]
23487 Subject: [PATCH] MakeMaker 6.10_02 -> 6.10_03
23488 From: Michael G Schwern <schwern@pobox.com>
23489 Date: Fri, 11 Apr 2003 00:32:02 -0700
23490 Message-ID: <20030411073202.GC5916@windhund.schwern.org>
23491
23492 [ 19191]
23493 Benchmark nit from Nick Clark (in OpenBSD the result could
23494 be a negative zero, -0).
23495 Branch: maint-5.8/perl
23496 !> (integrate 38 files)
23497____________________________________________________________________________
23498[ 19192] By: jhi on 2003/04/12 18:23:40
23499 Log: The debugging aid #19182 didn't.
23500 Branch: perl
23501 ! ext/B/t/deparse.t
23502____________________________________________________________________________
23503[ 19191] By: jhi on 2003/04/12 16:51:12
23504 Log: Benchmark nit from Nick Clark (in OpenBSD the result could
23505 be a negative zero, -0).
23506 Branch: perl
23507 ! lib/Benchmark.t
23508____________________________________________________________________________
23509[ 19190] By: rgs on 2003/04/12 13:41:25
23510 Log: Subject: [PATCH] MakeMaker 6.10_02 -> 6.10_03
23511 From: Michael G Schwern <schwern@pobox.com>
23512 Date: Fri, 11 Apr 2003 00:32:02 -0700
23513 Message-ID: <20030411073202.GC5916@windhund.schwern.org>
23514 Branch: perl
23515 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_MacOS.pm
23516 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
23517 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/TODO
23518 ! lib/ExtUtils/t/00compile.t lib/ExtUtils/t/00setup_dummy.t
23519 ! lib/ExtUtils/t/Installed.t lib/ExtUtils/t/basic.t
23520 ! lib/ExtUtils/t/zz_cleanup_dummy.t
23521____________________________________________________________________________
23522[ 19189] By: rgs on 2003/04/10 20:40:14
23523 Log: Peter Scott suggests that the docs for base.pm should
23524 state explicitely that base.pm doesn't call import()
23525 on base classes. Plus a few typos.
23526 Branch: perl
23527 ! lib/base.pm
23528____________________________________________________________________________
23529[ 19188] By: rgs on 2003/04/10 19:45:08
23530 Log: PerlFAQ sync.
23531 Branch: perl
23532 ! pod/perlfaq.pod pod/perlfaq3.pod pod/perlfaq4.pod
23533 ! pod/perlfaq7.pod pod/perlfaq9.pod
23534____________________________________________________________________________
23535[ 19187] By: rgs on 2003/04/10 19:25:18
23536 Log: Fix bug #21914, 3-arg open + local $fh + strict coredump.
23537 There used to be a nullstash (%{"<none>::"}) to hold illegal
23538 variables under strict 'vars'. It has been removed by change #17942.
23539 This can lead to segfaults during the parsing, because some illegal
23540 variables might have been discarded before the compilation of the
23541 current statement had completed.
23542 Bug analysis and test case by Enache Adrian.
23543 Branch: perl
23544 ! gv.c t/lib/strict/vars
23545____________________________________________________________________________
23546[ 19186] By: jhi on 2003/04/10 19:13:40
23547 Log: Be more descriptive.
23548 Branch: perl
23549 ! MANIFEST
23550____________________________________________________________________________
23551[ 19185] By: jhi on 2003/04/10 19:06:02
23552 Log: Noted by Nat: -0 didn't work that well with Unicode.
23553 Branch: perl
23554 ! perl.c pod/perlrun.pod
23555____________________________________________________________________________
23556[ 19184] By: jhi on 2003/04/10 17:26:43
23557 Log: Add an option for the grok_xxx() to silently ignore bad digits.
23558 Branch: perl
23559 ! numeric.c perl.h
23560____________________________________________________________________________
23561[ 19183] By: jhi on 2003/04/10 10:56:25
23562 Log: The test doesn't work that well when -Uusedl.
23563 Some of the tests could be salvaged even then I guess.
23564 Branch: perl
23565 ! lib/ExtUtils/t/Constant.t
23566____________________________________________________________________________
23567[ 19182] By: jhi on 2003/04/10 09:40:24
23568 Log: A temporary debugging aid for Tru64 threaded builds.
23569 Branch: perl
23570 ! ext/B/t/deparse.t
23571____________________________________________________________________________
23572[ 19181] By: jhi on 2003/04/10 08:02:10
23573 Log: Unless Inuits are involved...
23574 Branch: perl
23575 ! pod/perlrun.pod
23576____________________________________________________________________________
23577[ 19180] By: jhi on 2003/04/10 07:02:44
23578 Log: With AFS the cwds have little chance of agreeing.
23579 Branch: perl
23580 ! ext/Cwd/t/cwd.t
23581____________________________________________________________________________
23582[ 19179] By: jhi on 2003/04/10 06:46:50
23583 Log: I assume the idea was to use the *cwd variables for testing.
23584 Branch: perl
23585 ! ext/Cwd/t/cwd.t
23586____________________________________________________________________________
23587[ 19178] By: jhi on 2003/04/10 04:59:18
23588 Log: Integrate:
23589 [ 18601]
23590 More of the #18600.
23591 Branch: maint-5.8/perl
23592 !> pad.c
23593____________________________________________________________________________
23594[ 19177] By: jhi on 2003/04/10 04:34:48
23595 Log: perlport information about portably embedding string data.
23596 Branch: perl
23597 ! pod/perlport.pod
23598____________________________________________________________________________
23599[ 19176] By: jhi on 2003/04/10 04:18:45
23600 Log: Also locale names can contain illegal UTF-8.
23601 Branch: perl
23602 ! lib/locale.t
23603____________________________________________________________________________
23604[ 19175] By: jhi on 2003/04/10 04:03:48
23605 Log: In case someone is using UTF-8 locales.
23606 Branch: perl
23607 ! lib/ExtUtils/MM_MacOS.pm
23608____________________________________________________________________________
23609[ 19174] By: merijn on 2003/04/09 14:33:12
23610 Log: Even more promotion for -lc128 (long doubles on AIX)
23611 More obvious detection of C compiler
23612 cc_type should not promote to config.sh
23613
23614 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
23615 Date: Wed, 09 Apr 2003 14:31:48 +0200
23616 Message-Id: <20030409143007.B4A4.H.M.BRAND@hccnet.nl>
23617 Branch: perl
23618 ! hints/aix.sh
23619____________________________________________________________________________
23620[ 19173] By: jhi on 2003/04/09 12:39:35
23621 Log: open(my $fh, ">&", STDOUT) should not warn under strict.
23622 Branch: perl
23623 ! op.c t/io/open.t
23624____________________________________________________________________________
23625[ 19172] By: jhi on 2003/04/09 10:40:31
23626 Log: Try to be more descriptive than just __ANONIO__ which is what
23627 you get when you autovivify filehandles into array/hash elements.
23628 Branch: perl
23629 ! doio.c op.c t/io/open.t
23630____________________________________________________________________________
23631[ 19171] By: rgs on 2003/04/08 20:44:20
23632 Log: Implement support for --help and --version in Getopt::Std
23633 Subject: Re: [PATCH 5.8.1 @19053] Getopt::Std
23634 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
23635 Date: Mon, 7 Apr 2003 17:07:15 -0700
23636 Message-ID: <20030408000714.GA953@math.berkeley.edu>
23637 Branch: perl
23638 ! lib/Getopt/Std.pm
23639____________________________________________________________________________
23640[ 19170] By: rgs on 2003/04/08 19:47:05
23641 Log: Subject: [PATCH] Re: Error: Unknown error
23642 From: Enache Adrian <enache@rdslink.ro>
23643 Date: Tue, 8 Apr 2003 07:12:13 +0300
23644 Message-ID: <20030408041213.GA13553@ratsnest.hole>
23645 Branch: perl
23646 ! lib/fields.t lib/strict.t op.c t/lib/strict/subs
23647____________________________________________________________________________
23648[ 19169] By: rgs on 2003/04/08 19:19:34
23649 Log: Subject: [PATCH] (vaguely connected with) [perl #21875] Hash ref transformed as a list
23650 From: Dave Mitchell <davem@fdgroup.com>
23651 Date: Mon, 7 Apr 2003 21:43:17 +0100
23652 Message-ID: <20030407204317.GA8796@fdgroup.com>
23653
23654 The new XTERMORDORDOR lexer expectation must also be named
23655 in debugging perls, to be used in the output of -DT.
23656 Branch: perl
23657 ! perl.h toke.c
23658____________________________________________________________________________
23659[ 19168] By: rgs on 2003/04/08 19:05:22
23660 Log: Document that perl recognizes 2>&1 on the command-line on VMS.
23661 Branch: perl
23662 ! vms/perlvms.pod
23663____________________________________________________________________________
23664[ 19167] By: rgs on 2003/04/08 18:47:18
23665 Log: Typos fixes by Stas Bekman.
23666 Branch: perl
23667 ! cv.h lib/attributes.pm sv.h
23668____________________________________________________________________________
23669[ 19166] By: rgs on 2003/04/08 18:43:22
23670 Log: Subject: [PATCH pod/perlpod.pod] was RE: How cross-platform is `foo 2>&1` these days?
23671 From: Robin Barker <Robin.Barker@npl.co.uk>
23672 Date: Tue, 8 Apr 2003 14:23:04 +0100
23673 Message-ID: <533D273D4014D411AB1D00062938C4D904046395@hotel.npl.co.uk>
23674 Branch: perl
23675 ! pod/perlpod.pod
23676____________________________________________________________________________
23677[ 19165] By: jhi on 2003/04/08 17:43:04
23678 Log: Integrate:
23679 [ 19162]
23680 Subject: Re: [PATCH] ExtUtils::MakeMaker 6.10_02
23681 From: Michael G Schwern <schwern@pobox.com>
23682 Date: Mon, 7 Apr 2003 02:09:17 -0700
23683 Message-ID: <20030407090917.GA9221@windhund.schwern.org>
23684
23685 [ 19163]
23686 The SvGROW() might move the PV.
23687
23688 [ 19164]
23689 Few more words about safe/unsafe signals.
23690 Branch: maint-5.8/perl
23691 +> lib/ExtUtils/t/MM_Any.t
23692 !> (integrate 33 files)
23693____________________________________________________________________________
23694[ 19164] By: jhi on 2003/04/08 04:42:05
23695 Log: Few more words about safe/unsafe signals.
23696 Branch: perl
23697 ! pod/perlipc.pod pod/perlrun.pod pod/perlvar.pod
23698____________________________________________________________________________
23699[ 19163] By: jhi on 2003/04/07 19:25:39
23700 Log: The SvGROW() might move the PV.
23701 Branch: perl
23702 ! pp.c
23703____________________________________________________________________________
23704[ 19162] By: jhi on 2003/04/07 18:23:29
23705 Log: Subject: Re: [PATCH] ExtUtils::MakeMaker 6.10_02
23706 From: Michael G Schwern <schwern@pobox.com>
23707 Date: Mon, 7 Apr 2003 02:09:17 -0700
23708 Message-ID: <20030407090917.GA9221@windhund.schwern.org>
23709 Branch: perl
23710 + lib/ExtUtils/t/MM_Any.t
23711 ! MANIFEST lib/ExtUtils/Command.pm lib/ExtUtils/Command/MM.pm
23712 ! lib/ExtUtils/Install.pm lib/ExtUtils/Installed.pm
23713 ! lib/ExtUtils/Liblist.pm lib/ExtUtils/Liblist/Kid.pm
23714 ! lib/ExtUtils/MM_Any.pm lib/ExtUtils/MM_BeOS.pm
23715 ! lib/ExtUtils/MM_Cygwin.pm lib/ExtUtils/MM_DOS.pm
23716 ! lib/ExtUtils/MM_MacOS.pm lib/ExtUtils/MM_NW5.pm
23717 ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_UWIN.pm
23718 ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
23719 ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MM_Win95.pm
23720 ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/MakeMaker/FAQ.pod
23721 ! lib/ExtUtils/Manifest.pm lib/ExtUtils/PATCHING
23722 ! lib/ExtUtils/README lib/ExtUtils/TODO
23723 ! lib/ExtUtils/t/00compile.t lib/ExtUtils/t/MM_Cygwin.t
23724 ! lib/ExtUtils/t/basic.t t/lib/MakeMaker/Test/Utils.pm
23725____________________________________________________________________________
23726[ 19161] By: jhi on 2003/04/07 04:20:20
23727 Log: Integrate:
23728 [ 19126]
23729 Fix bug #21742. require should be always invoked in
23730 scalar context. This wasn't the case when called from
23731 an eval(""), because the void context doesn't propagate
23732 through the leaveeval op. Instead of making scalarvoid()
23733 handle OP_LEAVEEVAL -- this breaks AutoLoader -- implement
23734 a workaround in doeval().
23735
23736 [ 19127]
23737 Subject: Re: [perl #21744] Deparse bug: "\::" deparsed as "::"
23738 From: Enache Adrian <enache@rdslink.ro>
23739 Date: Sat, 29 Mar 2003 19:45:41 +0200
23740 Message-ID: <20030329174541.GA8138@ratsnest.hole>
23741
23742 [ 19128]
23743 Subject: [PATCH 5.8.0 UTIL] Fix installhtml for splitting and PM/POD conflicts
23744 From: Steve Hay <steve.hay@uk.radan.com>
23745 Date: Thu, 20 Mar 2003 12:34:15 +0000
23746 Message-ID: <3E79B547.6030201@uk.radan.com>
23747 (with a few minor tweaks)
23748
23749 [ 19129]
23750 MM_VMS tweak from Craig Berry:
23751 http://nntp.x.perl.org/group/perl.makemaker/1002
23752
23753 [ 19130]
23754 Cannot portably compare files if one of them is still open
23755 (from Craig Berry).
23756
23757 [ 19131]
23758 Spread IlyaZ's PERL_CORE detection trick.
23759
23760 [ 19132]
23761 #19122 should have been tested on non-glibc system (like AIX)
23762
23763 [ 19133]
23764 Add packname->stash cache before the check if a packname is a
23765 filehandle or a package, it works because only packnames
23766 that have been resolved to stashes are added to the cache,
23767 and when a newIO is created we clean the cache.
23768 Results in roughly 1.8 speed increase for class->method()
23769 calls.
23770
23771 [ 19134]
23772 Fix some small nits, thanks to Rafael.
23773
23774 [ 19135]
23775 Subject: Re: [perl #21765] $s = ""; $n = @a = split(/,/, $s); results in undef $n
23776 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
23777 Date: Tue, 01 Apr 2003 16:32:46 -0800
23778 Message-ID: <u+ii+gzkgqkV092yn@efn.org>
23779
23780 [ 19136]
23781 Fixes for "installhtml --splithead", based on :
23782 Subject: Re: [PATCH 5.8.0 UTIL] Fix installhtml for splitting and PM/POD conflicts
23783 From: Steve Hay <steve.hay@uk.radan.com>
23784 Date: Wed, 02 Apr 2003 11:33:41 +0100
23785 Message-ID: <3E8ABC85.5060807@uk.radan.com>
23786
23787 This also includes a small patch to Pod::Html : when generating
23788 anchor names, play on the safe side and turn every non-alphanumeric
23789 character into an '_'. Moreover, Pod::Html::anchorify() is now
23790 optionally exported.
23791
23792 [ 19137]
23793 Adjust test for the recent change (#19136) to Pod::Html
23794
23795 [ 19138]
23796 Make at least the thread count make sense.
23797
23798 [ 19139]
23799 Make perldiag agree with #19138.
23800
23801 [ 19140]
23802 Subject: [PATCH 5.8.0 DOC] Fix missing functions when splitting perlfunc
23803 From: Steve Hay <steve.hay@uk.radan.com>
23804 Date: Thu, 20 Mar 2003 11:55:01 +0000
23805 Message-ID: <3E79AC15.80307@uk.radan.com>
23806
23807 [ 19141]
23808 Don't recurse from threads to threads/shared (since
23809 threads/shared is built separately, temp solution from
23810 Schwern while MM is being fixed.)
23811
23812 [ 19142]
23813 Subject: Re: [PATCH 5.8.0 DOC] Fix missing functions when splitting perlfunc
23814 From: andreas.koenig@anima.de (Andreas J. Koenig)
23815 Date: Thu, 03 Apr 2003 08:28:52 +0200
23816 Message-ID: <m3u1dgnlgb.fsf@franz.ak.mind.de>
23817
23818 [ 19143]
23819 Subject: [PATCH] VMS %ENV fix (follow-up to 18852)
23820 From: "Craig A. Berry" <craigberry@mac.com>
23821 Date: Wed, 02 Apr 2003 18:09:03 -0600
23822 Message-Id: <5.2.0.9.0.20030402173822.01ba1df0@dcichiexc1>
23823
23824 [ 19144]
23825 Upgrade to Unicode::Normalize 0.21 and Unicode::Collate 0.24,
23826 by SADAHIRO Tomoyuki.
23827
23828 [ 19145]
23829 The manpages don't have to be built by MakeMaker for the
23830 core modules in ext/. Disable this in Devel::PPPort (not
23831 up-to-date on CPAN), Unicode::Normalize (the CPAN version
23832 uses a different Makefile.PL anyway) and XS::APItest
23833 (not CPANized.)
23834
23835 [ 19146]
23836 Heredocs and use encoding didn't work for SJIS;
23837 patch from Inaba Hiroto.
23838
23839 [ 19147]
23840 Subject: [PATCH 5.8.1 @19053] Embedding
23841 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
23842 Date: Mon, 31 Mar 2003 12:39:24 -0800
23843 Message-ID: <20030331203924.GA3602@math.berkeley.edu>
23844
23845 Advertise the pair of macros PERL_SYS_INIT3 / PERL_SYS_TERM
23846 to be used in a C program's main function.
23847
23848 [ 19148]
23849 [perl #21839] perluniintro.pod: nice_string() doesn't escape
23850 literal escape chars -- use Sadahiro-san's fix(es).
23851
23852 [ 19149]
23853 Upgrade to Locale::Maketext 1.04.
23854
23855 [ 19150]
23856 Subject: LD_PRELOAD hack, still badly flawed / a solution
23857 From: Enache Adrian <enache@rdslink.ro>
23858 Date: Thu, 3 Apr 2003 15:50:48 +0300
23859 Message-ID: <20030403125048.GA6107@ratsnest.hole>
23860
23861 On linux, when building a shared library, generate
23862 a small shell wrapper, "preload", that preloads libperl.so
23863 only if it exists. Useful when the 'make' process stops
23864 before the link phase.
23865
23866 [ 19151]
23867 Subject: PATCH (was: Re: [perl #18180] problem with sys:syslog on solaris 8 with perl 5.8.0)
23868 From: Joost van Baal <J.E.vanBaal@uvt.nl>
23869 Date: Mon, 25 Nov 2002 17:35:37 +0100
23870 Message-ID: <20021125163537.GC4745@banach.uvt.nl>
23871
23872 (The .pm patch modified a bit, and removed the false
23873 claim that _PATH_INFO would be coming from syslog.ph)
23874
23875 [ 19152]
23876 Remove unportable ">|" shell syntax
23877 Subject: Re: Change 19150: LD_PRELOAD hack, still badly flawed / a solution
23878 From: Enache Adrian <enache@rdslink.ro>
23879 Date: Sun, 6 Apr 2003 21:13:27 +0300
23880 Message-ID: <20030406181326.GA873@ratsnest.hole>
23881
23882 [ 19153]
23883 Subject: [DOC PATCH] README.solaris and -Dcc=gcc
23884 From: Robert Spier <rspier@pobox.com>
23885 Date: Sat, 05 Apr 2003 21:12:20 -0800
23886 Message-ID: <m37ka88b0r.wl_rspier@pobox.com>
23887
23888 [ 19154]
23889 An unconditional carp is not nice.
23890
23891 [ 19156]
23892 Subject: [PATCH] B::Deparse: sv_no != 0
23893 From: Stephen McCamant <smcc@mit.edu>
23894 Date: Sun, 6 Apr 2003 17:00:48 -0400
23895 Message-ID: <16016.38272.921140.343901@syllepsis.MIT.EDU>
23896
23897 [ 19157]
23898 Subject: CvFILE for constant subs
23899 From: Stephen McCamant <smcc@mit.edu>
23900 Date: Sun, 6 Apr 2003 16:39:13 -0400
23901 Message-ID: <16016.36977.667436.279778@syllepsis.MIT.EDU>
23902
23903 [ 19158]
23904 More WinCE tweaking for Vadim Konovalov.
23905
23906 [ 19159]
23907 Future binary compat wishful thinking:
23908 maint will use the stashcache, but not the dbassertion.
23909
23910 [ 19160]
23911 Time::HiRes: Do not create files in blib directories under core
23912 (from Rafael)
23913 Branch: maint-5.8/perl
23914 +> lib/Locale/Maketext/t/00about.t lib/Locale/Maketext/t/01make.t
23915 +> lib/Locale/Maketext/t/02get.t lib/Locale/Maketext/t/03http.t
23916 - lib/Locale/Maketext/test.pl
23917 !> (integrate 63 files)
23918____________________________________________________________________________
23919[ 19160] By: jhi on 2003/04/07 04:17:38
23920 Log: Time::HiRes: Do not create files in blib directories under core
23921 (from Rafael)
23922 Branch: perl
23923 ! ext/Time/HiRes/Makefile.PL
23924____________________________________________________________________________
23925[ 19159] By: jhi on 2003/04/07 03:53:01
23926 Log: Future binary compat wishful thinking:
23927 maint will use the stashcache, but not the dbassertion.
23928 Branch: perl
23929 ! intrpvar.h
23930____________________________________________________________________________
23931[ 19158] By: jhi on 2003/04/07 03:41:17
23932 Log: More WinCE tweaking for Vadim Konovalov.
23933 Branch: perl
23934 ! wince/Makefile.ce wince/compile-all.bat wince/compile.bat
23935 ! wince/makedist.pl
23936____________________________________________________________________________
23937[ 19157] By: rgs on 2003/04/06 20:53:29
23938 Log: Subject: CvFILE for constant subs
23939 From: Stephen McCamant <smcc@mit.edu>
23940 Date: Sun, 6 Apr 2003 16:39:13 -0400
23941 Message-ID: <16016.36977.667436.279778@syllepsis.MIT.EDU>
23942 Branch: perl
23943 ! op.c
23944____________________________________________________________________________
23945[ 19156] By: rgs on 2003/04/06 20:44:09
23946 Log: Subject: [PATCH] B::Deparse: sv_no != 0
23947 From: Stephen McCamant <smcc@mit.edu>
23948 Date: Sun, 6 Apr 2003 17:00:48 -0400
23949 Message-ID: <16016.38272.921140.343901@syllepsis.MIT.EDU>
23950 Branch: perl
23951 ! ext/B/B/Deparse.pm
23952____________________________________________________________________________
23953[ 19155] By: jhi on 2003/04/06 19:56:30
23954 Log: Integrate:
23955 [ 18900]
23956 Integrate (by hand) change #18386 from maint-5.8
23957 Branch: maint-5.8/perl
23958 !> t/op/split.t
23959____________________________________________________________________________
23960[ 19154] By: jhi on 2003/04/06 19:46:35
23961 Log: An unconditional carp is not nice.
23962 Branch: perl
23963 ! ext/Sys/Syslog/Syslog.pm
23964____________________________________________________________________________
23965[ 19153] By: rgs on 2003/04/06 18:37:58
23966 Log: Subject: [DOC PATCH] README.solaris and -Dcc=gcc
23967 From: Robert Spier <rspier@pobox.com>
23968 Date: Sat, 05 Apr 2003 21:12:20 -0800
23969 Message-ID: <m37ka88b0r.wl_rspier@pobox.com>
23970 Branch: perl
23971 ! README.solaris
23972____________________________________________________________________________
23973[ 19152] By: rgs on 2003/04/06 18:24:38
23974 Log: Remove unportable ">|" shell syntax
23975 Subject: Re: Change 19150: LD_PRELOAD hack, still badly flawed / a solution
23976 From: Enache Adrian <enache@rdslink.ro>
23977 Date: Sun, 6 Apr 2003 21:13:27 +0300
23978 Message-ID: <20030406181326.GA873@ratsnest.hole>
23979 Branch: perl
23980 ! Makefile.SH
23981____________________________________________________________________________
23982[ 19151] By: jhi on 2003/04/06 18:14:44
23983 Log: Subject: PATCH (was: Re: [perl #18180] problem with sys:syslog on solaris 8 with perl 5.8.0)
23984 From: Joost van Baal <J.E.vanBaal@uvt.nl>
23985 Date: Mon, 25 Nov 2002 17:35:37 +0100
23986 Message-ID: <20021125163537.GC4745@banach.uvt.nl>
23987
23988 (The .pm patch modified a bit, and removed the false
23989 claim that _PATH_INFO would be coming from syslog.ph)
23990 Branch: perl
23991 ! ext/Sys/Syslog/Makefile.PL ext/Sys/Syslog/Syslog.pm
23992 ! ext/Sys/Syslog/syslog.t
23993____________________________________________________________________________
23994[ 19150] By: rgs on 2003/04/05 21:10:00
23995 Log: Subject: LD_PRELOAD hack, still badly flawed / a solution
23996 From: Enache Adrian <enache@rdslink.ro>
23997 Date: Thu, 3 Apr 2003 15:50:48 +0300
23998 Message-ID: <20030403125048.GA6107@ratsnest.hole>
23999
24000 On linux, when building a shared library, generate
24001 a small shell wrapper, "preload", that preloads libperl.so
24002 only if it exists. Useful when the 'make' process stops
24003 before the link phase.
24004 Branch: perl
24005 ! Makefile.SH
24006____________________________________________________________________________
24007[ 19149] By: jhi on 2003/04/05 20:44:25
24008 Log: Upgrade to Locale::Maketext 1.04.
24009 Branch: perl
24010 + lib/Locale/Maketext/t/00about.t lib/Locale/Maketext/t/01make.t
24011 + lib/Locale/Maketext/t/02get.t lib/Locale/Maketext/t/03http.t
24012 - lib/Locale/Maketext/test.pl
24013 ! MANIFEST lib/Locale/Maketext.pm lib/Locale/Maketext.pod
24014 ! lib/Locale/Maketext/ChangeLog lib/Locale/Maketext/README
24015____________________________________________________________________________
24016[ 19148] By: jhi on 2003/04/05 20:38:30
24017 Log: perluniintro.pod: nice_string() doesn't escape
24018 literal escape chars -- use Sadahiro-san's fix(es).
24019 Branch: perl
24020 ! pod/perluniintro.pod
24021____________________________________________________________________________
24022[ 19147] By: rgs on 2003/04/05 19:12:30
24023 Log: Subject: [PATCH 5.8.1 @19053] Embedding
24024 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
24025 Date: Mon, 31 Mar 2003 12:39:24 -0800
24026 Message-ID: <20030331203924.GA3602@math.berkeley.edu>
24027
24028 Advertise the pair of macros PERL_SYS_INIT3 / PERL_SYS_TERM
24029 to be used in a C program's main function.
24030 Branch: perl
24031 ! lib/ExtUtils/t/Embed.t pod/perlembed.pod
24032____________________________________________________________________________
24033[ 19146] By: jhi on 2003/04/05 19:08:37
24034 Log: Heredocs and use encoding didn't work for SJIS;
24035 patch from Inaba Hiroto.
24036 Branch: perl
24037 ! toke.c
24038____________________________________________________________________________
24039[ 19145] By: rgs on 2003/04/05 11:45:36
24040 Log: The manpages don't have to be built by MakeMaker for the
24041 core modules in ext/. Disable this in Devel::PPPort (not
24042 up-to-date on CPAN), Unicode::Normalize (the CPAN version
24043 uses a different Makefile.PL anyway) and XS::APItest
24044 (not CPANized.)
24045 Branch: perl
24046 ! ext/Devel/PPPort/Makefile.PL ext/Unicode/Normalize/Makefile.PL
24047 ! ext/XS/APItest/Makefile.PL
24048____________________________________________________________________________
24049[ 19144] By: rgs on 2003/04/05 11:28:22
24050 Log: Upgrade to Unicode::Normalize 0.21 and Unicode::Collate 0.24,
24051 by SADAHIRO Tomoyuki.
24052 Branch: perl
24053 ! ext/Unicode/Normalize/Changes
24054 ! ext/Unicode/Normalize/Normalize.pm
24055 ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
24056 ! ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
24057 ! ext/Unicode/Normalize/t/test.t lib/Unicode/Collate.pm
24058 ! lib/Unicode/Collate/Changes lib/Unicode/Collate/README
24059 ! lib/Unicode/Collate/t/index.t lib/Unicode/Collate/t/test.t
24060____________________________________________________________________________
24061[ 19143] By: merijn on 2003/04/03 08:55:33
24062 Log: Subject: [PATCH] VMS %ENV fix (follow-up to 18852)
24063 From: "Craig A. Berry" <craigberry@mac.com>
24064 Date: Wed, 02 Apr 2003 18:09:03 -0600
24065 Message-Id: <5.2.0.9.0.20030402173822.01ba1df0@dcichiexc1>
24066 Branch: perl
24067 ! vms/vms.c vms/vmsish.h
24068____________________________________________________________________________
24069[ 19142] By: merijn on 2003/04/03 08:50:55
24070 Log: Subject: Re: [PATCH 5.8.0 DOC] Fix missing functions when splitting perlfunc
24071 From: andreas.koenig@anima.de (Andreas J. Koenig)
24072 Date: Thu, 03 Apr 2003 08:28:52 +0200
24073 Message-ID: <m3u1dgnlgb.fsf@franz.ak.mind.de>
24074 Branch: perl
24075 ! lib/Pod/t/Functions.t
24076____________________________________________________________________________
24077[ 19141] By: jhi on 2003/04/03 05:00:36
24078 Log: Don't recurse from threads to threads/shared (since
24079 threads/shared is built separately, temp solution from
24080 Schwern while MM is being fixed.)
24081 Branch: perl
24082 ! ext/threads/Makefile.PL
24083____________________________________________________________________________
24084[ 19140] By: rgs on 2003/04/02 20:41:46
24085 Log: Subject: [PATCH 5.8.0 DOC] Fix missing functions when splitting perlfunc
24086 From: Steve Hay <steve.hay@uk.radan.com>
24087 Date: Thu, 20 Mar 2003 11:55:01 +0000
24088 Message-ID: <3E79AC15.80307@uk.radan.com>
24089 Branch: perl
24090 ! installhtml lib/Pod/Functions.pm pod/perlfunc.pod pod/splitpod
24091____________________________________________________________________________
24092[ 19139] By: jhi on 2003/04/02 19:44:07
24093 Log: Make perldiag agree with #19138.
24094 Branch: perl
24095 ! pod/perldiag.pod
24096____________________________________________________________________________
24097[ 19138] By: jhi on 2003/04/02 19:37:59
24098 Log: Make at least the thread count make sense.
24099 Branch: perl
24100 ! ext/threads/threads.xs
24101____________________________________________________________________________
24102[ 19137] By: rgs on 2003/04/02 19:24:47
24103 Log: Adjust test for the recent change (#19136) to Pod::Html
24104 Branch: perl
24105 ! lib/Pod/t/htmlview.t
24106____________________________________________________________________________
24107[ 19136] By: rgs on 2003/04/02 18:46:31
24108 Log: Fixes for "installhtml --splithead", based on :
24109 Subject: Re: [PATCH 5.8.0 UTIL] Fix installhtml for splitting and PM/POD conflicts
24110 From: Steve Hay <steve.hay@uk.radan.com>
24111 Date: Wed, 02 Apr 2003 11:33:41 +0100
24112 Message-ID: <3E8ABC85.5060807@uk.radan.com>
24113
24114 This also includes a small patch to Pod::Html : when generating
24115 anchor names, play on the safe side and turn every non-alphanumeric
24116 character into an '_'. Moreover, Pod::Html::anchorify() is now
24117 optionally exported.
24118 Branch: perl
24119 ! installhtml lib/Pod/Html.pm
24120____________________________________________________________________________
24121[ 19135] By: rgs on 2003/04/02 18:42:50
24122 Log: Subject: Re: [perl #21765] $s = ""; $n = @a = split(/,/, $s); results in undef $n
24123 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
24124 Date: Tue, 01 Apr 2003 16:32:46 -0800
24125 Message-ID: <u+ii+gzkgqkV092yn@efn.org>
24126 Branch: perl
24127 ! pp.c t/op/split.t
24128____________________________________________________________________________
24129[ 19134] By: sky on 2003/04/02 18:01:40
24130 Log: Fix some small nits, thanks to Rafael.
24131 Branch: perl
24132 ! pp_hot.c
24133____________________________________________________________________________
24134[ 19133] By: sky on 2003/04/02 13:41:14
24135 Log: Add packname->stash cache before the check if a packname is a
24136 filehandle or a package, it works because only packnames
24137 that have been resolved to stashes are added to the cache,
24138 and when a newIO is created we clean the cache.
24139 Results in roughly 1.8 speed increase for class->method()
24140 calls.
24141 Branch: perl
24142 ! embedvar.h gv.c hv.c intrpvar.h perl.c perlapi.h pp_hot.c sv.c
24143____________________________________________________________________________
24144[ 19132] By: merijn on 2003/04/02 11:28:02
24145 Log: #19122 should have been tested on non-glibc system (like AIX)
24146 Branch: perl
24147 ! pp.c
24148____________________________________________________________________________
24149[ 19131] By: jhi on 2003/04/02 05:25:19
24150 Log: Spread IlyaZ's PERL_CORE detection trick.
24151 Branch: perl
24152 ! ext/Encode/Makefile.PL
24153____________________________________________________________________________
24154[ 19130] By: jhi on 2003/04/02 04:42:40
24155 Log: Cannot portably compare files if one of them is still open
24156 (from Craig Berry).
24157 Branch: perl
24158 ! ext/Encode/t/enc_module.t
24159____________________________________________________________________________
24160[ 19129] By: jhi on 2003/04/02 04:30:45
24161 Log: MM_VMS tweak from Craig Berry:
24162 http://nntp.x.perl.org/group/perl.makemaker/1002
24163 Branch: perl
24164 ! lib/ExtUtils/MM_VMS.pm
24165____________________________________________________________________________
24166[ 19128] By: rgs on 2003/04/01 21:30:12
24167 Log: Subject: [PATCH 5.8.0 UTIL] Fix installhtml for splitting and PM/POD conflicts
24168 From: Steve Hay <steve.hay@uk.radan.com>
24169 Date: Thu, 20 Mar 2003 12:34:15 +0000
24170 Message-ID: <3E79B547.6030201@uk.radan.com>
24171 (with a few minor tweaks)
24172 Branch: perl
24173 ! installhtml
24174____________________________________________________________________________
24175[ 19127] By: rgs on 2003/04/01 19:01:20
24176 Log: Subject: Re: [perl #21744] Deparse bug: "\::" deparsed as "::"
24177 From: Enache Adrian <enache@rdslink.ro>
24178 Date: Sat, 29 Mar 2003 19:45:41 +0200
24179 Message-ID: <20030329174541.GA8138@ratsnest.hole>
24180 Branch: perl
24181 ! ext/B/B/Deparse.pm
24182____________________________________________________________________________
24183[ 19126] By: rgs on 2003/04/01 18:39:43
24184 Log: Fix bug #21742. require should be always invoked in
24185 scalar context. This wasn't the case when called from
24186 an eval(""), because the void context doesn't propagate
24187 through the leaveeval op. Instead of making scalarvoid()
24188 handle OP_LEAVEEVAL -- this breaks AutoLoader -- implement
24189 a workaround in doeval().
24190 Branch: perl
24191 ! pp_ctl.c t/comp/require.t
24192____________________________________________________________________________
24193[ 19125] By: jhi on 2003/04/01 17:08:47
24194 Log: Integrate:
24195 [ 19124]
24196 Subject: [patch] fix HiRes.t failures on Stratus VOS
24197 From: "Green, Paul" <Paul.Green@stratus.com>
24198 Date: Tue, 1 Apr 2003 12:37:38 -0500
24199 Message-ID: <A2A34F15EE916148BC4C4748223E67A403D99C9D@exna4.stratus.com>
24200 Branch: maint-5.8/perl
24201 !> hints/vos.sh
24202____________________________________________________________________________
24203[ 19124] By: jhi on 2003/04/01 16:52:28
24204 Log: Subject: [patch] fix HiRes.t failures on Stratus VOS
24205 From: "Green, Paul" <Paul.Green@stratus.com>
24206 Date: Tue, 1 Apr 2003 12:37:38 -0500
24207 Message-ID: <A2A34F15EE916148BC4C4748223E67A403D99C9D@exna4.stratus.com>
24208 Branch: perl
24209 ! hints/vos.sh
24210____________________________________________________________________________
24211[ 19123] By: jhi on 2003/04/01 16:38:55
24212 Log: Integrate:
24213 [ 19113]
24214 Implemented AIX longdouble support in hints/aix.sh, which now
24215 actually work. Thanks to John L. Allen for the hint.
24216
24217 Subject: Re: AIX longdoubles
24218 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
24219 Date: Tue, 01 Apr 2003 17:18:57 +0200
24220 Message-Id: <20030401171819.D8E6.H.M.BRAND@hccnet.nl>
24221
24222 [ 19114]
24223 Subject: [PATCH] Text::Abbrev warnings safe
24224 From: Peter Scott <Peter@PSDT.com>
24225 Date: Fri, 28 Mar 2003 16:34:47 -0800
24226 Message-id: <5.2.0.9.2.20030328161002.00b45f08@shell2.webquarry.com>
24227
24228 [ 19115]
24229 Subject: [PATCH] overdue perlhack.pod corrections for RT
24230 From: Richard.Foley@ubsw.com
24231 Date: Mon, 31 Mar 2003 16:27:14 +0200
24232 Message-ID: <B374141B0A424D4F9CF143CC51B3ADD9857B39@NZURC900PEX1.ubsgs.ubsgroup.net>
24233
24234 [ 19116]
24235 Subject: [PATCH ext/SDBM_File/sdbm/Makefile.PL] MM hackery and whitespace changes
24236 From: Michael G Schwern <schwern@pobox.com>
24237 Date: Mon, 31 Mar 2003 15:16:57 -0800
24238 Message-ID: <20030331231657.GJ17529@windhund.schwern.org>
24239
24240 [ 19117]
24241 Subject: Re: 5.8.1@19053 bug: make minitest fails with threads
24242 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
24243 Date: Tue, 1 Apr 2003 11:02:35 +0200
24244 Message-Id: <20030401110235.3f20ffb2.rgarciasuarez@free.fr>
24245
24246 [ 19118]
24247 Document the _exit() issue with threads in Linux [perl #17057].
24248 Branch: maint-5.8/perl
24249 !> ext/POSIX/POSIX.pod ext/SDBM_File/sdbm/Makefile.PL
24250 !> hints/aix.sh lib/Text/Abbrev.pm lib/Text/Abbrev.t
24251 !> pod/perlhack.pod t/op/getpid.t
24252____________________________________________________________________________
24253[ 19122] By: jhi on 2003/04/01 16:36:52
24254 Log: Integrate:
24255 [ 19119]
24256 Address "5.8.1@19053: crypt_r() takes 128K per thread".
24257 Branch: perl
24258 !> pp.c reentr.c reentr.h reentr.pl
24259____________________________________________________________________________
24260[ 19121] By: jhi on 2003/04/01 16:36:02
24261 Log: Integrate:
24262 [ 19109]
24263 Subject: [PATCH 5.8.1 @19053] Time::HiRes
24264 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
24265 Date: Mon, 31 Mar 2003 12:53:01 -0800
24266 Message-ID: <20030331205301.GA3687@math.berkeley.edu>
24267
24268 [ 19111]
24269 A cleaner way to detect PERL_CORE, from IlyaZ.
24270 Branch: perl
24271 !> ext/Time/HiRes/HiRes.t ext/Time/HiRes/Makefile.PL
24272____________________________________________________________________________
24273[ 19120] By: jhi on 2003/04/01 16:32:03
24274 Log: Integrate:
24275 [ 19106]
24276 Subject: [PATCH 5.8.1 @19053] OS/2-related patches
24277 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
24278 Date: Mon, 31 Mar 2003 12:43:37 -0800
24279 Message-ID: <20030331204337.GA3634@math.berkeley.edu>
24280
24281 and regen Configure.
24282 Branch: perl
24283 ! Configure config_h.SH embedvar.h
24284 !> Makefile.SH embed.fnc embed.h embed.pl ext/threads/threads.xs
24285 !> intrpvar.h makedef.pl os2/Makefile.SHs os2/OS2/ExtAttr/Changes
24286 !> os2/OS2/ExtAttr/ExtAttr.pm os2/OS2/PrfDB/Changes
24287 !> os2/OS2/PrfDB/PrfDB.pm os2/OS2/REXX/DLL/DLL.pm
24288 !> os2/OS2/REXX/REXX.pm os2/dl_os2.c os2/os2.c os2/os2ish.h
24289 !> os2/os2thread.h perlapi.h perlio.c perlvars.h reentr.c
24290 !> reentr.h reentr.pl sv.c
24291____________________________________________________________________________
24292[ 19119] By: jhi on 2003/04/01 16:21:37
24293 Log: Address "5.8.1@19053: crypt_r() takes 128K per thread".
24294 Branch: maint-5.8/perl
24295 ! pp.c reentr.c reentr.h reentr.pl
24296____________________________________________________________________________
24297[ 19118] By: jhi on 2003/04/01 16:17:04
24298 Log: Document the _exit() issue with threads in Linux [perl #17057].
24299 Branch: perl
24300 ! ext/POSIX/POSIX.pod
24301____________________________________________________________________________
24302[ 19117] By: jhi on 2003/04/01 16:07:59
24303 Log: Subject: Re: 5.8.1@19053 bug: make minitest fails with threads
24304 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
24305 Date: Tue, 1 Apr 2003 11:02:35 +0200
24306 Message-Id: <20030401110235.3f20ffb2.rgarciasuarez@free.fr>
24307 Branch: perl
24308 ! t/op/getpid.t
24309____________________________________________________________________________
24310[ 19116] By: jhi on 2003/04/01 16:06:12
24311 Log: Subject: [PATCH ext/SDBM_File/sdbm/Makefile.PL] MM hackery and whitespace changes
24312 From: Michael G Schwern <schwern@pobox.com>
24313 Date: Mon, 31 Mar 2003 15:16:57 -0800
24314 Message-ID: <20030331231657.GJ17529@windhund.schwern.org>
24315 Branch: perl
24316 ! ext/SDBM_File/sdbm/Makefile.PL
24317____________________________________________________________________________
24318[ 19115] By: jhi on 2003/04/01 15:58:45
24319 Log: Subject: [PATCH] overdue perlhack.pod corrections for RT
24320 From: Richard.Foley@ubsw.com
24321 Date: Mon, 31 Mar 2003 16:27:14 +0200
24322 Message-ID: <B374141B0A424D4F9CF143CC51B3ADD9857B39@NZURC900PEX1.ubsgs.ubsgroup.net>
24323 Branch: perl
24324 ! pod/perlhack.pod
24325____________________________________________________________________________
24326[ 19114] By: jhi on 2003/04/01 15:56:27
24327 Log: Subject: [PATCH] Text::Abbrev warnings safe
24328 From: Peter Scott <Peter@PSDT.com>
24329 Date: Fri, 28 Mar 2003 16:34:47 -0800
24330 Message-id: <5.2.0.9.2.20030328161002.00b45f08@shell2.webquarry.com>
24331 Branch: perl
24332 ! lib/Text/Abbrev.pm lib/Text/Abbrev.t
24333____________________________________________________________________________
24334[ 19113] By: merijn on 2003/04/01 14:12:33
24335 Log: Implemented AIX longdouble support in hints/aix.sh, which now
24336 actually work. Thanks to John L. Allen for the hint.
24337
24338 Subject: Re: AIX longdoubles
24339 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
24340 Date: Tue, 01 Apr 2003 17:18:57 +0200
24341 Message-Id: <20030401171819.D8E6.H.M.BRAND@hccnet.nl>
24342 Branch: perl
24343 ! hints/aix.sh
24344____________________________________________________________________________
24345[ 19112] By: nick on 2003/04/01 08:48:50
24346 Log: Integrate mainline
24347 Branch: perlio
24348 +> ext/Time/HiRes/hints/irix.pl lib/CPAN/bin/cpan
24349 +> lib/ExtUtils/MakeMaker/FAQ.pod
24350 +> lib/ExtUtils/MakeMaker/Tutorial.pod
24351 +> lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/NOTES
24352 +> lib/ExtUtils/PATCHING lib/ExtUtils/README lib/ExtUtils/TODO
24353 +> lib/ExtUtils/t/00compile.t lib/ExtUtils/t/Install.t
24354 +> lib/ExtUtils/t/Liblist.t lib/ExtUtils/t/oneliner.t
24355 +> lib/ExtUtils/t/prompt.t lib/ExtUtils/t/split_command.t
24356 +> t/lib/TieIn.pm t/lib/sample-tests/no_output
24357 +> t/lib/sample-tests/segfault t/lib/sample-tests/too_many
24358 +> utils/cpan.PL wince/compile-all.bat wince/makedist.pl
24359 - utils/cpan wince/include/sys/stat.h wince/xbuildall.ksh
24360 - wince/xdistclean.ksh wince/xmakediffs.ksh
24361 !> (integrate 110 files)
24362____________________________________________________________________________
24363[ 19111] By: jhi on 2003/04/01 07:17:01
24364 Log: A cleaner way to detect PERL_CORE, from IlyaZ.
24365 Branch: maint-5.8/perl
24366 ! ext/Time/HiRes/Makefile.PL
24367____________________________________________________________________________
24368[ 19110] By: jhi on 2003/04/01 05:33:03
24369 Log: Integrate:
24370 [ 19042]
24371 Subject: [PATCH] readdir_r for VMS (was Re: [PATCH] configure.com: sig_num, etc.)
24372 From: "Craig A. Berry" <craigberry@mac.com>
24373 Date: Thu, 20 Mar 2003 23:03:36 -0600
24374 Message-ID: <3E7A9D28.1040706@mac.com>
24375 Branch: maint-5.8/perl
24376 !> configure.com vms/vms.c vms/vmsish.h
24377____________________________________________________________________________
24378[ 19109] By: jhi on 2003/04/01 05:25:39
24379 Log: Subject: [PATCH 5.8.1 @19053] Time::HiRes
24380 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
24381 Date: Mon, 31 Mar 2003 12:53:01 -0800
24382 Message-ID: <20030331205301.GA3687@math.berkeley.edu>
24383 Branch: maint-5.8/perl
24384 ! ext/Time/HiRes/HiRes.t
24385____________________________________________________________________________
24386[ 19108] By: jhi on 2003/04/01 05:23:25
24387 Log: metaconfig unit changes for #19107.
24388 Branch: metaconfig
24389 ! U/modified/Findhdr.U U/modified/Head.U U/modified/Init.U
24390 ! U/modified/Oldconfig.U
24391____________________________________________________________________________
24392[ 19107] By: jhi on 2003/04/01 05:23:03
24393 Log: Regen Configure.
24394 Branch: maint-5.8/perl
24395 ! Configure
24396____________________________________________________________________________
24397[ 19106] By: jhi on 2003/04/01 05:11:53
24398 Log: Subject: [PATCH 5.8.1 @19053] OS/2-related patches
24399 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
24400 Date: Mon, 31 Mar 2003 12:43:37 -0800
24401 Message-ID: <20030331204337.GA3634@math.berkeley.edu>
24402 Branch: maint-5.8/perl
24403 ! Configure Makefile.SH embed.fnc embed.h embed.pl embedvar.h
24404 ! ext/threads/threads.xs intrpvar.h makedef.pl os2/Makefile.SHs
24405 ! os2/OS2/ExtAttr/Changes os2/OS2/ExtAttr/ExtAttr.pm
24406 ! os2/OS2/PrfDB/Changes os2/OS2/PrfDB/PrfDB.pm
24407 ! os2/OS2/REXX/DLL/DLL.pm os2/OS2/REXX/REXX.pm os2/dl_os2.c
24408 ! os2/os2.c os2/os2ish.h os2/os2thread.h perlapi.h perlio.c
24409 ! perlvars.h reentr.c reentr.h reentr.pl sv.c
24410____________________________________________________________________________
24411[ 19105] By: jhi on 2003/03/31 10:54:05
24412 Log: Integrate:
24413 [ 19104]
24414 Tabify; strictly speaking unnecessary but anyway...
24415 Branch: maint-5.8/perl
24416 !> MANIFEST
24417____________________________________________________________________________
24418[ 19104] By: jhi on 2003/03/31 10:51:36
24419 Log: Tabify; strictly speaking unnecessary but anyway...
24420 Branch: perl
24421 ! MANIFEST
24422____________________________________________________________________________
24423[ 19103] By: jhi on 2003/03/31 10:41:09
24424 Log: Integrate:
24425 [ 19094]
24426 Upgrade to Time::HiRes 1.44.
24427
24428 [ 19095]
24429 Dave Mitchell noticed that one patch entry was missing
24430 from the Changes.
24431
24432 [ 19096]
24433 switch_A.t is not in maint (noticed by AndreasK).
24434
24435 [ 19097]
24436 Some low-hanging fruit for EBCDIC portability
24437 (or for marking as EBCDIC todos)
24438
24439 [ 19098]
24440 Subject: [PATCH dump.c] stray n_a
24441 From: Michael G Schwern <schwern@pobox.com>
24442 Date: Mon, 31 Mar 2003 00:55:49 -0800
24443 Message-ID: <20030331085549.GB1300@windhund.schwern.org>
24444
24445 [ 19099]
24446 Subject: [PATCH] ExtUtils::MakeMaker 6.03 -> 6.06_05ish
24447 From: Michael G Schwern <schwern@pobox.com>
24448 Date: Mon, 31 Mar 2003 02:42:58 -0800
24449 Message-ID: <20030331104257.GB15327@windhund.schwern.org>
24450
24451 [ 19100]
24452 Upgrade to Encode 1.92.
24453
24454 [ 19101]
24455 Upgrade to podlators 1.26.
24456
24457 [ 19102]
24458 Upgrade to Test::Harness 2.27_02.
24459 Branch: maint-5.8/perl
24460 +> lib/ExtUtils/MakeMaker/FAQ.pod
24461 +> lib/ExtUtils/MakeMaker/Tutorial.pod
24462 +> lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/NOTES
24463 +> lib/ExtUtils/PATCHING lib/ExtUtils/README lib/ExtUtils/TODO
24464 +> lib/ExtUtils/t/00compile.t lib/ExtUtils/t/Install.t
24465 +> lib/ExtUtils/t/Liblist.t lib/ExtUtils/t/oneliner.t
24466 +> lib/ExtUtils/t/prompt.t lib/ExtUtils/t/split_command.t
24467 +> t/lib/TieIn.pm t/lib/sample-tests/no_output
24468 +> t/lib/sample-tests/segfault t/lib/sample-tests/too_many
24469 !> (integrate 64 files)
24470____________________________________________________________________________
24471[ 19102] By: jhi on 2003/03/31 10:36:48
24472 Log: Upgrade to Test::Harness 2.27_02.
24473 Branch: perl
24474 + t/lib/sample-tests/no_output t/lib/sample-tests/segfault
24475 + t/lib/sample-tests/too_many
24476 ! MANIFEST lib/Test/Harness.pm lib/Test/Harness/Changes
24477 ! lib/Test/Harness/Straps.pm lib/Test/Harness/t/strap-analyze.t
24478 ! lib/Test/Harness/t/strap.t lib/Test/Harness/t/test-harness.t
24479____________________________________________________________________________
24480[ 19101] By: jhi on 2003/03/31 10:07:35
24481 Log: Upgrade to podlators 1.26.
24482 Branch: perl
24483 ! lib/Pod/Man.pm
24484____________________________________________________________________________
24485[ 19100] By: jhi on 2003/03/31 10:03:50
24486 Log: Upgrade to Encode 1.92.
24487 Branch: perl
24488 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
24489 ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Guess.pm
24490 ! ext/Encode/t/CJKT.t ext/Encode/t/enc_module.t
24491 ! ext/Encode/ucm/big5-eten.ucm ext/Encode/ucm/big5-hkscs.ucm
24492 ! ext/Encode/ucm/cp932.ucm ext/Encode/ucm/cp936.ucm
24493 ! ext/Encode/ucm/cp949.ucm ext/Encode/ucm/cp950.ucm
24494____________________________________________________________________________
24495[ 19099] By: jhi on 2003/03/31 09:54:52
24496 Log: Subject: [PATCH] ExtUtils::MakeMaker 6.03 -> 6.06_05ish
24497 From: Michael G Schwern <schwern@pobox.com>
24498 Date: Mon, 31 Mar 2003 02:42:58 -0800
24499 Message-ID: <20030331104257.GB15327@windhund.schwern.org>
24500 Branch: perl
24501 + lib/ExtUtils/MakeMaker/FAQ.pod
24502 + lib/ExtUtils/MakeMaker/Tutorial.pod
24503 + lib/ExtUtils/MakeMaker/vmsish.pm lib/ExtUtils/NOTES
24504 + lib/ExtUtils/PATCHING lib/ExtUtils/README lib/ExtUtils/TODO
24505 + lib/ExtUtils/t/00compile.t lib/ExtUtils/t/Install.t
24506 + lib/ExtUtils/t/Liblist.t lib/ExtUtils/t/oneliner.t
24507 + lib/ExtUtils/t/prompt.t lib/ExtUtils/t/split_command.t
24508 + t/lib/TieIn.pm
24509 ! MANIFEST lib/ExtUtils/Changes lib/ExtUtils/Command.pm
24510 ! lib/ExtUtils/Command/MM.pm lib/ExtUtils/Install.pm
24511 ! lib/ExtUtils/Liblist.pm lib/ExtUtils/Liblist/Kid.pm
24512 ! lib/ExtUtils/MANIFEST.SKIP lib/ExtUtils/MM_Any.pm
24513 ! lib/ExtUtils/MM_BeOS.pm lib/ExtUtils/MM_Cygwin.pm
24514 ! lib/ExtUtils/MM_DOS.pm lib/ExtUtils/MM_MacOS.pm
24515 ! lib/ExtUtils/MM_NW5.pm lib/ExtUtils/MM_OS2.pm
24516 ! lib/ExtUtils/MM_UWIN.pm lib/ExtUtils/MM_Unix.pm
24517 ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
24518 ! lib/ExtUtils/MM_Win95.pm lib/ExtUtils/MakeMaker.pm
24519 ! lib/ExtUtils/Manifest.pm lib/ExtUtils/t/00setup_dummy.t
24520 ! lib/ExtUtils/t/Command.t lib/ExtUtils/t/INST.t
24521 ! lib/ExtUtils/t/INST_PREFIX.t lib/ExtUtils/t/MM_BeOS.t
24522 ! lib/ExtUtils/t/MM_Cygwin.t lib/ExtUtils/t/MM_NW5.t
24523 ! lib/ExtUtils/t/MM_OS2.t lib/ExtUtils/t/MM_Unix.t
24524 ! lib/ExtUtils/t/MM_VMS.t lib/ExtUtils/t/MM_Win32.t
24525 ! lib/ExtUtils/t/Manifest.t lib/ExtUtils/t/basic.t
24526 ! lib/ExtUtils/t/hints.t lib/ExtUtils/t/prefixify.t
24527____________________________________________________________________________
24528[ 19098] By: jhi on 2003/03/31 09:36:11
24529 Log: Subject: [PATCH dump.c] stray n_a
24530 From: Michael G Schwern <schwern@pobox.com>
24531 Date: Mon, 31 Mar 2003 00:55:49 -0800
24532 Message-ID: <20030331085549.GB1300@windhund.schwern.org>
24533 Branch: perl
24534 ! dump.c
24535____________________________________________________________________________
24536[ 19097] By: jhi on 2003/03/31 05:00:07
24537 Log: Some low-hanging fruit for EBCDIC portability
24538 (or for marking as EBCDIC todos)
24539 Branch: perl
24540 ! ext/List/Util/t/isvstring.t lib/utf8.t t/run/switchC.t
24541 ! t/uni/write.t
24542____________________________________________________________________________
24543[ 19096] By: jhi on 2003/03/30 19:43:07
24544 Log: switch_A.t is not in maint (noticed by AndreasK).
24545 Branch: maint-5.8/perl
24546 ! MANIFEST
24547____________________________________________________________________________
24548[ 19095] By: jhi on 2003/03/30 18:58:49
24549 Log: Dave Mitchell noticed that one patch entry was missing
24550 from the Changes.
24551 Branch: maint-5.8/perl
24552 ! Changes
24553____________________________________________________________________________
24554[ 19094] By: jhi on 2003/03/30 15:54:35
24555 Log: Upgrade to Time::HiRes 1.44.
24556 Branch: perl
24557 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
24558____________________________________________________________________________
24559[ 19093] By: jhi on 2003/03/30 15:16:16
24560 Log: Integrate:
24561 [ 19074]
24562 Missing final \n.
24563
24564 [ 19076]
24565 Craig Berry: remove extra (.
24566
24567 [ 19077]
24568 Feeding illegal QP (like \x80) to this
24569 ./perl -Ilib -wne 'use PerlIO::via::QuotedPrint;BEGIN{binmode(STDIN, ":via(QuotedPrint)")};print'
24570 caused a coredump in av_length() <- nextargv() because
24571 the av was NULL. I don't know that returning Nullfp is
24572 the best thing to do, but it dodges the segfault and
24573 introduces no test failures.
24574
24575 [ 19078]
24576 It seems that in Tru64 V5 gcc cannot be used to
24577 compile a threaded Perl because <pthread.h> explicitly
24578 checks for supported compilers (gcc not being one of them).
24579 This is not so bad since the system C compiler is always there.
24580
24581 [ 19079]
24582 Subject: [DOCPATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
24583 From: Nicholas Clark <nick@unfortu.net>
24584 Date: Thu, 27 Mar 2003 22:37:35 +0000
24585 Message-ID: <20030327223735.GD277@Bagpuss.unfortu.net>
24586
24587 [ 19080]
24588 Minor rephrasing in perlopentut,
24589 noticed by Bob Wilkinson (RT [perl #21725])
24590
24591 [ 19081]
24592 Subject: [unPATCH] Re: Smoke [5.8.1] 19076 FAIL(F) openbsd 3.2 (i386/1 cpu)
24593 From: Nicholas Clark <nick@unfortu.net>
24594 Date: Sat, 29 Mar 2003 18:58:09 +0000
24595 Message-ID: <20030329185807.GL274@Bagpuss.unfortu.net>
24596
24597 [ 19082]
24598 IRIX 5.3 can have PF_LINK defined to be AF_LINK but
24599 not defined AF_LINK.
24600
24601 [ 19084]
24602 gethostbyname('localhost') is not that portable.
24603 inet_aton('localhost') in IRIX 5.3 returned an undef,
24604 which in turn made pack_sockaddr_in to barf on zero
24605 length in_addr.
24606
24607 [ 19085]
24608 In IRIX 5.3 being too POSIXly hides the struct timespec.
24609
24610 [ 19086]
24611 In IRIX 5.3 the cc is awfully confused about the prototype
24612 of select().
24613
24614 [ 19087]
24615 In IRIX 5.3 turn off some of the warnings that cannot
24616 really be helped (e.g. warnings coming from system headers,
24617 or linker warnings during Configure).
24618
24619 [ 19088]
24620 Another victim of IRIX 5.3's inability to resolve 'localhost'
24621 as the test expects.
24622
24623 [ 19089]
24624 Re-sort MANIFEST (LC_ALL=C sort -fo MANIFEST MANIFEST)
24625
24626 [ 19090]
24627 Ending strings is customary (typo from #19084).
24628
24629 [ 19091]
24630 Not all compilers like #ifdefs within cpp macros
24631 (follow-up on #19086)
24632
24633 [ 19092]
24634 IRIX 5.3 update.
24635 Branch: maint-5.8/perl
24636 +> ext/Time/HiRes/hints/irix.pl
24637 !> MANIFEST README.irix README.tru64 doio.c dump.c
24638 !> ext/Socket/Socket.t ext/Socket/Socket.xs hints/dec_osf.sh
24639 !> hints/irix_5.sh lib/Attribute/Handlers/Changes
24640 !> lib/Net/hostent.t pod/perlapi.pod pod/perlfunc.pod
24641 !> pod/perlopentut.pod pod/perlport.pod pp_sys.c sv.h
24642____________________________________________________________________________
24643[ 19092] By: jhi on 2003/03/30 15:09:02
24644 Log: IRIX 5.3 update.
24645 Branch: perl
24646 ! README.irix
24647____________________________________________________________________________
24648[ 19091] By: jhi on 2003/03/30 10:26:32
24649 Log: Not all compilers like #ifdefs within cpp macros
24650 (follow-up on #19086)
24651 Branch: perl
24652 ! pp_sys.c
24653____________________________________________________________________________
24654[ 19090] By: jhi on 2003/03/30 09:50:33
24655 Log: Ending strings is customary (typo from #19084).
24656 Branch: perl
24657 ! ext/Socket/Socket.t
24658____________________________________________________________________________
24659[ 19089] By: jhi on 2003/03/30 09:24:08
24660 Log: Re-sort MANIFEST (LC_ALL=C sort -fo MANIFEST MANIFEST)
24661 Branch: perl
24662 ! MANIFEST
24663____________________________________________________________________________
24664[ 19088] By: jhi on 2003/03/30 09:09:42
24665 Log: Another victim of IRIX 5.3's inability to resolve 'localhost'
24666 as the test expects.
24667 Branch: perl
24668 ! lib/Net/hostent.t
24669____________________________________________________________________________
24670[ 19087] By: jhi on 2003/03/30 09:08:07
24671 Log: In IRIX 5.3 turn off some of the warnings that cannot
24672 really be helped (e.g. warnings coming from system headers,
24673 or linker warnings during Configure).
24674 Branch: perl
24675 ! hints/irix_5.sh
24676____________________________________________________________________________
24677[ 19086] By: jhi on 2003/03/30 08:59:24
24678 Log: In IRIX 5.3 the cc is awfully confused about the prototype
24679 of select().
24680 Branch: perl
24681 ! hints/irix_5.sh pp_sys.c
24682____________________________________________________________________________
24683[ 19085] By: jhi on 2003/03/30 08:43:53
24684 Log: In IRIX 5.3 being too POSIXly hides the struct timespec.
24685 Branch: perl
24686 + ext/Time/HiRes/hints/irix.pl
24687 ! MANIFEST
24688____________________________________________________________________________
24689[ 19084] By: jhi on 2003/03/30 08:31:53
24690 Log: gethostbyname('localhost') is not that portable.
24691 inet_aton('localhost') in IRIX 5.3 returned an undef,
24692 which in turn made pack_sockaddr_in to barf on zero
24693 length in_addr.
24694 Branch: perl
24695 ! ext/Socket/Socket.t pod/perlfunc.pod pod/perlport.pod
24696____________________________________________________________________________
24697[ 19083] By: jhi on 2003/03/30 07:49:46
24698 Log: Subject: [PATCH] COW formats (was Re: Smoke [5.9.0] 19044 FAIL(F) linux 2.4.18-3 (i686/1 cpu))
24699 From: Nicholas Clark <nick@unfortu.net>
24700 Date: Sun, 30 Mar 2003 00:35:48 +0000
24701 Message-ID: <20030330003547.GO274@Bagpuss.unfortu.net>
24702 Branch: perl
24703 ! sv.c
24704____________________________________________________________________________
24705[ 19082] By: jhi on 2003/03/29 21:18:32
24706 Log: IRIX 5.3 can have PF_LINK defined to be AF_LINK but
24707 not defined AF_LINK.
24708 Branch: perl
24709 ! ext/Socket/Socket.xs
24710____________________________________________________________________________
24711[ 19081] By: jhi on 2003/03/29 20:41:56
24712 Log: Subject: [unPATCH] Re: Smoke [5.8.1] 19076 FAIL(F) openbsd 3.2 (i386/1 cpu)
24713 From: Nicholas Clark <nick@unfortu.net>
24714 Date: Sat, 29 Mar 2003 18:58:09 +0000
24715 Message-ID: <20030329185807.GL274@Bagpuss.unfortu.net>
24716 Branch: perl
24717 ! dump.c
24718____________________________________________________________________________
24719[ 19080] By: rgs on 2003/03/29 20:39:34
24720 Log: Minor rephrasing in perlopentut,
24721 noticed by Bob Wilkinson (RT [perl #21725])
24722 Branch: perl
24723 ! pod/perlopentut.pod
24724____________________________________________________________________________
24725[ 19079] By: rgs on 2003/03/29 20:21:11
24726 Log: Subject: [DOCPATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
24727 From: Nicholas Clark <nick@unfortu.net>
24728 Date: Thu, 27 Mar 2003 22:37:35 +0000
24729 Message-ID: <20030327223735.GD277@Bagpuss.unfortu.net>
24730 Branch: perl
24731 ! pod/perlapi.pod sv.h
24732____________________________________________________________________________
24733[ 19078] By: jhi on 2003/03/29 07:23:00
24734 Log: It seems that in Tru64 V5 gcc cannot be used to
24735 compile a threaded Perl because <pthread.h> explicitly
24736 checks for supported compilers (gcc not being one of them).
24737 This is not so bad since the system C compiler is always there.
24738 Branch: perl
24739 ! README.tru64 hints/dec_osf.sh
24740____________________________________________________________________________
24741[ 19077] By: jhi on 2003/03/28 06:03:16
24742 Log: Feeding illegal QP (like \x80) to this
24743 ./perl -Ilib -wne 'use PerlIO::via::QuotedPrint;BEGIN{binmode(STDIN, ":via(QuotedPrint)")};print'
24744 caused a coredump in av_length() <- nextargv() because
24745 the av was NULL. I don't know that returning Nullfp is
24746 the best thing to do, but it dodges the segfault and
24747 introduces no test failures.
24748 Branch: perl
24749 ! doio.c
24750____________________________________________________________________________
24751[ 19076] By: jhi on 2003/03/27 18:49:53
24752 Log: Craig Berry: remove extra (.
24753 Branch: maint-5.8/perl
24754 ! vms/vms.c
24755____________________________________________________________________________
24756[ 19075] By: jhi on 2003/03/27 18:47:50
24757 Log: Have to get this thing started.
24758 Branch: maint-5.8/perl
24759 ! pod/perldelta.pod
24760____________________________________________________________________________
24761[ 19074] By: jhi on 2003/03/27 18:17:20
24762 Log: Missing final \n.
24763 Branch: perl
24764 ! lib/Attribute/Handlers/Changes
24765____________________________________________________________________________
24766[ 19073] By: jhi on 2003/03/27 04:25:46
24767 Log: Integrate:
24768 [ 19062]
24769 Subject: [PATCH README.qnx] for QNX 6.2
24770 From: Norton Allen <allen@huarp.harvard.edu>
24771 Date: Tue, 25 Mar 2003 12:09:42 -0500 (est)
24772 Message-Id: <200303251709.MAA11391@bottesini.harvard.edu>
24773
24774 [ 19063]
24775 Subject: [perl #21648] Doc typo in Net::servent
24776 From: Andy Lester (via RT) <perlbug-followup@perl.org>
24777 Date: 22 Mar 2003 05:02:31 -0000
24778 Message-Id: <rt-21648-53986.0.682889311382979@bugs6.perl.org>
24779
24780 [ 19064]
24781 Subject: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.
24782 From: Dave Mitchell <davem@fdgroup.com>
24783 Date: Thu, 20 Mar 2003 01:26:19 +0000
24784 Message-ID: <20030320012619.C19869@fdgroup.com>
24785
24786 Subject: Re: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.
24787 From: Dave Mitchell <davem@fdgroup.com>
24788 Date: Mon, 24 Mar 2003 16:06:51 +0000
24789 Message-ID: <20030324160651.D1798@fdgroup.com>
24790
24791 [ 19065]
24792 Add a file utils/cpan.PL to generate the "cpan" utility,
24793 also separately maintained on CPAN, and now moved as
24794 lib/CPAN/bin/cpan. Tweak installperl to avoid installing
24795 this last file.
24796
24797 [ 19066]
24798 Upgrade to Term::ANSIColor 1.07.
24799
24800 [ 19067]
24801 VMS counterpart of change #19065
24802
24803 [ 19068]
24804 Win32 counterpart of change #19065
24805
24806 [ 19070]
24807 Subject: [patch] for Stratus VOS
24808 From: "Green, Paul" <Paul.Green@stratus.com>
24809 Date: Wed, 26 Mar 2003 17:24:38 -0500
24810 Message-ID: <A2A34F15EE916148BC4C4748223E67A403D99C74@exna4.stratus.com>
24811 (plus a small tweak to the test script)
24812
24813 [ 19072]
24814 Subject: [perl #21672] IO::New and undefined filename behaviour
24815 From: "mike@exegenix.com (via RT)" <perlbug-followup@perl.org>
24816 Date: 24 Mar 2003 16:29:08 -0000
24817 Message-Id: <rt-21672-54038.2.07650993465862@bugs6.perl.org>
24818 plus a regression test
24819 Branch: maint-5.8/perl
24820 +> lib/CPAN/bin/cpan utils/cpan.PL
24821 - utils/cpan
24822 !> MANIFEST README.qnx README.vos ext/IO/lib/IO/File.pm
24823 !> installperl lib/FileHandle.t lib/Net/servent.pm
24824 !> lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
24825 !> lib/Term/ANSIColor/README pp_ctl.c pp_hot.c scope.c
24826 !> t/op/args.t t/op/pack.t utils/Makefile
24827 !> vms/descrip_mms.template win32/Makefile win32/makefile.mk
24828____________________________________________________________________________
24829[ 19072] By: rgs on 2003/03/26 22:30:09
24830 Log: Subject: [perl #21672] IO::New and undefined filename behaviour
24831 From: "mike@exegenix.com (via RT)" <perlbug-followup@perl.org>
24832 Date: 24 Mar 2003 16:29:08 -0000
24833 Message-Id: <rt-21672-54038.2.07650993465862@bugs6.perl.org>
24834 plus a regression test
24835 Branch: perl
24836 ! ext/IO/lib/IO/File.pm lib/FileHandle.t
24837____________________________________________________________________________
24838[ 19071] By: rgs on 2003/03/26 22:08:16
24839 Log: Better version of change #19069
24840 Subject: [PATCH] Re: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
24841 From: Nicholas Clark <nick@unfortu.net>
24842 Date: Wed, 26 Mar 2003 23:01:46 +0000
24843 Message-ID: <20030326230145.GC279@Bagpuss.unfortu.net>
24844 Branch: perl
24845 ! pp_hot.c sv.c t/op/readline.t
24846____________________________________________________________________________
24847[ 19070] By: rgs on 2003/03/26 21:31:55
24848 Log: Subject: [patch] for Stratus VOS
24849 From: "Green, Paul" <Paul.Green@stratus.com>
24850 Date: Wed, 26 Mar 2003 17:24:38 -0500
24851 Message-ID: <A2A34F15EE916148BC4C4748223E67A403D99C74@exna4.stratus.com>
24852 (plus a small tweak to the test script)
24853 Branch: perl
24854 ! README.vos t/op/pack.t
24855____________________________________________________________________________
24856[ 19069] By: rgs on 2003/03/26 21:14:33
24857 Log: Subject: [PATCH] Re: [perl #21614] 5.8.0 Unbalanced string table refcount
24858 From: Nicholas Clark <nick@unfortu.net>
24859 Date: Tue, 25 Mar 2003 22:59:17 +0000
24860 Message-ID: <20030325225917.GE284@Bagpuss.unfortu.net>
24861 Branch: perl
24862 ! sv.c t/op/readline.t
24863____________________________________________________________________________
24864[ 19068] By: rgs on 2003/03/26 20:53:18
24865 Log: Win32 counterpart of change #19065
24866 Branch: perl
24867 ! win32/Makefile win32/makefile.mk
24868____________________________________________________________________________
24869[ 19067] By: rgs on 2003/03/26 20:34:32
24870 Log: VMS counterpart of change #19065
24871 Branch: perl
24872 ! vms/descrip_mms.template
24873____________________________________________________________________________
24874[ 19066] By: jhi on 2003/03/26 20:05:40
24875 Log: Upgrade to Term::ANSIColor 1.07.
24876 Branch: perl
24877 ! lib/Term/ANSIColor.pm lib/Term/ANSIColor/ChangeLog
24878 ! lib/Term/ANSIColor/README
24879____________________________________________________________________________
24880[ 19065] By: rgs on 2003/03/26 19:55:20
24881 Log: Add a file utils/cpan.PL to generate the "cpan" utility,
24882 also separately maintained on CPAN, and now moved as
24883 lib/CPAN/bin/cpan. Tweak installperl to avoid installing
24884 this last file.
24885 Branch: perl
24886 + utils/cpan.PL
24887 +> lib/CPAN/bin/cpan
24888 - utils/cpan
24889 ! MANIFEST installperl utils/Makefile
24890____________________________________________________________________________
24891[ 19064] By: jhi on 2003/03/26 19:48:32
24892 Log: Subject: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.
24893 From: Dave Mitchell <davem@fdgroup.com>
24894 Date: Thu, 20 Mar 2003 01:26:19 +0000
24895 Message-ID: <20030320012619.C19869@fdgroup.com>
24896
24897 Subject: Re: [PATCH] Re: [perl #21542] local $_ [0] = $_ [0] fails.
24898 From: Dave Mitchell <davem@fdgroup.com>
24899 Date: Mon, 24 Mar 2003 16:06:51 +0000
24900 Message-ID: <20030324160651.D1798@fdgroup.com>
24901 Branch: perl
24902 ! pp_ctl.c pp_hot.c scope.c t/op/args.t
24903____________________________________________________________________________
24904[ 19063] By: jhi on 2003/03/26 19:33:09
24905 Log: Subject: [perl #21648] Doc typo in Net::servent
24906 From: Andy Lester (via RT) <perlbug-followup@perl.org>
24907 Date: 22 Mar 2003 05:02:31 -0000
24908 Message-Id: <rt-21648-53986.0.682889311382979@bugs6.perl.org>
24909 Branch: perl
24910 ! lib/Net/servent.pm
24911____________________________________________________________________________
24912[ 19062] By: jhi on 2003/03/26 19:29:39
24913 Log: Subject: [PATCH README.qnx] for QNX 6.2
24914 From: Norton Allen <allen@huarp.harvard.edu>
24915 Date: Tue, 25 Mar 2003 12:09:42 -0500 (est)
24916 Message-Id: <200303251709.MAA11391@bottesini.harvard.edu>
24917 Branch: perl
24918 ! README.qnx
24919____________________________________________________________________________
24920[ 19061] By: jhi on 2003/03/26 19:23:37
24921 Log: Integrate:
24922 [ 19055]
24923 Subject: no more 'make install && make test' with shared libperl.so on Linux
24924 From: Enache Adrian <enache@rdslink.ro>
24925 Date: Sat, 22 Mar 2003 22:49:49 +0200
24926 Message-ID: <20030322204949.GB794@ratsnest.hole>
24927
24928 This is a slightly more defensive patch than Chip's patch that
24929 fell through the cracks, but does the same
24930 Subject: Shared libperl.so and build issues
24931 From: Chip Turner <cturner@redhat.com>
24932 Date: Tue 31 Dec 2002 17:21
24933
24934 [ 19056]
24935 Subject: Re: Smoke [5.9.0] 19055 FAIL(m) linux 2.4.18-3 (i686/1 cpu)
24936 From: Enache Adrian <enache@rdslink.ro>
24937 Date: Mon, 24 Mar 2003 23:56:25 +0200
24938 Message-ID: <20030324215625.GB853@ratsnest.hole>
24939
24940 [ 19057]
24941 Typo, spotted by Doru Petrescu
24942 Message-ID: <Pine.LNX.4.31.0303241134170.13160-100000@linux.kappa.ro>
24943
24944 [ 19058]
24945 Subject: [PATCH pod/perlhist.pod] Adding the latest version of Perl
24946 From: Michael G Schwern <schwern@pobox.com>
24947 Date: Mon, 24 Mar 2003 00:50:39 -0800
24948 Message-ID: <20030324085039.GA19981@windhund.schwern.org>
24949
24950 [ 19059]
24951 Change 19056 wasn't good enough.
24952 ldlibpth should be changed later, to avoid spaces to be quoted.
24953
24954 [ 19060]
24955 Subject: [PATCH] lib/vmsish.t GMT bug fix
24956 From: "Craig A. Berry" <craigberry@mac.com>
24957 Date: Tue, 25 Mar 2003 22:52:58 -0600
24958 Message-ID: <3E81322A.3040508@mac.com>
24959 Branch: maint-5.8/perl
24960 !> Makefile.SH ext/Data/Dumper/Dumper.pm lib/vmsish.t
24961 !> pod/perlhist.pod
24962____________________________________________________________________________
24963[ 19060] By: merijn on 2003/03/26 13:13:23
24964 Log: Subject: [PATCH] lib/vmsish.t GMT bug fix
24965 From: "Craig A. Berry" <craigberry@mac.com>
24966 Date: Tue, 25 Mar 2003 22:52:58 -0600
24967 Message-ID: <3E81322A.3040508@mac.com>
24968 Branch: perl
24969 ! lib/vmsish.t
24970____________________________________________________________________________
24971[ 19059] By: rgs on 2003/03/24 21:43:03
24972 Log: Change 19056 wasn't good enough.
24973 ldlibpth should be changed later, to avoid spaces to be quoted.
24974 Branch: perl
24975 ! Makefile.SH
24976____________________________________________________________________________
24977[ 19058] By: rgs on 2003/03/24 21:37:59
24978 Log: Subject: [PATCH pod/perlhist.pod] Adding the latest version of Perl
24979 From: Michael G Schwern <schwern@pobox.com>
24980 Date: Mon, 24 Mar 2003 00:50:39 -0800
24981 Message-ID: <20030324085039.GA19981@windhund.schwern.org>
24982 Branch: perl
24983 ! pod/perlhist.pod
24984____________________________________________________________________________
24985[ 19057] By: rgs on 2003/03/24 21:33:43
24986 Log: Typo, spotted by Doru Petrescu
24987 Message-ID: <Pine.LNX.4.31.0303241134170.13160-100000@linux.kappa.ro>
24988 Branch: perl
24989 ! ext/Data/Dumper/Dumper.pm
24990____________________________________________________________________________
24991[ 19056] By: rgs on 2003/03/24 21:05:48
24992 Log: Subject: Re: Smoke [5.9.0] 19055 FAIL(m) linux 2.4.18-3 (i686/1 cpu)
24993 From: Enache Adrian <enache@rdslink.ro>
24994 Date: Mon, 24 Mar 2003 23:56:25 +0200
24995 Message-ID: <20030324215625.GB853@ratsnest.hole>
24996 Branch: perl
24997 ! Makefile.SH
24998____________________________________________________________________________
24999[ 19055] By: merijn on 2003/03/24 07:05:39
25000 Log: Subject: no more 'make install && make test' with shared libperl.so on Linux
25001 From: Enache Adrian <enache@rdslink.ro>
25002 Date: Sat, 22 Mar 2003 22:49:49 +0200
25003 Message-ID: <20030322204949.GB794@ratsnest.hole>
25004
25005 This is a slightly more defensive patch than Chip's patch that
25006 fell through the cracks, but does the same
25007 Subject: Shared libperl.so and build issues
25008 From: Chip Turner <cturner@redhat.com>
25009 Date: Tue 31 Dec 2002 17:21
25010 Branch: perl
25011 ! Makefile.SH
25012____________________________________________________________________________
25013[ 19054] By: merijn on 2003/03/24 06:54:23
25014 Log: Subject: [PATCH bleadperl] vms.c thread clean-up
25015 From: "Craig A. Berry" <craigberry@mac.com>
25016 Date: Sun, 23 Mar 2003 15:32:58 -0600
25017 Message-ID: <3E7E280A.5000304@mac.com>
25018 Branch: perl
25019 ! vms/vms.c
25020____________________________________________________________________________
25021[ 19053] By: jhi on 2003/03/24 04:44:50
25022 Log: Integrate:
25023 [ 19051]
25024 WinCE update from Vadim Konovalov.
25025
25026 [ 19052]
25027 For change #19051: a new .bat to CRLF.
25028 Branch: maint-5.8/perl
25029 +> wince/compile-all.bat wince/makedist.pl
25030 - wince/include/sys/stat.h wince/xbuildall.ksh
25031 - wince/xdistclean.ksh wince/xmakediffs.ksh
25032 !> MANIFEST Porting/makerel README.ce dosish.h wince/Makefile.ce
25033 !> wince/compile.bat wince/config.ce
25034____________________________________________________________________________
25035[ 19052] By: jhi on 2003/03/24 04:28:13
25036 Log: For change #19051: a new .bat to CRLF.
25037 Branch: perl
25038 ! Porting/makerel
25039____________________________________________________________________________
25040[ 19051] By: jhi on 2003/03/24 04:27:55
25041 Log: WinCE update from Vadim Konovalov.
25042 Branch: perl
25043 + wince/compile-all.bat wince/makedist.pl
25044 - wince/include/sys/stat.h wince/xbuildall.ksh
25045 - wince/xdistclean.ksh wince/xmakediffs.ksh
25046 ! MANIFEST README.ce dosish.h wince/Makefile.ce
25047 ! wince/compile.bat wince/config.ce
25048____________________________________________________________________________
25049[ 19050] By: jhi on 2003/03/24 04:25:15
25050 Log: Oops (change #19013 missed changing the Perl version number).
25051 Branch: perl
25052 ! cygwin/perlld.in
25053____________________________________________________________________________
25054[ 19049] By: jhi on 2003/03/24 04:10:00
25055 Log: Subject: [PATCH maintperl] vms.c threads tweak
25056 From: "Craig A. Berry" <craigberry@mac.com>
25057 Date: Sun, 23 Mar 2003 14:57:56 -0600
25058 Message-ID: <3E7E1FD4.3000704@mac.com>
25059 Branch: maint-5.8/perl
25060 ! vms/vms.c
25061____________________________________________________________________________
25062[ 19048] By: jhi on 2003/03/23 17:56:22
25063 Log: Integrate:
25064 [ 19043]
25065 Subject: [PATCH] perlsub.pod and perlsyn.pod: better organise scoping info for modifiers
25066 From: Martien Verbruggen <mgjv@tradingpost.com.au>
25067 Date: Sat, 15 Mar 2003 12:31:47 +1100
25068 Message-Id: <slrnb750k3.j8t.mgjv@martien.heliotrope.home>
25069
25070 [ 19044]
25071 Subject: [PATCH] p4genpatch
25072 From: andreas.koenig@anima.de (Andreas J. Koenig)
25073 Date: Sat, 15 Mar 2003 12:04:18 +0100
25074 Message-ID: <m3hea4gabx.fsf@k242.linux.bogus>
25075 Branch: maint-5.8/perl
25076 !> Porting/p4genpatch pod/perlsub.pod pod/perlsyn.pod
25077____________________________________________________________________________
25078[ 19047] By: jhi on 2003/03/23 17:54:33
25079 Log: Integrate from maint-5.8:
25080 [ 19045]
25081 If no IVSIZE == 8, no need for modulo_1.
25082 Branch: perl
25083 !> pp.c
25084____________________________________________________________________________
25085[ 19046] By: nick on 2003/03/22 16:19:37
25086 Log: Integrate mainline
25087 Branch: perlio
25088 +> ext/Data/Dumper/t/pair.t ext/Encode/t/enc_data.t regen_lib.pl
25089 - regen_headers.pl
25090 !> (integrate 179 files)
25091____________________________________________________________________________
25092[ 19045] By: jhi on 2003/03/22 09:32:52
25093 Log: If no IVSIZE == 8, no need for modulo_1.
25094 Branch: maint-5.8/perl
25095 ! pp.c
25096____________________________________________________________________________
25097[ 19044] By: rgs on 2003/03/21 21:09:15
25098 Log: Subject: [PATCH] p4genpatch
25099 From: andreas.koenig@anima.de (Andreas J. Koenig)
25100 Date: Sat, 15 Mar 2003 12:04:18 +0100
25101 Message-ID: <m3hea4gabx.fsf@k242.linux.bogus>
25102 Branch: perl
25103 ! Porting/p4genpatch
25104____________________________________________________________________________
25105[ 19043] By: rgs on 2003/03/21 20:43:55
25106 Log: Subject: [PATCH] perlsub.pod and perlsyn.pod: better organise scoping info for modifiers
25107 From: Martien Verbruggen <mgjv@tradingpost.com.au>
25108 Date: Sat, 15 Mar 2003 12:31:47 +1100
25109 Message-Id: <slrnb750k3.j8t.mgjv@martien.heliotrope.home>
25110 Branch: perl
25111 ! pod/perlsub.pod pod/perlsyn.pod
25112____________________________________________________________________________
25113[ 19042] By: merijn on 2003/03/21 07:45:54
25114 Log: Subject: [PATCH] readdir_r for VMS (was Re: [PATCH] configure.com: sig_num, etc.)
25115 From: "Craig A. Berry" <craigberry@mac.com>
25116 Date: Thu, 20 Mar 2003 23:03:36 -0600
25117 Message-ID: <3E7A9D28.1040706@mac.com>
25118 Branch: perl
25119 ! configure.com vms/vms.c vms/vmsish.h
25120____________________________________________________________________________
25121[ 19041] By: jhi on 2003/03/21 05:24:28
25122 Log: Update Changes.
25123 Branch: maint-5.8/perl
25124 ! Changes patchlevel.h
25125____________________________________________________________________________
25126[ 19040] By: jhi on 2003/03/21 05:00:59
25127 Log: Integrate:
25128 [ 19021]
25129 The description of SIG_SIZE was off.
25130
25131 [ 19037]
25132 Subject: [DOC-PATCH] for README.cygwin, bleadperl version
25133 From: "Gerrit P. Haase" <gp@familiehaase.de>
25134 Date: Thu, 20 Mar 2003 21:23:28 +0100
25135 Message-ID: <941032389637.20030320212328@familiehaase.de>
25136
25137 [ 19038]
25138 Subject: Re: Bytecode? Back into service.
25139 From: Enache Adrian <enache@rdslink.ro>
25140 Date: Thu, 20 Mar 2003 07:38:39 +0200
25141 Message-ID: <20030320053839.GA4044@ratsnest.hole>
25142
25143 [ 19039]
25144 Subject: Re: [patch] [perl #21628] rcatline issue
25145 From: Enache Adrian <enache@rdslink.ro>
25146 Date: Thu, 20 Mar 2003 22:39:06 +0200
25147 Message-ID: <20030320203906.GA31199@ratsnest.hole>
25148 Branch: maint-5.8/perl
25149 !> Configure MANIFEST NetWare/config_H.wc Porting/Glossary
25150 !> Porting/config.sh Porting/config_H README.cygwin bytecode.pl
25151 !> config_h.SH ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
25152 !> ext/ByteLoader/byterun.h op.c plan9/config.plan9
25153 !> plan9/config_h.sample pp_hot.c t/op/readline.t
25154 !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
25155 !> win32/config_H.vc64 wince/config_H.ce
25156____________________________________________________________________________
25157[ 19039] By: rgs on 2003/03/20 22:40:38
25158 Log: Subject: Re: [patch] [perl #21628] rcatline issue
25159 From: Enache Adrian <enache@rdslink.ro>
25160 Date: Thu, 20 Mar 2003 22:39:06 +0200
25161 Message-ID: <20030320203906.GA31199@ratsnest.hole>
25162 Branch: perl
25163 ! MANIFEST pp_hot.c t/op/readline.t
25164____________________________________________________________________________
25165[ 19038] By: rgs on 2003/03/20 22:07:50
25166 Log: Subject: Re: Bytecode? Back into service.
25167 From: Enache Adrian <enache@rdslink.ro>
25168 Date: Thu, 20 Mar 2003 07:38:39 +0200
25169 Message-ID: <20030320053839.GA4044@ratsnest.hole>
25170 Branch: perl
25171 ! bytecode.pl ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
25172 ! ext/ByteLoader/byterun.h op.c
25173____________________________________________________________________________
25174[ 19037] By: rgs on 2003/03/20 20:16:43
25175 Log: Subject: [DOC-PATCH] for README.cygwin, bleadperl version
25176 From: "Gerrit P. Haase" <gp@familiehaase.de>
25177 Date: Thu, 20 Mar 2003 21:23:28 +0100
25178 Message-ID: <941032389637.20030320212328@familiehaase.de>
25179 Branch: perl
25180 ! README.cygwin
25181____________________________________________________________________________
25182[ 19036] By: jhi on 2003/03/20 05:23:15
25183 Log: Integrate:
25184 [ 19033]
25185 file test operators weren't doing the right thing if the SV
25186 passed to them wasn't NUL-terminated
25187
25188 [ 19034]
25189 ensure SVs returned by Win32::Get{Short,Full}PathName() are
25190 NUL-terminated
25191 Branch: perl
25192 !> doio.c win32/win32.c
25193____________________________________________________________________________
25194[ 19035] By: jhi on 2003/03/20 05:22:27
25195 Log: Integrate:
25196 [ 19033]
25197 file test operators weren't doing the right thing if the SV
25198 passed to them wasn't NUL-terminated
25199
25200 [ 19034]
25201 ensure SVs returned by Win32::Get{Short,Full}PathName() are
25202 NUL-terminated
25203 Branch: maint-5.8/perl
25204 !> doio.c win32/win32.c
25205____________________________________________________________________________
25206[ 19034] By: gsar on 2003/03/20 01:31:39
25207 Log: ensure SVs returned by Win32::Get{Short,Full}PathName() are
25208 NUL-terminated
25209 Branch: maint-5.6/perl
25210 ! win32/win32.c
25211____________________________________________________________________________
25212[ 19033] By: gsar on 2003/03/20 01:30:46
25213 Log: file test operators weren't doing the right thing if the SV
25214 passed to them wasn't NUL-terminated
25215 Branch: maint-5.6/perl
25216 ! doio.c
25217____________________________________________________________________________
25218[ 19032] By: gsar on 2003/03/19 23:22:56
25219 Log: regenerate win32/config_H.*
25220 Branch: maint-5.8/perl
25221 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
25222 ! win32/config_H.vc64
25223____________________________________________________________________________
25224[ 19031] By: jhi on 2003/03/19 19:56:15
25225 Log: Subject: Re: Parse::RecDescent triggers infinete loop in perl5.9.0 and 5.8.1 [perl #17757]
25226 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
25227 Date: Wed, 19 Mar 2003 11:32:25 +0100
25228 Message-Id: <20030319113225.3aadf2fc.rgarciasuarez@free.fr>
25229
25230 Retract #18533 for now.
25231 Branch: maint-5.8/perl
25232 ! regexec.c t/op/subst.t
25233____________________________________________________________________________
25234[ 19030] By: jhi on 2003/03/19 15:57:49
25235 Log: Integrate:
25236 [ 19020]
25237 Minor updates of Wolfgang's pack patch
25238
25239 Subject: Re: pack changes and related fixes
25240 From: Philip Newton <Philip.Newton@gmx.net>
25241 Date: Tue, 18 Mar 2003 06:19:30 +0100
25242 Message-ID: <tb9d7vo1ocb14o73lnhabbmh5bsjoe5m46@4ax.com>
25243
25244 [ 19023]
25245 Subject: [PATCH] poll() help for VMS
25246 From: "Craig A. Berry" <craigberry@mac.com>
25247 Date: Tue, 18 Mar 2003 01:10:10 -0600
25248 Message-ID: <3E76C652.30205@mac.com>
25249
25250 [ 19024]
25251 Subject: [PATCH] VMS pod install tweaks
25252 From: "Craig A. Berry" <craigberry@mac.com>
25253 Date: Sat, 15 Mar 2003 16:06:07 -0600
25254 Message-ID: <3E73A3CF.3060502@mac.com>
25255
25256 [ 19025]
25257 Subject: [PATCH] [perl #9990] avoid goto &tmpsub coredump
25258 From: Dave Mitchell <davem@fdgroup.com>
25259 Date: Tue, 18 Mar 2003 21:55:05 +0000
25260 Message-ID: <20030318215505.A16787@fdgroup.com>
25261
25262 [ 19026]
25263 Update the DB_File instructions in Tru64.
25264
25265 [ 19028]
25266 Better wording as requested by Rafael, and
25267 the module is BerkeleyDB, not BerkeleyFile.
25268 Branch: maint-5.8/perl
25269 !> README.tru64 configure.com embed.fnc ext/IO/poll.h
25270 !> pod/perldiag.pod pp_ctl.c t/op/goto.t vms/descrip_mms.template
25271____________________________________________________________________________
25272[ 19029] By: jhi on 2003/03/19 15:42:44
25273 Log: Integrate:
25274 [ 19014]
25275 clarify behaviour of $a++
25276
25277 [ 19015]
25278 add comment at undef postinc special case
25279
25280 [ 19016]
25281 add tests for existing behaviour of undef postinc/dec
25282
25283 [ 19017]
25284 according to the new Porting/Glossary, sig_num doesn't have an
25285 extra '0' at the end
25286
25287 [ 19018]
25288 there is no trailing NULL in sig_name or sig_num, so don't
25289 talk about it
25290 Branch: maint-5.8/perl
25291 !> Porting/Glossary pod/perlop.pod pp.c t/op/inc.t
25292 !> win32/config.bc win32/config.gc win32/config.vc
25293 !> win32/config.vc64
25294____________________________________________________________________________
25295[ 19028] By: jhi on 2003/03/19 09:46:27
25296 Log: Better wording as requested by Rafael, and
25297 the module is BerkeleyDB, not BerkeleyFile.
25298 Branch: perl
25299 ! README.tru64
25300____________________________________________________________________________
25301[ 19027] By: jhi on 2003/03/19 09:38:54
25302 Log: Synchronize t/op/pack.t:s between blead and maint with
25303 a fake success for maint (test for a blead feature not
25304 merged into maint) so that the test numberings don't drift
25305 unnecessarily. Not necessarily a long-term thing to do
25306 (if blead gets even more new features), but works for now.
25307 Branch: maint-5.8/perl
25308 ! t/op/pack.t
25309____________________________________________________________________________
25310[ 19026] By: jhi on 2003/03/19 09:11:43
25311 Log: Update the DB_File instructions in Tru64.
25312 Branch: perl
25313 ! README.tru64
25314____________________________________________________________________________
25315[ 19025] By: rgs on 2003/03/18 21:59:33
25316 Log: Subject: [PATCH] [perl #9990] avoid goto &tmpsub coredump
25317 From: Dave Mitchell <davem@fdgroup.com>
25318 Date: Tue, 18 Mar 2003 21:55:05 +0000
25319 Message-ID: <20030318215505.A16787@fdgroup.com>
25320 Branch: perl
25321 ! pp_ctl.c t/op/goto.t
25322____________________________________________________________________________
25323[ 19024] By: rgs on 2003/03/18 21:24:27
25324 Log: Subject: [PATCH] VMS pod install tweaks
25325 From: "Craig A. Berry" <craigberry@mac.com>
25326 Date: Sat, 15 Mar 2003 16:06:07 -0600
25327 Message-ID: <3E73A3CF.3060502@mac.com>
25328 Branch: perl
25329 ! vms/descrip_mms.template
25330____________________________________________________________________________
25331[ 19023] By: rgs on 2003/03/18 21:22:03
25332 Log: Subject: [PATCH] poll() help for VMS
25333 From: "Craig A. Berry" <craigberry@mac.com>
25334 Date: Tue, 18 Mar 2003 01:10:10 -0600
25335 Message-ID: <3E76C652.30205@mac.com>
25336 Branch: perl
25337 ! configure.com ext/IO/poll.h
25338____________________________________________________________________________
25339[ 19022] By: jhi on 2003/03/18 06:56:45
25340 Log: metaconfig unit change for #19021.
25341 Branch: metaconfig
25342 ! U/modified/sig_name.U
25343____________________________________________________________________________
25344[ 19021] By: jhi on 2003/03/18 06:56:26
25345 Log: The description of SIG_SIZE was off.
25346 Branch: perl
25347 ! Configure NetWare/config_H.wc Porting/Glossary
25348 ! Porting/config.sh Porting/config_H config_h.SH
25349 ! plan9/config.plan9 plan9/config_h.sample win32/config_H.bc
25350 ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
25351 ! wince/config_H.ce
25352____________________________________________________________________________
25353[ 19020] By: merijn on 2003/03/18 05:45:50
25354 Log: Minor updates of Wolfgang's pack patch
25355
25356 Subject: Re: pack changes and related fixes
25357 From: Philip Newton <Philip.Newton@gmx.net>
25358 Date: Tue, 18 Mar 2003 06:19:30 +0100
25359 Message-ID: <tb9d7vo1ocb14o73lnhabbmh5bsjoe5m46@4ax.com>
25360 Branch: perl
25361 ! embed.fnc pod/perldiag.pod
25362____________________________________________________________________________
25363[ 19019] By: gsar on 2003/03/18 05:06:07
25364 Log: regenerate win32/config_H.*
25365 Branch: perl
25366 ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
25367 ! win32/config_H.vc64
25368____________________________________________________________________________
25369[ 19018] By: gsar on 2003/03/18 03:02:38
25370 Log: there is no trailing NULL in sig_name or sig_num, so don't
25371 talk about it
25372 Branch: perl
25373 ! Porting/Glossary
25374____________________________________________________________________________
25375[ 19017] By: gsar on 2003/03/18 03:01:02
25376 Log: according to the new Porting/Glossary, sig_num doesn't have an
25377 extra '0' at the end
25378 Branch: perl
25379 ! win32/config.bc win32/config.gc win32/config.vc
25380 ! win32/config.vc64
25381____________________________________________________________________________
25382[ 19016] By: hv on 2003/03/18 00:52:09
25383 Log: add tests for existing behaviour of undef postinc/dec
25384 Branch: perl
25385 ! t/op/inc.t
25386____________________________________________________________________________
25387[ 19015] By: hv on 2003/03/18 00:46:18
25388 Log: add comment at undef postinc special case
25389 Branch: perl
25390 ! pp.c
25391____________________________________________________________________________
25392[ 19014] By: hv on 2003/03/18 00:27:19
25393 Log: clarify behaviour of $a++
25394 Branch: perl
25395 ! pod/perlop.pod
25396____________________________________________________________________________
25397[ 19013] By: jhi on 2003/03/17 19:52:06
25398 Log: Integrate:
25399 [ 19012]
25400 We don't have the new Perl at this stage.
25401 Branch: perl
25402 !> cygwin/perlld.in
25403____________________________________________________________________________
25404[ 19012] By: jhi on 2003/03/17 19:50:06
25405 Log: We don't have the new Perl at this stage.
25406 Branch: maint-5.8/perl
25407 ! cygwin/perlld.in
25408____________________________________________________________________________
25409[ 19011] By: jhi on 2003/03/17 19:15:23
25410 Log: Integrate:
25411 [ 19010]
25412 Subject: pack changes and related fixes
25413 From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
25414 Date: Mon, 17 Mar 2003 13:55:37 +0100
25415 Message-ID: <75A46BF1A9D8D311863A00508B6259A405F17EB8@ATTMSX4>
25416 Branch: maint-5.8/perl
25417 !> embed.fnc embed.h lib/diagnostics.pm perl.h pod/perldiag.pod
25418 !> pod/perlfunc.pod pod/perlpacktut.pod pp_pack.c proto.h
25419 !> t/lib/warnings/pp_pack t/op/pack.t
25420____________________________________________________________________________
25421[ 19010] By: jhi on 2003/03/17 17:16:44
25422 Log: Subject: pack changes and related fixes
25423 From: LAUN Wolfgang <wolfgang.laun@alcatel.at>
25424 Date: Mon, 17 Mar 2003 13:55:37 +0100
25425 Message-ID: <75A46BF1A9D8D311863A00508B6259A405F17EB8@ATTMSX4>
25426 Branch: perl
25427 ! embed.fnc embed.h lib/diagnostics.pm perl.h pod/perldiag.pod
25428 ! pod/perlfunc.pod pod/perlpacktut.pod pp_pack.c proto.h
25429 ! t/lib/warnings/pp_pack t/op/pack.t
25430____________________________________________________________________________
25431[ 19009] By: jhi on 2003/03/17 11:08:20
25432 Log: Pseudohashes die hard -- go with Rick Delaney's idea
25433 of blessing the href at $phash->[0] as 'pseudohash',
25434 so the avhv_index() can then check for that. Now:
25435 (1) thingies got via fields::new() do not warn
25436 (2) blessed manually constructed phashes warn
25437 (3) unblessed manually constructed phashes warn
25438 While the idea of using the Hash::Util lock_hash/unlock_hash
25439 on the href was enticing, it didn't quite work transparently
25440 since it changed the error message from "No such pseudo-hash
25441 field ..." to "Attempt to access disallowed key ...".
25442 Branch: maint-5.8/perl
25443 ! av.c lib/fields.pm t/lib/warnings/av
25444____________________________________________________________________________
25445[ 19008] By: jhi on 2003/03/17 04:59:15
25446 Log: Integrate:
25447 [ 18994]
25448 Fix for [perl #21479] Term::ReadLine(::Stub) doesn't set UTF-8 flag.
25449 Should work both for PERL_UNICODE/-C and use encoding 'foo';
25450
25451 [ 18995]
25452 Signedness nits.
25453
25454 [ 18996]
25455 Turn on UTF-8 flag only if the $str is valid utf8
25456 (pointed out by Dan Kogai).
25457
25458 [ 18997]
25459 IRIX ls -l marks sockets with 'S'.
25460
25461 [ 18998]
25462 This seems to fix (well, dodge) the problems in FreeBSD for
25463 Enache Adrian; in _theory_ this patch could be good for NetBSD,
25464 too, but Alian gets a core dump already at subtest #9 (anyone
25465 with a real NetBSD, Alian's is a VMware one, which has in the
25466 past caused similar odd crashes). OpenBSD threaded build result
25467 still unknown.
25468
25469 [ 18999]
25470 Stay within know facts: what platforms the skippage helps,
25471 and in which it is not needed.
25472
25473 [ 19000]
25474 Subject: [Patch] Maintperl versioning for Cygwin
25475 From: "Gerrit P. Haase" <gp@familiehaase.de>
25476 Date: Sun, 16 Mar 2003 22:24:19 +0100
25477 Message-ID: <152690440450.20030316222419@familiehaase.de>
25478
25479 [ 19001]
25480 getservbyname_r() kaputt in OpenBSD (might get fixed
25481 for 3.3, but only might)
25482
25483 [ 19002]
25484 Subject: [perl #19898] [PATCH] forking to Perl children with IPC::Open3
25485 From: Adam Spiers (via RT) <perlbug-followup@perl.org>
25486 Date: 10 Jan 2003 10:59:44 -0000
25487 Message-Id: <rt-19898-47213.12.0892150698178@bugs6.perl.org>
25488
25489 [ 19003]
25490 Subject: [perl #20724] Patch for dprofpp
25491 From: Nicholas "Oxhøj" (via RT) <perlbug-followup@perl.org>
25492 Date: 5 Feb 2003 08:41:17 -0000
25493 Message-Id: <rt-20724-50329.7.50247680562964@bugs6.perl.org>
25494
25495 [ 19004]
25496 Subject: [patch] utils/h2xs.PL (get rid of \t and '')
25497 From: Stas Bekman <stas@stason.org>
25498 Date: Fri, 14 Feb 2003 11:59:53 +1100
25499 Message-ID: <3E4C3F89.6050005@stason.org>
25500
25501 [ 19005]
25502 Subject: Patch for Data::Dumper 2.12 to Allow Custom Hash Key/Value Separator
25503 From: chocolateboy <chocolateboy@chocolatey.com>
25504 Date: Sat, 22 Feb 2003 12:17:28 +0000
25505 Message-ID: <3E576A58.8010901@chocolatey.com>
25506 Branch: maint-5.8/perl
25507 +> ext/Data/Dumper/t/pair.t
25508 !> MANIFEST ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
25509 !> ext/POSIX/t/posix.t hints/openbsd.sh lib/IPC/Open3.pm
25510 !> lib/Term/ReadLine.pm regcomp.c t/op/stat.t utils/dprofpp.PL
25511 !> utils/h2xs.PL
25512____________________________________________________________________________
25513[ 19007] By: jhi on 2003/03/17 04:45:40
25514 Log: Integrate:
25515 [ 19006]
25516 Subject: Re: [Patch] Maintperl versioning for Cygwin
25517 From: Slaven Rezic <slaven@rezic.de>
25518 Date: 17 Mar 2003 00:42:43 +0100
25519 Message-ID: <87ptoqev4c.fsf@vran.herceg.de>
25520 Branch: perl
25521 !> cygwin/perlld.in
25522____________________________________________________________________________
25523[ 19006] By: jhi on 2003/03/17 04:44:03
25524 Log: Subject: Re: [Patch] Maintperl versioning for Cygwin
25525 From: Slaven Rezic <slaven@rezic.de>
25526 Date: 17 Mar 2003 00:42:43 +0100
25527 Message-ID: <87ptoqev4c.fsf@vran.herceg.de>
25528 Branch: maint-5.8/perl
25529 ! cygwin/perlld.in
25530____________________________________________________________________________
25531[ 19005] By: hv on 2003/03/17 02:06:20
25532 Log: Subject: Patch for Data::Dumper 2.12 to Allow Custom Hash Key/Value Separator
25533 From: chocolateboy <chocolateboy@chocolatey.com>
25534 Date: Sat, 22 Feb 2003 12:17:28 +0000
25535 Message-ID: <3E576A58.8010901@chocolatey.com>
25536 Branch: perl
25537 + ext/Data/Dumper/t/pair.t
25538 ! MANIFEST ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
25539____________________________________________________________________________
25540[ 19004] By: hv on 2003/03/17 01:38:23
25541 Log: Subject: [patch] utils/h2xs.PL (get rid of \t and '')
25542 From: Stas Bekman <stas@stason.org>
25543 Date: Fri, 14 Feb 2003 11:59:53 +1100
25544 Message-ID: <3E4C3F89.6050005@stason.org>
25545 Branch: perl
25546 ! utils/h2xs.PL
25547____________________________________________________________________________
25548[ 19003] By: hv on 2003/03/17 01:23:02
25549 Log: Subject: [perl #20724] Patch for dprofpp
25550 From: Nicholas "Oxhøj" (via RT) <perlbug-followup@perl.org>
25551 Date: 5 Feb 2003 08:41:17 -0000
25552 Message-Id: <rt-20724-50329.7.50247680562964@bugs6.perl.org>
25553 Branch: perl
25554 ! utils/dprofpp.PL
25555____________________________________________________________________________
25556[ 19002] By: hv on 2003/03/16 23:36:57
25557 Log: Subject: [perl #19898] [PATCH] forking to Perl children with IPC::Open3
25558 From: Adam Spiers (via RT) <perlbug-followup@perl.org>
25559 Date: 10 Jan 2003 10:59:44 -0000
25560 Message-Id: <rt-19898-47213.12.0892150698178@bugs6.perl.org>
25561 Branch: perl
25562 ! lib/IPC/Open3.pm
25563____________________________________________________________________________
25564[ 19001] By: jhi on 2003/03/16 21:50:24
25565 Log: getservbyname_r() kaputt in OpenBSD (might get fixed
25566 for 3.3, but only might)
25567 Branch: perl
25568 ! hints/openbsd.sh
25569____________________________________________________________________________
25570[ 19000] By: jhi on 2003/03/16 21:38:39
25571 Log: Subject: [Patch] Maintperl versioning for Cygwin
25572 From: "Gerrit P. Haase" <gp@familiehaase.de>
25573 Date: Sun, 16 Mar 2003 22:24:19 +0100
25574 Message-ID: <152690440450.20030316222419@familiehaase.de>
25575 Branch: maint-5.8/perl
25576 ! cygwin/perlld.in
25577____________________________________________________________________________
25578[ 18999] By: jhi on 2003/03/16 21:33:49
25579 Log: Stay within know facts: what platforms the skippage helps,
25580 and in which it is not needed.
25581 Branch: perl
25582 ! ext/POSIX/t/posix.t
25583____________________________________________________________________________
25584[ 18998] By: jhi on 2003/03/16 18:15:42
25585 Log: This seems to fix (well, dodge) the problems in FreeBSD for
25586 Enache Adrian; in _theory_ this patch could be good for NetBSD,
25587 too, but Alian gets a core dump already at subtest #9 (anyone
25588 with a real NetBSD, Alian's is a VMware one, which has in the
25589 past caused similar odd crashes). OpenBSD threaded build result
25590 still unknown.
25591 Branch: perl
25592 ! ext/POSIX/t/posix.t
25593____________________________________________________________________________
25594[ 18997] By: jhi on 2003/03/16 18:07:30
25595 Log: IRIX ls -l marks sockets with 'S'.
25596 Branch: perl
25597 ! t/op/stat.t
25598____________________________________________________________________________
25599[ 18996] By: jhi on 2003/03/16 17:41:42
25600 Log: Turn on UTF-8 flag only if the $str is valid utf8
25601 (pointed out by Dan Kogai).
25602 Branch: perl
25603 ! lib/Term/ReadLine.pm
25604____________________________________________________________________________
25605[ 18995] By: jhi on 2003/03/16 16:40:06
25606 Log: Signedness nits.
25607 Branch: perl
25608 ! regcomp.c
25609____________________________________________________________________________
25610[ 18994] By: jhi on 2003/03/16 15:41:44
25611 Log: Fix for [perl #21479] Term::ReadLine(::Stub) doesn't set UTF-8 flag.
25612 Should work both for PERL_UNICODE/-C and use encoding 'foo';
25613 Branch: perl
25614 ! lib/Term/ReadLine.pm
25615____________________________________________________________________________
25616[ 18993] By: jhi on 2003/03/16 15:20:38
25617 Log: Integrate:
25618 [ 18984]
25619 Subject: [patch ext/B/typemap] STRLEN T_UV
25620 From: Stas Bekman <stas@stason.org>
25621 Date: Fri, 14 Mar 2003 17:45:09 +1100
25622 Message-ID: <3E717A75.2060300@stason.org>
25623
25624 [ 18985]
25625 Time::HiRes is a core module
25626
25627 [ 18986]
25628 Subject: Re: [fix] [perl #21575] Bug with print( followed by a newline
25629 From: Enache Adrian <enache@rdslink.ro>
25630 Date: Fri, 14 Mar 2003 23:02:42 +0200
25631 Message-ID: <20030314210242.GA1159@ratsnest.hole>
25632 (with an added test)
25633
25634 [ 18988]
25635 Needs PerlIO for :bytes.
25636
25637 [ 18989]
25638 Make the :bytes conditional on PerlIO.
25639
25640 [ 18990]
25641 Further potential pitfalls for the utf8 len/pos cache
25642 found by Inaba Hiroto. No test cases, yet.
25643
25644 [ 18991]
25645 Pod fix from Philip Newton.
25646
25647 [ 18992]
25648 Better wording from Philip Newton.
25649 Branch: maint-5.8/perl
25650 !> ext/B/typemap ext/Encode/t/CJKT.t pod/perlfunc.pod regcomp.c
25651 !> t/comp/parser.t toke.c
25652____________________________________________________________________________
25653[ 18992] By: jhi on 2003/03/16 15:15:16
25654 Log: Better wording from Philip Newton.
25655 Branch: maint-5.8/perl
25656 ! pod/perldelta.pod
25657____________________________________________________________________________
25658[ 18991] By: jhi on 2003/03/16 15:14:31
25659 Log: Pod fix from Philip Newton.
25660 Branch: perl
25661 ! pod/perlfunc.pod
25662____________________________________________________________________________
25663[ 18990] By: jhi on 2003/03/16 15:12:00
25664 Log: Further potential pitfalls for the utf8 len/pos cache
25665 found by Inaba Hiroto. No test cases, yet.
25666 Branch: perl
25667 ! regcomp.c
25668____________________________________________________________________________
25669[ 18989] By: jhi on 2003/03/16 08:02:31
25670 Log: Make the :bytes conditional on PerlIO.
25671 Branch: perl
25672 ! ext/Encode/t/CJKT.t
25673____________________________________________________________________________
25674[ 18988] By: jhi on 2003/03/15 18:27:36
25675 Log: Needs PerlIO for :bytes.
25676 Branch: perl
25677 ! ext/Encode/t/CJKT.t
25678____________________________________________________________________________
25679[ 18987] By: jhi on 2003/03/14 21:16:34
25680 Log: Warn only on unblessed pseudohashes.
25681 Branch: maint-5.8/perl
25682 ! av.c pod/perldelta.pod pod/perldiag.pod t/lib/warnings/av
25683____________________________________________________________________________
25684[ 18986] By: rgs on 2003/03/14 20:28:20
25685 Log: Subject: Re: [fix] [perl #21575] Bug with print( followed by a newline
25686 From: Enache Adrian <enache@rdslink.ro>
25687 Date: Fri, 14 Mar 2003 23:02:42 +0200
25688 Message-ID: <20030314210242.GA1159@ratsnest.hole>
25689 (with an added test)
25690 Branch: perl
25691 ! t/comp/parser.t toke.c
25692____________________________________________________________________________
25693[ 18985] By: rgs on 2003/03/14 19:45:18
25694 Log: Time::HiRes is a core module
25695 Branch: perl
25696 ! pod/perlfunc.pod
25697____________________________________________________________________________
25698[ 18984] By: rgs on 2003/03/14 19:38:57
25699 Log: Subject: [patch ext/B/typemap] STRLEN T_UV
25700 From: Stas Bekman <stas@stason.org>
25701 Date: Fri, 14 Mar 2003 17:45:09 +1100
25702 Message-ID: <3E717A75.2060300@stason.org>
25703 Branch: perl
25704 ! ext/B/typemap
25705____________________________________________________________________________
25706[ 18983] By: jhi on 2003/03/14 15:17:22
25707 Log: Integrate:
25708 [ 18982]
25709 Better pass in the $self for a method.
25710 Branch: maint-5.8/perl
25711 !> lib/File/Spec/Unix.pm
25712____________________________________________________________________________
25713[ 18982] By: jhi on 2003/03/14 15:16:18
25714 Log: Better pass in the $self for a method.
25715 Branch: perl
25716 ! lib/File/Spec/Unix.pm
25717____________________________________________________________________________
25718[ 18981] By: jhi on 2003/03/14 13:45:24
25719 Log: Integrate:
25720 [ 18979]
25721 whichsig() really does return -1 for unknown signals.
25722
25723 [ 18980]
25724 Cleanup the File::Spec tmpdir() implementations:
25725 now all the platforms specific modules call _tmpdir()
25726 (inherited from Unix.pm) with the list of platform
25727 specific list of temporary directories, and _tmpdir()
25728 then does the appropriate suitability checking.
25729 Branch: maint-5.8/perl
25730 !> lib/File/Spec.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
25731 !> lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
25732 !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
25733 !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm mg.c
25734____________________________________________________________________________
25735[ 18980] By: jhi on 2003/03/14 13:42:32
25736 Log: Cleanup the File::Spec tmpdir() implementations:
25737 now all the platforms specific modules call _tmpdir()
25738 (inherited from Unix.pm) with the list of platform
25739 specific list of temporary directories, and _tmpdir()
25740 then does the appropriate suitability checking.
25741 Branch: perl
25742 ! lib/File/Spec.pm lib/File/Spec/Cygwin.pm lib/File/Spec/Epoc.pm
25743 ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
25744 ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
25745 ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
25746____________________________________________________________________________
25747[ 18979] By: jhi on 2003/03/14 12:48:09
25748 Log: whichsig() really does return -1 for unknown signals.
25749 Branch: perl
25750 ! mg.c
25751____________________________________________________________________________
25752[ 18978] By: jhi on 2003/03/14 10:52:06
25753 Log: Integrate; regen Configure et alia.
25754 [ 18962]
25755 Subject: [PATCH] checking for magic in hv.c and ext/POSIX/POSIX.xs
25756 From: "Craig A. Berry" <craigberry@mac.com>
25757 Date: Tue, 11 Mar 2003 21:29:31 -0600
25758 Message-ID: <3E6EA99B.9060902@mac.com>
25759 Patch by Scott Lepage (scott.lepage@hp.com)
25760
25761 [ 18963]
25762 Subject: [perl #20755] [PATCH] 5.8.0 h2ph barfs on checksum.h on RH6.2/7.2
25763 From: Kurt Starsinic <kstar@cpan.org>
25764 Date: Mon, 10 Mar 2003 00:54:49 -0500
25765 Message-ID: <m3d6kyvazx.wl_rspier@pobox.com>
25766
25767 [ 18964]
25768 Skip the last test of Config.t on HP-UX.
25769 (This test should be skipped for every system that
25770 actually defines a negative signal number. Maybe that
25771 test should be removed, to be future-proof.)
25772
25773 [ 18965]
25774 fix CJKT.t failures on windows due to incorrect binmode()
25775
25776 [ 18966]
25777 another fix for failing test on windows ("use encoding" puts
25778 STDIN in :raw mode, so chomp() wasn't stripping the CR)
25779
25780 [ 18967]
25781 Config.t wasn't getting the sig_num and sig_size relationship
25782 right, and therefore failed test#35 on windows
25783
25784 note that config_h.SH documents that $sig_size does NOT include
25785 the final NULL in $sig_num!
25786
25787 [ 18968]
25788 fix for switchC.t test#6 failure on windows
25789
25790 [ 18969]
25791 Subject: [PATCH] Perldoc.pm tweak for VMS
25792 From: "Craig A. Berry" <craigberry@mac.com>
25793 Date: Thu, 13 Mar 2003 13:44:55 -0600
25794 Message-ID: <3E70DFB7.8070405@mac.com>
25795
25796 [ 18970]
25797 Hopefully this works also in Win32.
25798
25799 [ 18971]
25800 Signal issues.
25801 (1) Filter out negative signals.
25802 (2) Correct sig_num* and sig_name* descriptions.
25803
25804 [ 18973]
25805 Since Configure does the signal name/number probe with awk
25806 based on the cpp results (not by really running code), testing
25807 for the signum value is not really helpful if we have runtime
25808 function calls (some signal numbers are dynamic, for example)
25809 (or other extra stuff where the signum value is expected).
25810 (Runtimeness also means that Configure cannot get these right,
25811 anyway.) Better filter in just the constant non-negative numbers.
25812
25813 [ 18975]
25814 Make whichsig() to work also if some system defines
25815 zero signals (now -1 is the "not found"). Note that
25816 in couple of mg.c spots only whichsig() > 0 branches
25817 are taken because signal handlers et al don't make
25818 much sense for the zero signal.
25819
25820 [ 18976]
25821 Subject: [PATCH] configure.com: sig_num, etc.
25822 From: "Craig A. Berry" <craigberry@mac.com>
25823 Date: Thu, 13 Mar 2003 21:38:19 -0600
25824 Message-ID: <3E714EAB.6030001@mac.com>
25825
25826 [ 18977]
25827 Rework the @Config{/sig.*/} tests.
25828 Branch: maint-5.8/perl
25829 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
25830 ! config_h.SH
25831 !> configure.com doio.c ext/Encode/t/CJKT.t
25832 !> ext/Encode/t/enc_module.t hv.c lib/Config.t lib/Pod/Perldoc.pm
25833 !> mg.c perl.c t/lib/h2ph.h t/lib/h2ph.pht utils/h2ph.PL
25834____________________________________________________________________________
25835[ 18977] By: jhi on 2003/03/14 10:42:33
25836 Log: Rework the @Config{/sig.*/} tests.
25837 Branch: perl
25838 ! lib/Config.t
25839____________________________________________________________________________
25840[ 18976] By: jhi on 2003/03/14 10:31:50
25841 Log: Subject: [PATCH] configure.com: sig_num, etc.
25842 From: "Craig A. Berry" <craigberry@mac.com>
25843 Date: Thu, 13 Mar 2003 21:38:19 -0600
25844 Message-ID: <3E714EAB.6030001@mac.com>
25845 Branch: perl
25846 ! configure.com
25847____________________________________________________________________________
25848[ 18975] By: jhi on 2003/03/14 10:30:53
25849 Log: Make whichsig() to work also if some system defines
25850 zero signals (now -1 is the "not found"). Note that
25851 in couple of mg.c spots only whichsig() > 0 branches
25852 are taken because signal handlers et al don't make
25853 much sense for the zero signal.
25854 Branch: perl
25855 ! doio.c mg.c
25856____________________________________________________________________________
25857[ 18974] By: jhi on 2003/03/14 10:28:27
25858 Log: metaconfig unit changes for #18973.
25859 Branch: metaconfig
25860 ! U/modified/Signal.U
25861____________________________________________________________________________
25862[ 18973] By: jhi on 2003/03/14 10:27:46
25863 Log: Since Configure does the signal name/number probe with awk
25864 based on the cpp results (not by really running code), testing
25865 for the signum value is not really helpful if we have runtime
25866 function calls (some signal numbers are dynamic, for example)
25867 (or other extra stuff where the signum value is expected).
25868 (Runtimeness also means that Configure cannot get these right,
25869 anyway.) Better filter in just the constant non-negative numbers.
25870 Branch: perl
25871 ! Configure
25872____________________________________________________________________________
25873[ 18972] By: jhi on 2003/03/14 09:30:38
25874 Log: metaconfig unit changes for #18971; regen Glossary.patch.
25875 Branch: metaconfig
25876 ! U/Glossary.patch U/modified/Signal.U U/modified/sig_name.U
25877____________________________________________________________________________
25878[ 18971] By: jhi on 2003/03/14 09:30:18
25879 Log: Signal issues.
25880 (1) Filter out negative signals.
25881 (2) Correct sig_num* and sig_name* descriptions.
25882 Branch: perl
25883 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
25884 ! config_h.SH
25885____________________________________________________________________________
25886[ 18970] By: jhi on 2003/03/14 06:21:48
25887 Log: Hopefully this works also in Win32.
25888 Branch: perl
25889 ! ext/Encode/t/CJKT.t
25890____________________________________________________________________________
25891[ 18969] By: jhi on 2003/03/14 05:43:34
25892 Log: Subject: [PATCH] Perldoc.pm tweak for VMS
25893 From: "Craig A. Berry" <craigberry@mac.com>
25894 Date: Thu, 13 Mar 2003 13:44:55 -0600
25895 Message-ID: <3E70DFB7.8070405@mac.com>
25896 Branch: perl
25897 ! lib/Pod/Perldoc.pm
25898____________________________________________________________________________
25899[ 18968] By: gsar on 2003/03/14 04:41:25
25900 Log: fix for switchC.t test#6 failure on windows
25901 Branch: perl
25902 ! perl.c
25903____________________________________________________________________________
25904[ 18967] By: gsar on 2003/03/14 04:29:10
25905 Log: Config.t wasn't getting the sig_num and sig_size relationship
25906 right, and therefore failed test#35 on windows
25907
25908 note that config_h.SH documents that $sig_size does NOT include
25909 the final NULL in $sig_num!
25910 Branch: perl
25911 ! lib/Config.t
25912____________________________________________________________________________
25913[ 18966] By: gsar on 2003/03/14 04:20:51
25914 Log: another fix for failing test on windows ("use encoding" puts
25915 STDIN in :raw mode, so chomp() wasn't stripping the CR)
25916 Branch: perl
25917 ! ext/Encode/t/enc_module.t
25918____________________________________________________________________________
25919[ 18965] By: gsar on 2003/03/14 04:06:31
25920 Log: fix CJKT.t failures on windows due to incorrect binmode()
25921 Branch: perl
25922 ! ext/Encode/t/CJKT.t
25923____________________________________________________________________________
25924[ 18964] By: rgs on 2003/03/13 21:47:52
25925 Log: Skip the last test of Config.t on HP-UX.
25926 (This test should be skipped for every system that
25927 actually defines a negative signal number. Maybe that
25928 test should be removed, to be future-proof.)
25929 Branch: perl
25930 ! lib/Config.t
25931____________________________________________________________________________
25932[ 18963] By: rgs on 2003/03/13 20:57:32
25933 Log: Subject: [perl #20755] [PATCH] 5.8.0 h2ph barfs on checksum.h on RH6.2/7.2
25934 From: Kurt Starsinic <kstar@cpan.org>
25935 Date: Mon, 10 Mar 2003 00:54:49 -0500
25936 Message-ID: <m3d6kyvazx.wl_rspier@pobox.com>
25937 Branch: perl
25938 ! t/lib/h2ph.h t/lib/h2ph.pht utils/h2ph.PL
25939____________________________________________________________________________
25940[ 18962] By: rgs on 2003/03/13 20:46:53
25941 Log: Subject: [PATCH] checking for magic in hv.c and ext/POSIX/POSIX.xs
25942 From: "Craig A. Berry" <craigberry@mac.com>
25943 Date: Tue, 11 Mar 2003 21:29:31 -0600
25944 Message-ID: <3E6EA99B.9060902@mac.com>
25945 Patch by Scott Lepage (scott.lepage@hp.com)
25946 Branch: perl
25947 ! hv.c
25948____________________________________________________________________________
25949[ 18961] By: jhi on 2003/03/13 20:09:22
25950 Log: Integrate:
25951 [ 18954]
25952 Another finding by IRIX cc: non-void function
25953 sv_cat_decode() should return a value.
25954
25955 [ 18955]
25956 File::Temp tests were failing in Cygwin if $ENV{TMPDIR}
25957 was unset (the tests attempted to create files at the /)
25958
25959 [ 18956]
25960 File::Spec: Do not fall back to '', use curdir instead.
25961 Note: Mac used to use cwd(), now curdir, slight change
25962 (relative vs. absolute).
25963
25964 [ 18957]
25965 VOS nit from Paul Green.
25966
25967 [ 18958]
25968 Trims slashes from the argument to rmdir(), likewise
25969 to what happens with rmdir(). Factorize the code in a
25970 local macro, TRIMSLASHES.
25971
25972 [ 18959]
25973 Some more stdlib.h inclusions and change the gccversion
25974 test to use return (could have used that for all, sigh).
25975 Branch: maint-5.8/perl
25976 !> Configure lib/File/Spec/Cygwin.pm lib/File/Spec/Mac.pm
25977 !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
25978 !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm pp_sys.c sv.c
25979 !> vos/configure_full_perl.sh
25980____________________________________________________________________________
25981[ 18960] By: jhi on 2003/03/13 20:06:39
25982 Log: metaconfig unit changes for #18959.
25983 Branch: metaconfig
25984 ! U/compline/d_sigaction.U
25985 Branch: metaconfig/U/perl
25986 ! gccvers.U uselfs.U
25987____________________________________________________________________________
25988[ 18959] By: jhi on 2003/03/13 20:05:50
25989 Log: Some more stdlib.h inclusions and change the gccversion
25990 test to use return (could have used that for all, sigh).
25991 Branch: perl
25992 ! Configure
25993____________________________________________________________________________
25994[ 18958] By: rgs on 2003/03/12 20:46:58
25995 Log: Trims slashes from the argument to rmdir(), likewise
25996 to what happens with rmdir(). Factorize the code in a
25997 local macro, TRIMSLASHES.
25998 Branch: perl
25999 ! pp_sys.c
26000____________________________________________________________________________
26001[ 18957] By: jhi on 2003/03/12 14:23:02
26002 Log: VOS nit from Paul Green.
26003 Branch: perl
26004 ! vos/configure_full_perl.sh
26005____________________________________________________________________________
26006[ 18956] By: jhi on 2003/03/12 13:58:26
26007 Log: File::Spec: Do not fall back to '', use curdir instead.
26008 Note: Mac used to use cwd(), now curdir, slight change
26009 (relative vs. absolute).
26010 Branch: perl
26011 ! lib/File/Spec/Cygwin.pm lib/File/Spec/Mac.pm
26012 ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
26013 ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
26014____________________________________________________________________________
26015[ 18955] By: jhi on 2003/03/12 13:49:15
26016 Log: File::Temp tests were failing in Cygwin if $ENV{TMPDIR}
26017 was unset (the tests attempted to create files at the /)
26018 Branch: perl
26019 ! lib/File/Spec/Cygwin.pm
26020____________________________________________________________________________
26021[ 18954] By: jhi on 2003/03/12 10:59:03
26022 Log: Another finding by IRIX cc: non-void function
26023 sv_cat_decode() should return a value.
26024 Branch: perl
26025 ! sv.c
26026____________________________________________________________________________
26027[ 18953] By: jhi on 2003/03/12 10:55:38
26028 Log: Integrate:
26029 [ 18950]
26030 Cygwin doesn't like initing the $0 mutex in perl_construct()
26031 (Too early? If inited there the pthread_mutex_init() returns
26032 an integer much too large be an errno), but initing the mutex
26033 later, in perl_alloc(), seems to be okay with Cygwin, and also
26034 with Linux.
26035 Branch: maint-5.8/perl
26036 !> perl.c
26037____________________________________________________________________________
26038[ 18952] By: jhi on 2003/03/12 10:53:02
26039 Log: Integrate:
26040 [ 18949]
26041 pudge> never integrate anything from macos/
26042 Branch: perl
26043 - macos/MacPerlTests.cmd macos/Makefile.mk macos/configpm
26044 - macos/macperl.sym
26045 !> MANIFEST
26046____________________________________________________________________________
26047[ 18951] By: jhi on 2003/03/12 10:52:17
26048 Log: Integrate:
26049 [ 18946]
26050 Integrate from maint-5.8/macperl:
26051 [ 18937]
26052 Various MacOS portability fixes for tests
26053
26054 [ 18938]
26055 File::Spec::Unix method should be called on $self
26056
26057 [ 18939]
26058 lib.pm:_get_dirs() should use $_[0], not $_
26059
26060 [ 18940]
26061 Update MacOS for new configpm
26062
26063 [ 18941]
26064 Update MacOS build
26065 Update Makefile for new source files,
26066 update test script, add additional symbol for APItest
26067 Branch: perl
26068 +> macos/MacPerlTests.cmd macos/Makefile.mk macos/configpm
26069 +> macos/macperl.sym
26070 !> ext/Digest/MD5/t/files.t ext/Filter/t/call.t
26071 !> ext/POSIX/t/taint.t lib/File/Spec/Unix.pm
26072 !> lib/Unicode/Collate/t/index.t lib/Unicode/Collate/t/test.t
26073 !> lib/charnames.t lib/lib_pm.PL t/io/crlf.t t/op/method.t
26074 !> t/op/mkdir.t t/op/recurse.t t/op/sprintf.t t/op/stat.t
26075 !> t/op/taint.t t/pod/testp2pt.pl t/run/switchI.t
26076____________________________________________________________________________
26077[ 18950] By: jhi on 2003/03/12 10:49:27
26078 Log: Cygwin doesn't like initing the $0 mutex in perl_construct()
26079 (Too early? If inited there the pthread_mutex_init() returns
26080 an integer much too large be an errno), but initing the mutex
26081 later, in perl_alloc(), seems to be okay with Cygwin, and also
26082 with Linux.
26083 Branch: perl
26084 ! perl.c
26085____________________________________________________________________________
26086[ 18949] By: jhi on 2003/03/12 10:39:39
26087 Log: pudge> never integrate anything from macos/
26088 Branch: maint-5.8/perl
26089 - macos/MacPerlTests.cmd macos/Makefile.mk macos/configpm
26090 - macos/macperl.sym
26091 ! MANIFEST
26092____________________________________________________________________________
26093[ 18948] By: jhi on 2003/03/12 06:21:16
26094 Log: Integrate:
26095 [ 18935]
26096 WinCE tweaks from Vadim Konovalov.
26097
26098 [ 18943]
26099 Tell how to possibly dodge 'Out of memory' errors.
26100
26101 [ 18944]
26102 Ouch. Missed one more, the void flags check (and exit() is void).
26103 Branch: maint-5.8/perl
26104 !> Configure perl.c perlio.c pod/perldiag.pod wince/Makefile.ce
26105____________________________________________________________________________
26106[ 18947] By: jhi on 2003/03/12 06:17:43
26107 Log: New files from #18946.
26108 Branch: maint-5.8/perl
26109 ! MANIFEST
26110____________________________________________________________________________
26111[ 18946] By: jhi on 2003/03/12 06:13:00
26112 Log: Integrate from maint-5.8/macperl:
26113 [ 18937]
26114 Various MacOS portability fixes for tests
26115
26116 [ 18938]
26117 File::Spec::Unix method should be called on $self
26118
26119 [ 18939]
26120 lib.pm:_get_dirs() should use $_[0], not $_
26121
26122 [ 18940]
26123 Update MacOS for new configpm
26124
26125 [ 18941]
26126 Update MacOS build
26127 Update Makefile for new source files,
26128 update test script, add additional symbol for APItest
26129 Branch: maint-5.8/perl
26130 +> macos/MacPerlTests.cmd macos/Makefile.mk macos/configpm
26131 +> macos/macperl.sym
26132 !> ext/Digest/MD5/t/files.t ext/Filter/t/call.t
26133 !> ext/POSIX/t/taint.t lib/File/Spec/Unix.pm
26134 !> lib/Unicode/Collate/t/index.t lib/Unicode/Collate/t/test.t
26135 !> lib/charnames.t lib/lib_pm.PL t/io/crlf.t t/op/method.t
26136 !> t/op/mkdir.t t/op/recurse.t t/op/sprintf.t t/op/stat.t
26137 !> t/op/taint.t t/pod/testp2pt.pl t/run/switchI.t
26138____________________________________________________________________________
26139[ 18945] By: jhi on 2003/03/12 06:01:15
26140 Log: metaconfig unit changes for #18944.
26141 Branch: metaconfig
26142 ! U/compline/d_sigsetjmp.U U/modified/voidflags.U
26143 Branch: metaconfig/U/perl
26144 ! gccvers.U
26145____________________________________________________________________________
26146[ 18944] By: jhi on 2003/03/12 06:00:48
26147 Log: Ouch. Missed one more, the void flags check (and exit() is void).
26148 Branch: perl
26149 ! Configure
26150____________________________________________________________________________
26151[ 18943] By: jhi on 2003/03/12 05:51:21
26152 Log: Tell how to possibly dodge 'Out of memory' errors.
26153 Branch: perl
26154 ! pod/perldiag.pod
26155____________________________________________________________________________
26156[ 18942] By: pudge on 2003/03/12 03:31:48
26157 Log: Integrate from maint-5.8/perl
26158 Branch: maint-5.8/macperl
26159 !> (integrate 50 files)
26160____________________________________________________________________________
26161[ 18941] By: pudge on 2003/03/12 03:19:52
26162 Log: Update MacOS build
26163 Update Makefile for new source files,
26164 update test script, add additional symbol for APItest
26165 Branch: maint-5.8/macperl
26166 ! macos/MacPerlTests.cmd macos/Makefile.mk macos/macperl.sym
26167____________________________________________________________________________
26168[ 18940] By: pudge on 2003/03/12 03:18:38
26169 Log: Update MacOS for new configpm
26170 Branch: maint-5.8/macperl
26171 ! macos/configpm
26172____________________________________________________________________________
26173[ 18939] By: pudge on 2003/03/12 03:17:22
26174 Log: lib.pm:_get_dirs() should use $_[0], not $_
26175 Branch: maint-5.8/macperl
26176 ! lib/lib_pm.PL
26177____________________________________________________________________________
26178[ 18938] By: pudge on 2003/03/12 03:15:26
26179 Log: File::Spec::Unix method should be called on $self
26180 Branch: maint-5.8/macperl
26181 ! lib/File/Spec/Unix.pm
26182____________________________________________________________________________
26183[ 18937] By: pudge on 2003/03/12 03:14:23
26184 Log: Various MacOS portability fixes for tests
26185 Branch: maint-5.8/macperl
26186 ! ext/Digest/MD5/t/files.t ext/Filter/t/call.t
26187 ! ext/POSIX/t/taint.t lib/Unicode/Collate/t/index.t
26188 ! lib/Unicode/Collate/t/test.t lib/charnames.t t/io/crlf.t
26189 ! t/op/method.t t/op/mkdir.t t/op/recurse.t t/op/sprintf.t
26190 ! t/op/stat.t t/op/taint.t t/pod/testp2pt.pl t/run/switchI.t
26191____________________________________________________________________________
26192[ 18936] By: pudge on 2003/03/12 03:02:22
26193 Log: Integrate from maint-5.8/perl
26194 Branch: maint-5.8/macperl
26195 !> t/op/recurse.t t/op/sprintf.t
26196____________________________________________________________________________
26197[ 18935] By: jhi on 2003/03/11 22:00:54
26198 Log: WinCE tweaks from Vadim Konovalov.
26199 Branch: perl
26200 ! perl.c perlio.c wince/Makefile.ce
26201____________________________________________________________________________
26202[ 18934] By: jhi on 2003/03/11 20:24:49
26203 Log: Integrate:
26204 [ 18932]
26205 Missed one.
26206 Branch: maint-5.8/perl
26207 !> Configure
26208____________________________________________________________________________
26209[ 18933] By: jhi on 2003/03/11 20:23:17
26210 Log: metaconfig unit change for #18932.
26211 Branch: metaconfig
26212 ! U/a_dvisory/intsize.U
26213____________________________________________________________________________
26214[ 18932] By: jhi on 2003/03/11 20:22:07
26215 Log: Missed one.
26216 Branch: perl
26217 ! Configure
26218____________________________________________________________________________
26219[ 18931] By: jhi on 2003/03/11 20:18:23
26220 Log: Integrate:
26221 [ 18929]
26222 Single vs doublequoted context is important...
26223 Branch: maint-5.8/perl
26224 !> Configure
26225____________________________________________________________________________
26226[ 18930] By: jhi on 2003/03/11 20:16:12
26227 Log: metaconfig unit changes for #18929.
26228 Branch: metaconfig
26229 ! U/compline/charsize.U U/compline/doublesize.U
26230 ! U/compline/ptrsize.U
26231____________________________________________________________________________
26232[ 18929] By: jhi on 2003/03/11 20:15:51
26233 Log: Single vs doublequoted context is important...
26234 Branch: perl
26235 ! Configure
26236____________________________________________________________________________
26237[ 18928] By: jhi on 2003/03/11 20:09:47
26238 Log: Integrate:
26239 [ 18923]
26240 Solaris cc wants prototype for exit(), so <stdlib.h> needed.
26241
26242 [ 18925]
26243 Better setmode() prototype for cygwin.
26244
26245 [ 18926]
26246 Questionable construct.
26247
26248 [ 18927]
26249 """glob.*""" patch for VMS, from Peter Prymmer.
26250 Branch: maint-5.8/perl
26251 !> Configure perl.h pod/perltooc.pod vms/perlvms.pod vms/vms.c
26252____________________________________________________________________________
26253[ 18927] By: jhi on 2003/03/11 20:04:33
26254 Log: """glob.*""" patch for VMS, from Peter Prymmer.
26255 Branch: perl
26256 ! vms/perlvms.pod vms/vms.c
26257____________________________________________________________________________
26258[ 18926] By: rgs on 2003/03/11 19:44:54
26259 Log: Questionable construct.
26260 Branch: perl
26261 ! pod/perltooc.pod
26262____________________________________________________________________________
26263[ 18925] By: jhi on 2003/03/11 19:15:15
26264 Log: Better setmode() prototype for cygwin.
26265 Branch: perl
26266 ! perl.h
26267____________________________________________________________________________
26268[ 18924] By: jhi on 2003/03/11 19:12:51
26269 Log: metaconfig unit changes for #18923. The gccvers unit
26270 cannot have <stdlib.h>, though, because that would
26271 introduce a nasty dependency loop.
26272 Branch: metaconfig
26273 ! U/a_dvisory/intsize.U U/compline/charsize.U
26274 ! U/compline/d_casti32.U U/compline/d_castneg.U
26275 ! U/compline/d_sigsetjmp.U U/compline/doublesize.U
26276 ! U/compline/ptrsize.U U/compline/ssizetype.U
26277 ! U/modified/voidflags.U U/typedefs/gidsize.U
26278 ! U/typedefs/sizesize.U U/typedefs/uidsize.U
26279 Branch: metaconfig/U/perl
26280 ! d_u32align.U fpossize.U gccvers.U selectminbits.U
26281____________________________________________________________________________
26282[ 18923] By: jhi on 2003/03/11 19:11:39
26283 Log: Solaris cc wants prototype for exit(), so <stdlib.h> needed.
26284 Branch: perl
26285 ! Configure
26286____________________________________________________________________________
26287[ 18922] By: jhi on 2003/03/11 18:20:53
26288 Log: Integrate:
26289 [ 18914]
26290 Try to handle hitting the heap/data limit in small systems.
26291 (One can simulate this with e.g. 32MB or 64MB datasize,
26292 use your shell's ulimit/limit/limits command.)
26293
26294 [ 18915]
26295 Be more lax about the out of memory error message.
26296
26297 [ 18916]
26298 Upgrade to Time-HiRes 1.43.
26299
26300 [ 18917]
26301 Get rid of one Cygwin warning by introducing a prototype
26302 for the init_os_extras(). Since there is no header file
26303 in Perl specific to cygwin, use perl.h.
26304
26305 [ 18918]
26306 Subject: [PATCH] io_sock.t
26307 From: Norton Allen <allen@huarp.harvard.edu>
26308 Date: Tue, 11 Mar 2003 13:37:36 -0500 (est)
26309 Message-Id: <200303111837.NAA30438@bottesini.harvard.edu>
26310
26311 [ 18919]
26312 Uid_t and Gid_t can easily be shorts and one cannot
26313 pull shorts off the va_args, int is the shortest (ahem).
26314
26315 [ 18920]
26316 No assertions in maint.
26317
26318 [ 18921]
26319 The 0, in the assert_not_ROK() makes IRIX cc to worry
26320 (cc-1171 cc: WARNING ... The indicated expression has no effect.)
26321 So make the macro to include the , and the non-gcc case empty.
26322 Branch: maint-5.8/perl
26323 !> README.qnx ext/IO/lib/IO/t/io_sock.t ext/Time/HiRes/Changes
26324 !> ext/Time/HiRes/HiRes.pm ext/Time/HiRes/Makefile.PL perl.h
26325 !> reentr.c reentr.pl sv.h t/op/recurse.t
26326____________________________________________________________________________
26327[ 18921] By: jhi on 2003/03/11 18:15:45
26328 Log: The 0, in the assert_not_ROK() makes IRIX cc to worry
26329 (cc-1171 cc: WARNING ... The indicated expression has no effect.)
26330 So make the macro to include the , and the non-gcc case empty.
26331 Branch: perl
26332 ! sv.h
26333____________________________________________________________________________
26334[ 18920] By: jhi on 2003/03/11 17:52:57
26335 Log: No assertions in maint.
26336 Branch: maint-5.8/perl
26337 ! intrpvar.h
26338____________________________________________________________________________
26339[ 18919] By: jhi on 2003/03/11 17:43:10
26340 Log: Uid_t and Gid_t can easily be shorts and one cannot
26341 pull shorts off the va_args, int is the shortest (ahem).
26342 Branch: perl
26343 ! reentr.c reentr.pl
26344____________________________________________________________________________
26345[ 18918] By: jhi on 2003/03/11 17:32:23
26346 Log: Subject: [PATCH] io_sock.t
26347 From: Norton Allen <allen@huarp.harvard.edu>
26348 Date: Tue, 11 Mar 2003 13:37:36 -0500 (est)
26349 Message-Id: <200303111837.NAA30438@bottesini.harvard.edu>
26350 Branch: perl
26351 ! README.qnx ext/IO/lib/IO/t/io_sock.t
26352____________________________________________________________________________
26353[ 18917] By: jhi on 2003/03/11 17:30:43
26354 Log: Get rid of one Cygwin warning by introducing a prototype
26355 for the init_os_extras(). Since there is no header file
26356 in Perl specific to cygwin, use perl.h.
26357 Branch: perl
26358 ! perl.h
26359____________________________________________________________________________
26360[ 18916] By: jhi on 2003/03/11 11:40:38
26361 Log: Upgrade to Time-HiRes 1.43.
26362 Branch: perl
26363 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
26364 ! ext/Time/HiRes/Makefile.PL
26365____________________________________________________________________________
26366[ 18915] By: jhi on 2003/03/11 09:19:54
26367 Log: Be more lax about the out of memory error message.
26368 Branch: perl
26369 ! t/op/recurse.t
26370____________________________________________________________________________
26371[ 18914] By: jhi on 2003/03/11 09:18:25
26372 Log: Try to handle hitting the heap/data limit in small systems.
26373 (One can simulate this with e.g. 32MB or 64MB datasize,
26374 use your shell's ulimit/limit/limits command.)
26375 Branch: perl
26376 ! t/op/recurse.t
26377____________________________________________________________________________
26378[ 18913] By: jhi on 2003/03/11 08:02:22
26379 Log: Integrate:
26380 [ 18912]
26381 typo for utf8locale in #18907
26382 Branch: maint-5.8/perl
26383 !> sv.c
26384____________________________________________________________________________
26385[ 18912] By: hv on 2003/03/11 07:36:00
26386 Log: typo for utf8locale in #18907
26387 Branch: perl
26388 ! sv.c
26389____________________________________________________________________________
26390[ 18911] By: jhi on 2003/03/11 07:02:41
26391 Log: Integrate:
26392 [ 18888]
26393 Subject: Re: [perl #21505] 5.8.0 lib/Config test failure due to compiler flag
26394 From: Nicholas Clark <nick@unfortu.net>
26395 Date: Sun, 9 Mar 2003 21:24:46 +0000
26396 Message-ID: <20030309212445.GE277@Bagpuss.unfortu.net>
26397
26398 [ 18889]
26399 Subject: Re: odd (or not so odd?) segmentation fault in 5.8.0
26400 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
26401 Date: Fri, 07 Mar 2003 13:12:49 -0800
26402 Message-ID: <RtQa+gzkg2kF092yn@efn.org>
26403
26404 [ 18891]
26405 A new test, to check that signal numbers are actually positive,
26406 and that there is a consistent number of signals available.
26407
26408 [ 18899]
26409 VMS has an extra \n at the end, and I assume Windows has \r\n.
26410
26411 [ 18902]
26412 Patch from Craig Berry to resolve test failures in VMS.
26413 Will poke the Net::Ping author.
26414
26415 [ 18903]
26416 A rejected hunk of #18902 reapplied.
26417
26418 [ 18904]
26419 Subject: [PATCH] typos and other minor things
26420 From: "Todd C. Miller" <Todd.Miller@courtesan.com>
26421 Date: Mon, 10 Mar 2003 21:00:55 -0700
26422 Message-Id: <200303110400.h2B40tEQ018838@xerxes.courtesan.com>
26423
26424 [ 18905]
26425 Subject: [patch] PL_taint_warn falls between chairs in perl_clone()
26426 From: Stas Bekman <stas@stason.org>
26427 Date: Tue, 11 Mar 2003 17:09:02 +1100
26428 Message-ID: <3E6D7D7E.5000704@stason.org>
26429
26430 [ 18906]
26431 Add reminders to intrpvar.h about perl_clone(), as suggested by Stas.
26432
26433 [ 18907]
26434 Add missing intrpvar clonings to perl_clone.
26435 Also move the IDBassertion to the end since there's
26436 no particular reason to break bincompat for that.
26437
26438 [ 18908]
26439 Missed some, cryptically.
26440
26441 [ 18909]
26442 Upgrade to cperl-mode 5.0, from IlyaZ.
26443
26444 [ 18910]
26445 Subject: [PATCH] clear PL_exitlist in perl_destruct
26446 From: "Craig A. Berry" <craigberry@mac.com>
26447 Date: Tue, 11 Mar 2003 00:34:39 -0600
26448 Message-ID: <3E6D837F.7000506@mac.com>
26449 Branch: maint-5.8/perl
26450 !> (integrate 39 files)
26451____________________________________________________________________________
26452[ 18910] By: jhi on 2003/03/11 06:55:29
26453 Log: Subject: [PATCH] clear PL_exitlist in perl_destruct
26454 From: "Craig A. Berry" <craigberry@mac.com>
26455 Date: Tue, 11 Mar 2003 00:34:39 -0600
26456 Message-ID: <3E6D837F.7000506@mac.com>
26457 Branch: perl
26458 ! perl.c
26459____________________________________________________________________________
26460[ 18909] By: jhi on 2003/03/11 06:29:35
26461 Log: Upgrade to cperl-mode 5.0, from IlyaZ.
26462 Branch: perl
26463 ! emacs/cperl-mode.el
26464____________________________________________________________________________
26465[ 18908] By: jhi on 2003/03/11 06:09:05
26466 Log: Missed some, cryptically.
26467 Branch: perl
26468 ! pod/perlfunc.pod
26469____________________________________________________________________________
26470[ 18907] By: jhi on 2003/03/11 06:01:28
26471 Log: Add missing intrpvar clonings to perl_clone.
26472 Also move the IDBassertion to the end since there's
26473 no particular reason to break bincompat for that.
26474 Branch: perl
26475 ! intrpvar.h sv.c
26476____________________________________________________________________________
26477[ 18906] By: jhi on 2003/03/11 05:43:30
26478 Log: Add reminders to intrpvar.h about perl_clone(), as suggested by Stas.
26479 Branch: perl
26480 ! intrpvar.h
26481____________________________________________________________________________
26482[ 18905] By: jhi on 2003/03/11 05:38:10
26483 Log: Subject: [patch] PL_taint_warn falls between chairs in perl_clone()
26484 From: Stas Bekman <stas@stason.org>
26485 Date: Tue, 11 Mar 2003 17:09:02 +1100
26486 Message-ID: <3E6D7D7E.5000704@stason.org>
26487 Branch: perl
26488 ! sv.c
26489____________________________________________________________________________
26490[ 18904] By: jhi on 2003/03/11 05:33:10
26491 Log: Subject: [PATCH] typos and other minor things
26492 From: "Todd C. Miller" <Todd.Miller@courtesan.com>
26493 Date: Mon, 10 Mar 2003 21:00:55 -0700
26494 Message-Id: <200303110400.h2B40tEQ018838@xerxes.courtesan.com>
26495 Branch: perl
26496 ! emacs/cperl-mode.el ext/B/B/Concise.pm ext/DB_File/DB_File.pm
26497 ! ext/DB_File/DB_File.xs ext/Devel/PPPort/PPPort.pm
26498 ! ext/IO/lib/IO/Socket.pm ext/PerlIO/encoding/encoding.xs
26499 ! ext/PerlIO/via/via.pm ext/Storable/Storable.xs lib/Net/FTP.pm
26500 ! lib/Net/NNTP.pm lib/Net/Ping.pm lib/Pod/Perldoc.pm
26501 ! lib/Tie/File/t/05_size.t lib/charnames.pm lib/ftp.pl
26502 ! lib/utf8.t pad.c pod/perlfunc.pod pod/perlintern.pod
26503 ! pod/perlthrtut.pod pod/pod2latex.PL regcomp.c t/op/sprintf.t
26504 ! utils/libnetcfg.PL vms/vms.c win32/vmem.h
26505____________________________________________________________________________
26506[ 18903] By: jhi on 2003/03/11 05:29:12
26507 Log: A rejected hunk of #18902 reapplied.
26508 Branch: perl
26509 ! t/io/utf8.t
26510____________________________________________________________________________
26511[ 18902] By: jhi on 2003/03/11 05:19:15
26512 Log: Patch from Craig Berry to resolve test failures in VMS.
26513 Will poke the Net::Ping author.
26514 Branch: perl
26515 ! ext/threads/shared/t/cond.t lib/Net/Ping/t/190_alarm.t
26516 ! t/io/utf8.t t/op/magic.t
26517____________________________________________________________________________
26518[ 18901] By: pudge on 2003/03/11 04:00:40
26519 Log: Integrate from maint-5.8/perl
26520 Branch: maint-5.8/macperl
26521 +> (branch 46 files)
26522 - macos/config.h regen_headers.pl
26523 ! macos/MacPerlTests.cmd
26524 !> (integrate 479 files)
26525____________________________________________________________________________
26526[ 18900] By: rgs on 2003/03/10 22:12:37
26527 Log: Integrate (by hand) change #18386 from maint-5.8
26528 Branch: perl
26529 ! t/op/split.t
26530____________________________________________________________________________
26531[ 18899] By: jhi on 2003/03/10 21:44:12
26532 Log: VMS has an extra \n at the end, and I assume Windows has \r\n.
26533 Branch: perl
26534 ! t/run/switchC.t
26535____________________________________________________________________________
26536[ 18898] By: jhi on 2003/03/10 21:12:28
26537 Log: An old hunk mistakenly introduced by #18896.
26538 Branch: maint-5.8/perl
26539 ! perl.c
26540____________________________________________________________________________
26541[ 18897] By: jhi on 2003/03/10 21:11:03
26542 Log: A missing line.
26543 Branch: maint-5.8/perl
26544 ! t/pod/poderrs.xr
26545____________________________________________________________________________
26546[ 18896] By: jhi on 2003/03/10 21:01:14
26547 Log: Integrate:
26548 [ 18229]
26549 $0 mofifying part I
26550
26551 Date: Sat, 30 Nov 2002 20:16:51 +0200
26552 From: Jarkko Hietaniemi <jhi@iki.fi>
26553 Subject: [PATCH] $0 modifying
26554 Message-ID: <20021130181651.GA5876@kosh.hut.fi>
26555 Branch: maint-5.8/perl
26556 !> ext/threads/t/join.t makedef.pl mg.c perl.c pod/perlvar.pod
26557 !> sv.c t/op/magic.t thread.h
26558____________________________________________________________________________
26559[ 18895] By: jhi on 2003/03/10 20:48:37
26560 Log: Avaunt!
26561 Branch: maint-5.8/perl
26562 ! MANIFEST
26563____________________________________________________________________________
26564[ 18894] By: jhi on 2003/03/10 20:41:02
26565 Log: Missing hunk from change #18830.
26566 Branch: maint-5.8/perl
26567 ! ext/B/t/deparse.t
26568____________________________________________________________________________
26569[ 18893] By: jhi on 2003/03/10 20:38:33
26570 Log: Integrate:
26571 [ 18298]
26572 Whitespace and indentation fix in the output of B::Debug.
26573 Branch: maint-5.8/perl
26574 !> ext/B/B/Debug.pm
26575____________________________________________________________________________
26576[ 18892] By: jhi on 2003/03/10 20:26:04
26577 Log: Missing hunk from change #18224.
26578 Branch: maint-5.8/perl
26579 ! lib/Pod/Checker.pm
26580____________________________________________________________________________
26581[ 18891] By: rgs on 2003/03/10 20:22:39
26582 Log: A new test, to check that signal numbers are actually positive,
26583 and that there is a consistent number of signals available.
26584 Branch: perl
26585 ! lib/Config.t
26586____________________________________________________________________________
26587[ 18890] By: jhi on 2003/03/10 20:18:55
26588 Log: Integrate:
26589 [ 18224]
26590 Integrate PodParser-1.20, with matching tweaks to lib/Pod/t/latex.t
26591 and lib/Pod/t/utils.t to cater for simpler output text.
26592 Branch: maint-5.8/perl
26593 !> (integrate 27 files)
26594____________________________________________________________________________
26595[ 18889] By: rgs on 2003/03/10 19:55:06
26596 Log: Subject: Re: odd (or not so odd?) segmentation fault in 5.8.0
26597 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
26598 Date: Fri, 07 Mar 2003 13:12:49 -0800
26599 Message-ID: <RtQa+gzkg2kF092yn@efn.org>
26600 Branch: perl
26601 ! mg.c pod/perldiag.pod t/op/tie.t
26602____________________________________________________________________________
26603[ 18888] By: rgs on 2003/03/10 19:37:40
26604 Log: Subject: Re: [perl #21505] 5.8.0 lib/Config test failure due to compiler flag
26605 From: Nicholas Clark <nick@unfortu.net>
26606 Date: Sun, 9 Mar 2003 21:24:46 +0000
26607 Message-ID: <20030309212445.GE277@Bagpuss.unfortu.net>
26608 Branch: perl
26609 ! lib/Config.t
26610____________________________________________________________________________
26611[ 18887] By: jhi on 2003/03/10 19:32:10
26612 Log: Something is really wonky in the ext/MIME/Base64 between
26613 maint and blead... but this seems to bridge the remaining gap.
26614 Branch: maint-5.8/perl
26615 ! ext/MIME/Base64/Makefile.PL
26616____________________________________________________________________________
26617[ 18886] By: jhi on 2003/03/10 19:13:17
26618 Log: Fake reintegrate of #18651 (otherwise perforce didn't like me).
26619 Branch: maint-5.8/perl
26620 !> ext/MIME/Base64/Base64.xs
26621____________________________________________________________________________
26622[ 18885] By: jhi on 2003/03/10 19:04:15
26623 Log: Integrate:
26624 [ 18685]
26625 No, we don't really want the utility scripts.
26626 Branch: maint-5.8/perl
26627 - ext/MIME/Base64/decode-base64 ext/MIME/Base64/decode-qp
26628 - ext/MIME/Base64/encode-base64 ext/MIME/Base64/encode-qp
26629____________________________________________________________________________
26630[ 18883] By: jhi on 2003/03/10 18:54:19
26631 Log: Integrate:
26632 [ 18642]
26633 Integrate MIME::Base64 2.16 from CPAN. (Do we really want the
26634 utility scripts?)
26635 Branch: maint-5.8/perl
26636 +> ext/MIME/Base64/decode-base64 ext/MIME/Base64/decode-qp
26637 +> ext/MIME/Base64/encode-base64 ext/MIME/Base64/encode-qp
26638 !> MANIFEST ext/MIME/Base64/Base64.pm ext/MIME/Base64/Changes
26639 !> ext/MIME/Base64/Makefile.PL ext/MIME/Base64/QuotedPrint.pm
26640 !> ext/MIME/Base64/t/base64.t ext/MIME/Base64/t/quoted-print.t
26641____________________________________________________________________________
26642[ 18882] By: jhi on 2003/03/10 17:35:27
26643 Log: Integrate:
26644 [ 17832]
26645 Subject: Re: [PATCH] Correct/completes Overloading in XS mods
26646 From: John Peacock <jpeacock@rowman.com>
26647 Date: Sun, 01 Sep 2002 15:00:12 -0400
26648 Message-ID: <3D7263BC.9020608@rowman.com>
26649
26650 [ 18472]
26651 Integrate perlio to mainline:
26652 [ 18240]
26653 Avoid eqtime() wiping the file (as suggested by
26654 "Luis G. Uribe C." <GUribe@SoftHome.net>
26655
26656 [ 18600]
26657 Retract the %_/SVf change (part of #18456) for PROTOTYPE (CV)
26658 dumping (but now use SvPV_nolen). (This change made an empty
26659 prototype to show up as "_" under -Uuseperlio.)
26660 Branch: maint-5.8/perl
26661 !> dump.c lib/ExtUtils/Command.pm lib/ExtUtils/xsubpp
26662 !> pod/perlxs.pod
26663____________________________________________________________________________
26664[ 18881] By: jhi on 2003/03/10 16:58:22
26665 Log: Integrate:
26666 [ 17842]
26667 printf argument mismatch in Perl_deb_stack_all() from change #17718
26668
26669 [ 18456]
26670 Subject: [PATCH] %_ (was Re: [PATCH] operation on `PL_na' may be undefined)
26671 From: Nicholas Clark <nick@unfortu.net>
26672 Date: Thu, 26 Dec 2002 21:16:27 +0000
26673 Message-ID: <20021226211626.GD284@Bagpuss.unfortu.net>
26674
26675 [ 18643]
26676 Detypo.
26677 Branch: maint-5.8/perl
26678 !> cop.h deb.c doio.c dump.c ext/Data/Dumper/Dumper.xs gv.c op.c
26679 !> pad.c perl.c pp_ctl.c pp_hot.c pp_sort.c pp_sys.c sv.c toke.c
26680 !> universal.c utf8.c
26681____________________________________________________________________________
26682[ 18880] By: jhi on 2003/03/10 16:17:50
26683 Log: Integrate from maint:
26684 [ 18428]
26685 Somehow I managed to get makefile.olds that didn't get cleaned away.
26686 Branch: perl
26687 !> Makefile.SH x2p/Makefile.SH
26688____________________________________________________________________________
26689[ 18879] By: jhi on 2003/03/10 11:51:01
26690 Log: Integrate:
26691 [ 18876]
26692 Comment fix.
26693 Branch: maint-5.8/perl
26694 !> t/io/utf8.t
26695____________________________________________________________________________
26696[ 18878] By: jhi on 2003/03/10 07:28:26
26697 Log: Integrate:
26698 [ 18836]
26699 Handle also extra directories et alia.
26700 Branch: maint-5.8/perl
26701 !> Porting/manicheck
26702____________________________________________________________________________
26703[ 18877] By: jhi on 2003/03/10 07:20:13
26704 Log: Integrate:
26705 [ 18873]
26706 Bunch of doc patches from Stas; plus regen.
26707
26708 Subject: [doc patch] perl.c's pod api entry
26709 From: Stas Bekman <stas@stason.org>
26710 Date: Mon, 10 Mar 2003 12:35:52 +1100
26711 Message-ID: <3E6BEBF8.80402@stason.org>
26712
26713 Subject: Re: [patch] perlguts.pod
26714 From: Stas Bekman <stas@stason.org>
26715 Date: Mon, 10 Mar 2003 12:38:57 +1100
26716 Message-ID: <3E6BECB1.7050009@stason.org>
26717
26718 Subject: Re: [PATCH ext/DynaLoader/DynaLoader_pm.PL] doc fix: s/dl_loadflags/dl_load_flags/
26719 From: Stas Bekman <stas@stason.org>
26720 Date: Mon, 10 Mar 2003 12:41:46 +1100
26721 Message-ID: <3E6BED5A.801@stason.org>
26722
26723 Subject: Re: [patch] perlapi.pod fix
26724 From: Stas Bekman <stas@stason.org>
26725 Date: Mon, 10 Mar 2003 12:43:33 +1100
26726 Message-ID: <3E6BEDC5.6010405@stason.org>
26727
26728 Subject: Re: [docs patch] replace gets() with fgets() in example
26729 From: Stas Bekman <stas@stason.org>
26730 Date: Mon, 10 Mar 2003 12:45:41 +1100
26731 Message-ID: <3E6BEE45.9030901@stason.org>
26732
26733 Subject: [doc patch] perlrun.pod
26734 From: Stas Bekman <stas@stason.org>
26735 Date: Mon, 10 Mar 2003 14:49:59 +1100
26736 Message-ID: <3E6C0B67.4050606@stason.org>
26737
26738 [ 18874]
26739 Subject: Re: Shared libperl.so and build issues
26740 From: Chip Turner <cturner@redhat.com>
26741 Date: 05 Jan 2003 10:35:40 -0500
26742 Message-ID: <vzky95z8v8z.fsf@minbar.devel.redhat.com>
26743
26744 [ 18875]
26745 Remove the foo-old files.
26746
26747 [ 18876]
26748 Comment fix.
26749 Branch: maint-5.8/perl
26750 !> INSTALL ext/DynaLoader/DynaLoader_pm.PL handy.h opcode.pl
26751 !> perl.c pod/perlapi.pod pod/perlembed.pod pod/perlguts.pod
26752 !> pod/perlrun.pod
26753____________________________________________________________________________
26754[ 18876] By: jhi on 2003/03/10 06:35:20
26755 Log: Comment fix.
26756 Branch: perl
26757 ! t/io/utf8.t
26758____________________________________________________________________________
26759[ 18875] By: jhi on 2003/03/10 05:31:00
26760 Log: Remove the foo-old files.
26761 Branch: perl
26762 ! opcode.pl
26763____________________________________________________________________________
26764[ 18874] By: jhi on 2003/03/10 05:23:32
26765 Log: Subject: Re: Shared libperl.so and build issues
26766 From: Chip Turner <cturner@redhat.com>
26767 Date: 05 Jan 2003 10:35:40 -0500
26768 Message-ID: <vzky95z8v8z.fsf@minbar.devel.redhat.com>
26769 Branch: perl
26770 ! INSTALL
26771____________________________________________________________________________
26772[ 18873] By: jhi on 2003/03/10 05:18:02
26773 Log: Bunch of doc patches from Stas; plus regen.
26774
26775 Subject: [doc patch] perl.c's pod api entry
26776 From: Stas Bekman <stas@stason.org>
26777 Date: Mon, 10 Mar 2003 12:35:52 +1100
26778 Message-ID: <3E6BEBF8.80402@stason.org>
26779
26780 Subject: Re: [patch] perlguts.pod
26781 From: Stas Bekman <stas@stason.org>
26782 Date: Mon, 10 Mar 2003 12:38:57 +1100
26783 Message-ID: <3E6BECB1.7050009@stason.org>
26784
26785 Subject: Re: [PATCH ext/DynaLoader/DynaLoader_pm.PL] doc fix: s/dl_loadflags/dl_load_flags/
26786 From: Stas Bekman <stas@stason.org>
26787 Date: Mon, 10 Mar 2003 12:41:46 +1100
26788 Message-ID: <3E6BED5A.801@stason.org>
26789
26790 Subject: Re: [patch] perlapi.pod fix
26791 From: Stas Bekman <stas@stason.org>
26792 Date: Mon, 10 Mar 2003 12:43:33 +1100
26793 Message-ID: <3E6BEDC5.6010405@stason.org>
26794
26795 Subject: Re: [docs patch] replace gets() with fgets() in example
26796 From: Stas Bekman <stas@stason.org>
26797 Date: Mon, 10 Mar 2003 12:45:41 +1100
26798 Message-ID: <3E6BEE45.9030901@stason.org>
26799
26800 Subject: [doc patch] perlrun.pod
26801 From: Stas Bekman <stas@stason.org>
26802 Date: Mon, 10 Mar 2003 14:49:59 +1100
26803 Message-ID: <3E6C0B67.4050606@stason.org>
26804 Branch: perl
26805 ! ext/DynaLoader/DynaLoader_pm.PL handy.h perl.c pod/perlapi.pod
26806 ! pod/perlembed.pod pod/perlguts.pod pod/perlrun.pod
26807____________________________________________________________________________
26808[ 18872] By: jhi on 2003/03/09 20:43:09
26809 Log: Integrate (and regen_headers):
26810 [ 18867]
26811 Upgrade to Encode 1.90 (plus the one extra use lib in enc_module.t)
26812
26813 [ 18868]
26814 Export the symbols from #18863; do not prototype (but export)
26815 Nick Clark's experimental COW functions.
26816 Sidenote: the embed.fnc/embed.fnc/makedef.pl thing is becoming
26817 a mess of Herculean proportions. Someone should redesign and
26818 clean up the stables.
26819
26820 [ 18869]
26821 Upgrade to Encode 1.91.
26822
26823 [ 18870]
26824 I hate embed*. Tell me what you know.
26825
26826 [ 18871]
26827 Must not hide the protos, though.
26828 Branch: maint-5.8/perl
26829 ! embed.fnc embed.h embed.pl global.sym perlapi.c
26830 ! pod/perlapi.pod proto.h
26831 !> ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
26832 !> ext/Encode/Encode.xs ext/Encode/MANIFEST
26833 !> ext/Encode/encoding.pm ext/Encode/t/Mod_EUCJP.pm
26834 !> ext/Encode/t/enc_data.t ext/Encode/t/enc_module.t
26835____________________________________________________________________________
26836[ 18871] By: jhi on 2003/03/09 20:15:13
26837 Log: Must not hide the protos, though.
26838 Branch: perl
26839 ! embed.pl proto.h
26840____________________________________________________________________________
26841[ 18870] By: jhi on 2003/03/09 20:12:11
26842 Log: I hate embed*. Tell me what you know.
26843 Branch: perl
26844 ! embed.fnc embed.h
26845____________________________________________________________________________
26846[ 18869] By: jhi on 2003/03/09 19:32:19
26847 Log: Upgrade to Encode 1.91.
26848 Branch: perl
26849 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
26850 ! ext/Encode/encoding.pm ext/Encode/t/enc_module.t
26851____________________________________________________________________________
26852[ 18868] By: jhi on 2003/03/09 19:04:22
26853 Log: Export the symbols from #18863; do not prototype (but export)
26854 Nick Clark's experimental COW functions.
26855 Sidenote: the embed.fnc/embed.fnc/makedef.pl thing is becoming
26856 a mess of Herculean proportions. Someone should redesign and
26857 clean up the stables.
26858 Branch: perl
26859 ! embed.fnc embed.pl global.sym proto.h
26860____________________________________________________________________________
26861[ 18867] By: jhi on 2003/03/09 17:12:55
26862 Log: Upgrade to Encode 1.90 (plus the one extra use lib in enc_module.t)
26863 Branch: perl
26864 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
26865 ! ext/Encode/MANIFEST ext/Encode/encoding.pm
26866 ! ext/Encode/t/Mod_EUCJP.pm ext/Encode/t/enc_data.t
26867 ! ext/Encode/t/enc_module.t
26868____________________________________________________________________________
26869[ 18866] By: jhi on 2003/03/09 13:59:01
26870 Log: Integrate:
26871 [ 18851]
26872 regen_headers tiny tidying:
26873 - regen.pl renamed as regen_lib.pl
26874 - regen_headers.pl renamed as regen.pl
26875 - added make target 'regen' (kept target 'regen_headers'
26876 for porters' brains' backward compatibility)
26877 - regen.pl fancified a bit to display the names
26878 of the files that got changed by running the scripts
26879
26880 [ 18852]
26881 Subject: [PATCH] long %ENV values for VMS
26882 From: "Craig A. Berry" <craigberry@mac.com>
26883 Date: Fri, 07 Mar 2003 13:49:50 -0600
26884 Message-ID: <3E68F7DE.8070603@mac.com>
26885
26886 [ 18853]
26887 Subject: [PATCH] Re: [perl #20551] Documentation error for IO::Select
26888 From: Richard Soderberg <perl@crystalflame.net>
26889 Date: Sat, 15 Feb 2003 01:27:17 -0500
26890 Message-Id: <87D7A731-40AE-11D7-9B07-000393801F84@crystalflame.net>
26891
26892 [ 18854]
26893 Enache Adrian reads comments.
26894
26895 [ 18855]
26896 Subject: [PATCH perldebug.pod] to explain new [<>{] behaviour - attached
26897 From: Richard.Foley@ubsw.com
26898 Date: Fri, 21 Feb 2003 13:51:51 +0100
26899 Message-ID: <B374141B0A424D4F9CF143CC51B3ADD98579F1@NZURC900PEX1.ubsgs.ubsgroup.net>
26900
26901 [ 18856]
26902 Add a B::COP::io() method, to return the cop_io field of COPs.
26903 Print it in B::Debug. Can be used later in B::Deparse to deparse
26904 the open pragma.
26905
26906 [ 18857]
26907 From Inaba Hiroto: the UTF-8 length cache wasn't
26908 updated when fbm_compile() appended a "\n".
26909
26910 [ 18858]
26911 From Inaba Hiroto: re_intuit_start set a value to
26912 PL_bostr before calling find_byclass when regexp has
26913 ROPT_UTF8 flag on. But right value for PL_bostr is set
26914 before re_intuit_start is called. PL_regdata is always
26915 assigned by cache_re(), so the whole if(prog->reganch & ROPT_UTF8){}
26916 can be deleted.
26917
26918 [ 18859]
26919 Adjust test count.
26920
26921 [ 18860]
26922 Subject: Re: [perl #20798] foo(eval {}) crashes Perl 5.8
26923 From: Enache Adrian <enache@rdslink.ro>
26924 Date: Fri, 7 Mar 2003 00:12:03 +0200
26925 Message-ID: <20030306221203.GB13330@ratsnest.hole>
26926
26927 [ 18861]
26928 Subject: Re: [perl #21498] printf behaviour changes 5.6.1(and earlier) -> 5.8
26929 From: Enache Adrian <enache@rdslink.ro>
26930 Date: Fri, 7 Mar 2003 23:28:37 +0200
26931 Message-ID: <20030307212837.GB765@ratsnest.hole>
26932
26933 (and few more test cases from the thread)
26934
26935 [ 18862]
26936 ... and add a test case for bug #20798
26937
26938 [ 18863]
26939 At Sarathy's request restore the bin5005compat Perl_foo_sv()
26940 function stubs, should be helpful for really simple extensions.
26941 Undoes large parts of changes #16289 and #16290.
26942
26943 [ 18864]
26944 Tru64: additional instructions for building a newer Berkeley DB.
26945
26946 [ 18865]
26947 From Inaba Hiroto: DATA wasn't properly utf8ed
26948 under 'use encoding'.
26949 Branch: maint-5.8/perl
26950 +> ext/Encode/t/enc_data.t regen_lib.pl
26951 - regen_headers.pl
26952 !> (integrate 27 files)
26953____________________________________________________________________________
26954[ 18865] By: jhi on 2003/03/09 13:50:57
26955 Log: From Inaba Hiroto: DATA wasn't properly utf8ed
26956 under 'use encoding'.
26957 Branch: perl
26958 + ext/Encode/t/enc_data.t
26959 ! MANIFEST ext/Encode/MANIFEST toke.c
26960____________________________________________________________________________
26961[ 18864] By: jhi on 2003/03/09 13:21:09
26962 Log: Tru64: additional instructions for building a newer Berkeley DB.
26963 Branch: perl
26964 ! README.tru64 hints/dec_osf.sh
26965____________________________________________________________________________
26966[ 18863] By: jhi on 2003/03/09 12:07:28
26967 Log: At Sarathy's request restore the bin5005compat Perl_foo_sv()
26968 function stubs, should be helpful for really simple extensions.
26969 Undoes large parts of changes #16289 and #16290.
26970 Branch: perl
26971 ! sv.c
26972____________________________________________________________________________
26973[ 18862] By: rgs on 2003/03/09 11:48:37
26974 Log: ... and add a test case for bug #20798
26975 Branch: perl
26976 ! t/op/eval.t
26977____________________________________________________________________________
26978[ 18861] By: jhi on 2003/03/09 11:46:17
26979 Log: Subject: Re: [perl #21498] printf behaviour changes 5.6.1(and earlier) -> 5.8
26980 From: Enache Adrian <enache@rdslink.ro>
26981 Date: Fri, 7 Mar 2003 23:28:37 +0200
26982 Message-ID: <20030307212837.GB765@ratsnest.hole>
26983
26984 (and few more test cases from the thread)
26985 Branch: perl
26986 ! sv.c t/op/sprintf.t
26987____________________________________________________________________________
26988[ 18860] By: rgs on 2003/03/09 11:33:09
26989 Log: Subject: Re: [perl #20798] foo(eval {}) crashes Perl 5.8
26990 From: Enache Adrian <enache@rdslink.ro>
26991 Date: Fri, 7 Mar 2003 00:12:03 +0200
26992 Message-ID: <20030306221203.GB13330@ratsnest.hole>
26993 Branch: perl
26994 ! op.c
26995____________________________________________________________________________
26996[ 18859] By: rgs on 2003/03/09 11:30:22
26997 Log: Adjust test count.
26998 Branch: perl
26999 ! t/op/pat.t
27000____________________________________________________________________________
27001[ 18858] By: jhi on 2003/03/09 10:54:10
27002 Log: From Inaba Hiroto: re_intuit_start set a value to
27003 PL_bostr before calling find_byclass when regexp has
27004 ROPT_UTF8 flag on. But right value for PL_bostr is set
27005 before re_intuit_start is called. PL_regdata is always
27006 assigned by cache_re(), so the whole if(prog->reganch & ROPT_UTF8){}
27007 can be deleted.
27008 Branch: perl
27009 ! regexec.c t/op/pat.t
27010____________________________________________________________________________
27011[ 18857] By: jhi on 2003/03/09 10:46:23
27012 Log: From Inaba Hiroto: the UTF-8 length cache wasn't
27013 updated when fbm_compile() appended a "\n".
27014 Branch: perl
27015 ! t/op/pat.t util.c
27016____________________________________________________________________________
27017[ 18856] By: rgs on 2003/03/08 20:16:36
27018 Log: Add a B::COP::io() method, to return the cop_io field of COPs.
27019 Print it in B::Debug. Can be used later in B::Deparse to deparse
27020 the open pragma.
27021 Branch: perl
27022 ! ext/B/B.pm ext/B/B.xs ext/B/B/Debug.pm
27023____________________________________________________________________________
27024[ 18855] By: rgs on 2003/03/08 19:51:40
27025 Log: Subject: [PATCH perldebug.pod] to explain new [<>{] behaviour - attached
27026 From: Richard.Foley@ubsw.com
27027 Date: Fri, 21 Feb 2003 13:51:51 +0100
27028 Message-ID: <B374141B0A424D4F9CF143CC51B3ADD98579F1@NZURC900PEX1.ubsgs.ubsgroup.net>
27029 Branch: perl
27030 ! pod/perldebug.pod
27031____________________________________________________________________________
27032[ 18854] By: jhi on 2003/03/08 19:41:25
27033 Log: Enache Adrian reads comments.
27034 Branch: perl
27035 ! perl.h
27036____________________________________________________________________________
27037[ 18853] By: rgs on 2003/03/08 19:40:13
27038 Log: Subject: [PATCH] Re: [perl #20551] Documentation error for IO::Select
27039 From: Richard Soderberg <perl@crystalflame.net>
27040 Date: Sat, 15 Feb 2003 01:27:17 -0500
27041 Message-Id: <87D7A731-40AE-11D7-9B07-000393801F84@crystalflame.net>
27042 Branch: perl
27043 ! ext/IO/lib/IO/Select.pm
27044____________________________________________________________________________
27045[ 18852] By: jhi on 2003/03/08 19:05:04
27046 Log: Subject: [PATCH] long %ENV values for VMS
27047 From: "Craig A. Berry" <craigberry@mac.com>
27048 Date: Fri, 07 Mar 2003 13:49:50 -0600
27049 Message-ID: <3E68F7DE.8070603@mac.com>
27050 Branch: perl
27051 ! vms/vms.c
27052____________________________________________________________________________
27053[ 18851] By: jhi on 2003/03/08 06:49:35
27054 Log: regen_headers tiny tidying:
27055 - regen.pl renamed as regen_lib.pl
27056 - regen_headers.pl renamed as regen.pl
27057 - added make target 'regen' (kept target 'regen_headers'
27058 for porters' brains' backward compatibility)
27059 - regen.pl fancified a bit to display the names
27060 of the files that got changed by running the scripts
27061 Branch: perl
27062 + regen_lib.pl
27063 - regen_headers.pl
27064 ! MANIFEST Makefile.SH autodoc.pl bytecode.pl embed.pl
27065 ! keywords.pl opcode.pl regcomp.pl regen.pl
27066____________________________________________________________________________
27067[ 18850] By: jhi on 2003/03/07 20:38:51
27068 Log: Integrate (and regen Configure):
27069 [ 18825]
27070 Doc typos.
27071
27072 [ 18826]
27073 Try to make PPPort.pm 5.005-friendlier (see [perl #21339]).
27074 The variant is from how List::Util Util.xs does it.
27075
27076 [ 18830]
27077 Change #18829 makes this test workaround obsolete.
27078
27079 [ 18831]
27080 Couple more _r possibilities (found in a RH 8.0 box), and
27081 the random() macros were all wrong. (I don't know why
27082 metaconfig did so much reordering of config_h.SH.)
27083
27084 [ 18833]
27085 Subject: [patch config_h.SH] redefining __attribute__
27086 From: Stas Bekman <stas@stason.org>
27087 Date: Thu, 06 Mar 2003 12:03:39 +1100
27088 Message-ID: <3E669E6B.1060606@stason.org>
27089
27090 [ 18835]
27091 Add mani(fest) check(ing) utility.
27092
27093 [ 18836]
27094 Handle also extra directories et alia.
27095
27096 [ 18837]
27097 PERL_UNICODE explanation saga continues.
27098
27099 [ 18838]
27100 Thinko fix.
27101
27102 [ 18839]
27103 Subject: [PATCH perl@18838] mg.c needs Perl_csighandler prototype
27104 From: "Craig A. Berry" <craigberry@mac.com>
27105 Date: Thu, 06 Mar 2003 10:42:05 -0600
27106 Message-ID: <3E677A5D.10805@mac.com>
27107
27108 [ 18840]
27109 Subject: cleaning up tests of the 'eval { decl. } <=> runtime decl.' assumption
27110 From: Enache Adrian <enache@rdslink.ro>
27111 Date: Wed, 5 Mar 2003 12:06:20 +0200
27112 Message-ID: <20030305100620.GA909@ratsnest.hole>
27113
27114 [ 18841]
27115 Subject: Re: [perl #20682] [fix] @- array not visible in s///
27116 From: Enache Adrian <enache@rdslink.ro>
27117 Date: Sun, 2 Mar 2003 06:05:22 +0200
27118 Message-ID: <20030302040522.GB4905@ratsnest.hole>
27119
27120 [ 18842]
27121 Subject: Re: [PATCH] let perlmodstyle mention Module::Build and Test::More
27122 From: "Jos I. Boumans" <kane@dwim.org>
27123 Date: Fri, 21 Feb 2003 20:33:53 +0100
27124 Message-ID: <3E567F21.6020006@dwim.org>
27125 (with some minor tweaks)
27126
27127 [ 18844]
27128 Good observation from Philip Newton.
27129
27130 [ 18845]
27131 Define the Perl_pp_i_modulo_1() only iff we have glibc.
27132 (Stronger variant of "pp.c: Perl_pp_i_modulo_1 needs help
27133 in non-glibc case", from Craig Berry)
27134
27135 [ 18846]
27136 Subject: [PATCH] FreeBSD 5.0 gethostbyaddr_r hints update
27137 From: Kay Roepke <kay@dolphin-services.de>
27138 Date: Thu, 06 Mar 2003 23:00:10 +0100
27139 Message-ID: <3E67C4EA.A55FFE5C@dolphin-services.de>
27140
27141 (plus change the d_gethostbyaddr_r_proto default to "0",
27142 that is what an undefined r_proto looks like)
27143
27144 [ 18847]
27145 Extra character noticed by Tels.
27146
27147 [ 18848]
27148 Give pointers to runtime Unicode changes.
27149 Branch: maint-5.8/perl
27150 +> Porting/manicheck
27151 ! Configure config_h.SH
27152 !> (integrate 28 files)
27153____________________________________________________________________________
27154[ 18849] By: nick on 2003/03/07 11:45:28
27155 Log: Integrate mainline
27156 Branch: perlio
27157 +> Porting/manicheck Porting/p4d2p ext/Encode/t/Mod_EUCJP.pm
27158 +> ext/Encode/t/enc_module.enc ext/Encode/t/enc_module.t
27159 +> lib/assertions.pm lib/assertions/activate.pm
27160 +> t/comp/assertions.t t/op/localref.t t/run/switchC.t
27161 +> t/run/switch_A.t t/uni/write.t
27162 !> (integrate 202 files)
27163____________________________________________________________________________
27164[ 18848] By: jhi on 2003/03/07 08:40:52
27165 Log: Give pointers to runtime Unicode changes.
27166 Branch: perl
27167 ! pod/perlrun.pod pod/perlvar.pod
27168____________________________________________________________________________
27169[ 18847] By: jhi on 2003/03/07 08:02:50
27170 Log: Extra character noticed by Tels.
27171 Branch: perl
27172 ! MANIFEST
27173____________________________________________________________________________
27174[ 18846] By: jhi on 2003/03/07 05:28:11
27175 Log: Subject: [PATCH] FreeBSD 5.0 gethostbyaddr_r hints update
27176 From: Kay Roepke <kay@dolphin-services.de>
27177 Date: Thu, 06 Mar 2003 23:00:10 +0100
27178 Message-ID: <3E67C4EA.A55FFE5C@dolphin-services.de>
27179
27180 (plus change the d_gethostbyaddr_r_proto default to "0",
27181 that is what an undefined r_proto looks like)
27182 Branch: perl
27183 ! hints/freebsd.sh
27184____________________________________________________________________________
27185[ 18845] By: jhi on 2003/03/07 05:21:43
27186 Log: Define the Perl_pp_i_modulo_1() only iff we have glibc.
27187 (Stronger variant of "pp.c: Perl_pp_i_modulo_1 needs help
27188 in non-glibc case", from Craig Berry)
27189 Branch: perl
27190 ! pp.c
27191____________________________________________________________________________
27192[ 18844] By: jhi on 2003/03/07 05:05:57
27193 Log: Good observation from Philip Newton.
27194 Branch: perl
27195 ! pod/perlrun.pod
27196____________________________________________________________________________
27197[ 18843] By: rgs on 2003/03/06 21:59:02
27198 Log: Make the -A switch work without an assertion name.
27199 by Salvador Fandiño.
27200 Branch: perl
27201 ! perl.c t/run/switch_A.t
27202____________________________________________________________________________
27203[ 18842] By: rgs on 2003/03/06 21:27:15
27204 Log: Subject: Re: [PATCH] let perlmodstyle mention Module::Build and Test::More
27205 From: "Jos I. Boumans" <kane@dwim.org>
27206 Date: Fri, 21 Feb 2003 20:33:53 +0100
27207 Message-ID: <3E567F21.6020006@dwim.org>
27208 (with some minor tweaks)
27209 Branch: perl
27210 ! pod/perlmodstyle.pod
27211____________________________________________________________________________
27212[ 18841] By: rgs on 2003/03/06 20:56:32
27213 Log: Subject: Re: [perl #20682] [fix] @- array not visible in s///
27214 From: Enache Adrian <enache@rdslink.ro>
27215 Date: Sun, 2 Mar 2003 06:05:22 +0200
27216 Message-ID: <20030302040522.GB4905@ratsnest.hole>
27217 Branch: perl
27218 ! t/op/subst.t
27219____________________________________________________________________________
27220[ 18840] By: rgs on 2003/03/06 20:45:08
27221 Log: Subject: cleaning up tests of the 'eval { decl. } <=> runtime decl.' assumption
27222 From: Enache Adrian <enache@rdslink.ro>
27223 Date: Wed, 5 Mar 2003 12:06:20 +0200
27224 Message-ID: <20030305100620.GA909@ratsnest.hole>
27225 Branch: perl
27226 ! ext/POSIX/t/sigaction.t ext/POSIX/t/waitpid.t t/op/method.t
27227 ! t/op/sub_lval.t t/op/ver.t t/run/fresh_perl.t
27228____________________________________________________________________________
27229[ 18839] By: jhi on 2003/03/06 17:21:36
27230 Log: Subject: [PATCH perl@18838] mg.c needs Perl_csighandler prototype
27231 From: "Craig A. Berry" <craigberry@mac.com>
27232 Date: Thu, 06 Mar 2003 10:42:05 -0600
27233 Message-ID: <3E677A5D.10805@mac.com>
27234 Branch: perl
27235 ! mg.c
27236____________________________________________________________________________
27237[ 18838] By: jhi on 2003/03/06 10:11:22
27238 Log: Thinko fix.
27239 Branch: perl
27240 ! Porting/findrfuncs
27241____________________________________________________________________________
27242[ 18837] By: jhi on 2003/03/06 09:33:33
27243 Log: PERL_UNICODE explanation saga continues.
27244 Branch: perl
27245 ! pod/perlrun.pod
27246____________________________________________________________________________
27247[ 18836] By: jhi on 2003/03/06 07:55:03
27248 Log: Handle also extra directories et alia.
27249 Branch: perl
27250 ! Porting/manicheck
27251____________________________________________________________________________
27252[ 18835] By: jhi on 2003/03/06 07:48:05
27253 Log: Add mani(fest) check(ing) utility.
27254 Branch: perl
27255 + Porting/manicheck
27256 ! MANIFEST
27257____________________________________________________________________________
27258[ 18834] By: jhi on 2003/03/06 05:36:36
27259 Log: metaconfig unit change for #18833.
27260 Branch: metaconfig
27261 + U/modified/d_attribut.U
27262____________________________________________________________________________
27263[ 18833] By: jhi on 2003/03/06 05:36:13
27264 Log: Subject: [patch config_h.SH] redefining __attribute__
27265 From: Stas Bekman <stas@stason.org>
27266 Date: Thu, 06 Mar 2003 12:03:39 +1100
27267 Message-ID: <3E669E6B.1060606@stason.org>
27268 Branch: perl
27269 ! Configure NetWare/config_H.wc Porting/config.sh
27270 ! Porting/config_H config_h.SH plan9/config.plan9
27271 ! plan9/config_h.sample win32/config_H.bc win32/config_H.gc
27272 ! win32/config_H.vc win32/config_H.vc64 wince/config_H.ce
27273____________________________________________________________________________
27274[ 18832] By: jhi on 2003/03/05 19:57:44
27275 Log: Metaconfig unit changes for #18831 (most just Copyright
27276 bumpages, but get{host,net}byaddr and random_r units did
27277 get real updates.)
27278 Branch: metaconfig
27279 ! U/threads/d_asctime_r.U U/threads/d_crypt_r.U
27280 ! U/threads/d_ctermid_r.U U/threads/d_ctime_r.U
27281 ! U/threads/d_drand48_r.U U/threads/d_endgrent_r.U
27282 ! U/threads/d_endhostent_r.U U/threads/d_endnetent_r.U
27283 ! U/threads/d_endprotoent_r.U U/threads/d_endpwent_r.U
27284 ! U/threads/d_endservent_r.U U/threads/d_getgrent_r.U
27285 ! U/threads/d_getgrgid_r.U U/threads/d_getgrnam_r.U
27286 ! U/threads/d_gethostbyaddr_r.U U/threads/d_gethostbyname_r.U
27287 ! U/threads/d_gethostent_r.U U/threads/d_getlogin_r.U
27288 ! U/threads/d_getnetbyaddr_r.U U/threads/d_getnetbyname_r.U
27289 ! U/threads/d_getnetent_r.U U/threads/d_getprotobyname_r.U
27290 ! U/threads/d_getprotobynumber_r.U U/threads/d_getprotoent_r.U
27291 ! U/threads/d_getpwent_r.U U/threads/d_getpwnam_r.U
27292 ! U/threads/d_getpwuid_r.U U/threads/d_getservbyname_r.U
27293 ! U/threads/d_getservbyport_r.U U/threads/d_getservent_r.U
27294 ! U/threads/d_getspnam_r.U U/threads/d_gmtime_r.U
27295 ! U/threads/d_localtime_r.U U/threads/d_random_r.U
27296 ! U/threads/d_readdir64_r.U U/threads/d_readdir_r.U
27297 ! U/threads/d_setgrent_r.U U/threads/d_sethostent_r.U
27298 ! U/threads/d_setlocale_r.U U/threads/d_setnetent_r.U
27299 ! U/threads/d_setprotoent_r.U U/threads/d_setpwent_r.U
27300 ! U/threads/d_setservent_r.U U/threads/d_srand48_r.U
27301 ! U/threads/d_srandom_r.U U/threads/d_strerror_r.U
27302 ! U/threads/d_tmpnam_r.U U/threads/d_ttyname_r.U
27303____________________________________________________________________________
27304[ 18831] By: jhi on 2003/03/05 19:56:41
27305 Log: Couple more _r possibilities (found in a RH 8.0 box), and
27306 the random() macros were all wrong. (I don't know why
27307 metaconfig did so much reordering of config_h.SH.)
27308 Branch: perl
27309 ! Configure config_h.SH reentr.h reentr.pl
27310____________________________________________________________________________
27311[ 18830] By: rgs on 2003/03/04 23:25:01
27312 Log: Change #18829 makes this test workaround obsolete.
27313 Branch: perl
27314 ! ext/B/t/deparse.t
27315____________________________________________________________________________
27316[ 18829] By: rgs on 2003/03/04 22:23:41
27317 Log: Patch by Salvador Fandiño to read the warning mask
27318 returned by caller() and ${^WARNING_BITS} from
27319 $warnings::Bits{all} and not from the hardcoded core
27320 constant. (This mask could have been extended by
27321 warnings::register.) Plus tests.
27322 Branch: perl
27323 ! mg.c pp_ctl.c t/op/caller.t
27324____________________________________________________________________________
27325[ 18828] By: rgs on 2003/03/04 20:49:59
27326 Log: Subject: [PATCH] assertions
27327 From: Salvador Fandiño <sfandino@yahoo.com>
27328 Date: Fri, 21 Feb 2003 17:26:16 +0000
27329 Message-ID: <3E566138.4090709@yahoo.com>
27330 and the complement : (with added comments)
27331 Subject: [PATCH] bug in ext/B/t/deparse.t
27332 Message-ID: <3E563E16.7060303@yahoo.com>
27333 plus perldiag.pod patch for the new warning
27334 (previous change was, once again, empty)
27335 Branch: perl
27336 ! ext/B/t/deparse.t lib/assertions.pm lib/assertions/activate.pm
27337 ! lib/perl5db.pl lib/warnings.pm op.c perl.h perlapi.c
27338 ! pod/perldiag.pod warnings.h warnings.pl
27339____________________________________________________________________________
27340[ 18827] By: rgs on 2003/03/04 20:48:09
27341 Log: Subject: [PATCH] assertions
27342 From: Salvador Fandiño <sfandino@yahoo.com>
27343 Date: Fri, 21 Feb 2003 17:26:16 +0000
27344 Message-ID: <3E566138.4090709@yahoo.com>
27345 and the complement : (with added comments)
27346 Subject: [PATCH] bug in ext/B/t/deparse.t
27347 Message-ID: <3E563E16.7060303@yahoo.com>
27348 plus perldiag.pod patch for the new warning
27349 Branch: perl
27350 ! ext/B/t/deparse.t lib/assertions.pm lib/assertions/activate.pm
27351 ! lib/perl5db.pl lib/warnings.pm op.c perl.h perlapi.c
27352 ! pod/perldiag.pod warnings.h warnings.pl
27353____________________________________________________________________________
27354[ 18826] By: jhi on 2003/03/04 20:22:25
27355 Log: Try to make PPPort.pm 5.005-friendlier (see [perl #21339]).
27356 The variant is from how List::Util Util.xs does it.
27357 Branch: perl
27358 ! ext/Devel/PPPort/PPPort.pm
27359____________________________________________________________________________
27360[ 18825] By: rgs on 2003/03/04 19:56:28
27361 Log: Doc typos.
27362 Branch: perl
27363 ! lib/File/Find.pm
27364____________________________________________________________________________
27365[ 18824] By: jhi on 2003/03/04 05:39:18
27366 Log: Integrate:
27367 [ 18816]
27368 Upgrade to Encode 1.89. The enc_module.t required
27369 a little tweak, sending that to Dan.
27370
27371 [ 18817]
27372 Upgrade to Unicode::Normalize 0.20.
27373
27374 [ 18818]
27375 Sync with libnet-1.13
27376
27377 [ 18819]
27378 Further clarification on PERL_UNICODE's semantics.
27379
27380 [ 18820]
27381 Fixes bug #15654 bizarre constant mangling in 5.8.0
27382 What happened was that a constant was freed, the pad released but
27383 the pad slot still held the SV, when pad slot was reallocated
27384 to be a target for a stringify, it did a sv_setpv on the target
27385 and the original SV was wiped out. When this SV was later on
27386 to new places using the constant, they got the wrong value.
27387 By replacing pad_free with pad_swipe for these cases, we
27388 won't have such a problem. (pad_swipe also removes the
27389 pointer to the original SV).
27390
27391 [ 18821]
27392 Can't test this without PerlIO.
27393
27394 [ 18822]
27395 Subject: Re: [perl #21395] rcatline doesn't grok utf8
27396 From: Enache Adrian <enache@rdslink.ro>
27397 Date: Sun, 2 Mar 2003 05:43:54 +0200
27398 Message-ID: <20030302034354.GA4905@ratsnest.hole>
27399
27400 [ 18823]
27401 Try to give rcatline() a good jog on Unicode.
27402 Branch: maint-5.8/perl
27403 +> ext/Encode/t/Mod_EUCJP.pm ext/Encode/t/enc_module.enc
27404 +> ext/Encode/t/enc_module.t
27405 !> (integrate 29 files)
27406____________________________________________________________________________
27407[ 18823] By: jhi on 2003/03/04 05:33:50
27408 Log: Try to give rcatline() a good jog on Unicode.
27409 Branch: perl
27410 ! t/io/utf8.t
27411____________________________________________________________________________
27412[ 18822] By: jhi on 2003/03/04 05:14:13
27413 Log: Subject: Re: [perl #21395] rcatline doesn't grok utf8
27414 From: Enache Adrian <enache@rdslink.ro>
27415 Date: Sun, 2 Mar 2003 05:43:54 +0200
27416 Message-ID: <20030302034354.GA4905@ratsnest.hole>
27417 Branch: perl
27418 ! sv.c t/io/utf8.t
27419____________________________________________________________________________
27420[ 18821] By: jhi on 2003/03/04 04:58:36
27421 Log: Can't test this without PerlIO.
27422 Branch: perl
27423 ! t/uni/write.t
27424____________________________________________________________________________
27425[ 18820] By: sky on 2003/03/04 01:01:07
27426 Log: Fixes bug #15654 bizarre constant mangling in 5.8.0
27427 What happened was that a constant was freed, the pad released but
27428 the pad slot still held the SV, when pad slot was reallocated
27429 to be a target for a stringify, it did a sv_setpv on the target
27430 and the original SV was wiped out. When this SV was later on
27431 to new places using the constant, they got the wrong value.
27432 By replacing pad_free with pad_swipe for these cases, we
27433 won't have such a problem. (pad_swipe also removes the
27434 pointer to the original SV).
27435 Branch: perl
27436 ! op.c
27437____________________________________________________________________________
27438[ 18819] By: jhi on 2003/03/03 19:15:07
27439 Log: Further clarification on PERL_UNICODE's semantics.
27440 Branch: perl
27441 ! pod/perlrun.pod
27442____________________________________________________________________________
27443[ 18818] By: gbarr on 2003/03/03 10:07:44
27444 Log: Sync with libnet-1.13
27445 Branch: perl
27446 ! lib/Net/ChangeLog.libnet lib/Net/Cmd.pm lib/Net/FTP.pm
27447 ! lib/Net/POP3.pm lib/Net/SMTP.pm
27448____________________________________________________________________________
27449[ 18817] By: jhi on 2003/03/03 06:45:59
27450 Log: Upgrade to Unicode::Normalize 0.20.
27451 Branch: perl
27452 ! ext/Unicode/Normalize/Changes
27453 ! ext/Unicode/Normalize/Normalize.pm
27454 ! ext/Unicode/Normalize/Normalize.xs
27455 ! ext/Unicode/Normalize/README ext/Unicode/Normalize/mkheader
27456 ! ext/Unicode/Normalize/t/func.t ext/Unicode/Normalize/t/norm.t
27457 ! ext/Unicode/Normalize/t/test.t
27458____________________________________________________________________________
27459[ 18816] By: jhi on 2003/03/03 06:17:28
27460 Log: Upgrade to Encode 1.89. The enc_module.t required
27461 a little tweak, sending that to Dan.
27462 Branch: perl
27463 + ext/Encode/t/Mod_EUCJP.pm ext/Encode/t/enc_module.enc
27464 + ext/Encode/t/enc_module.t
27465 ! MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
27466 ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/MANIFEST
27467 ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
27468 ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
27469 ! ext/Encode/ucm/viscii.ucm
27470____________________________________________________________________________
27471[ 18815] By: jhi on 2003/03/03 05:43:25
27472 Log: Integrate:
27473 [ 18813]
27474 Use a macro for abs() to avoid the possible truncation to an int;
27475 also make an explicit (double)cast for the arguments to fabs().
27476 Branch: maint-5.8/perl
27477 !> perl.h pp.c sv.c
27478____________________________________________________________________________
27479[ 18814] By: jhi on 2003/03/03 05:37:43
27480 Log: Integrate:
27481 [ 18749]
27482 Subject: [PATCH] Make adding notes to patchlevel.h easier
27483 From: andreas.koenig@anima.de (Andreas J. Koenig)
27484 Date: Tue, 18 Feb 2003 11:48:40 +0100
27485 Message-ID: <m3n0kt27av.fsf@k242.linux.bogus>
27486
27487 [ 18809]
27488 Subject: [perl #21031] $File::Find::name ne $_ w/no_chdir
27489 From: "Anders Johnson" (via RT) <perlbug-followup@perl.org>
27490 Date: 15 Feb 2003 00:21:41 -0000
27491 Message-Id: <rt-21031-51306.12.8541374577158@bugs6.perl.org>
27492
27493 [ 18810]
27494 Subject: [PATCH] Re: [perl #18872] File::Basename example misleading
27495 From: Richard Soderberg <perl@crystalflame.net>
27496 Date: Sat, 15 Feb 2003 01:27:21 -0500
27497 Message-Id: <89FAC8B9-40AE-11D7-9B07-000393801F84@crystalflame.net>
27498
27499 [ 18811]
27500 Subject: [perl #21289] [Fwd: IPC::Msg bug report]
27501 From: Edmund Bacon (via RT) <perlbug-followup@perl.org>
27502 Date: 18 Feb 2003 21:05:15 -0000
27503 Message-Id: <rt-21289-52384.13.2700974026643@bugs6.perl.org>
27504
27505 [ 18812]
27506 Subject: Re: [PATCH] Make adding notes to patchlevel.h easier
27507 From: andreas.koenig@anima.de (Andreas J. Koenig)
27508 Date: Wed, 19 Feb 2003 11:05:28 +0100
27509 Message-ID: <m3d6lozitz.fsf@k242.linux.bogus>
27510 Branch: maint-5.8/perl
27511 !> ext/IPC/SysV/Msg.pm lib/File/Basename.pm lib/File/Find.pm
27512 !> patchlevel.h
27513____________________________________________________________________________
27514[ 18813] By: jhi on 2003/03/03 05:33:21
27515 Log: Use a macro for abs() to avoid the possible truncation to an int;
27516 also make an explicit (double)cast for the arguments to fabs().
27517 Branch: perl
27518 ! perl.h pp.c sv.c util.c
27519____________________________________________________________________________
27520[ 18812] By: hv on 2003/03/02 22:36:05
27521 Log: Subject: Re: [PATCH] Make adding notes to patchlevel.h easier
27522 From: andreas.koenig@anima.de (Andreas J. Koenig)
27523 Date: Wed, 19 Feb 2003 11:05:28 +0100
27524 Message-ID: <m3d6lozitz.fsf@k242.linux.bogus>
27525 Branch: perl
27526 ! patchlevel.h
27527____________________________________________________________________________
27528[ 18811] By: hv on 2003/03/02 22:30:50
27529 Log: Subject: [perl #21289] [Fwd: IPC::Msg bug report]
27530 From: Edmund Bacon (via RT) <perlbug-followup@perl.org>
27531 Date: 18 Feb 2003 21:05:15 -0000
27532 Message-Id: <rt-21289-52384.13.2700974026643@bugs6.perl.org>
27533 Branch: perl
27534 ! ext/IPC/SysV/Msg.pm
27535____________________________________________________________________________
27536[ 18810] By: hv on 2003/03/02 21:59:10
27537 Log: Subject: [PATCH] Re: [perl #18872] File::Basename example misleading
27538 From: Richard Soderberg <perl@crystalflame.net>
27539 Date: Sat, 15 Feb 2003 01:27:21 -0500
27540 Message-Id: <89FAC8B9-40AE-11D7-9B07-000393801F84@crystalflame.net>
27541 Branch: perl
27542 ! lib/File/Basename.pm
27543____________________________________________________________________________
27544[ 18809] By: hv on 2003/03/02 21:54:53
27545 Log: Subject: [perl #21031] $File::Find::name ne $_ w/no_chdir
27546 From: "Anders Johnson" (via RT) <perlbug-followup@perl.org>
27547 Date: 15 Feb 2003 00:21:41 -0000
27548 Message-Id: <rt-21031-51306.12.8541374577158@bugs6.perl.org>
27549 Branch: perl
27550 ! lib/File/Find.pm
27551____________________________________________________________________________
27552[ 18808] By: jhi on 2003/03/02 21:29:38
27553 Log: Integrate:
27554 [ 18805]
27555 Subject: Re: [perl #21411] [fix] Postponed RE with split()
27556 From: Enache Adrian <enache@rdslink.ro>
27557 Date: Sun, 2 Mar 2003 10:11:27 +0200
27558 Message-ID: <20030302081127.GA10782@ratsnest.hole>
27559
27560 [ 18807]
27561 Reverse copyright update (#18801) for files not changed in 2003.
27562 Branch: maint-5.8/perl
27563 !> (integrate 50 files)
27564____________________________________________________________________________
27565[ 18807] By: hv on 2003/03/02 21:22:56
27566 Log: Reverse copyright update (#18801) for files not changed in 2003.
27567 Branch: perl
27568 ! EXTERN.h INTERN.h README av.h cc_runtime.h deb.c doop.c
27569 ! dosish.h fakethr.h form.h globals.c gv.h handy.h hv.h
27570 ! keywords.h keywords.pl mg.h miniperlmain.c numeric.c pad.h
27571 ! perlapi.c perlsdio.h perlsfio.h perlvars.h perly.y pp.h
27572 ! regcomp.h run.c scope.h taint.c thread.h unixish.h utf8.h
27573 ! utfebcdic.h util.h x2p/EXTERN.h x2p/INTERN.h x2p/a2p.c
27574 ! x2p/a2p.h x2p/a2p.y x2p/hash.c x2p/hash.h x2p/proto.h
27575 ! x2p/str.c x2p/str.h x2p/util.c x2p/util.h x2p/walk.c
27576____________________________________________________________________________
27577[ 18806] By: jhi on 2003/03/02 18:14:21
27578 Log: Subject: perl5db.pl patch against missing args destroying pre-post command setups
27579 From: Richard.Foley@ubsw.com
27580 Date: Wed, 19 Feb 2003 10:20:33 +0100
27581 Branch: maint-5.8/perl
27582 ! lib/perl5db.pl
27583____________________________________________________________________________
27584[ 18805] By: hv on 2003/03/02 16:29:28
27585 Log: Subject: Re: [perl #21411] [fix] Postponed RE with split()
27586 From: Enache Adrian <enache@rdslink.ro>
27587 Date: Sun, 2 Mar 2003 10:11:27 +0200
27588 Message-ID: <20030302081127.GA10782@ratsnest.hole>
27589 Branch: perl
27590 ! pp.c t/op/pat.t
27591____________________________________________________________________________
27592[ 18804] By: jhi on 2003/03/02 16:22:35
27593 Log: Integrate:
27594 [ 18784]
27595 An already fixed bug from perl-unicode.
27596
27597 [ 18785]
27598 Subject: Re: [PATCH] Re: format, PerlIO and utf8
27599 From: Inaba Hiroto <inaba@st.rim.or.jp>
27600 Date: Mon, 10 Feb 2003 00:04:51 +0900
27601 Message-ID: <3E466E12.E5349D84@st.rim.or.jp>
27602
27603 [ 18794]
27604 Further Unicode formats patching from Inaba Hiroto.
27605
27606 [ 18797]
27607 Patch for [perl #9402], known also as "glibc _moddi3 bug
27608 with negative quads", or also as RedHat bug #65612.
27609
27610 [ 18798]
27611 Go with "right = -right" for greater portability, some platforms
27612 might require llabs() to get abs() of long longs.
27613
27614 [ 18799]
27615 The -CI cannot be easily tested under UTF-8 locale with
27616 the t/test.pl (the 'stdin' data gets doubly UTF-8-ied).
27617 Also other small tweaks in the -C neighbourhood.
27618
27619 [ 18801]
27620 Update all copyrights to 2003, from Jarkko
27621
27622 [ 18802]
27623 Narrow down the -C test skippage.
27624
27625 [ 18803]
27626 Subject: RE: [perl #20613] Perl_magic_setsig/clearsig problems (patch included)
27627 From: "Anders Johnson" <ajohnson@wischip.com>
27628 Date: Mon, 10 Feb 2003 14:09:46 -0800
27629 Message-ID: <000e01c2d151$2228ca90$9800a8c0@wis.com>
27630 Branch: maint-5.8/perl
27631 +> t/uni/write.t
27632 !> (integrate 101 files)
27633____________________________________________________________________________
27634[ 18803] By: hv on 2003/03/02 16:12:34
27635 Log: Subject: RE: [perl #20613] Perl_magic_setsig/clearsig problems (patch included)
27636 From: "Anders Johnson" <ajohnson@wischip.com>
27637 Date: Mon, 10 Feb 2003 14:09:46 -0800
27638 Message-ID: <000e01c2d151$2228ca90$9800a8c0@wis.com>
27639 Branch: perl
27640 ! mg.c t/op/magic.t
27641____________________________________________________________________________
27642[ 18802] By: jhi on 2003/03/02 15:39:06
27643 Log: Narrow down the -C test skippage.
27644 Branch: perl
27645 ! t/run/switchC.t
27646____________________________________________________________________________
27647[ 18801] By: hv on 2003/03/02 15:24:22
27648 Log: Update all copyrights to 2003, from Jarkko
27649 Branch: perl
27650 ! EXTERN.h INTERN.h README XSUB.h av.c av.h cc_runtime.h cop.h
27651 ! cv.h deb.c doio.c doop.c dosish.h dump.c embed.h embed.pl
27652 ! embedvar.h fakesdio.h fakethr.h form.h global.sym globals.c
27653 ! gv.c gv.h handy.h hv.c hv.h keywords.h keywords.pl locale.c
27654 ! mg.c mg.h miniperlmain.c nostdio.h numeric.c op.c op.h
27655 ! opcode.h opcode.pl opnames.h pad.c pad.h patchlevel.h perl.c
27656 ! perl.h perlapi.c perlapi.h perlio.h perlsdio.h perlsfio.h
27657 ! perlvars.h perly.y pp.c pp.h pp_ctl.c pp_hot.c pp_pack.c
27658 ! pp_sort.c pp_sys.c proto.h reentr.c reentr.h reentr.pl
27659 ! regcomp.c regcomp.h regexec.c regexp.h run.c scope.c scope.h
27660 ! sv.c sv.h taint.c thrdvar.h thread.h toke.c universal.c
27661 ! unixish.h utf8.c utf8.h utfebcdic.h util.c util.h x2p/EXTERN.h
27662 ! x2p/INTERN.h x2p/a2p.c x2p/a2p.h x2p/a2p.y x2p/hash.c
27663 ! x2p/hash.h x2p/proto.h x2p/str.c x2p/str.h x2p/util.c
27664 ! x2p/util.h x2p/walk.c xsutils.c
27665____________________________________________________________________________
27666[ 18800] By: hv on 2003/03/02 15:16:38
27667 Log: Subject: [PATCH] for perl5db.pl against missing args destroying pre-post command setups
27668 From: Richard.Foley@ubsw.com
27669 Date: Wed, 19 Feb 2003 13:24:38 +0100
27670 Message-ID: <B374141B0A424D4F9CF143CC51B3ADD98579DB@NZURC900PEX1.ubsgs.ubsgroup.net>
27671 Branch: perl
27672 ! lib/perl5db.pl
27673____________________________________________________________________________
27674[ 18799] By: jhi on 2003/03/02 13:34:13
27675 Log: The -CI cannot be easily tested under UTF-8 locale with
27676 the t/test.pl (the 'stdin' data gets doubly UTF-8-ied).
27677 Also other small tweaks in the -C neighbourhood.
27678 Branch: perl
27679 ! perl.c perl.h t/run/switchC.t util.c
27680____________________________________________________________________________
27681[ 18798] By: jhi on 2003/03/02 09:12:06
27682 Log: Go with "right = -right" for greater portability, some platforms
27683 might require llabs() to get abs() of long longs.
27684 Branch: perl
27685 ! pp.c
27686____________________________________________________________________________
27687[ 18797] By: jhi on 2003/03/02 08:07:32
27688 Log: Patch for [perl #9402], known also as "glibc _moddi3 bug
27689 with negative quads", or also as RedHat bug #65612.
27690 Branch: perl
27691 ! pp.c
27692____________________________________________________________________________
27693[ 18796] By: jhi on 2003/03/02 07:34:54
27694 Log: Forgotten from change #18795.
27695 Branch: perl
27696 ! global.sym
27697____________________________________________________________________________
27698[ 18795] By: jhi on 2003/03/02 07:27:44
27699 Log: Subject: Re: [PATCH embed.fnc] Re: [PATCH] Get MSWin32 back compiling
27700 From: Abe Timmerman <abe@ztreet.demon.nl>
27701 Date: Sun, 2 Mar 2003 02:03:16 +0100
27702 Message-Id: <200303020203.16708.abe@ztreet.demon.nl>
27703 Branch: perl
27704 ! embed.fnc embed.h makedef.pl
27705____________________________________________________________________________
27706[ 18794] By: jhi on 2003/03/02 07:21:36
27707 Log: Further Unicode formats patching from Inaba Hiroto.
27708 Branch: perl
27709 + t/uni/write.t
27710 ! MANIFEST pp_ctl.c
27711____________________________________________________________________________
27712[ 18793] By: jhi on 2003/03/01 08:18:35
27713 Log: Integrate change #18788 from maint.
27714 Branch: perl
27715 !> perl.h
27716____________________________________________________________________________
27717[ 18792] By: jhi on 2003/03/01 08:14:43
27718 Log: Subject: [PATCH] Get MSWin32 back compiling
27719 From: Abe Timmerman <abe@ztreet.demon.nl>
27720 Date: Sat, 1 Mar 2003 04:31:19 +0100
27721 Message-Id: <200303010431.20205.abe@ztreet.demon.nl>
27722 Branch: perl
27723 ! embed.fnc embed.h global.sym makedef.pl
27724____________________________________________________________________________
27725[ 18791] By: jhi on 2003/02/28 20:05:43
27726 Log: More lexical patches merged by Dave Mitchell.
27727
27728 18048 PL_curpad == AvARRAY(PL_comppad) always
27729 18142 Re: threads and Win2000 (ithread cloning prob fix)
27730 18220 allow evals to see the full lexical scope
27731 18307 lexical "my" variables not visible in debugger "x" command
27732 18528 [PATCH pp_ctl.c] silence warning
27733 18223 SvFAKE lexicals in scope for all of the sub
27734 18302 Proper fix for CvOUTSIDE weak refcounting
27735 18571 Re: difference between my and our before introduction
27736 Branch: maint-5.8/perl
27737 ! cop.h cv.h dump.c embed.fnc embed.h ext/B/B.pm ext/B/B.xs
27738 ! ext/B/B/Bytecode.pm ext/B/B/C.pm ext/B/B/Debug.pm
27739 ! ext/B/B/Deparse.pm ext/B/defsubs_h.PL ext/Devel/Peek/Peek.t
27740 ! ext/List/Util/Util.xs op.c pad.c pad.h perl.c pod/perlapi.pod
27741 ! pod/perlfunc.pod pp_ctl.c pp_hot.c proto.h regcomp.c regexec.c
27742 ! scope.c scope.h sv.c sv.h t/comp/our.t t/op/closure.t
27743 ! t/op/eval.t toke.c
27744____________________________________________________________________________
27745[ 18790] By: jhi on 2003/02/28 06:34:27
27746 Log: The Great Pad Run of '02
27747
27748 18577 move pad.c warnings to different test file
27749 18516 microperl update. (reapplied those bits which ref pad.[ch])
27750 18311 [jhi@iki.fi: enums are not nums]
27751 18277 VMS build update (reapplied those bits which ref pad.[ch])
27752 18012 #18005 was not enough
27753 18006 Re: closure failures (interm fix for pad_new using SAVECOMMPAD())
27754 18005 Building bleadperl (minperl) fails completely under VC7
27755 17975 'Non ANSI feature detection
27756 17953 [PATCH pad.c,h] move all pad-related code to its own src file
27757
27758 Again, from Dave Mitchell.
27759 Branch: maint-5.8/perl
27760 + pad.c pad.h t/lib/warnings/pad
27761 ! MANIFEST Makefile.SH Makefile.micro cop.h cv.h dump.c
27762 ! embed.fnc embed.h ext/B/B.xs ext/Devel/Peek/Peek.t op.c op.h
27763 ! perl.c perl.h pp.c pp_ctl.c pp_hot.c pp_sort.c pp_sys.c
27764 ! proto.h scope.c sv.c t/lib/warnings/op toke.c
27765 ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
27766____________________________________________________________________________
27767[ 18789] By: jhi on 2003/02/28 06:10:38
27768 Log: )
27769
27770 17843 (fix for 17718) [PATCH deb.c] Re: HiRes failure is success?
27771 17723 (fix for 17718) deb.c compile time error
27772 17718 add verbose stack display option, -Dvs
27773
27774 Combined patch from Dave Mitchell.
27775 Branch: maint-5.8/perl
27776 ! deb.c dump.c embed.fnc embed.h embedvar.h perl.c perl.h
27777 ! proto.h
27778____________________________________________________________________________
27779[ 18788] By: jhi on 2003/02/28 06:03:25
27780 Log: Subject: Re: MSWin32 seems lost again (18785)
27781 From: Enache Adrian <enache@rdslink.ro>
27782 Date: Fri, 28 Feb 2003 03:34:36 +0200
27783 Message-ID: <20030228013436.GA906@ratsnest.hole>
27784 Branch: maint-5.8/perl
27785 ! perl.h
27786____________________________________________________________________________
27787[ 18787] By: jhi on 2003/02/27 18:24:32
27788 Log: Wrong zero.
27789 Branch: maint-5.8/perl
27790 ! patchlevel.h
27791____________________________________________________________________________
27792[ 18786] By: jhi on 2003/02/27 15:36:40
27793 Log: I got bored by the uni/tr_utf8.t failing unnecessarily.
27794 Branch: maint-5.8/perl
27795 ! patchlevel.h
27796____________________________________________________________________________
27797[ 18785] By: jhi on 2003/02/26 20:38:55
27798 Log: Subject: Re: [PATCH] Re: format, PerlIO and utf8
27799 From: Inaba Hiroto <inaba@st.rim.or.jp>
27800 Date: Mon, 10 Feb 2003 00:04:51 +0900
27801 Message-ID: <3E466E12.E5349D84@st.rim.or.jp>
27802 Branch: perl
27803 ! pp_ctl.c toke.c
27804____________________________________________________________________________
27805[ 18784] By: jhi on 2003/02/26 19:45:53
27806 Log: An already fixed bug from perl-unicode.
27807 Branch: perl
27808 ! t/op/pat.t
27809____________________________________________________________________________
27810[ 18783] By: jhi on 2003/02/26 19:39:59
27811 Log: Integrate:
27812 [ 18746]
27813 Subject: Re: -Os for Darwin why?
27814 From: schwern@pobox.com
27815 Date: tis feb 18, 2003 20:37:39 Europe/Stockholm
27816 Message-Id: <20030218113739.D25848@ttul.org>
27817
27818 [ 18748]
27819 Subject: [PATCH IO/Socket/INET.pm] Blocking option ignored
27820 From: Dave Mitchell <davem@fdgroup.com>
27821 Date: Tue, 18 Feb 2003 21:45:45 +0000
27822 Message-ID: <20030218214545.C18547@fdgroup.com>
27823
27824 and tests for the same:
27825 From: Dave Mitchell <davem@fdgroup.com>
27826 Date: Wed, 19 Feb 2003 00:42:01 +0000
27827 Message-ID: <20030219004201.F18547@fdgroup.com>
27828
27829 [ 18753]
27830 Subject: Re: [perl #20716] scope error with brackets
27831 From: Enache Adrian <enache@rdslink.ro>
27832 Date: Thu, 13 Feb 2003 04:52:21 +0200
27833 Message-ID: <20030213025221.GA1215@ratsnest.hole>
27834 (better version of change #18687)
27835
27836 [ 18754]
27837 Document clearly that "_" is always in package "main".
27838
27839 [ 18755]
27840 Subject: [PATCH] 5.8.0: typo in pod/perlcompile.pod
27841 From: Brendan O'Dea <bod@debian.org>
27842 Date: Sun, 16 Feb 2003 21:09:23 +1100
27843 Message-ID: <20030216100923.GA29761@londo.c47.org>
27844
27845 [ 18756]
27846 Doc tweakage on -C.
27847
27848 [ 18757]
27849 Subject: [PATCH: perl@186389] add probe for yet another dangerous logical name: COMP
27850 From: PPrymmer@factset.com
27851 Date: Wed, 19 Feb 2003 15:04:40 -0500
27852 Message-ID: <OFC0A627AD.02B9D968-ON85256CD2.006DDC21@factset.com>
27853
27854 [ 18758]
27855 Subject: [PATCH: perl@18639] add some IV stuff to ext/Devel/Peek/Peek.t test 21
27856 From: PPrymmer@factset.com
27857 Date: Thu, 20 Feb 2003 13:28:09 -0500
27858 Message-ID: <OF2DC297F4.A63F24F9-ON85256CD3.006513E4@factset.com>
27859
27860 [ 18759]
27861 Change regex to be a bit more friendly against various
27862 outputs from ps -f, regex suggest by rgs
27863
27864 [ 18760]
27865 API doc tweaks.
27866
27867 [ 18761]
27868 Chip noticed that the intended optionality of the 'IV' was
27869 forgotten in the change #18758.
27870
27871 [ 18762]
27872 Remove no-longer-true line from perlop
27873
27874 [ 18763]
27875 Use PL_{argv,stdin,stdout}gv to avoid unnecessary gv_fetch calls.
27876
27877 [ 18764]
27878 Patching magic from Inaba-san's keyboard: fix for [perl #8769]:
27879 "scalar upgraded to UTF-8 as a side effect of quote-interpolation
27880 when 'use encoding' is engaged"-- wasn't actually encoding's fault.
27881
27882 [ 18766]
27883 PERL_SIGNALS=unsafe enables the old unsafe/immediate signals.
27884
27885 [ 18767]
27886 In Porting scripts, use standard perl path of "/usr/bin/perl".
27887
27888 [ 18768]
27889 Include p4d2p in Porting again, because p4genpatch doesn't work
27890 until a change has been submitted.
27891
27892 [ 18770]
27893 A new try at #18765 (for [perl #20920]).
27894
27895 [ 18771]
27896 Cleanup #18770 as suggested by Rafael.
27897
27898 [ 18772]
27899 Subject: [perl@18752] warnings from CGI tests under cygwin
27900 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
27901 Date: Wed, 19 Feb 2003 13:37:39 -0800
27902 Message-ID: <jk/U+gzkg2DE092yn@efn.org>
27903
27904 [ 18773]
27905 Subject: [Encode] 1.88 Released
27906 From: Dan Kogai <dankogai@dan.co.jp>
27907 Date: Thu, 20 Feb 2003 23:49:55 +0900
27908 Message-Id: <935F75D0-44E2-11D7-B310-000393AE4244@dan.co.jp>
27909
27910 [ 18774]
27911 Subject: Re: [perl #21321] local ${"FOO"} does not work
27912 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
27913 Date: Sun, 23 Feb 2003 00:03:27 +0100
27914 Message-Id: <20030223000327.6f0c11fa.rgarciasuarez@free.fr>
27915
27916 [ 18775]
27917 Subject: [perl #20684] [fix] s/// with (??{..}) inside returns wrong count
27918 From: Enache Adrian <enache@rdslink.ro>
27919 Date: Fri, 21 Feb 2003 17:49:41 +0200
27920 Message-ID: <20030221154941.GA793@ratsnest.hole>
27921
27922 [ 18776]
27923 Subject: [perl #20682] [fix] @- array not visible in s///
27924 From: Enache Adrian <enache@rdslink.ro>
27925 Date: Fri, 21 Feb 2003 17:50:14 +0200
27926 Message-ID: <20030221155014.GB793@ratsnest.hole>
27927
27928 [ 18777]
27929 More variables for change #18776.
27930
27931 [ 18778]
27932 Add missing file from change #18774.
27933
27934 [ 18779]
27935 Add tests for the -C switch. Depending on the
27936 CLIs some $^O dance may be needed.
27937
27938 [ 18780]
27939 Two typos found by Philip Newton <pnewton@gmx.de>
27940
27941 [ 18781]
27942 regen headers
27943
27944 [ 18782]
27945 Subject: Re: [perl #20683] [fix] Better Patch
27946 From: Enache Adrian <enache@rdslink.ro>
27947 Date: Sun, 23 Feb 2003 20:16:39 +0200
27948 Message-ID: <20030223181639.GA18713@ratsnest.hole>
27949 Branch: maint-5.8/perl
27950 +> Porting/p4d2p t/op/localref.t t/run/switchC.t
27951 !> (integrate 61 files)
27952____________________________________________________________________________
27953[ 18782] By: hv on 2003/02/26 01:36:49
27954 Log: Subject: Re: [perl #20683] [fix] Better Patch
27955 From: Enache Adrian <enache@rdslink.ro>
27956 Date: Sun, 23 Feb 2003 20:16:39 +0200
27957 Message-ID: <20030223181639.GA18713@ratsnest.hole>
27958 Branch: perl
27959 ! embed.fnc embed.h ext/Devel/Peek/Peek.t mg.c perl.h proto.h
27960 ! regexec.c sv.c t/op/pat.t
27961____________________________________________________________________________
27962[ 18781] By: hv on 2003/02/26 01:11:14
27963 Log: regen headers
27964 Branch: perl
27965 ! perlapi.h pod/perlapi.pod
27966____________________________________________________________________________
27967[ 18780] By: hv on 2003/02/26 00:25:32
27968 Log: Two typos found by Philip Newton <pnewton@gmx.de>
27969 Branch: perl
27970 ! configpm ext/DB_File/DB_File.pm
27971____________________________________________________________________________
27972[ 18779] By: jhi on 2003/02/25 18:20:01
27973 Log: Add tests for the -C switch. Depending on the
27974 CLIs some $^O dance may be needed.
27975 Branch: perl
27976 + t/run/switchC.t
27977 ! MANIFEST
27978____________________________________________________________________________
27979[ 18778] By: hv on 2003/02/25 15:24:17
27980 Log: Add missing file from change #18774.
27981 Branch: perl
27982 + t/op/localref.t
27983____________________________________________________________________________
27984[ 18777] By: hv on 2003/02/25 14:07:59
27985 Log: More variables for change #18776.
27986 Branch: perl
27987 ! op.c
27988____________________________________________________________________________
27989[ 18776] By: hv on 2003/02/25 14:04:03
27990 Log: Subject: [perl #20682] [fix] @- array not visible in s///
27991 From: Enache Adrian <enache@rdslink.ro>
27992 Date: Fri, 21 Feb 2003 17:50:14 +0200
27993 Message-ID: <20030221155014.GB793@ratsnest.hole>
27994 Branch: perl
27995 ! op.c t/op/subst.t
27996____________________________________________________________________________
27997[ 18775] By: hv on 2003/02/25 13:53:11
27998 Log: Subject: [perl #20684] [fix] s/// with (??{..}) inside returns wrong count
27999 From: Enache Adrian <enache@rdslink.ro>
28000 Date: Fri, 21 Feb 2003 17:49:41 +0200
28001 Message-ID: <20030221154941.GA793@ratsnest.hole>
28002 Branch: perl
28003 ! pp_ctl.c t/op/subst.t
28004____________________________________________________________________________
28005[ 18774] By: hv on 2003/02/25 13:21:19
28006 Log: Subject: Re: [perl #21321] local ${"FOO"} does not work
28007 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
28008 Date: Sun, 23 Feb 2003 00:03:27 +0100
28009 Message-Id: <20030223000327.6f0c11fa.rgarciasuarez@free.fr>
28010 Branch: perl
28011 ! MANIFEST op.c perl.h pp.c pp_hot.c t/op/local.t
28012____________________________________________________________________________
28013[ 18773] By: hv on 2003/02/25 12:45:01
28014 Log: Subject: [Encode] 1.88 Released
28015 From: Dan Kogai <dankogai@dan.co.jp>
28016 Date: Thu, 20 Feb 2003 23:49:55 +0900
28017 Message-Id: <935F75D0-44E2-11D7-B310-000393AE4244@dan.co.jp>
28018 Branch: perl
28019 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
28020 ! ext/Encode/Encode.xs ext/Encode/Unicode/Unicode.xs
28021 ! ext/Encode/lib/Encode/CJKConstants.pm
28022 ! ext/Encode/lib/Encode/Encoder.pm ext/Encode/t/enc_eucjp.t
28023 ! ext/Encode/t/enc_utf8.t ext/Encode/ucm/viscii.ucm
28024____________________________________________________________________________
28025[ 18772] By: merijn on 2003/02/25 12:12:14
28026 Log: Subject: [perl@18752] warnings from CGI tests under cygwin
28027 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
28028 Date: Wed, 19 Feb 2003 13:37:39 -0800
28029 Message-ID: <jk/U+gzkg2DE092yn@efn.org>
28030 Branch: perl
28031 ! lib/CGI.pm
28032____________________________________________________________________________
28033[ 18771] By: jhi on 2003/02/25 07:46:53
28034 Log: Cleanup #18770 as suggested by Rafael.
28035 Branch: perl
28036 ! mg.c perl.h
28037____________________________________________________________________________
28038[ 18770] By: jhi on 2003/02/25 06:01:09
28039 Log: A new try at #18765 (for [perl #20920]).
28040 Branch: perl
28041 ! mg.c
28042____________________________________________________________________________
28043[ 18769] By: jhi on 2003/02/25 05:33:10
28044 Log: Retract change #18765: makes HiRes.t hang after subtest #11.
28045 Branch: perl
28046 ! mg.c
28047____________________________________________________________________________
28048[ 18768] By: chip on 2003/02/24 21:42:57
28049 Log: Include p4d2p in Porting again, because p4genpatch doesn't work
28050 until a change has been submitted.
28051 Branch: perl
28052 + Porting/p4d2p
28053 ! MANIFEST
28054____________________________________________________________________________
28055[ 18767] By: chip on 2003/02/24 21:35:56
28056 Log: In Porting scripts, use standard perl path of "/usr/bin/perl".
28057 Branch: perl
28058 ! Porting/check83.pl Porting/findvars Porting/fixCORE
28059 ! Porting/fixvars Porting/genlog Porting/makerel Porting/patchls
28060____________________________________________________________________________
28061[ 18766] By: jhi on 2003/02/24 20:04:36
28062 Log: PERL_SIGNALS=unsafe enables the old unsafe/immediate signals.
28063 Branch: perl
28064 ! embedvar.h intrpvar.h mg.c perl.c perl.h pod/perldiag.pod
28065 ! pod/perlipc.pod pod/perlrun.pod pp_sys.c util.c
28066____________________________________________________________________________
28067[ 18765] By: jhi on 2003/02/24 19:56:23
28068 Log: Subject: Re: [perl #20920] Segmentation fault ("Safe Signal" queue problem?)
28069 From: Slaven Rezic <slaven@rezic.de>
28070 Date: 14 Feb 2003 09:11:15 +0100
28071 Message-ID: <878ywji8nw.fsf@vran.herceg.de>
28072
28073 (with slight tweaks)
28074 Branch: perl
28075 ! mg.c
28076____________________________________________________________________________
28077[ 18764] By: jhi on 2003/02/24 18:44:41
28078 Log: Patching magic from Inaba-san's keyboard: fix for [perl #8769]:
28079 "scalar upgraded to UTF-8 as a side effect of quote-interpolation
28080 when 'use encoding' is engaged"-- wasn't actually encoding's fault.
28081 Branch: perl
28082 ! pp_ctl.c pp_hot.c sv.c sv.h t/op/concat.t
28083____________________________________________________________________________
28084[ 18763] By: chip on 2003/02/24 14:54:36
28085 Log: Use PL_{argv,stdin,stdout}gv to avoid unnecessary gv_fetch calls.
28086 Branch: perl
28087 ! op.c win32/perlhost.h
28088____________________________________________________________________________
28089[ 18762] By: hv on 2003/02/24 00:18:42
28090 Log: Remove no-longer-true line from perlop
28091 Branch: perl
28092 ! pod/perlop.pod
28093____________________________________________________________________________
28094[ 18761] By: jhi on 2003/02/23 12:07:53
28095 Log: Chip noticed that the intended optionality of the 'IV' was
28096 forgotten in the change #18758.
28097 Branch: perl
28098 ! ext/Devel/Peek/Peek.t
28099____________________________________________________________________________
28100[ 18760] By: jhi on 2003/02/22 19:17:04
28101 Log: API doc tweaks.
28102 Branch: perl
28103 ! utf8.c
28104____________________________________________________________________________
28105[ 18759] By: sky on 2003/02/21 09:08:30
28106 Log: Change regex to be a bit more friendly against various
28107 outputs from ps -f, regex suggest by rgs
28108 Branch: perl
28109 ! ext/threads/t/join.t
28110____________________________________________________________________________
28111[ 18758] By: jhi on 2003/02/20 17:28:44
28112 Log: Subject: [PATCH: perl@18639] add some IV stuff to ext/Devel/Peek/Peek.t test 21
28113 From: PPrymmer@factset.com
28114 Date: Thu, 20 Feb 2003 13:28:09 -0500
28115 Message-ID: <OF2DC297F4.A63F24F9-ON85256CD3.006513E4@factset.com>
28116 Branch: perl
28117 ! ext/Devel/Peek/Peek.t
28118____________________________________________________________________________
28119[ 18757] By: jhi on 2003/02/20 17:27:17
28120 Log: Subject: [PATCH: perl@186389] add probe for yet another dangerous logical name: COMP
28121 From: PPrymmer@factset.com
28122 Date: Wed, 19 Feb 2003 15:04:40 -0500
28123 Message-ID: <OFC0A627AD.02B9D968-ON85256CD2.006DDC21@factset.com>
28124 Branch: perl
28125 ! README.vms configure.com
28126____________________________________________________________________________
28127[ 18756] By: jhi on 2003/02/20 06:16:05
28128 Log: Doc tweakage on -C.
28129 Branch: perl
28130 ! pod/perlrun.pod
28131____________________________________________________________________________
28132[ 18755] By: rgs on 2003/02/19 21:31:43
28133 Log: Subject: [PATCH] 5.8.0: typo in pod/perlcompile.pod
28134 From: Brendan O'Dea <bod@debian.org>
28135 Date: Sun, 16 Feb 2003 21:09:23 +1100
28136 Message-ID: <20030216100923.GA29761@londo.c47.org>
28137 Branch: perl
28138 ! pod/perlcompile.pod
28139____________________________________________________________________________
28140[ 18754] By: rgs on 2003/02/19 21:14:37
28141 Log: Document clearly that "_" is always in package "main".
28142 Branch: perl
28143 ! pod/perlvar.pod
28144____________________________________________________________________________
28145[ 18753] By: rgs on 2003/02/19 20:55:09
28146 Log: Subject: Re: [perl #20716] scope error with brackets
28147 From: Enache Adrian <enache@rdslink.ro>
28148 Date: Thu, 13 Feb 2003 04:52:21 +0200
28149 Message-ID: <20030213025221.GA1215@ratsnest.hole>
28150 (better version of change #18687)
28151 Branch: perl
28152 ! t/comp/parser.t toke.c
28153____________________________________________________________________________
28154[ 18752] By: jhi on 2003/02/19 05:10:26
28155 Log: 'A' is not 65 everywhere.
28156 Branch: perl
28157 ! t/op/pack.t
28158____________________________________________________________________________
28159[ 18751] By: chip on 2003/02/19 03:54:45
28160 Log: Support one-parameter unpack(), which unpacks $_.
28161 Branch: perl
28162 ! opcode.h opcode.pl pod/perlfunc.pod pp_pack.c t/op/pack.t
28163____________________________________________________________________________
28164[ 18750] By: hv on 2003/02/19 00:53:03
28165 Log: more complex assertions activation:
28166 Subject: Re: Did the assertion patch/feature submission get overlooked?
28167 From: =?ISO-8859-1?Q?Salvador_Fandi=F1o?= <sfandino@yahoo.com>
28168 Date: Tue, 18 Feb 2003 19:24:13 +0000
28169 Message-ID: <3E52885D.5060903@yahoo.com>
28170 Branch: perl
28171 ! lib/assertions.pm lib/assertions/activate.pm
28172 ! t/comp/assertions.t
28173____________________________________________________________________________
28174[ 18749] By: hv on 2003/02/19 00:19:21
28175 Log: Subject: [PATCH] Make adding notes to patchlevel.h easier
28176 From: andreas.koenig@anima.de (Andreas J. Koenig)
28177 Date: Tue, 18 Feb 2003 11:48:40 +0100
28178 Message-ID: <m3n0kt27av.fsf@k242.linux.bogus>
28179 Branch: perl
28180 ! patchlevel.h
28181____________________________________________________________________________
28182[ 18748] By: hv on 2003/02/19 00:00:41
28183 Log: Subject: [PATCH IO/Socket/INET.pm] Blocking option ignored
28184 From: Dave Mitchell <davem@fdgroup.com>
28185 Date: Tue, 18 Feb 2003 21:45:45 +0000
28186 Message-ID: <20030218214545.C18547@fdgroup.com>
28187
28188 and tests for the same:
28189 From: Dave Mitchell <davem@fdgroup.com>
28190 Date: Wed, 19 Feb 2003 00:42:01 +0000
28191 Message-ID: <20030219004201.F18547@fdgroup.com>
28192 Branch: perl
28193 ! ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/t/io_sock.t
28194____________________________________________________________________________
28195[ 18747] By: hv on 2003/02/18 23:47:06
28196 Log: Shouldn't have added as t/run/switchA.t in #18739 - it'll cause
28197 problems on case-insensitive file systems. Rename it back to
28198 t/run/switch_A.t
28199 Branch: perl
28200 +> t/run/switch_A.t
28201 - t/run/switchA.t
28202 ! MANIFEST
28203____________________________________________________________________________
28204[ 18746] By: sky on 2003/02/18 21:31:37
28205 Log: Subject: Re: -Os for Darwin why?
28206 From: schwern@pobox.com
28207 Date: tis feb 18, 2003 20:37:39 Europe/Stockholm
28208 Message-Id: <20030218113739.D25848@ttul.org>
28209 Branch: perl
28210 ! hints/darwin.sh
28211____________________________________________________________________________
28212[ 18745] By: jhi on 2003/02/18 18:37:21
28213 Log: No pad.[hc] in maint.
28214 Branch: maint-5.8/perl
28215 ! Makefile.micro
28216____________________________________________________________________________
28217[ 18744] By: jhi on 2003/02/18 14:46:18
28218 Log: Integrate:
28219 [ 18280]
28220 Integrate from the maint-5.8/ branch :
28221 changes 18219, 18236, 18242-3, 18247-8,
28222 18253-5, 18257, 18273-6
28223
28224 [ 18740]
28225 Re: -Os for Darwin why?
28226 From: schwern@pobox.com
28227 Date: tis feb 18, 2003 04:14:03 Europe/Stockholm
28228 Message-Id: <20030217191403.A17553@ttul.org>
28229
28230 [ 18737]
28231 Subject: [PATCH] Re: [perl #21261] B::Terse not outputting correct constants or variable names
28232 From: Stephen McCamant <smcc@mit.edu>
28233 Date: Mon, 17 Feb 2003 19:34:36 -0500
28234 Date: Mon, 17 Feb 2003 19:34:36 -0500
28235 Message-ID: <15953.32668.277063.470885@syllepsis.MIT.EDU>
28236
28237 [ 18723]
28238 Subject: Re: [perl #20798] foo(eval {}) crashes Perl 5.8
28239 From: Enache Adrian <enache@rdslink.ro>
28240 Date: Sun, 16 Feb 2003 00:05:10 +0200
28241 Message-ID: <20030215220510.GB893@ratsnest.hole>
28242
28243 [ 18722]
28244 outdent else-if chain in scope()
28245
28246 [ 18721]
28247 Subject: [PATCH] arcane tainting bug in vms.c
28248 From: "Craig A. Berry" <craigberry@mac.com>
28249 Date: Sat, 15 Feb 2003 12:29:03 -0600
28250 Message-ID: <3E4E86EF.8090609@mac.com>
28251
28252 [ 18720]
28253 restrict PERL_PRESERVE_IVUV to things that should really give an
28254 integer, but extend to runtime. Based on:
28255 Subject: Re: [perl #20827] Unexpected scientific notation.
28256 From: hv@crypt.org
28257 Date: Wed, 12 Feb 2003 03:12:43 +0000
28258 Message-Id: <200302120312.h1C3ChS02613@crypt.compulink.co.uk>
28259
28260 [ 18708]
28261 Subject: Re: [perl #20912] UTF8 related glitch + fix
28262 From: Enache Adrian <enache@rdslink.ro>
28263 Date: Sat, 15 Feb 2003 00:37:40 +0200
28264 Message-ID: <20030214223740.GA13575@ratsnest.hole>
28265
28266 [ 18707]
28267 Subject: [doc patch] ext/threads/shared/shared.pm
28268 From: Stas Bekman <stas@stason.org>
28269 Date: Fri, 14 Feb 2003 11:12:39 +1100
28270 Message-ID: <3E4C3477.7030306@stason.org>
28271
28272 [ 18706]
28273 Subject: Re: perlvar phrasing clarification for $^S
28274 From: "Iain 'Spoon' Truskett" <perl@dellah.anu.edu.au>
28275 Date: Fri, 14 Feb 2003 10:12:00 +1100
28276 Message-ID: <20030213231200.GE16300@ouroboros.anu.edu.au>
28277
28278 [ 18705]
28279 Subject: Re: [perl #20933] \substr reuses lvalues (sometimes)
28280 From: Dave Mitchell <davem@fdgroup.com>
28281 Date: Fri, 14 Feb 2003 22:48:27 +0000
28282 Message-ID: <20030214224827.B6783@fdgroup.com>
28283
28284 with tests:
28285 From: Slaven Rezic <slaven@rezic.de>
28286 Date: 14 Feb 2003 20:23:20 +0100
28287 Message-ID: <87bs1e4qfr.fsf@vran.herceg.de>
28288
28289 [ 18704]
28290 Subject: Re: overriding builtins quirk
28291 From: Jerrad Pierce <belg4mit@MIT.EDU>
28292 Date: Fri, 14 Feb 2003 09:28:13 -0500
28293 Message-Id: <200302141428.JAA25752@cathedral-seven.mit.edu>
28294
28295 [ 18703]
28296 Subject: Re: trying to fix #20154, #20357
28297 From: Enache Adrian <enache@rdslink.ro>
28298 Date: Sat, 8 Feb 2003 21:05:14 +0200
28299 Message-ID: <20030208190514.GA866@ratsnest.hole>
28300 (fixes #19061 as well)
28301 Branch: maint-5.8/perl
28302 !> ext/B/B.xs ext/B/B/Bblock.pm ext/B/B/Concise.pm
28303 !> ext/B/B/Terse.pm ext/B/t/terse.t ext/threads/shared/shared.pm
28304 !> hints/darwin.sh op.c pod/perlsub.pod pod/perlvar.pod pp.c
28305 !> pp_ctl.c t/op/goto.t t/op/lc.t t/op/split.t t/op/substr.t
28306 !> t/op/vec.t vms/vms.c
28307____________________________________________________________________________
28308[ 18743] By: jhi on 2003/02/18 14:12:11
28309 Log: Integrate:
28310 [ 18702]
28311 Update to Scalar-List-Utils 1.11
28312
28313 [ 18709]
28314 Make the patchlevel.h inclusion attempt pre-5.6.0-safe(r)
28315 (problem noticed by Graham with List::Util).
28316
28317 [ 18710]
28318 Update the MD5 checksums.
28319
28320 [ 18711]
28321 Update MD5 Changes; update checksums.
28322
28323 [ 18712]
28324 Bring the CPAN Digest::MD5 (2.23) and the core Digest::MD5
28325 even closer to each other. The dec_osf.pl is irrelevant
28326 for the current core but adding it makes for one less exception
28327 when integrating.
28328
28329 [ 18714]
28330 Also Storable really wants the PATCHLEVEL, not PERL_VERSION.
28331
28332 [ 18718]
28333 As suggested by Sarathy, add -DPERL_HIDE_SHORT_NAMES option
28334 which will disable the short forms of the Perl_ API, good for
28335 embedding stuff. (Kind of like the old NO_EMBED, but better.)
28336
28337 [ 18728]
28338 According to Sarathy it's better have the Ministry
28339 of Information to remove all memory of NO_EMBED.
28340 What NO_EMBED?
28341
28342 [ 18729]
28343 NO_SHORT_NAMES is better than HIDE_SHORT_NAMES.
28344
28345 [ 18734]
28346 Suppress empty #ifdef blocks in embed.pl
28347 Branch: maint-5.8/perl
28348 +> ext/Digest/MD5/hints/dec_osf.pl ext/List/Util/t/proto.t
28349 !> MANIFEST embed.h embed.pl ext/Data/Dumper/Dumper.xs
28350 !> ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
28351 !> ext/Digest/MD5/MD5.xs ext/Digest/MD5/Makefile.PL
28352 !> ext/Digest/MD5/t/files.t ext/List/Util/ChangeLog
28353 !> ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
28354 !> ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/isvstring.t
28355 !> ext/MIME/Base64/Base64.xs ext/Storable/Storable.xs
28356 !> pod/perlembed.pod
28357____________________________________________________________________________
28358[ 18742] By: jhi on 2003/02/18 14:05:05
28359 Log: Integrate:
28360 [ 18715]
28361 The new(er) way of controlling Unicode I/O (and other) features;
28362 -C (or PERL_UNICODE). See perlrun/-C for more details.
28363
28364 [ 18716]
28365 Forgotten from #18715.
28366
28367 [ 18717]
28368 Clarify the -C syntax a bit.
28369
28370 [ 18730]
28371 Make also the -CAL conditional on locale.
28372
28373 [ 18731]
28374 Doc tweaks (and one code tweak) based on Philip Newton's comments.
28375
28376 [ 18732]
28377 Philip Newton has eagle eyes :-)
28378
28379 [ 18741]
28380 Format nit.
28381 Branch: maint-5.8/perl
28382 !> embed.fnc embed.h embedvar.h gv.c intrpvar.h locale.c mg.c
28383 !> perl.c perl.h perlapi.h pod/perldiag.pod pod/perlrun.pod
28384 !> pod/perlunicode.pod pod/perluniintro.pod pod/perlvar.pod
28385 !> proto.h util.c
28386____________________________________________________________________________
28387[ 18741] By: jhi on 2003/02/18 14:01:34
28388 Log: Format nit.
28389 Branch: perl
28390 ! util.c
28391____________________________________________________________________________
28392[ 18740] By: sky on 2003/02/18 06:33:57
28393 Log: Re: -Os for Darwin why?
28394 From: schwern@pobox.com
28395 Date: tis feb 18, 2003 04:14:03 Europe/Stockholm
28396 Message-Id: <20030217191403.A17553@ttul.org>
28397 Branch: perl
28398 ! hints/darwin.sh
28399____________________________________________________________________________
28400[ 18739] By: hv on 2003/02/18 01:04:01
28401 Log: Subject: Re: Did the assertion patch/feature submission get overlooked?
28402 From: =?ISO-8859-1?Q?Salvador_Fandi=F1o?= <sfandino@yahoo.com>
28403 Date: Mon, 17 Feb 2003 23:38:05 +0000
28404 Message-ID: <3E51725D.5060303@yahoo.com>
28405 Branch: perl
28406 + t/comp/assertions.t t/run/switchA.t
28407 ! MANIFEST
28408____________________________________________________________________________
28409[ 18738] By: hv on 2003/02/18 00:51:24
28410 Log: Subject: [PATCH] Re: [PATCH] Re: [PATCH] Copy on write for $& and $1...
28411 From: Nicholas Clark <nick@ccl4.org>
28412 Date: Mon, 17 Feb 2003 21:07:03 +0000
28413 Message-ID: <20030217210330.A8611@plum.flirble.org>
28414 Branch: perl
28415 ! sv.c
28416____________________________________________________________________________
28417[ 18737] By: hv on 2003/02/18 00:47:00
28418 Log: Subject: [PATCH] Re: [perl #21261] B::Terse not outputting correct constants or variable names
28419 From: Stephen McCamant <smcc@mit.edu>
28420 Date: Mon, 17 Feb 2003 19:34:36 -0500
28421 Date: Mon, 17 Feb 2003 19:34:36 -0500
28422 Message-ID: <15953.32668.277063.470885@syllepsis.MIT.EDU>
28423 Branch: perl
28424 ! ext/B/B.xs ext/B/B/Bblock.pm ext/B/B/Concise.pm
28425 ! ext/B/B/Terse.pm ext/B/t/terse.t
28426____________________________________________________________________________
28427[ 18736] By: hv on 2003/02/17 09:33:47
28428 Log: Subject: [PATCH] Re: [PATCH] Copy on write for $& and $1...
28429 From: Nicholas Clark <nick@unfortu.net>
28430 Date: Sun, 16 Feb 2003 23:09:50 +0000
28431 Message-ID: <20030216230950.GB276@Bagpuss.unfortu.net>
28432 Branch: perl
28433 ! sv.c
28434____________________________________________________________________________
28435[ 18735] By: hv on 2003/02/17 09:13:02
28436 Log: Use the escape E<ntilde> in source files rather than the actual char.
28437 Branch: perl
28438 ! lib/assertions.pm lib/assertions/activate.pm
28439____________________________________________________________________________
28440[ 18734] By: hv on 2003/02/17 09:06:44
28441 Log: Suppress empty #ifdef blocks in embed.pl
28442 Branch: perl
28443 ! embed.h embed.pl
28444____________________________________________________________________________
28445[ 18733] By: hv on 2003/02/17 08:51:53
28446 Log: fix typo in sv.c and regenerate perlapi.pod
28447 Branch: perl
28448 ! pod/perlapi.pod sv.c
28449____________________________________________________________________________
28450[ 18732] By: jhi on 2003/02/17 06:40:09
28451 Log: Philip Newton has eagle eyes :-)
28452 Branch: perl
28453 ! pod/perlrun.pod
28454____________________________________________________________________________
28455[ 18731] By: jhi on 2003/02/17 05:31:18
28456 Log: Doc tweaks (and one code tweak) based on Philip Newton's comments.
28457 Branch: perl
28458 ! locale.c pod/perlrun.pod pod/perlunicode.pod
28459 ! pod/perluniintro.pod pod/perlvar.pod util.c
28460____________________________________________________________________________
28461[ 18730] By: jhi on 2003/02/17 04:44:53
28462 Log: Make also the -CAL conditional on locale.
28463 Branch: perl
28464 ! perl.c pod/perlrun.pod
28465____________________________________________________________________________
28466[ 18729] By: jhi on 2003/02/16 18:33:05
28467 Log: NO_SHORT_NAMES is better than HIDE_SHORT_NAMES.
28468 Branch: perl
28469 ! embed.h embed.pl pod/perlembed.pod
28470____________________________________________________________________________
28471[ 18728] By: jhi on 2003/02/16 18:20:04
28472 Log: According to Sarathy it's better have the Ministry
28473 of Information to remove all memory of NO_EMBED.
28474 What NO_EMBED?
28475 Branch: perl
28476 ! embed.h embed.pl
28477____________________________________________________________________________
28478[ 18727] By: hv on 2003/02/16 13:55:10
28479 Log: add support for assertions. Updated form of:
28480 Subject: Re: Did the assertion patch/feature submission get overlooked?
28481 From: Salvador =?ISO-8859-1?Q?Fandi=F1o?= <sfandino@yahoo.com>
28482 Date: Sat, 30 Nov 2002 17:24:09 +0000
28483 Message-ID: <3DE8F439.50402@yahoo.com>
28484 Branch: perl
28485 + lib/assertions.pm lib/assertions/activate.pm
28486 ! MANIFEST cv.h dump.c embed.pl embedvar.h ext/B/B/Deparse.pm
28487 ! ext/B/defsubs_h.PL intrpvar.h lib/perl5db.pl op.c perl.c
28488 ! perl.h perlapi.h pp_hot.c sv.c toke.c xsutils.c
28489____________________________________________________________________________
28490[ 18726] By: hv on 2003/02/16 13:10:32
28491 Log: COW regexps:
28492 Subject: [PATCH] Copy on write for $& and $1...
28493 From: Nicholas Clark <nick@unfortu.net>
28494 Date: Sun, 9 Feb 2003 23:00:09 +0000
28495 Message-ID: <20030209230008.GF299@Bagpuss.unfortu.net>
28496 Branch: perl
28497 ! embed.fnc embed.h global.sym pod/perlapi.pod pp_ctl.c pp_hot.c
28498 ! proto.h regcomp.c regexec.c regexp.h sv.c sv.h thrdvar.h
28499____________________________________________________________________________
28500[ 18725] By: hv on 2003/02/16 13:08:52
28501 Log: inline SvREFCNT_dec:
28502 Subject: [PATCH] Copy on write for $& and $1...
28503 From: Nicholas Clark <nick@unfortu.net>
28504 Date: Sun, 9 Feb 2003 23:00:09 +0000
28505 Message-ID: <20030209230008.GF299@Bagpuss.unfortu.net>
28506 Branch: perl
28507 ! embed.fnc embed.h proto.h sv.c sv.h
28508____________________________________________________________________________
28509[ 18723] By: hv on 2003/02/16 11:12:58
28510 Log: Subject: Re: [perl #20798] foo(eval {}) crashes Perl 5.8
28511 From: Enache Adrian <enache@rdslink.ro>
28512 Date: Sun, 16 Feb 2003 00:05:10 +0200
28513 Message-ID: <20030215220510.GB893@ratsnest.hole>
28514 Branch: perl
28515 ! op.c
28516____________________________________________________________________________
28517[ 18722] By: hv on 2003/02/16 11:08:06
28518 Log: outdent else-if chain in scope()
28519 Branch: perl
28520 ! op.c
28521____________________________________________________________________________
28522[ 18721] By: hv on 2003/02/16 11:00:47
28523 Log: Subject: [PATCH] arcane tainting bug in vms.c
28524 From: "Craig A. Berry" <craigberry@mac.com>
28525 Date: Sat, 15 Feb 2003 12:29:03 -0600
28526 Message-ID: <3E4E86EF.8090609@mac.com>
28527 Branch: perl
28528 ! vms/vms.c
28529____________________________________________________________________________
28530[ 18720] By: hv on 2003/02/16 10:54:58
28531 Log: restrict PERL_PRESERVE_IVUV to things that should really give an
28532 integer, but extend to runtime. Based on:
28533 Subject: Re: [perl #20827] Unexpected scientific notation.
28534 From: hv@crypt.org
28535 Date: Wed, 12 Feb 2003 03:12:43 +0000
28536 Message-Id: <200302120312.h1C3ChS02613@crypt.compulink.co.uk>
28537 Branch: perl
28538 ! op.c pp.c
28539____________________________________________________________________________
28540[ 18719] By: nick on 2003/02/16 10:40:30
28541 Log: Integrate mainline (Works again)
28542 Branch: perlio
28543 !> embed.fnc embed.h embedvar.h ext/Storable/Storable.xs gv.c
28544 !> intrpvar.h locale.c mg.c perl.c perl.h perlapi.h
28545 !> pod/perldiag.pod pod/perlrun.pod pod/perlunicode.pod
28546 !> pod/perluniintro.pod pod/perlvar.pod proto.h util.c
28547____________________________________________________________________________
28548[ 18718] By: jhi on 2003/02/16 09:47:02
28549 Log: As suggested by Sarathy, add -DPERL_HIDE_SHORT_NAMES option
28550 which will disable the short forms of the Perl_ API, good for
28551 embedding stuff. (Kind of like the old NO_EMBED, but better.)
28552 Branch: perl
28553 ! embed.h embed.pl pod/perlembed.pod
28554____________________________________________________________________________
28555[ 18717] By: jhi on 2003/02/16 09:44:57
28556 Log: Clarify the -C syntax a bit.
28557 Branch: perl
28558 ! pod/perlrun.pod
28559____________________________________________________________________________
28560[ 18716] By: jhi on 2003/02/16 08:29:54
28561 Log: Forgotten from #18715.
28562 Branch: perl
28563 ! embed.h proto.h
28564____________________________________________________________________________
28565[ 18715] By: jhi on 2003/02/15 21:19:37
28566 Log: The new(er) way of controlling Unicode I/O (and other) features;
28567 -C (or PERL_UNICODE). See perlrun/-C for more details.
28568 Branch: perl
28569 ! embed.fnc embedvar.h gv.c intrpvar.h locale.c mg.c perl.c
28570 ! perl.h perlapi.h pod/perldiag.pod pod/perlrun.pod
28571 ! pod/perlunicode.pod pod/perluniintro.pod pod/perlvar.pod
28572 ! util.c
28573____________________________________________________________________________
28574[ 18714] By: jhi on 2003/02/15 12:31:25
28575 Log: Also Storable really wants the PATCHLEVEL, not PERL_VERSION.
28576 Branch: perl
28577 ! ext/Storable/Storable.xs
28578____________________________________________________________________________
28579[ 18713] By: nick on 2003/02/15 12:05:01
28580 Log: Integrate mainline (storable is dead)
28581 Branch: perlio
28582 +> ext/Digest/MD5/hints/dec_osf.pl ext/List/Util/t/lln.t
28583 +> ext/List/Util/t/proto.t lib/CPAN/README
28584 +> lib/Net/Ping/t/190_alarm.t lib/Net/Ping/t/500_ping_icmp.t
28585 +> plan9/config_h.sample plan9/config_sh.sample utils/cpan
28586 !> (integrate 113 files)
28587____________________________________________________________________________
28588[ 18712] By: jhi on 2003/02/15 08:39:38
28589 Log: Bring the CPAN Digest::MD5 (2.23) and the core Digest::MD5
28590 even closer to each other. The dec_osf.pl is irrelevant
28591 for the current core but adding it makes for one less exception
28592 when integrating.
28593 Branch: perl
28594 + ext/Digest/MD5/hints/dec_osf.pl
28595 ! MANIFEST ext/Digest/MD5/MD5.pm ext/Digest/MD5/Makefile.PL
28596 ! ext/Digest/MD5/t/files.t
28597____________________________________________________________________________
28598[ 18711] By: jhi on 2003/02/15 08:32:04
28599 Log: Update MD5 Changes; update checksums.
28600 Branch: perl
28601 ! ext/Digest/MD5/Changes ext/Digest/MD5/t/files.t
28602____________________________________________________________________________
28603[ 18710] By: jhi on 2003/02/15 08:19:20
28604 Log: Update the MD5 checksums.
28605 Branch: perl
28606 ! ext/Digest/MD5/t/files.t
28607____________________________________________________________________________
28608[ 18709] By: jhi on 2003/02/15 08:16:26
28609 Log: Make the patchlevel.h inclusion attempt pre-5.6.0-safe(r)
28610 (problem noticed by Graham with List::Util).
28611 Branch: perl
28612 ! ext/Data/Dumper/Dumper.xs ext/Digest/MD5/MD5.xs
28613 ! ext/MIME/Base64/Base64.xs ext/Storable/Storable.xs
28614____________________________________________________________________________
28615[ 18708] By: jhi on 2003/02/15 07:31:17
28616 Log: Subject: Re: [perl #20912] UTF8 related glitch + fix
28617 From: Enache Adrian <enache@rdslink.ro>
28618 Date: Sat, 15 Feb 2003 00:37:40 +0200
28619 Message-ID: <20030214223740.GA13575@ratsnest.hole>
28620 Branch: perl
28621 ! pp.c t/op/split.t
28622____________________________________________________________________________
28623[ 18707] By: hv on 2003/02/15 06:38:15
28624 Log: Subject: [doc patch] ext/threads/shared/shared.pm
28625 From: Stas Bekman <stas@stason.org>
28626 Date: Fri, 14 Feb 2003 11:12:39 +1100
28627 Message-ID: <3E4C3477.7030306@stason.org>
28628 Branch: perl
28629 ! ext/threads/shared/shared.pm
28630____________________________________________________________________________
28631[ 18706] By: hv on 2003/02/15 06:32:35
28632 Log: Subject: Re: perlvar phrasing clarification for $^S
28633 From: "Iain 'Spoon' Truskett" <perl@dellah.anu.edu.au>
28634 Date: Fri, 14 Feb 2003 10:12:00 +1100
28635 Message-ID: <20030213231200.GE16300@ouroboros.anu.edu.au>
28636 Branch: perl
28637 ! pod/perlvar.pod
28638____________________________________________________________________________
28639[ 18705] By: hv on 2003/02/15 06:27:07
28640 Log: Subject: Re: [perl #20933] \substr reuses lvalues (sometimes)
28641 From: Dave Mitchell <davem@fdgroup.com>
28642 Date: Fri, 14 Feb 2003 22:48:27 +0000
28643 Message-ID: <20030214224827.B6783@fdgroup.com>
28644
28645 with tests:
28646 From: Slaven Rezic <slaven@rezic.de>
28647 Date: 14 Feb 2003 20:23:20 +0100
28648 Message-ID: <87bs1e4qfr.fsf@vran.herceg.de>
28649 Branch: perl
28650 ! pp.c t/op/substr.t t/op/vec.t
28651____________________________________________________________________________
28652[ 18704] By: hv on 2003/02/15 06:17:06
28653 Log: Subject: Re: overriding builtins quirk
28654 From: Jerrad Pierce <belg4mit@MIT.EDU>
28655 Date: Fri, 14 Feb 2003 09:28:13 -0500
28656 Message-Id: <200302141428.JAA25752@cathedral-seven.mit.edu>
28657 Branch: perl
28658 ! pod/perlsub.pod
28659____________________________________________________________________________
28660[ 18703] By: rgs on 2003/02/14 22:23:56
28661 Log: Subject: Re: trying to fix #20154, #20357
28662 From: Enache Adrian <enache@rdslink.ro>
28663 Date: Sat, 8 Feb 2003 21:05:14 +0200
28664 Message-ID: <20030208190514.GA866@ratsnest.hole>
28665 (fixes #19061 as well)
28666 Branch: perl
28667 ! pp_ctl.c t/op/goto.t
28668____________________________________________________________________________
28669[ 18702] By: gbarr on 2003/02/14 19:26:23
28670 Log: Update to Scalar-List-Utils 1.11
28671 Branch: perl
28672 + ext/List/Util/t/proto.t
28673 ! MANIFEST ext/List/Util/ChangeLog ext/List/Util/Util.xs
28674 ! ext/List/Util/lib/List/Util.pm
28675 ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/isvstring.t
28676____________________________________________________________________________
28677[ 18701] By: jhi on 2003/02/14 08:05:43
28678 Log: Somehow oddly these integration changes didn't
28679 make it to the change #18700.
28680 Branch: maint-5.8/perl
28681 !> ext/PerlIO/scalar/scalar.xs ext/Storable/Storable.xs
28682____________________________________________________________________________
28683[ 18700] By: jhi on 2003/02/13 14:55:54
28684 Log: Integrate:
28685 [ 18674]
28686 Signedness nits.
28687
28688 [ 18678]
28689 CPAN ChangeLog not needed, says Andreas.
28690
28691 [ 18682]
28692 Subject: [PATCH] version objects final(?) patch
28693 From: John Peacock <jpeacock@rowman.com>
28694 Date: Sun, 05 Jan 2003 21:28:41 -0500
28695 Message-ID: <3E18E9D9.2040908@rowman.com>
28696
28697 [ 18683]
28698 Subject: RE: perldebug.pod suggestion
28699 From: "Jay Hannah" <jhannah@omnihotels.com>
28700 Date: Fri, 24 Jan 2003 11:28:44 -0600
28701 Message-ID: <00b001c2c3ce$0c4716e0$4709a8c0@omarests2>
28702
28703 [ 18684]
28704 fix for C< use if qw/ 1 open :utf8 / > based on:
28705 Subject: [perl #20536] use if 1, open => ':utf8' fails
28706 From: Autrijus Tang (via RT) <perlbug-followup@perl.org>
28707 Date: 24 Jan 2003 22:39:06 -0000
28708 Message-Id: <rt-20536-49670.13.2464320257255@bugs6.perl.org>
28709
28710 [ 18685]
28711 No, we don't really want the utility scripts.
28712
28713 [ 18686]
28714 Compile under threads and MacOSX. For some reason newSVpvf
28715 was not exapnded.
28716
28717 [ 18687]
28718 Subject: Re: [perl #20716] [FIX] scope error with brackets
28719 From: Enache Adrian <enache@rdslink.ro>
28720 Date: mon feb 10, 2003 18:48:58 Europe/Stockholm
28721 Message-id: <20030210174858.GA872@ratsnest.hole>
28722
28723 [ 18688]
28724 Subject: Re: [perl #20777] [PATCH] goto &subroutine leaks memory
28725 From: Enache Adrian <enache@rdslink.ro>
28726 Date: sun feb 9, 2003 21:10:25 Europe/Stockholm
28727 Message-Id: <20030209201025.GA1247@ratsnest.hole>
28728
28729 [ 18689]
28730 Fix for [perl #20339]: "%lf" rejected as invalid by recent sprintf.
28731 Now allows but ignores the 'l' modifier on floating point formats
28732 and adds a couple of tests.
28733
28734 [ 18690]
28735 fix comment in change #18689
28736
28737 [ 18691]
28738 Subject: PATCH: sv_rvweaken() deficiency (against 5.8.0)
28739 From: Mark Mielke <mark@mark.mielke.cc>
28740 Date: Mon, 20 Jan 2003 19:56:13 -0500
28741 Message-ID: <20030121005613.GA31739@mark.mielke.cc>
28742
28743 [ 18692]
28744 Dueling patches.
28745
28746 [ 18694]
28747 Subject: [PATCH] More B::Concise fixes
28748 From: Stephen McCamant <smcc@mit.edu>
28749 Date: Sun, 9 Feb 2003 17:28:38 -0500
28750 Message-ID: <15942.54806.381678.173391@syllepsis.MIT.EDU>
28751
28752 [ 18695]
28753 Subject: mini-[patch] perlrun "^$W" typo
28754 From: Iain Truskett <spoon@dellah.org>
28755 Date: Tue, 11 Feb 2003 08:38:52 +1100
28756 Message-ID: <20030210213851.GC31721@ouroboros.anu.edu.au>
28757
28758 [ 18696]
28759 Subject: [perl #20654] %*v02x considered invalid in printf
28760 From: Robin Barker (via RT) <perlbug-followup@perl.org>
28761 Date: 10 Feb 2003 16:43:23 -0000
28762 Message-Id: <rt-20654-50711.19.9711009821137@bugs6.perl.org>
28763
28764 [ 18698]
28765 Subject: perlbug (was: Re: [perl #20606] [no subject])
28766 From: Slaven Rezic <slaven@rezic.de>
28767 Date: 30 Jan 2003 19:03:41 +0100
28768 Message-ID: <87fzra7bwi.fsf@vran.herceg.de>
28769
28770 [ 18697]
28771 Subject: [PATCH 5.9.0] to silence compiler warning
28772 From: Robin Barker <Robin.Barker@npl.co.uk>
28773 Date: Tue, 28 Jan 2003 13:27:17 -0000
28774 Message-ID: <533D273D4014D411AB1D00062938C4D9040462CC@hotel.npl.co.uk>
28775
28776 [ 18699]
28777 gcc 3.2.1 does not have -Wall faith that tmp
28778 will not be used uninitialized.
28779
28780 (ignored some universal.c and util.c changes that were irrelevant
28781 for the maint branch code)
28782 Branch: maint-5.8/perl
28783 - lib/CPAN/ChangeLog
28784 !> MANIFEST doio.c ext/B/B/Concise.pm ext/MIME/Base64/Makefile.PL
28785 !> ext/PerlIO/encoding/encoding.pm lib/if.pm lib/if.t
28786 !> pod/perldebug.pod pod/perlrun.pod pp_ctl.c sv.c
28787 !> t/comp/parser.t t/op/sprintf.t toke.c universal.c
28788 !> utils/perlbug.PL x2p/Makefile.SH
28789____________________________________________________________________________
28790[ 18699] By: jhi on 2003/02/13 09:43:33
28791 Log: gcc 3.2.1 does not have -Wall faith that tmp
28792 will not be used uninitialized.
28793 Branch: perl
28794 ! toke.c
28795____________________________________________________________________________
28796[ 18698] By: hv on 2003/02/12 03:01:32
28797 Log: Subject: perlbug (was: Re: [perl #20606] [no subject])
28798 From: Slaven Rezic <slaven@rezic.de>
28799 Date: 30 Jan 2003 19:03:41 +0100
28800 Message-ID: <87fzra7bwi.fsf@vran.herceg.de>
28801 Branch: perl
28802 ! utils/perlbug.PL
28803____________________________________________________________________________
28804[ 18697] By: hv on 2003/02/12 02:20:39
28805 Log: Subject: [PATCH 5.9.0] to silence compiler warning
28806 From: Robin Barker <Robin.Barker@npl.co.uk>
28807 Date: Tue, 28 Jan 2003 13:27:17 -0000
28808 Message-ID: <533D273D4014D411AB1D00062938C4D9040462CC@hotel.npl.co.uk>
28809 Branch: perl
28810 ! ext/PerlIO/scalar/scalar.xs ext/Storable/Storable.xs
28811 ! universal.c util.c
28812____________________________________________________________________________
28813[ 18696] By: rgs on 2003/02/11 20:13:21
28814 Log: Subject: [perl #20654] %*v02x considered invalid in printf
28815 From: Robin Barker (via RT) <perlbug-followup@perl.org>
28816 Date: 10 Feb 2003 16:43:23 -0000
28817 Message-Id: <rt-20654-50711.19.9711009821137@bugs6.perl.org>
28818 Branch: perl
28819 ! sv.c t/op/sprintf.t
28820____________________________________________________________________________
28821[ 18695] By: rgs on 2003/02/11 20:00:23
28822 Log: Subject: mini-[patch] perlrun "^$W" typo
28823 From: Iain Truskett <spoon@dellah.org>
28824 Date: Tue, 11 Feb 2003 08:38:52 +1100
28825 Message-ID: <20030210213851.GC31721@ouroboros.anu.edu.au>
28826 Branch: perl
28827 ! pod/perlrun.pod
28828____________________________________________________________________________
28829[ 18694] By: rgs on 2003/02/11 19:44:00
28830 Log: Subject: [PATCH] More B::Concise fixes
28831 From: Stephen McCamant <smcc@mit.edu>
28832 Date: Sun, 9 Feb 2003 17:28:38 -0500
28833 Message-ID: <15942.54806.381678.173391@syllepsis.MIT.EDU>
28834 Branch: perl
28835 ! ext/B/B/Concise.pm
28836____________________________________________________________________________
28837[ 18693] By: merijn on 2003/02/11 08:14:29
28838 Log: More code cleanup.
28839
28840 Subject: Re: New SV Flag
28841 Date: Fri, 07 Feb 2003 09:57:43 +0100
28842 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
28843 Message-Id: <20030207095258.6E05.H.M.BRAND@hccnet.nl>
28844 Branch: perl
28845 ! sv.c sv.h
28846____________________________________________________________________________
28847[ 18692] By: jhi on 2003/02/11 07:53:26
28848 Log: Dueling patches.
28849 Branch: perl
28850 - lib/CPAN/ChangeLog
28851 ! MANIFEST
28852____________________________________________________________________________
28853[ 18691] By: hv on 2003/02/11 00:27:56
28854 Log: Subject: PATCH: sv_rvweaken() deficiency (against 5.8.0)
28855 From: Mark Mielke <mark@mark.mielke.cc>
28856 Date: Mon, 20 Jan 2003 19:56:13 -0500
28857 Message-ID: <20030121005613.GA31739@mark.mielke.cc>
28858 Branch: perl
28859 ! sv.c
28860____________________________________________________________________________
28861[ 18690] By: hv on 2003/02/10 22:08:05
28862 Log: fix comment in change #18689
28863 Branch: perl
28864 ! sv.c
28865____________________________________________________________________________
28866[ 18689] By: hv on 2003/02/10 21:59:34
28867 Log: Fix for [perl #20339]: "%lf" rejected as invalid by recent sprintf.
28868 Now allows but ignores the 'l' modifier on floating point formats
28869 and adds a couple of tests.
28870 Branch: perl
28871 ! sv.c t/op/sprintf.t
28872____________________________________________________________________________
28873[ 18688] By: sky on 2003/02/10 19:54:13
28874 Log: Subject: Re: [perl #20777] [PATCH] goto &subroutine leaks memory
28875 From: Enache Adrian <enache@rdslink.ro>
28876 Date: sun feb 9, 2003 21:10:25 Europe/Stockholm
28877 Message-Id: <20030209201025.GA1247@ratsnest.hole>
28878 Branch: perl
28879 ! pp_ctl.c
28880____________________________________________________________________________
28881[ 18687] By: sky on 2003/02/10 18:13:29
28882 Log: Subject: Re: [perl #20716] [FIX] scope error with brackets
28883 From: Enache Adrian <enache@rdslink.ro>
28884 Date: mon feb 10, 2003 18:48:58 Europe/Stockholm
28885 Message-id: <20030210174858.GA872@ratsnest.hole>
28886 Branch: perl
28887 ! t/comp/parser.t toke.c
28888____________________________________________________________________________
28889[ 18686] By: sky on 2003/02/10 18:11:35
28890 Log: Compile under threads and MacOSX. For some reason newSVpvf
28891 was not exapnded.
28892 Branch: perl
28893 ! universal.c
28894____________________________________________________________________________
28895[ 18685] By: ams on 2003/02/10 03:44:07
28896 Log: No, we don't really want the utility scripts.
28897 Branch: perl
28898 - ext/MIME/Base64/decode-base64 ext/MIME/Base64/decode-qp
28899 - ext/MIME/Base64/encode-base64 ext/MIME/Base64/encode-qp
28900 ! MANIFEST ext/MIME/Base64/Makefile.PL
28901____________________________________________________________________________
28902[ 18684] By: hv on 2003/02/10 01:43:12
28903 Log: fix for C< use if qw/ 1 open :utf8 / > based on:
28904 Subject: [perl #20536] use if 1, open => ':utf8' fails
28905 From: Autrijus Tang (via RT) <perlbug-followup@perl.org>
28906 Date: 24 Jan 2003 22:39:06 -0000
28907 Message-Id: <rt-20536-49670.13.2464320257255@bugs6.perl.org>
28908 Branch: perl
28909 ! lib/if.pm lib/if.t
28910____________________________________________________________________________
28911[ 18683] By: hv on 2003/02/10 01:15:52
28912 Log: Subject: RE: perldebug.pod suggestion
28913 From: "Jay Hannah" <jhannah@omnihotels.com>
28914 Date: Fri, 24 Jan 2003 11:28:44 -0600
28915 Message-ID: <00b001c2c3ce$0c4716e0$4709a8c0@omarests2>
28916 Branch: perl
28917 ! pod/perldebug.pod
28918____________________________________________________________________________
28919[ 18682] By: hv on 2003/02/10 00:26:50
28920 Log: Subject: [PATCH] version objects final(?) patch
28921 From: John Peacock <jpeacock@rowman.com>
28922 Date: Sun, 05 Jan 2003 21:28:41 -0500
28923 Message-ID: <3E18E9D9.2040908@rowman.com>
28924 Branch: perl
28925 ! lib/version.pm lib/version.t universal.c util.c
28926____________________________________________________________________________
28927[ 18681] By: chip on 2003/02/09 17:45:06
28928 Log: Remove _h2ph_pre.ph when h2ph.t is complete.
28929 Branch: maint-5.005/perl
28930 ! t/lib/h2ph.t
28931____________________________________________________________________________
28932[ 18680] By: chip on 2003/02/09 17:39:33
28933 Log: Add CPAN ChangeLog to MANIFEST.
28934 Branch: perl
28935 ! MANIFEST
28936____________________________________________________________________________
28937[ 18679] By: chip on 2003/02/09 17:32:12
28938 Log: Doc change explaining usemymalloc='n'.
28939 Branch: maint-5.005/perl
28940 ! hints/linux.sh
28941____________________________________________________________________________
28942[ 18678] By: jhi on 2003/02/09 14:37:38
28943 Log: CPAN ChangeLog not needed, says Andreas.
28944 Branch: perl
28945 ! MANIFEST
28946____________________________________________________________________________
28947[ 18677] By: jhi on 2003/02/09 08:42:19
28948 Log: Subject: [perl #20785] glitches with $PerlIO::encoding::fallback
28949 From: "autrijus@ossf.iis.sinica.edu.tw (via RT)" <perlbug-followup@perl.org>
28950 Date: 8 Feb 2003 11:54:11 -0000
28951 Message-Id: <rt-20785-50586.6.45611613038412@bugs6.perl.org>
28952 Branch: perl
28953 ! ext/PerlIO/encoding/encoding.pm
28954____________________________________________________________________________
28955[ 18676] By: jhi on 2003/02/09 08:35:25
28956 Log: Subject: Re: utime undef, undef, "/tmp/test" and warnings
28957 From: Stas Bekman <stas@stason.org>
28958 Date: Sat, 08 Feb 2003 11:12:28 +1100
28959 Message-ID: <3E444B6C.5060407@stason.org>
28960 Branch: perl
28961 ! doio.c
28962____________________________________________________________________________
28963[ 18675] By: jhi on 2003/02/08 19:49:40
28964 Log: Possible cruft removal.
28965 Branch: perl
28966 ! x2p/Makefile.SH
28967____________________________________________________________________________
28968[ 18674] By: jhi on 2003/02/08 18:22:42
28969 Log: Signedness nits.
28970 Branch: perl
28971 ! toke.c
28972____________________________________________________________________________
28973[ 18673] By: jhi on 2003/02/08 17:38:33
28974 Log: Integrate:
28975 [ 18666]
28976 Patch from Richard Soderberg, cleanup the code a bit and comment
28977 why we are not using SvOOK_on.
28978
28979 [ 18667]
28980 Integrate:
28981 [ 18468]
28982 Subject: [PATCH] VMS perly build tweak
28983 From: "Craig A. Berry" <craigberry@mac.com>
28984 Date: Thu, 9 Jan 2003 14:44:40 -0600
28985 Message-Id: <a05200f03ba4389ff49eb@[172.16.52.1]>
28986
28987 [ 18668]
28988 sv_cat_recode() proto was missing, noticed by Craig Berry.
28989
28990 [ 18669]
28991 Subject: [PATCH: perl@186389] path tweak fix up for t/pod/find.t on VMS
28992 From: PPrymmer@factset.com
28993 Date: Wed, 5 Feb 2003 12:00:05 -0500
28994 Message-ID: <OFF5FDC924.68DBF580-ON85256CC4.005CC78E@factset.com>
28995
28996 [ 18670]
28997 Subject: [PATCH] perluniintro nit
28998 From: Autrijus Tang <autrijus@autrijus.org>
28999 Date: Fri, 7 Feb 2003 00:02:49 +0800
29000 Message-ID: <20030206160249.GA12984@not.autrijus.org>
29001
29002 [ 18671]
29003 Upgrade to Net::Ping 2.28, from Rob Brown.
29004
29005 [ 18672]
29006 Upgrade to CPAN 1.64, from Andreas Koenig.
29007 Branch: maint-5.8/perl
29008 +> lib/CPAN/ChangeLog lib/CPAN/README lib/Net/Ping/t/190_alarm.t
29009 +> lib/Net/Ping/t/500_ping_icmp.t utils/cpan
29010 !> MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/t/Nox.t
29011 !> lib/CPAN/t/loadme.t lib/CPAN/t/mirroredby.t lib/CPAN/t/vcmp.t
29012 !> lib/Net/Ping.pm lib/Net/Ping/Changes lib/Net/Ping/README
29013 !> lib/Net/Ping/t/300_ping_stream.t lib/Net/Ping/t/400_ping_syn.t
29014 !> lib/Net/Ping/t/410_syn_host.t pod/perluniintro.pod proto.h
29015 !> sv.c t/pod/find.t utils.lst
29016____________________________________________________________________________
29017[ 18672] By: jhi on 2003/02/08 08:45:35
29018 Log: Upgrade to CPAN 1.64, from Andreas Koenig.
29019 Branch: perl
29020 + lib/CPAN/ChangeLog lib/CPAN/README utils/cpan
29021 ! MANIFEST lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/t/Nox.t
29022 ! lib/CPAN/t/loadme.t lib/CPAN/t/mirroredby.t lib/CPAN/t/vcmp.t
29023 ! utils.lst
29024____________________________________________________________________________
29025[ 18671] By: jhi on 2003/02/08 08:35:06
29026 Log: Upgrade to Net::Ping 2.28, from Rob Brown.
29027 Branch: perl
29028 + lib/Net/Ping/t/190_alarm.t lib/Net/Ping/t/500_ping_icmp.t
29029 ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/Changes
29030 ! lib/Net/Ping/README lib/Net/Ping/t/300_ping_stream.t
29031 ! lib/Net/Ping/t/400_ping_syn.t lib/Net/Ping/t/410_syn_host.t
29032____________________________________________________________________________
29033[ 18670] By: jhi on 2003/02/08 07:23:02
29034 Log: Subject: [PATCH] perluniintro nit
29035 From: Autrijus Tang <autrijus@autrijus.org>
29036 Date: Fri, 7 Feb 2003 00:02:49 +0800
29037 Message-ID: <20030206160249.GA12984@not.autrijus.org>
29038 Branch: perl
29039 ! pod/perluniintro.pod
29040____________________________________________________________________________
29041[ 18669] By: jhi on 2003/02/06 20:06:09
29042 Log: Subject: [PATCH: perl@186389] path tweak fix up for t/pod/find.t on VMS
29043 From: PPrymmer@factset.com
29044 Date: Wed, 5 Feb 2003 12:00:05 -0500
29045 Message-ID: <OFF5FDC924.68DBF580-ON85256CC4.005CC78E@factset.com>
29046 Branch: perl
29047 ! t/pod/find.t
29048____________________________________________________________________________
29049[ 18668] By: jhi on 2003/02/06 20:00:52
29050 Log: sv_cat_recode() proto was missing, noticed by Craig Berry.
29051 Branch: perl
29052 ! proto.h
29053____________________________________________________________________________
29054[ 18667] By: jhi on 2003/02/06 19:58:41
29055 Log: Integrate:
29056 [ 18468]
29057 Subject: [PATCH] VMS perly build tweak
29058 From: "Craig A. Berry" <craigberry@mac.com>
29059 Date: Thu, 9 Jan 2003 14:44:40 -0600
29060 Message-Id: <a05200f03ba4389ff49eb@[172.16.52.1]>
29061 Branch: maint-5.8/perl
29062 !> vms/descrip_mms.template
29063____________________________________________________________________________
29064[ 18666] By: sky on 2003/02/06 09:39:24
29065 Log: Patch from Richard Soderberg, cleanup the code a bit and comment
29066 why we are not using SvOOK_on.
29067 Branch: perl
29068 ! sv.c
29069____________________________________________________________________________
29070[ 18665] By: jhi on 2003/02/06 09:34:12
29071 Log: Integrate:
29072 [ 18647]
29073 Subject: Re: [perl #20606] [PATCH} openbsd hints
29074 From: Abe Timmerman <abe@ztreet.demon.nl>
29075 Date: Sun, 2 Feb 2003 18:27:57 +0100
29076 Message-Id: <200302021827.57240.abe@ztreet.demon.nl>
29077
29078 [ 18648]
29079 Fix bug #8760 : cop_line isn't properly restored
29080 when a module is loaded at runtime behind the scenes.
29081
29082 [ 18649]
29083 Document the environment variable PERL_UTF8_LOCALE in perlrun.
29084
29085 [ 18650]
29086 Force the C locale in makedepend, to prevent gcc from
29087 producing locale-dependent messages.
29088
29089 [ 18651]
29090 Signedness issue.
29091
29092 [ 18652]
29093 Comment tweak.
29094
29095 [ 18653]
29096 Fix "[perl #20667] unicode regex vs non-unicode regex".
29097 The PL_regdata was not set up (S_cache_re()) before it
29098 was needed (S_reginclass()). The test put in fresh_perl.t
29099 because we need a pristine state to start.
29100
29101 [ 18654]
29102 Sync with 1.10
29103
29104 [ 18655]
29105 Add the new test to MANIFEST.
29106
29107 [ 18656]
29108 Better version of change #18648, by Enache Adrian
29109 Message-ID: <20030204101533.GA11817@ratsnest.hole>
29110
29111 [ 18657]
29112 Subject: [PATCH] B::Concise updates (incl. avoiding use of op_seq)
29113 From: Stephen McCamant <smcc@mit.edu>
29114 Date: Mon, 3 Feb 2003 21:01:07 -0500
29115 Message-ID: <15935.7907.976943.74729@syllepsis.MIT.EDU>
29116
29117 [ 18658]
29118 s/S_cache_re/cache_re/ for building with threads.
29119
29120 [ 18659]
29121 Subject: [PATCH: perl@186389] fix for PerlIO/Via compilation on VMS
29122 From: PPrymmer@factset.com
29123 Date: Tue, 4 Feb 2003 12:03:17 -0500
29124 Message-ID: <OFCBC6AE62.FF2B83D4-ON85256CC3.005D7A9F@factset.com>
29125
29126 [ 18660]
29127 Subject: [Patch] parsing under encoding (Re: [Encode] HEADS-UP; $Encode::VERSION++ to enhance filter option)([perl #16823])
29128 From: Inaba HIroto <inaba@st.rim.or.jp>
29129 Date: Sat, 01 Feb 2003 21:58:20 +0900
29130 Message-ID: <3E3BC46B.6C687CFD@st.rim.or.jp>
29131
29132 [ 18661]
29133 [perl #19767] has become fixed too (by changes #18653
29134 and #18658, methinks), adding the test(s).
29135
29136 [ 18662]
29137 Add the test of [perl #8760] (fixed by change #18656).
29138
29139 [ 18663]
29140 Upgrade to Encode 1.87.
29141
29142 [ 18664]
29143 Things forgotten from Encode 1.87.
29144 Branch: maint-5.8/perl
29145 +> ext/List/Util/t/lln.t
29146 !> (integrate 43 files)
29147____________________________________________________________________________
29148[ 18664] By: jhi on 2003/02/06 09:26:53
29149 Log: Things forgotten from Encode 1.87.
29150 Branch: perl
29151 ! ext/Encode/Unicode/Unicode.xs ext/Encode/t/CJKT.t
29152____________________________________________________________________________
29153[ 18663] By: jhi on 2003/02/06 04:03:31
29154 Log: Upgrade to Encode 1.87.
29155 Branch: perl
29156 ! ext/Encode/AUTHORS ext/Encode/Byte/Byte.pm ext/Encode/Changes
29157 ! ext/Encode/Encode.pm ext/Encode/Encode.xs ext/Encode/KR/KR.pm
29158 ! ext/Encode/Unicode/Unicode.pm ext/Encode/Unicode/Unicode.xs
29159 ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
29160 ! ext/Encode/lib/Encode/CJKConstants.pm
29161 ! ext/Encode/lib/Encode/Encoder.pm
29162 ! ext/Encode/lib/Encode/Encoding.pm
29163 ! ext/Encode/lib/Encode/JP/JIS7.pm ext/Encode/t/CJKT.t
29164 ! ext/Encode/t/enc_eucjp.t
29165____________________________________________________________________________
29166[ 18662] By: jhi on 2003/02/05 19:40:38
29167 Log: Add the test of [perl #8760] (fixed by change #18656).
29168 Branch: perl
29169 ! t/run/fresh_perl.t
29170____________________________________________________________________________
29171[ 18661] By: jhi on 2003/02/05 19:28:37
29172 Log: has become fixed too (by changes #18653
29173 and #18658, methinks), adding the test(s).
29174 Branch: perl
29175 ! t/op/pat.t
29176____________________________________________________________________________
29177[ 18660] By: jhi on 2003/02/05 17:15:35
29178 Log: Subject: [Patch] parsing under encoding (Re: [Encode] HEADS-UP; $Encode::VERSION++ to enhance filter option)([perl #16823])
29179 From: Inaba HIroto <inaba@st.rim.or.jp>
29180 Date: Sat, 01 Feb 2003 21:58:20 +0900
29181 Message-ID: <3E3BC46B.6C687CFD@st.rim.or.jp>
29182 Branch: perl
29183 ! embed.fnc embed.h ext/Encode/Encode.pm ext/Encode/Encode.xs
29184 ! ext/Encode/Encode/encode.h ext/Encode/encengine.c
29185 ! ext/Encode/lib/Encode/Encoding.pm
29186 ! ext/Encode/lib/Encode/JP/JIS7.pm global.sym lib/utf8.t
29187 ! pod/perlapi.pod sv.c t/uni/tr_7jis.t toke.c
29188____________________________________________________________________________
29189[ 18659] By: jhi on 2003/02/05 11:51:30
29190 Log: Subject: [PATCH: perl@186389] fix for PerlIO/Via compilation on VMS
29191 From: PPrymmer@factset.com
29192 Date: Tue, 4 Feb 2003 12:03:17 -0500
29193 Message-ID: <OFCBC6AE62.FF2B83D4-ON85256CC3.005D7A9F@factset.com>
29194 Branch: perl
29195 ! ext/PerlIO/via/via.xs
29196____________________________________________________________________________
29197[ 18658] By: jhi on 2003/02/05 05:45:11
29198 Log: s/S_cache_re/cache_re/ for building with threads.
29199 Branch: perl
29200 ! regexec.c
29201____________________________________________________________________________
29202[ 18657] By: rgs on 2003/02/04 20:06:19
29203 Log: Subject: [PATCH] B::Concise updates (incl. avoiding use of op_seq)
29204 From: Stephen McCamant <smcc@mit.edu>
29205 Date: Mon, 3 Feb 2003 21:01:07 -0500
29206 Message-ID: <15935.7907.976943.74729@syllepsis.MIT.EDU>
29207 Branch: perl
29208 ! ext/B/B/Concise.pm ext/B/t/concise.t
29209____________________________________________________________________________
29210[ 18656] By: rgs on 2003/02/04 20:02:56
29211 Log: Better version of change #18648, by Enache Adrian
29212 Message-ID: <20030204101533.GA11817@ratsnest.hole>
29213 Branch: perl
29214 ! op.c
29215____________________________________________________________________________
29216[ 18655] By: jhi on 2003/02/04 15:56:36
29217 Log: Add the new test to MANIFEST.
29218 Branch: perl
29219 ! MANIFEST
29220____________________________________________________________________________
29221[ 18654] By: gbarr on 2003/02/04 14:42:51
29222 Log: Sync with 1.10
29223 Branch: perl
29224 + ext/List/Util/t/lln.t
29225 ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
29226 ! ext/List/Util/lib/List/Util.pm
29227 ! ext/List/Util/lib/Scalar/Util.pm
29228____________________________________________________________________________
29229[ 18653] By: jhi on 2003/02/04 11:04:25
29230 Log: Fix "[perl #20667] unicode regex vs non-unicode regex".
29231 The PL_regdata was not set up (S_cache_re()) before it
29232 was needed (S_reginclass()). The test put in fresh_perl.t
29233 because we need a pristine state to start.
29234 Branch: perl
29235 ! regexec.c t/run/fresh_perl.t
29236____________________________________________________________________________
29237[ 18652] By: jhi on 2003/02/04 06:35:51
29238 Log: Comment tweak.
29239 Branch: perl
29240 ! t/op/pat.t
29241____________________________________________________________________________
29242[ 18651] By: jhi on 2003/02/04 06:28:53
29243 Log: Signedness issue.
29244 Branch: perl
29245 ! ext/MIME/Base64/Base64.xs
29246____________________________________________________________________________
29247[ 18650] By: rgs on 2003/02/03 22:02:44
29248 Log: Force the C locale in makedepend, to prevent gcc from
29249 producing locale-dependent messages.
29250 Branch: perl
29251 ! makedepend.SH
29252____________________________________________________________________________
29253[ 18649] By: rgs on 2003/02/03 22:00:21
29254 Log: Document the environment variable PERL_UTF8_LOCALE in perlrun.
29255 Branch: perl
29256 ! pod/perlrun.pod
29257____________________________________________________________________________
29258[ 18648] By: rgs on 2003/02/03 19:32:57
29259 Log: Fix bug #8760 : cop_line isn't properly restored
29260 when a module is loaded at runtime behind the scenes.
29261 Branch: perl
29262 ! op.c t/lib/warnings/perlio
29263____________________________________________________________________________
29264[ 18647] By: merijn on 2003/02/03 16:14:00
29265 Log: Subject: Re: [perl #20606] [PATCH} openbsd hints
29266 From: Abe Timmerman <abe@ztreet.demon.nl>
29267 Date: Sun, 2 Feb 2003 18:27:57 +0100
29268 Message-Id: <200302021827.57240.abe@ztreet.demon.nl>
29269 Branch: perl
29270 ! hints/openbsd.sh
29271____________________________________________________________________________
29272[ 18646] By: jhi on 2003/02/03 12:54:10
29273 Log: Integrate:
29274 [ 18640]
29275 Move SvPVIV out of ->op_sv of METHOD_NAMED into the pad, fixes
29276 threading issue. Should perhaps be a PVOP to save memory, but then
29277 we have nowhere to store the hash of the function!
29278
29279 [ 18641]
29280 In any case, never copy this but use the same SV since
29281 if we copy we loose the hash we so badly need.
29282 For op_const we might still need to copy however.
29283
29284 [ 18644]
29285 Duh, test -e ENOPORTABLE, I should've remembered that.
29286 (Made Solaris go boom.)
29287 Branch: maint-5.8/perl
29288 !> Configure dump.c op.c pp_hot.c
29289____________________________________________________________________________
29290[ 18645] By: jhi on 2003/02/03 12:42:15
29291 Log: metaconfig unit change for #18644.
29292 Branch: metaconfig
29293 ! U/modified/Head.U
29294____________________________________________________________________________
29295[ 18644] By: jhi on 2003/02/03 12:41:51
29296 Log: Duh, test -e ENOPORTABLE, I should've remembered that.
29297 (Made Solaris go boom.)
29298 Branch: perl
29299 ! Configure
29300____________________________________________________________________________
29301[ 18643] By: jhi on 2003/02/03 10:36:15
29302 Log: Detypo.
29303 Branch: perl
29304 ! cop.h
29305____________________________________________________________________________
29306[ 18642] By: ams on 2003/02/03 08:26:36
29307 Log: Integrate MIME::Base64 2.16 from CPAN. (Do we really want the
29308 utility scripts?)
29309 Branch: perl
29310 + ext/MIME/Base64/decode-base64 ext/MIME/Base64/decode-qp
29311 + ext/MIME/Base64/encode-base64 ext/MIME/Base64/encode-qp
29312 ! MANIFEST ext/MIME/Base64/Base64.pm ext/MIME/Base64/Base64.xs
29313 ! ext/MIME/Base64/Changes ext/MIME/Base64/Makefile.PL
29314 ! ext/MIME/Base64/QuotedPrint.pm ext/MIME/Base64/t/base64.t
29315 ! ext/MIME/Base64/t/quoted-print.t
29316____________________________________________________________________________
29317[ 18641] By: sky on 2003/02/02 23:46:24
29318 Log: In any case, never copy this but use the same SV since
29319 if we copy we loose the hash we so badly need.
29320 For op_const we might still need to copy however.
29321 Branch: perl
29322 ! op.c
29323____________________________________________________________________________
29324[ 18640] By: sky on 2003/02/02 23:38:40
29325 Log: Move SvPVIV out of ->op_sv of METHOD_NAMED into the pad, fixes
29326 threading issue. Should perhaps be a PVOP to save memory, but then
29327 we have nowhere to store the hash of the function!
29328 Branch: perl
29329 ! dump.c op.c pp_hot.c
29330____________________________________________________________________________
29331[ 18639] By: jhi on 2003/02/02 20:59:37
29332 Log: Update Changes.
29333 Branch: maint-5.8/perl
29334 ! Changes patchlevel.h
29335____________________________________________________________________________
29336[ 18638] By: jhi on 2003/02/02 20:26:13
29337 Log: Integrate:
29338 [ 18621]
29339 Fix and test for [perl #15549 Empty \Q\E not permitted]
29340 (test.pl-ise quotemeta.t, too)
29341
29342 [ 18622]
29343 minitest wasn't working. (The $^X /miniperl/ test in
29344 io/crlf.t didn't work in Tru64, $^X was "./perl", used
29345 the same 'eval q/use .../' trick everywhere.)
29346
29347 [ 18624]
29348 Plan 9: doesn't really do Configure (undo #18585/#18586)
29349
29350 [ 18626]
29351 Plan 9: No Configure.
29352
29353 [ 18627]
29354 Plan 9: Update the list of object files.
29355
29356 [ 18628]
29357 Plan 9: Update config.plan9 based on Russ Cox' work.
29358
29359 [ 18629]
29360 Plan 9: Supply also Russ Cox' original config.h for 5.8.0.
29361
29362 [ 18630]
29363 [perl #15397] seems to have been fixed; add its test.
29364
29365 [ 18631]
29366 The [perl #7471] seems to have been fixed; add its test.
29367
29368 [ 18632]
29369 Also [perl #3547] has been fixed; add its test case.
29370
29371 [ 18633]
29372 Subject: [perl #18232] [PATCH] store PL_reg_match_utf8 in reganch
29373 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
29374 Date: Wed, 22 Jan 2003 22:35:56 +0100
29375 Message-Id: <20030122223556.57d597a3.rgarciasuarez@free.fr>
29376
29377 [ 18634]
29378 Subject: [PATCH] pod/perlfunc.pod
29379 From: abigail@abigail.nl
29380 Date: Sun, 2 Feb 2003 16:59:48 +0100
29381 Message-Id: <20030202155948.7971.qmail@abigail.nl>
29382
29383 [ 18635]
29384 Plan 9: Add also config.sh sample for 5.8.0 from Russ Cox.
29385
29386 [ 18636]
29387 Subject: Re: typo in checkin 18616
29388 From: Nick Ing-Simmons <nick@ing-simmons.net>
29389 Date: Sun, 02 Feb 2003 17:23:08 +0000
29390 Message-Id: <20030202172308.9244.1@bactrian.ni-s.u-net.com>
29391
29392 [ 18637]
29393 Plan 9: Some time has passed.
29394 Branch: maint-5.8/perl
29395 +> plan9/config_h.sample plan9/config_sh.sample
29396 !> Configure MANIFEST XSUB.h mg.c plan9/buildinfo
29397 !> plan9/config.plan9 plan9/mkfile pod/perlfunc.pod pp.c pp_ctl.c
29398 !> pp_hot.c regexec.c regexp.h t/io/crlf.t t/op/pat.t
29399 !> t/op/quotemeta.t t/uni/tr_7jis.t t/uni/tr_eucjp.t
29400 !> t/uni/tr_sjis.t t/uni/tr_utf8.t toke.c
29401____________________________________________________________________________
29402[ 18637] By: jhi on 2003/02/02 20:07:57
29403 Log: Plan 9: Some time has passed.
29404 Branch: perl
29405 ! plan9/buildinfo
29406____________________________________________________________________________
29407[ 18636] By: jhi on 2003/02/02 20:02:11
29408 Log: Subject: Re: typo in checkin 18616
29409 From: Nick Ing-Simmons <nick@ing-simmons.net>
29410 Date: Sun, 02 Feb 2003 17:23:08 +0000
29411 Message-Id: <20030202172308.9244.1@bactrian.ni-s.u-net.com>
29412 Branch: perl
29413 ! XSUB.h
29414____________________________________________________________________________
29415[ 18635] By: jhi on 2003/02/02 19:46:35
29416 Log: Plan 9: Add also config.sh sample for 5.8.0 from Russ Cox.
29417 Branch: perl
29418 + plan9/config_sh.sample
29419 ! MANIFEST
29420____________________________________________________________________________
29421[ 18634] By: ams on 2003/02/02 18:07:01
29422 Log: Subject: [PATCH] pod/perlfunc.pod
29423 From: abigail@abigail.nl
29424 Date: Sun, 2 Feb 2003 16:59:48 +0100
29425 Message-Id: <20030202155948.7971.qmail@abigail.nl>
29426 Branch: perl
29427 ! pod/perlfunc.pod
29428____________________________________________________________________________
29429[ 18633] By: jhi on 2003/02/02 16:48:26
29430 Log: Subject: [perl #18232] [PATCH] store PL_reg_match_utf8 in reganch
29431 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
29432 Date: Wed, 22 Jan 2003 22:35:56 +0100
29433 Message-Id: <20030122223556.57d597a3.rgarciasuarez@free.fr>
29434 Branch: perl
29435 ! mg.c pp.c pp_ctl.c pp_hot.c regexec.c regexp.h t/op/pat.t
29436____________________________________________________________________________
29437[ 18632] By: jhi on 2003/02/02 15:31:36
29438 Log: Also [perl #3547] has been fixed; add its test case.
29439 Branch: perl
29440 ! t/op/pat.t
29441____________________________________________________________________________
29442[ 18631] By: jhi on 2003/02/02 15:26:10
29443 Log: The [perl #7471] seems to have been fixed; add its test.
29444 Branch: perl
29445 ! t/op/pat.t
29446____________________________________________________________________________
29447[ 18630] By: jhi on 2003/02/02 15:21:23
29448 Log: seems to have been fixed; add its test.
29449 Branch: perl
29450 ! t/op/pat.t
29451____________________________________________________________________________
29452[ 18629] By: jhi on 2003/02/02 15:09:39
29453 Log: Plan 9: Supply also Russ Cox' original config.h for 5.8.0.
29454 Branch: perl
29455 + plan9/config_h.sample
29456 ! MANIFEST
29457____________________________________________________________________________
29458[ 18628] By: jhi on 2003/02/02 14:46:26
29459 Log: Plan 9: Update config.plan9 based on Russ Cox' work.
29460 Branch: perl
29461 ! plan9/config.plan9
29462____________________________________________________________________________
29463[ 18627] By: jhi on 2003/02/02 14:24:00
29464 Log: Plan 9: Update the list of object files.
29465 Branch: perl
29466 ! plan9/mkfile
29467____________________________________________________________________________
29468[ 18626] By: jhi on 2003/02/02 14:03:16
29469 Log: Plan 9: No Configure.
29470 Branch: perl
29471 ! Configure
29472____________________________________________________________________________
29473[ 18625] By: jhi on 2003/02/02 14:02:50
29474 Log: Plan 9: No Configure.
29475 Branch: metaconfig
29476 ! U/modified/Head.U
29477____________________________________________________________________________
29478[ 18624] By: jhi on 2003/02/02 13:29:02
29479 Log: Plan 9: doesn't really do Configure (undo #18585/#18586)
29480 Branch: perl
29481 ! Configure
29482____________________________________________________________________________
29483[ 18623] By: jhi on 2003/02/02 13:28:44
29484 Log: Plan 9: doesn't really do Configure (undo #18585/#18586)
29485 Branch: metaconfig
29486 ! U/modified/usenm.U
29487____________________________________________________________________________
29488[ 18622] By: jhi on 2003/02/02 12:49:13
29489 Log: minitest wasn't working. (The $^X /miniperl/ test in
29490 io/crlf.t didn't work in Tru64, $^X was "./perl", used
29491 the same 'eval q/use .../' trick everywhere.)
29492 Branch: perl
29493 ! t/io/crlf.t t/uni/tr_7jis.t t/uni/tr_eucjp.t t/uni/tr_sjis.t
29494 ! t/uni/tr_utf8.t
29495____________________________________________________________________________
29496[ 18621] By: jhi on 2003/02/02 12:23:28
29497 Log: Fix and test for [perl #15549 Empty \Q\E not permitted]
29498 (test.pl-ise quotemeta.t, too)
29499 Branch: perl
29500 ! t/op/quotemeta.t toke.c
29501____________________________________________________________________________
29502[ 18620] By: nick on 2003/02/02 11:37:57
29503 Log: Integrate mainline
29504 Branch: perlio
29505 !> ext/threads/threads.xs
29506____________________________________________________________________________
29507[ 18619] By: jhi on 2003/02/01 21:13:47
29508 Log: Integrate:
29509 [ 18618]
29510 Fix bug #15837, temporary from storable call hadn't gotten
29511 freed yet and was cloned but without a real (AvREAL)
29512 reference to it. @_ doesn't refcount!
29513 Branch: maint-5.8/perl
29514 !> ext/threads/threads.xs
29515____________________________________________________________________________
29516[ 18618] By: sky on 2003/02/01 21:04:36
29517 Log: Fix bug #15837, temporary from storable call hadn't gotten
29518 freed yet and was cloned but without a real (AvREAL)
29519 reference to it. @_ doesn't refcount!
29520 Branch: perl
29521 ! ext/threads/threads.xs
29522____________________________________________________________________________
29523[ 18617] By: jhi on 2003/02/01 20:05:08
29524 Log: Integrate:
29525 [ 18616]
29526 Integrate from perlio:
29527
29528 [ 18591]
29529 PERL_IMPLICIT_SYS does NOT vector PerlIO_xxx but PerlSIO_xxx, so
29530 correct XSUB.h
29531
29532 [ 18611]
29533 Michael Schroeder's fix for re-try if stdio ops after
29534 interrupts. (Calls to PERL_ASYNC_CHECK added by NI-S).
29535
29536 [ 18612]
29537 PerlIO friendly version of speed up of $/ = undef case.
29538
29539 [ 18613]
29540 fflush() before invalidating stdio's fileno.
29541
29542 [ 18615]
29543 Don't free thread before using it, breaks platforms that
29544 trust that I really want to free what I free, (like HPUX
29545 and AIX).
29546
29547 [ 18614]
29548 Subject: Re: bleadperl: PerlIOStdio_invalidate_fileno breaks fclose semantics
29549 From: Nick Ing-Simmons <nick@ing-simmons.net>
29550 Date: Sat, 01 Feb 2003 13:03:52 +0000
29551 Message-Id: <20030201130352.1872.12@bactrian.ni-s.u-net.com>
29552
29553 [ 18609]
29554 Go even further (back) than change #18608 and revert
29555 to the 5.8.0 code, since otherwise split.t #40 fails.
29556 The four new tests of pat.t should keep us more honest.
29557
29558 [ 18608]
29559 Subject: [FIX] Re: UTF-8 failures (surprise!)
29560 From: Enache Adrian <enache@rdslink.ro>
29561 Date: Fri, 31 Jan 2003 09:20:59 +0200
29562 Message-ID: <20030131072059.GB6045@ratsnest.hole>
29563
29564 [ 18607]
29565 Fix typo in version check ($[ to $]).
29566
29567 [ 18606]
29568 Subject: [PATCH] Upper<->Lower case mistake in perlunicode.pod ?
29569 From: Jose.auguste-etienne@cgss-guyane.fr
29570 Date: Thu, 30 Jan 2003 12:40:53 -0300
29571 Message-ID: <OF8E7C1B73.22FEA7CE-ON03256CBE.00528AB8@Cgss-Guyane.fr>
29572
29573 [ 18605]
29574 [perl #20616] code example in the FAQ that isn't strict-friendly.
29575 Subject: [perl #20616] Tie::IxHash doc error.
29576 From: Beckett Richard-qswi266 (via RT) <perlbug-followup@perl.org>
29577 Date: 30 Jan 2003 11:43:17 -0000
29578 Message-Id: <rt-20616-49904.16.891027432675@bugs6.perl.org>
29579
29580 [ 18604]
29581 FAQ sync.
29582
29583 [ 18603]
29584 Subject: [FIX] Re: UTF-8 failures (surprise!)
29585 From: Enache Adrian <enache@rdslink.ro>
29586 Date: Thu, 30 Jan 2003 10:48:09 +0200
29587 Message-ID: <20030130084809.GA16902@ratsnest.hole>
29588
29589 Fix for half of the failures, with an expanded test.
29590
29591 [ 18602]
29592 Updates to the openbsd hints
29593
29594 Subject: [perl #20606] [no subject]
29595 Date: 29 Jan 2003 18:38:37 -0000
29596 From: "Todd C. Miller" (via RT) <perlbug-followup@perl.org>
29597 Message-Id: <rt-20606-49879.4.78874436094841@bugs6.perl.org>
29598
29599 [ 18599]
29600 Fix a very small memory leak in op_free, by reserving the
29601 case op_seq == (U16)-1 for the compiler backend
29602
29603 Subject: Re: Freeing code
29604 From: "Paul Johnson" <paul@pjcj.net>
29605 Date: Tue, 28 Jan 2003 14:13:09 +0100 (CET)
29606 Message-ID: <18918.193.134.254.145.1043759589.squirrel@wesley.pjcj.net>
29607
29608 [ 18597]
29609 Subject: Re: [perl #20274] perlbug requires dynamic loading
29610 From: Slaven Rezic <slaven@rezic.de>
29611 Date: 14 Jan 2003 20:58:54 +0100
29612 Message-ID: <87n0m3v6yp.fsf@vran.herceg.de>
29613
29614 [ 18596]
29615 Introduce the PUSHSUB_DB macro, equivalent to PUSHSUB, but
29616 without the lval context tweak. Used in OP_DBSTATE.
29617 Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d
29618 From: Dave Mitchell <davem@fdgroup.com>
29619 Date: Sun, 26 Jan 2003 17:42:42 +0000
29620 Message-ID: <20030126174242.H16182@fdgroup.com>
29621
29622 [ 18594]
29623 Update the pod list for Plan 9.
29624
29625 [ 18593]
29626 When we copy things out of a hash and increment the
29627 refcount of the shared scalar, we really must protect
29628 that refcount increase with a lock, or else it might not
29629 happen. Fixes segfault when objects would prematurely
29630 be killed.
29631
29632 [ 18588]
29633 Lest people get worried about not having PerlIO.
29634 Branch: maint-5.8/perl
29635 !> XSUB.h cop.h ext/Storable/t/restrict.t
29636 !> ext/Sys/Hostname/Hostname.pm ext/threads/shared/shared.xs
29637 !> ext/threads/threads.xs hints/openbsd.sh lib/utf8.t op.c
29638 !> perlio.c plan9/mkfile pod/perlfaq.pod pod/perlfaq2.pod
29639 !> pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
29640 !> pod/perlfaq7.pod pod/perlfaq8.pod pod/perlunicode.pod
29641 !> pod/perluniintro.pod pp_ctl.c regexec.c sv.c t/op/pat.t
29642____________________________________________________________________________
29643[ 18616] By: jhi on 2003/02/01 19:43:09
29644 Log: Integrate from perlio:
29645
29646 [ 18591]
29647 PERL_IMPLICIT_SYS does NOT vector PerlIO_xxx but PerlSIO_xxx, so
29648 correct XSUB.h
29649
29650 [ 18611]
29651 Michael Schroeder's fix for re-try if stdio ops after
29652 interrupts. (Calls to PERL_ASYNC_CHECK added by NI-S).
29653
29654 [ 18612]
29655 PerlIO friendly version of speed up of $/ = undef case.
29656
29657 [ 18613]
29658 fflush() before invalidating stdio's fileno.
29659 Branch: perl
29660 !> XSUB.h perlio.c sv.c
29661____________________________________________________________________________
29662[ 18615] By: sky on 2003/02/01 12:01:01
29663 Log: Don't free thread before using it, breaks platforms that
29664 trust that I really want to free what I free, (like HPUX
29665 and AIX).
29666 Branch: perl
29667 ! ext/threads/threads.xs
29668____________________________________________________________________________
29669[ 18614] By: ams on 2003/02/01 12:00:29
29670 Log: Subject: Re: bleadperl: PerlIOStdio_invalidate_fileno breaks fclose semantics
29671 From: Nick Ing-Simmons <nick@ing-simmons.net>
29672 Date: Sat, 01 Feb 2003 13:03:52 +0000
29673 Message-Id: <20030201130352.1872.12@bactrian.ni-s.u-net.com>
29674 Branch: perl
29675 ! perlio.c
29676____________________________________________________________________________
29677[ 18613] By: nick on 2003/02/01 11:56:47
29678 Log: fflush() before invalidating stdio's fileno.
29679 Branch: perlio
29680 ! perlio.c
29681____________________________________________________________________________
29682[ 18612] By: nick on 2003/02/01 11:37:30
29683 Log: PerlIO friendly version of speed up of $/ = undef case.
29684 Branch: perlio
29685 ! sv.c
29686____________________________________________________________________________
29687[ 18611] By: nick on 2003/02/01 09:26:31
29688 Log: Michael Schroeder's fix for re-try if stdio ops after
29689 interrupts. (Calls to PERL_ASYNC_CHECK added by NI-S).
29690 Branch: perlio
29691 ! perlio.c
29692____________________________________________________________________________
29693[ 18610] By: nick on 2003/02/01 09:19:20
29694 Log: Integrate mainline
29695 Branch: perlio
29696 +> t/lib/warnings/pad
29697 !> (integrate 43 files)
29698____________________________________________________________________________
29699[ 18609] By: jhi on 2003/01/31 08:58:40
29700 Log: Go even further (back) than change #18608 and revert
29701 to the 5.8.0 code, since otherwise split.t #40 fails.
29702 The four new tests of pat.t should keep us more honest.
29703 Branch: perl
29704 ! regexec.c
29705____________________________________________________________________________
29706[ 18608] By: jhi on 2003/01/31 08:24:53
29707 Log: Subject: [FIX] Re: UTF-8 failures (surprise!)
29708 From: Enache Adrian <enache@rdslink.ro>
29709 Date: Fri, 31 Jan 2003 09:20:59 +0200
29710 Message-ID: <20030131072059.GB6045@ratsnest.hole>
29711 Branch: perl
29712 ! regexec.c t/op/pat.t
29713____________________________________________________________________________
29714[ 18607] By: ams on 2003/01/31 02:29:56
29715 Log: Fix typo in version check ($[ to $]).
29716 Branch: perl
29717 ! ext/Storable/t/restrict.t
29718____________________________________________________________________________
29719[ 18606] By: rgs on 2003/01/30 22:02:47
29720 Log: Subject: [PATCH] Upper<->Lower case mistake in perlunicode.pod ?
29721 From: Jose.auguste-etienne@cgss-guyane.fr
29722 Date: Thu, 30 Jan 2003 12:40:53 -0300
29723 Message-ID: <OF8E7C1B73.22FEA7CE-ON03256CBE.00528AB8@Cgss-Guyane.fr>
29724 Branch: perl
29725 ! pod/perlunicode.pod
29726____________________________________________________________________________
29727[ 18605] By: rgs on 2003/01/30 20:58:52
29728 Log: code example in the FAQ that isn't strict-friendly.
29729 Subject: [perl #20616] Tie::IxHash doc error.
29730 From: Beckett Richard-qswi266 (via RT) <perlbug-followup@perl.org>
29731 Date: 30 Jan 2003 11:43:17 -0000
29732 Message-Id: <rt-20616-49904.16.891027432675@bugs6.perl.org>
29733 Branch: perl
29734 ! pod/perlfaq4.pod
29735____________________________________________________________________________
29736[ 18604] By: rgs on 2003/01/30 20:52:05
29737 Log: FAQ sync.
29738 Branch: perl
29739 ! pod/perlfaq.pod pod/perlfaq2.pod pod/perlfaq3.pod
29740 ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq7.pod
29741 ! pod/perlfaq8.pod
29742____________________________________________________________________________
29743[ 18603] By: jhi on 2003/01/30 08:05:22
29744 Log: Subject: [FIX] Re: UTF-8 failures (surprise!)
29745 From: Enache Adrian <enache@rdslink.ro>
29746 Date: Thu, 30 Jan 2003 10:48:09 +0200
29747 Message-ID: <20030130084809.GA16902@ratsnest.hole>
29748
29749 Fix for half of the failures, with an expanded test.
29750 Branch: perl
29751 ! lib/utf8.t sv.c
29752____________________________________________________________________________
29753[ 18602] By: merijn on 2003/01/30 06:31:50
29754 Log: Updates to the openbsd hints
29755
29756 Subject: [perl #20606] [no subject]
29757 Date: 29 Jan 2003 18:38:37 -0000
29758 From: "Todd C. Miller" (via RT) <perlbug-followup@perl.org>
29759 Message-Id: <rt-20606-49879.4.78874436094841@bugs6.perl.org>
29760 Branch: perl
29761 ! hints/openbsd.sh
29762____________________________________________________________________________
29763[ 18601] By: jhi on 2003/01/29 05:58:36
29764 Log: More of the #18600.
29765 Branch: perl
29766 ! pad.c
29767____________________________________________________________________________
29768[ 18600] By: jhi on 2003/01/29 05:37:12
29769 Log: Retract the %_/SVf change (part of #18456) for PROTOTYPE (CV)
29770 dumping (but now use SvPV_nolen). (This change made an empty
29771 prototype to show up as "_" under -Uuseperlio.)
29772 Branch: perl
29773 ! dump.c
29774____________________________________________________________________________
29775[ 18599] By: rgs on 2003/01/28 21:07:08
29776 Log: Fix a very small memory leak in op_free, by reserving the
29777 case op_seq == (U16)-1 for the compiler backend
29778
29779 Subject: Re: Freeing code
29780 From: "Paul Johnson" <paul@pjcj.net>
29781 Date: Tue, 28 Jan 2003 14:13:09 +0100 (CET)
29782 Message-ID: <18918.193.134.254.145.1043759589.squirrel@wesley.pjcj.net>
29783 Branch: perl
29784 ! op.c
29785____________________________________________________________________________
29786[ 18598] By: rgs on 2003/01/28 20:43:02
29787 Log: Integrate from maint-5.8:
29788 Change 18450 :
29789 Tiny output tweak.
29790 Change 18429 :
29791 AIX gcc (2.9) threaded build tweak (without the _THREAD_SAFE
29792 things like drand48_data are undefined).
29793 Change 18388 :
29794 List the PERL_MAGIC_utf8 ('w') flag.
29795 Branch: perl
29796 !> hints/aix.sh pod/perlguts.pod t/op/pat.t
29797____________________________________________________________________________
29798[ 18597] By: rgs on 2003/01/27 21:52:00
29799 Log: Subject: Re: [perl #20274] perlbug requires dynamic loading
29800 From: Slaven Rezic <slaven@rezic.de>
29801 Date: 14 Jan 2003 20:58:54 +0100
29802 Message-ID: <87n0m3v6yp.fsf@vran.herceg.de>
29803 Branch: perl
29804 ! ext/Sys/Hostname/Hostname.pm
29805____________________________________________________________________________
29806[ 18596] By: rgs on 2003/01/27 20:38:21
29807 Log: Introduce the PUSHSUB_DB macro, equivalent to PUSHSUB, but
29808 without the lval context tweak. Used in OP_DBSTATE.
29809 Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d
29810 From: Dave Mitchell <davem@fdgroup.com>
29811 Date: Sun, 26 Jan 2003 17:42:42 +0000
29812 Message-ID: <20030126174242.H16182@fdgroup.com>
29813 Branch: perl
29814 ! cop.h pp_ctl.c
29815____________________________________________________________________________
29816[ 18595] By: rgs on 2003/01/27 20:32:01
29817 Log: Subject: [PATCH] make Copy On Write work once again
29818 From: Nicholas Clark <nick@unfortu.net>
29819 Date: Sat, 25 Jan 2003 00:25:50 +0000
29820 Message-ID: <20030125002550.GG278@Bagpuss.unfortu.net>
29821 Branch: perl
29822 ! sv.h
29823____________________________________________________________________________
29824[ 18594] By: jhi on 2003/01/27 20:01:44
29825 Log: Update the pod list for Plan 9.
29826 Branch: perl
29827 ! plan9/mkfile
29828____________________________________________________________________________
29829[ 18593] By: sky on 2003/01/26 22:37:21
29830 Log: When we copy things out of a hash and increment the
29831 refcount of the shared scalar, we really must protect
29832 that refcount increase with a lock, or else it might not
29833 happen. Fixes segfault when objects would prematurely
29834 be killed.
29835 Branch: perl
29836 ! ext/threads/shared/shared.xs
29837____________________________________________________________________________
29838[ 18592] By: jhi on 2003/01/26 21:54:36
29839 Log: Missing (STRLEN)casts.
29840 Branch: perl
29841 ! sv.c
29842____________________________________________________________________________
29843[ 18591] By: nick on 2003/01/26 17:46:19
29844 Log: PERL_IMPLICIT_SYS does NOT vector PerlIO_xxx but PerlSIO_xxx, so
29845 correct XSUB.h
29846 Branch: perlio
29847 ! XSUB.h
29848____________________________________________________________________________
29849[ 18590] By: jhi on 2003/01/26 13:21:03
29850 Log: Integrate:
29851 [ 18589]
29852 OPf_SPECIAL on OP_DBSTATE now indicates a breakpoint.
29853
29854 Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d
29855 From: Dave Mitchell <davem@fdgroup.com>
29856 Date: Fri, 24 Jan 2003 18:44:19 +0000
29857 Message-ID: <20030124184419.F11179@fdgroup.com>
29858 Branch: maint-5.8/perl
29859 !> mg.c op.h pp_ctl.c
29860____________________________________________________________________________
29861[ 18589] By: rgs on 2003/01/26 13:06:49
29862 Log: OPf_SPECIAL on OP_DBSTATE now indicates a breakpoint.
29863
29864 Subject: Re: [PATCH] Re: change #9754: 5 x slowdown for perl -d
29865 From: Dave Mitchell <davem@fdgroup.com>
29866 Date: Fri, 24 Jan 2003 18:44:19 +0000
29867 Message-ID: <20030124184419.F11179@fdgroup.com>
29868 Branch: perl
29869 ! mg.c op.h pp_ctl.c
29870____________________________________________________________________________
29871[ 18588] By: jhi on 2003/01/26 12:18:10
29872 Log: Lest people get worried about not having PerlIO.
29873 Branch: perl
29874 ! pod/perluniintro.pod
29875____________________________________________________________________________
29876[ 18587] By: jhi on 2003/01/26 09:29:52
29877 Log: Integrate:
29878 [ 18583]
29879 Plan 9 compiler can't return quads from the ?: (condop).
29880 (There may be more spots like this, so a Configure test
29881 maybe in order, but this works for now.) From Russ Cox.
29882
29883 [ 18584]
29884 Plan 9 doesn't really have the symlink API, from Russ Cox.
29885
29886 [ 18586]
29887 Plan 9 doesn't do nm, from Russ Cox.
29888 Branch: maint-5.8/perl
29889 !> Configure ext/PerlIO/via/via.xs plan9/plan9ish.h
29890____________________________________________________________________________
29891[ 18586] By: jhi on 2003/01/26 09:19:01
29892 Log: Plan 9 doesn't do nm, from Russ Cox.
29893 Branch: perl
29894 ! Configure
29895____________________________________________________________________________
29896[ 18585] By: jhi on 2003/01/26 09:18:29
29897 Log: Plan 9 doesn't do nm, from Russ Cox.
29898 Branch: metaconfig
29899 ! U/modified/usenm.U
29900____________________________________________________________________________
29901[ 18584] By: jhi on 2003/01/26 09:11:23
29902 Log: Plan 9 doesn't really have the symlink API, from Russ Cox.
29903 Branch: perl
29904 ! plan9/plan9ish.h
29905____________________________________________________________________________
29906[ 18583] By: jhi on 2003/01/26 09:08:36
29907 Log: Plan 9 compiler can't return quads from the ?: (condop).
29908 (There may be more spots like this, so a Configure test
29909 maybe in order, but this works for now.) From Russ Cox.
29910 Branch: perl
29911 ! ext/PerlIO/via/via.xs plan9/plan9ish.h
29912____________________________________________________________________________
29913[ 18582] By: jhi on 2003/01/26 08:30:37
29914 Log: Integrate:
29915 [ 18579]
29916 Subject: Re: [perl #20408] SV's SvPVX get freed even when its SvLEN is zero
29917 From: Enache Adrian <enache@rdslink.ro>
29918 Date: Sun, 26 Jan 2003 04:55:48 +0200
29919 Message-Id: <20030126025548.GB812@ratsnest.hole>
29920
29921 [ 18580]
29922 Subject: patch to speed up Perl's slurp mode
29923 From: Enache Adrian <enache@rdslink.ro>
29924 Date: Fri, 24 Jan 2003 06:23:54 +0200
29925 Message-Id: <20030124042354.GA30362@ratsnest.hole>
29926
29927 [ 18581]
29928 Subject: Re: truncate using a globref
29929 From: Slaven Rezic <slaven@rezic.de>
29930 Date: Thu, 23 Jan 2003 15:48:52 +0100 (CET)
29931 Message-Id: <200301231448.h0NEmqnu022591@vran.herceg.de>
29932 Branch: maint-5.8/perl
29933 ! sv.c
29934 !> ext/Storable/Storable.xs pp_ctl.c pp_sys.c t/io/fs.t
29935____________________________________________________________________________
29936[ 18581] By: ams on 2003/01/26 05:29:40
29937 Log: Subject: Re: truncate using a globref
29938 From: Slaven Rezic <slaven@rezic.de>
29939 Date: Thu, 23 Jan 2003 15:48:52 +0100 (CET)
29940 Message-Id: <200301231448.h0NEmqnu022591@vran.herceg.de>
29941 Branch: perl
29942 ! pp_sys.c t/io/fs.t
29943____________________________________________________________________________
29944[ 18580] By: ams on 2003/01/26 04:57:47
29945 Log: Subject: patch to speed up Perl's slurp mode
29946 From: Enache Adrian <enache@rdslink.ro>
29947 Date: Fri, 24 Jan 2003 06:23:54 +0200
29948 Message-Id: <20030124042354.GA30362@ratsnest.hole>
29949 Branch: perl
29950 ! sv.c
29951____________________________________________________________________________
29952[ 18579] By: ams on 2003/01/26 02:50:44
29953 Log: Subject: Re: [perl #20408] SV's SvPVX get freed even when its SvLEN is zero
29954 From: Enache Adrian <enache@rdslink.ro>
29955 Date: Sun, 26 Jan 2003 04:55:48 +0200
29956 Message-Id: <20030126025548.GB812@ratsnest.hole>
29957 Branch: perl
29958 ! pp_ctl.c
29959____________________________________________________________________________
29960[ 18578] By: ams on 2003/01/26 02:40:20
29961 Log: Subject: [PATCH Storable 2.06] const declaration fixup
29962 From: "Craig A. Berry" <craigberry@mac.com>
29963 Date: Thu, 23 Jan 2003 16:24:46 -0600
29964 Message-Id: <3E306BAE.4030807@mac.com>
29965 Branch: perl
29966 ! ext/Storable/Storable.xs
29967____________________________________________________________________________
29968[ 18577] By: rgs on 2003/01/23 20:46:00
29969 Log: Subject: [PATCH] move pad.c warnings to different test file
29970 From: Dave Mitchell <davem@fdgroup.com>
29971 Date: Thu, 23 Jan 2003 20:56:47 +0000
29972 Message-ID: <20030123205647.C8696@fdgroup.com>
29973 Branch: perl
29974 + t/lib/warnings/pad
29975 ! MANIFEST t/lib/warnings/op
29976____________________________________________________________________________
29977[ 18576] By: jhi on 2003/01/23 13:52:39
29978 Log: The perlio->maint changes had somehow gotten of sync.
29979 Branch: maint-5.8/perl
29980 !> perlio.c
29981____________________________________________________________________________
29982[ 18575] By: jhi on 2003/01/23 12:33:38
29983 Log: Integrate:
29984 [ 18569]
29985 Fix [perl #19860] by adding a POSIX::fsync() stub.
29986 Branch: maint-5.8/perl
29987 !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
29988____________________________________________________________________________
29989[ 18574] By: jhi on 2003/01/23 12:28:19
29990 Log: Integrate:
29991 [ 18573]
29992 Fix Solaris 32-bit invalidate case.
29993 Branch: maint-5.8/perl
29994 !> perlio.c
29995____________________________________________________________________________
29996[ 18573] By: nick on 2003/01/23 07:26:43
29997 Log: Fix Solaris 32-bit invalidate case.
29998 Branch: perl
29999 ! perlio.c
30000____________________________________________________________________________
30001[ 18572] By: rgs on 2003/01/22 21:40:21
30002 Log: Integrate change 18448 from maint-5.8 :
30003
30004 Subject: Partial Data::Dumper patch
30005 From: Richard Clamp <richardc@unixbeard.net>
30006 Date: Sat, 4 Jan 2003 00:52:47 +0000
30007 Message-ID: <20030104005247.GA27685@mirth.demon.co.uk>
30008
30009 Subject: Re: Partial Data::Dumper patch
30010 From: Slaven Rezic <slaven@rezic.de>
30011 Date: 04 Jan 2003 02:48:08 +0100
30012 Message-ID: <87u1gp4rdz.fsf@vran.herceg.de>
30013 Branch: perl
30014 !> ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
30015____________________________________________________________________________
30016[ 18571] By: rgs on 2003/01/22 21:22:31
30017 Log: Subject: [PATCH] Re: difference between my and our before introduction
30018 From: Dave Mitchell <davem@fdgroup.com>
30019 Date: Thu, 16 Jan 2003 17:12:37 +0000
30020 Message-ID: <20030116171237.C420@fdgroup.com>
30021 (with a small test tweak)
30022 Branch: perl
30023 ! pad.c t/comp/our.t toke.c
30024____________________________________________________________________________
30025[ 18570] By: nick on 2003/01/22 21:03:43
30026 Log: Integrate mainline
30027 Branch: perlio
30028 !> av.c dump.c embed.fnc embed.h ext/Encode/Changes
30029 !> ext/Encode/Encode.pm ext/Encode/MANIFEST
30030 !> ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
30031 !> ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
30032 !> ext/List/Util/Makefile.PL global.sym lib/Term/Complete.pm
30033 !> perlio.c perlio.h sv.c sv.h t/op/array.t t/op/ref.t
30034____________________________________________________________________________
30035[ 18569] By: rgs on 2003/01/22 21:00:59
30036 Log: Fix [perl #19860] by adding a POSIX::fsync() stub.
30037 Branch: perl
30038 ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
30039____________________________________________________________________________
30040[ 18568] By: jhi on 2003/01/22 20:24:37
30041 Log: Add the POSIX::sigaction() trick by Slaven Rezic
30042 for [perl #17341].
30043 Branch: maint-5.8/perl
30044 ! pod/perlfunc.pod pod/perlipc.pod
30045____________________________________________________________________________
30046[ 18567] By: jhi on 2003/01/22 18:37:55
30047 Log: Integrate:
30048 [ 18545]
30049 Subject: [PATCH perl-current] AUTHORS correction
30050 From: Richard Soderberg <rs@crystalflame.net>
30051 Date: Wed, 22 Jan 2003 02:08:13 -0500
30052 Message-Id: <45B4D3AE-2DD8-11D7-8CF9-000393801F84@crystalflame.net>
30053
30054 [ 18552]
30055 Subject: [PATCH] assert PV isn't RV
30056 From: Nicholas Clark <nick@unfortu.net>
30057 Date: Fri, 17 Jan 2003 19:40:45 +0000
30058 Message-ID: <20030117194044.GB297@Bagpuss.unfortu.net>
30059
30060 [ 18553]
30061 Subject: Term::Complete problem + fix (Was: Re: muttprofile + perl 5.8)
30062 From: Martti Rahkila <martti.rahkila@hut.fi>
30063 Date: Sat, 18 Jan 2003 00:25:39 +0200
30064 Message-ID: <20030118002539.A30585@wurlitzer.hut.fi>
30065
30066 (chose the 'even safer' version)
30067
30068 [ 18554]
30069 Subject: [PATCH av.c] Re: [perl #15439] unreferenced scalar due to double DESTROY
30070 From: Dave Mitchell <davem@fdgroup.com>
30071 Date: Sun, 19 Jan 2003 16:43:54 +0000
30072 Message-ID: <20030119164353.B24444@fdgroup.com>
30073
30074 [ 18556]
30075 Subject: [PATCH perlio.h] (was RE: [PATCH] %_ (was Re: [PATCH] operation on `PL_na' may be undefined))
30076 From: Robin Barker <Robin.Barker@npl.co.uk>
30077 Date: Mon, 20 Jan 2003 15:26:21 -0000
30078 Message-ID: <533D273D4014D411AB1D00062938C4D904046299@hotel.npl.co.uk>
30079
30080 [ 18558]
30081 Subject: Re: slight tweak to -DR flag - display whether on tmps stack
30082 From: Dave Mitchell <davem@fdgroup.com>
30083 Date: Sun, 19 Jan 2003 17:22:05 +0000
30084 Message-ID: <20030119172204.D24444@fdgroup.com>
30085
30086 [ 18559]
30087 Upgrade to Encode 1.86.
30088 Branch: maint-5.8/perl
30089 !> AUTHORS av.c dump.c ext/Encode/Changes ext/Encode/Encode.pm
30090 !> ext/Encode/MANIFEST ext/Encode/Unicode/Unicode.xs
30091 !> ext/Encode/encoding.pm ext/Encode/t/enc_eucjp.t
30092 !> ext/Encode/t/enc_utf8.t lib/Term/Complete.pm perlio.h sv.h
30093 !> t/op/array.t
30094____________________________________________________________________________
30095[ 18566] By: jhi on 2003/01/22 18:32:41
30096 Log: Regen Configure.
30097 Branch: maint-5.8/perl
30098 ! Configure config_h.SH
30099____________________________________________________________________________
30100[ 18565] By: jhi on 2003/01/22 18:15:06
30101 Log: Integrate from perlio:
30102 [ 18539]
30103 Try the invalidate_fileno() idea for non-leaky stdio sockets.
30104
30105 [ 18540]
30106 stdio does NOT set errno==EBADF on invalidated fileno
30107
30108 [ 18547]
30109 Tweak APItest for new semantics of printf.
30110 Now printf() is always real printf() and not #define'd to
30111 PerlIO_stdoutf() so PerlIO_flush() when STDOUT is redirected
30112 back to original file does not affect stdout unless we are
30113 using :stdio as implementation. So things printf()ed XS side
30114 are not written to file (and turn up at end of test).
30115 So add an XS function which does fflush(stdout), modify .pm
30116 file to export it and .t file to call it.
30117
30118 [ 18548]
30119 Add defined(__osf__) case to invalidate_fileno (for Tru64).
30120
30121 [ 18549]
30122 Report layer name (without arg) on fail, and attempt to
30123 autoload layer name. (Fix for [perl #20460]).
30124
30125 [ 18550]
30126 #if defined(__irix__) (for stdio invalidate) from Jarkko.
30127
30128 [ 18560]
30129 Fixes for open.pm which attempts to load layers:
30130 1. C equivalent of local $SIG{__WARN__} = sub {}
30131 while loading layers to supress warnings lib/open.t does
30132 not want.
30133 2. The loading scheme does not recurse now so look for
30134 new symptom of bad layer which is that a good module
30135 fails to load (as we cannot open any files).
30136
30137 NOTE: In my opinion open.pm should probably die on bad layer
30138 spec rather than just (maybe) warning and then allowing opens
30139 to fail.
30140 Branch: maint-5.8/perl
30141 !> ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
30142 !> ext/XS/APItest/t/printf.t lib/open.pm lib/open.t perlio.c
30143____________________________________________________________________________
30144[ 18564] By: jhi on 2003/01/22 18:07:19
30145 Log: Use the aTHX_-less form (cousin of change #18544).
30146 Branch: maint-5.8/perl
30147 ! sv.c
30148____________________________________________________________________________
30149[ 18563] By: jhi on 2003/01/22 18:03:40
30150 Log: Integrate:
30151 [ 18541]
30152 Try to make including patchlevel.h a bit more
30153 robust (use <> instead of "") and in case of
30154 failure (PERL_VERSION didn't get defined) try
30155 to fail (by trying to #include an "obviously"
30156 named file that should not exist) (didn't use
30157 #error since IIRC older cpps do not have it)
30158 (Tries to address [perl #20276].)
30159
30160 [ 18543]
30161 Update the MD5 checksums.
30162 Branch: maint-5.8/perl
30163 !> ext/Data/Dumper/Dumper.xs ext/Devel/PPPort/PPPort.pm
30164 !> ext/Digest/MD5/MD5.xs ext/Digest/MD5/t/files.t
30165 !> ext/List/Util/Util.xs ext/Storable/Storable.xs
30166____________________________________________________________________________
30167[ 18562] By: jhi on 2003/01/22 17:59:44
30168 Log: Integrate:
30169 [ 18536]
30170 Allow explicit -C enable/disable by -C:1/-C:0
30171 (suggested by Peter Haworth).
30172
30173 (accept mainline's perlrun since somehow maint has gotten of sync)
30174 Branch: maint-5.8/perl
30175 !> perl.c pod/perlrun.pod
30176____________________________________________________________________________
30177[ 18561] By: jhi on 2003/01/22 17:43:45
30178 Log: Integrate from perlio:
30179 [ 18560]
30180 Fixes for open.pm which attempts to load layers:
30181 1. C equivalent of local $SIG{__WARN__} = sub {}
30182 while loading layers to supress warnings lib/open.t does
30183 not want.
30184 2. The loading scheme does not recurse now so look for
30185 new symptom of bad layer which is that a good module
30186 fails to load (as we cannot open any files).
30187
30188 NOTE: In my opinion open.pm should probably die on bad layer
30189 spec rather than just (maybe) warning and then allowing opens
30190 to fail.
30191 Branch: perl
30192 !> lib/open.t perlio.c
30193____________________________________________________________________________
30194[ 18560] By: nick on 2003/01/22 17:19:41
30195 Log: Fixes for open.pm which attempts to load layers:
30196 1. C equivalent of local $SIG{__WARN__} = sub {}
30197 while loading layers to supress warnings lib/open.t does
30198 not want.
30199 2. The loading scheme does not recurse now so look for
30200 new symptom of bad layer which is that a good module
30201 fails to load (as we cannot open any files).
30202
30203 NOTE: In my opinion open.pm should probably die on bad layer
30204 spec rather than just (maybe) warning and then allowing opens
30205 to fail.
30206 Branch: perlio
30207 ! lib/open.t perlio.c
30208____________________________________________________________________________
30209[ 18559] By: jhi on 2003/01/22 13:19:31
30210 Log: Upgrade to Encode 1.86.
30211 Branch: perl
30212 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/MANIFEST
30213 ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
30214 ! ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
30215____________________________________________________________________________
30216[ 18558] By: jhi on 2003/01/22 13:05:27
30217 Log: Subject: Re: slight tweak to -DR flag - display whether on tmps stack
30218 From: Dave Mitchell <davem@fdgroup.com>
30219 Date: Sun, 19 Jan 2003 17:22:05 +0000
30220 Message-ID: <20030119172204.D24444@fdgroup.com>
30221 Branch: perl
30222 ! dump.c
30223____________________________________________________________________________
30224[ 18557] By: jhi on 2003/01/22 13:01:15
30225 Log: Subject: [PATCH] Re: [perl #9394] Re: [ID 20020525.002] coredump/ bad free warning in blead with SIGWARN
30226 From: Nicholas Clark <nick@unfortu.net>
30227 Date: Tue, 21 Jan 2003 22:27:21 +0000
30228 Message-ID: <20030121222720.GG293@Bagpuss.unfortu.net>
30229 Branch: perl
30230 ! sv.c t/op/ref.t
30231____________________________________________________________________________
30232[ 18556] By: jhi on 2003/01/22 12:59:02
30233 Log: Subject: [PATCH perlio.h] (was RE: [PATCH] %_ (was Re: [PATCH] operation on `PL_na' may be undefined))
30234 From: Robin Barker <Robin.Barker@npl.co.uk>
30235 Date: Mon, 20 Jan 2003 15:26:21 -0000
30236 Message-ID: <533D273D4014D411AB1D00062938C4D904046299@hotel.npl.co.uk>
30237 Branch: perl
30238 ! perlio.h
30239____________________________________________________________________________
30240[ 18555] By: jhi on 2003/01/22 12:57:20
30241 Log: Integrate from perlio:
30242 [ 18539]
30243 Try the invalidate_fileno() idea for non-leaky stdio sockets.
30244
30245 [ 18540]
30246 stdio does NOT set errno==EBADF on invalidated fileno
30247
30248 [ 18547]
30249 Tweak APItest for new semantics of printf.
30250 Now printf() is always real printf() and not #define'd to
30251 PerlIO_stdoutf() so PerlIO_flush() when STDOUT is redirected
30252 back to original file does not affect stdout unless we are
30253 using :stdio as implementation. So things printf()ed XS side
30254 are not written to file (and turn up at end of test).
30255 So add an XS function which does fflush(stdout), modify .pm
30256 file to export it and .t file to call it.
30257
30258 [ 18548]
30259 Add defined(__osf__) case to invalidate_fileno (for Tru64).
30260
30261 [ 18549]
30262 Report layer name (without arg) on fail, and attempt to
30263 autoload layer name. (Fix for [perl #20460]).
30264
30265 [ 18550]
30266 #if defined(__irix__) (for stdio invalidate) from Jarkko.
30267 Branch: perl
30268 !> ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
30269 !> ext/XS/APItest/t/printf.t lib/open.pm perlio.c
30270____________________________________________________________________________
30271[ 18554] By: jhi on 2003/01/22 12:47:03
30272 Log: Subject: [PATCH av.c] Re: [perl #15439] unreferenced scalar due to double DESTROY
30273 From: Dave Mitchell <davem@fdgroup.com>
30274 Date: Sun, 19 Jan 2003 16:43:54 +0000
30275 Message-ID: <20030119164353.B24444@fdgroup.com>
30276 Branch: perl
30277 ! av.c t/op/array.t
30278____________________________________________________________________________
30279[ 18553] By: jhi on 2003/01/22 12:43:31
30280 Log: Subject: Term::Complete problem + fix (Was: Re: muttprofile + perl 5.8)
30281 From: Martti Rahkila <martti.rahkila@hut.fi>
30282 Date: Sat, 18 Jan 2003 00:25:39 +0200
30283 Message-ID: <20030118002539.A30585@wurlitzer.hut.fi>
30284
30285 (chose the 'even safer' version)
30286 Branch: perl
30287 ! lib/Term/Complete.pm
30288____________________________________________________________________________
30289[ 18552] By: jhi on 2003/01/22 12:34:06
30290 Log: Subject: [PATCH] assert PV isn't RV
30291 From: Nicholas Clark <nick@unfortu.net>
30292 Date: Fri, 17 Jan 2003 19:40:45 +0000
30293 Message-ID: <20030117194044.GB297@Bagpuss.unfortu.net>
30294 Branch: perl
30295 ! sv.h
30296____________________________________________________________________________
30297[ 18551] By: jhi on 2003/01/22 12:28:11
30298 Log: Integrate from maint-5.8:
30299 [ 18375]
30300 Better version of change #18370; use the new 'E' flag
30301 so that cxinc is exposed (as cpp) only to List::Util
30302 (well, any extension) (well, anyone who does -DPERL_EXT),
30303 no need to export it globally.
30304 Branch: perl
30305 !> embed.fnc embed.h ext/List/Util/Makefile.PL global.sym
30306____________________________________________________________________________
30307[ 18550] By: nick on 2003/01/22 12:27:48
30308 Log: #if defined(__irix__) (for stdio invalidate) from Jarkko.
30309 Branch: perlio
30310 ! perlio.c
30311____________________________________________________________________________
30312[ 18549] By: nick on 2003/01/22 09:06:23
30313 Log: Report layer name (without arg) on fail, and attempt to
30314 autoload layer name. (Fix for [perl #20460]).
30315 Branch: perlio
30316 ! lib/open.pm
30317____________________________________________________________________________
30318[ 18548] By: nick on 2003/01/22 08:47:24
30319 Log: Add defined(__osf__) case to invalidate_fileno (for Tru64).
30320 Branch: perlio
30321 ! perlio.c
30322____________________________________________________________________________
30323[ 18547] By: nick on 2003/01/22 08:32:59
30324 Log: Tweak APItest for new semantics of printf.
30325 Now printf() is always real printf() and not #define'd to
30326 PerlIO_stdoutf() so PerlIO_flush() when STDOUT is redirected
30327 back to original file does not affect stdout unless we are
30328 using :stdio as implementation. So things printf()ed XS side
30329 are not written to file (and turn up at end of test).
30330 So add an XS function which does fflush(stdout), modify .pm
30331 file to export it and .t file to call it.
30332 Branch: perlio
30333 ! ext/XS/APItest/APItest.pm ext/XS/APItest/APItest.xs
30334 ! ext/XS/APItest/t/printf.t
30335____________________________________________________________________________
30336[ 18546] By: nick on 2003/01/22 08:26:14
30337 Log: Integrate mainline
30338 Branch: perlio
30339 !> (integrate 36 files)
30340____________________________________________________________________________
30341[ 18545] By: ams on 2003/01/22 06:06:26
30342 Log: Subject: [PATCH perl-current] AUTHORS correction
30343 From: Richard Soderberg <rs@crystalflame.net>
30344 Date: Wed, 22 Jan 2003 02:08:13 -0500
30345 Message-Id: <45B4D3AE-2DD8-11D7-8CF9-000393801F84@crystalflame.net>
30346 Branch: perl
30347 ! AUTHORS
30348____________________________________________________________________________
30349[ 18544] By: jhi on 2003/01/22 03:45:01
30350 Log: Continuation of #18542.
30351 Branch: perl
30352 ! sv.c
30353____________________________________________________________________________
30354[ 18543] By: jhi on 2003/01/22 03:21:23
30355 Log: Update the MD5 checksums.
30356 Branch: perl
30357 ! ext/Digest/MD5/t/files.t
30358____________________________________________________________________________
30359[ 18542] By: hv on 2003/01/22 01:37:52
30360 Log: #18530 misses a couple of pTHX definitions
30361 Branch: perl
30362 ! sv.c
30363____________________________________________________________________________
30364[ 18541] By: jhi on 2003/01/21 22:08:51
30365 Log: Try to make including patchlevel.h a bit more
30366 robust (use <> instead of "") and in case of
30367 failure (PERL_VERSION didn't get defined) try
30368 to fail (by trying to #include an "obviously"
30369 named file that should not exist) (didn't use
30370 #error since IIRC older cpps do not have it)
30371 (Tries to address [perl #20276].)
30372 Branch: perl
30373 ! ext/Data/Dumper/Dumper.xs ext/Devel/PPPort/PPPort.pm
30374 ! ext/Digest/MD5/MD5.xs ext/List/Util/Util.xs
30375 ! ext/Storable/Storable.xs
30376____________________________________________________________________________
30377[ 18540] By: nick on 2003/01/21 20:53:00
30378 Log: stdio does NOT set errno==EBADF on invalidated fileno
30379 Branch: perlio
30380 ! perlio.c
30381____________________________________________________________________________
30382[ 18539] By: nick on 2003/01/21 20:22:55
30383 Log: Try the invalidate_fileno() idea for non-leaky stdio sockets.
30384 Branch: perlio
30385 ! perlio.c
30386____________________________________________________________________________
30387[ 18538] By: merijn on 2003/01/21 16:54:00
30388 Log: Subject: [PATCH] Re: FreeBSD 5 hints patch
30389 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
30390 Date: Mon, 30 Dec 2002 18:01:16 -0800
30391 Message-ID: <spPE+gzkg+6F092yn@efn.org>
30392 Branch: perl
30393 ! Configure
30394____________________________________________________________________________
30395[ 18537] By: merijn on 2003/01/21 16:49:45
30396 Log: Subject: [PATCH] Re: FreeBSD 5 hints patch
30397 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
30398 Date: Mon, 30 Dec 2002 18:01:16 -0800
30399 Message-ID: <spPE+gzkg+6F092yn@efn.org>
30400 Branch: metaconfig
30401 + U/modified/i_malloc.U
30402____________________________________________________________________________
30403[ 18536] By: jhi on 2003/01/21 14:18:40
30404 Log: Allow explicit -C enable/disable by -C:1/-C:0
30405 (suggested by Peter Haworth).
30406 Branch: perl
30407 ! perl.c pod/perlrun.pod
30408____________________________________________________________________________
30409[ 18535] By: jhi on 2003/01/21 02:49:55
30410 Log: Integrate:
30411 [ 18526]
30412 Subject: Re: When Storable and Devel::DProf mix, core dump [perl #19385]
30413 From: Blair Zajac <blair@orcaware.com>
30414 Date: Wed, 08 Jan 2003 12:28:35 -0800
30415 Message-ID: <3E1C89F3.2B4759C@orcaware.com>
30416
30417 [ 18527]
30418 Subject: perl version reporting
30419 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
30420 Date: Wed, 18 Dec 2002 08:30:32 +0100
30421 Message-Id: <20021218081957.ABD8.H.M.BRAND@hccnet.nl>
30422
30423 [ 18532]
30424 Subject: Re: [perl #19236] perlsyn: implicit localisation in while()
30425 From: Martien Verbruggen <mgjv@tradingpost.com.au>
30426 Date: Tue, 31 Dec 2002 16:42:28 +1100
30427 Message-Id: <slrnb12bi4.4tt.mgjv@martien.heliotrope.home>
30428
30429 [ 18533]
30430 Subject: Re: [perl #17757] s///g fails when using English & study in 5.8.0
30431 From: hv@crypt.org
30432 Date: Thu, 02 Jan 2003 14:33:49 +0000
30433 Message-Id: <200301021433.h02EXno03562@crypt.compulink.co.uk>
30434
30435 [ 18534]
30436 Subject: PATCH: perldoc in MAINT branch (probably unstable too)
30437 From: Chip Turner <cturner@redhat.com>
30438 Date: 02 Jan 2003 11:35:57 -0500
30439 Message-ID: <vzksmwb8q6q.fsf@minbar.devel.redhat.com>
30440 Branch: maint-5.8/perl
30441 !> ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
30442 !> ext/Devel/DProf/DProf.xs ext/Devel/DProf/Makefile.PL
30443 !> lib/Pod/Perldoc.pm perl.c pod/perlsyn.pod regexec.c
30444 !> t/op/subst.t
30445____________________________________________________________________________
30446[ 18534] By: hv on 2003/01/21 02:22:53
30447 Log: Subject: PATCH: perldoc in MAINT branch (probably unstable too)
30448 From: Chip Turner <cturner@redhat.com>
30449 Date: 02 Jan 2003 11:35:57 -0500
30450 Message-ID: <vzksmwb8q6q.fsf@minbar.devel.redhat.com>
30451 Branch: perl
30452 ! lib/Pod/Perldoc.pm
30453____________________________________________________________________________
30454[ 18533] By: hv on 2003/01/21 02:15:29
30455 Log: Subject: Re: [perl #17757] s///g fails when using English & study in 5.8.0
30456 From: hv@crypt.org
30457 Date: Thu, 02 Jan 2003 14:33:49 +0000
30458 Message-Id: <200301021433.h02EXno03562@crypt.compulink.co.uk>
30459 Branch: perl
30460 ! regexec.c t/op/subst.t
30461____________________________________________________________________________
30462[ 18532] By: hv on 2003/01/21 01:56:31
30463 Log: Subject: Re: [perl #19236] perlsyn: implicit localisation in while()
30464 From: Martien Verbruggen <mgjv@tradingpost.com.au>
30465 Date: Tue, 31 Dec 2002 16:42:28 +1100
30466 Message-Id: <slrnb12bi4.4tt.mgjv@martien.heliotrope.home>
30467 Branch: perl
30468 ! pod/perlsyn.pod
30469____________________________________________________________________________
30470[ 18531] By: hv on 2003/01/21 01:52:49
30471 Log: integrate #18366-18370 from maint-5.8:
30472 Implement the CPP namespace protection from [perl #8610];
30473 unless a function has an 'A' flag, it's defined only if
30474 PERL_CORE. (Why do we have so many many functions with an
30475 'A' flag, is another matter.) (The number of #ifdef PERL_COREs
30476 could be cut down further by having a state variable and
30477 inserting #ifdefs and #endifs when the state flips.)
30478
30479 Caught by change #18366; thanks to the re extension we have some
30480 functions that are file static but yet part of "the public API"...
30481 Maybe a new class of exportability (a new embed.fnc flag) is
30482 required for this case.
30483
30484 Continue on change #18367; implement the said flag, 'E'.
30485 (Some nm output studying was needed to get the right set
30486 of re symbols defined.)
30487
30488 In AIX (strict symbol exports) the cxinc is needed for List::Util.
30489 Branch: perl
30490 ! embed.fnc embed.h embed.pl ext/re/Makefile.PL global.sym
30491____________________________________________________________________________
30492[ 18530] By: hv on 2003/01/21 01:37:03
30493 Log: integrate (by hand) #18353 and #18359 from maint-5.8:
30494 Introduce a cache for UTF-8 data: length and byte<->char offset
30495 mapping are stored in a new type of magic. Speeds up length(),
30496 substr(), index(), rindex(), pos(), and some parts of s///.
30497
30498 The speedup varies a lot (on the usual suspects: what is the
30499 access pattern of the data, compiler, CPU), but should be at
30500 least one order of magnitude, and getting to the same magnitude
30501 as byte string speeds, and in some cases (length on unchanged data)
30502 even reaching the byte string speed. On the other hand, in some
30503 cases (index) the byte speed is still faster by a factor of five
30504 or so, but the bottleneck there does not seem to be any more
30505 the byte<->char offset mapping (instead, the fbm_instr() speed).
30506
30507 There is one cache slot for the length, and only two for the
30508 byte<->char offset mapping (the first one for the start->offset,
30509 and the second for the offset->offset+length, when talking
30510 in substr() terms).
30511
30512 Code this hairy is bound to have hairy trolls hiding under it.
30513 [...]
30514 A small tweak on top of #18353: don't display mg_len bytes of
30515 mg_ptr for PERL_MAGIC_utf8 because that's not what's there.
30516 Branch: perl
30517 ! dump.c embed.fnc embed.h mg.c perl.h pod/perlapi.pod proto.h
30518 ! sv.c util.c
30519____________________________________________________________________________
30520[ 18529] By: hv on 2003/01/21 00:44:20
30521 Log: integrate #18349 from maint-5.8:
30522 At least partially address [perl #10000] by speeding
30523 up both the ASCII case (by about 2-3%) and the UTF-8 case
30524 (by about 45%). The major trick is to avoid hitting the
30525 costly S_reginclass(). (Even before this patch the speedup
30526 since 5.8.0 was about 40-50%.) After this the UTF-8 case is
30527 still about 30-60% slower than the ASCII case. (Note that
30528 I'm unable to reproduce the 10-fold speed difference of the
30529 original bug report; I can see a factor of 2 or 3, but no more.)
30530 Branch: perl
30531 !> regexec.c
30532____________________________________________________________________________
30533[ 18528] By: hv on 2003/01/21 00:24:11
30534 Log: Subject: [PATCH pp_ctl.c] silence warning
30535 From: Dave Mitchell <davem@fdgroup.com>
30536 Date: Sun, 29 Dec 2002 15:09:31 +0000
30537 Message-ID: <20021229150931.C2325@fdgroup.com>
30538 Branch: perl
30539 ! pp_ctl.c
30540____________________________________________________________________________
30541[ 18527] By: hv on 2003/01/21 00:04:14
30542 Log: Subject: perl version reporting
30543 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
30544 Date: Wed, 18 Dec 2002 08:30:32 +0100
30545 Message-Id: <20021218081957.ABD8.H.M.BRAND@hccnet.nl>
30546 Branch: perl
30547 ! perl.c
30548____________________________________________________________________________
30549[ 18526] By: hv on 2003/01/20 23:21:22
30550 Log: Subject: Re: When Storable and Devel::DProf mix, core dump [perl #19385]
30551 From: Blair Zajac <blair@orcaware.com>
30552 Date: Wed, 08 Jan 2003 12:28:35 -0800
30553 Message-ID: <3E1C89F3.2B4759C@orcaware.com>
30554 Branch: perl
30555 ! ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
30556 ! ext/Devel/DProf/DProf.xs ext/Devel/DProf/Makefile.PL
30557____________________________________________________________________________
30558[ 18525] By: jhi on 2003/01/20 17:54:12
30559 Log: Integrate:
30560 [ 18516]
30561 microperl update.
30562
30563 [ 18519]
30564 Encode MANIFEST update.
30565
30566 [ 18521]
30567 Retract #18154 (integrate of perlio #18507), not enough
30568 threadsafety.
30569
30570 [ 18522]
30571 Subject: [perl #20408] SV's SvPVX get freed even when its SvLEN is zero
30572 From: "enache@rdslink.ro (via RT)" <perlbug-followup@perl.org>
30573 Date: 20 Jan 2003 01:54:07 -0000
30574 Message-Id: <rt-20408-49009.18.2567818321236@bugs6.perl.org>
30575
30576 [ 18523]
30577 Upgrade to Digest 1.02.
30578
30579 [ 18524]
30580 Integrate from perlio:
30581 [ 18520]
30582 Move #define printf out of perl.h into appropriate
30583 PerlIO files.
30584 Branch: maint-5.8/perl
30585 !> Makefile.micro ext/Encode/MANIFEST fakesdio.h lib/Digest.pm
30586 !> lib/Digest.t nostdio.h perl.h perlio.c pp_hot.c uconfig.h
30587 !> uconfig.sh
30588____________________________________________________________________________
30589[ 18524] By: jhi on 2003/01/20 17:51:10
30590 Log: Integrate from perlio:
30591 [ 18520]
30592 Move #define printf out of perl.h into appropriate
30593 PerlIO files.
30594 Branch: perl
30595 !> fakesdio.h nostdio.h perl.h
30596____________________________________________________________________________
30597[ 18523] By: jhi on 2003/01/20 17:48:51
30598 Log: Upgrade to Digest 1.02.
30599 Branch: perl
30600 ! lib/Digest.pm lib/Digest.t
30601____________________________________________________________________________
30602[ 18522] By: jhi on 2003/01/20 17:43:15
30603 Log: Subject: [perl #20408] SV's SvPVX get freed even when its SvLEN is zero
30604 From: "enache@rdslink.ro (via RT)" <perlbug-followup@perl.org>
30605 Date: 20 Jan 2003 01:54:07 -0000
30606 Message-Id: <rt-20408-49009.18.2567818321236@bugs6.perl.org>
30607 Branch: perl
30608 ! pp_hot.c
30609____________________________________________________________________________
30610[ 18521] By: jhi on 2003/01/20 17:37:35
30611 Log: Retract #18154 (integrate of perlio #18507), not enough
30612 threadsafety.
30613 Branch: perl
30614 ! perlio.c
30615____________________________________________________________________________
30616[ 18520] By: nick on 2003/01/20 15:09:08
30617 Log: Move #define printf out of perl.h into appropriate
30618 PerlIO files.
30619 Branch: perlio
30620 ! fakesdio.h nostdio.h perl.h
30621____________________________________________________________________________
30622[ 18519] By: jhi on 2003/01/20 12:25:43
30623 Log: Encode MANIFEST update.
30624 Branch: perl
30625 ! ext/Encode/MANIFEST
30626____________________________________________________________________________
30627[ 18518] By: nick on 2003/01/20 09:37:52
30628 Log: Integrate mainline
30629 Branch: perlio
30630 +> ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
30631 +> ext/Time/HiRes/fallback/const-c.inc
30632 +> ext/Time/HiRes/fallback/const-xs.inc t/op/readline.t
30633 !> (integrate 75 files)
30634____________________________________________________________________________
30635[ 18517] By: nick on 2003/01/20 08:34:10
30636 Log: Integrate #18405 from maint-5.8 which fixes whitespac
30637 issues in open(FH,"&...")
30638 Branch: perl
30639 !> doio.c
30640____________________________________________________________________________
30641[ 18516] By: jhi on 2003/01/19 13:48:10
30642 Log: microperl update.
30643 Branch: perl
30644 ! Makefile.micro uconfig.h uconfig.sh
30645____________________________________________________________________________
30646[ 18515] By: jhi on 2003/01/18 18:43:52
30647 Log: Integrate:
30648 [ 18474]
30649 Integrate from perlio:
30650 [ 18470]
30651 Fix #16306 and #16880
30652
30653 (#16306 Big Badda leak in Sockets)
30654 (#16880 Memory leak with IO::Socket in Perl v5.8.0)
30655
30656 [ 18475]
30657 Integrate from perlio:
30658 [ 18471]
30659 Fix #18711 and add test for it (and indeed tell on write
30660 handles at all !
30661
30662 (#18711 Serious bug of tell() in perl)
30663
30664 [ 18507]
30665 Thread-protection for dup/fclose/dup2 scheme of stdio leak
30666 avoidance.
30667
30668 [ 18508]
30669 Subject: Re: 18457 on cygwin/20030113
30670 From: Nick Ing-Simmons <nick.ing-simmons@elixent.com>
30671 Date: Fri, 17 Jan 2003 15:10:34 +0000
30672 Message-Id: <20030117151034.2651.3@bactrian.elixent.com>
30673
30674 [ 18509]
30675 Upgrade to Digest::MD5 2.22.
30676
30677 [ 18510]
30678 Typo fixes from jmc@prioris.mini.pw.edu.pl (from openbsd.bugs)
30679
30680 [ 18511]
30681 Upgrade to Digest 1.01.
30682
30683 [ 18512]
30684 EPOC perl address updates.
30685
30686 [ 18513]
30687 Slight pod reformatting based on [perl #20284].
30688
30689 [ 18514]
30690 Integrate from perlio:
30691 [ 18507]
30692 Thread-protection for dup/fclose/dup2 scheme of stdio leak
30693 avoidance.
30694 Branch: maint-5.8/perl
30695 !> README.epoc README.mint ext/Data/Dumper/Dumper.pm
30696 !> ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
30697 !> ext/Digest/MD5/MD5.xs ext/Digest/MD5/README
30698 !> ext/Digest/MD5/t/files.t lib/Digest.pm perlio.c t/io/tell.t
30699 !> utils/libnetcfg.PL
30700____________________________________________________________________________
30701[ 18514] By: jhi on 2003/01/18 18:36:00
30702 Log: Integrate from perlio:
30703 [ 18507]
30704 Thread-protection for dup/fclose/dup2 scheme of stdio leak
30705 avoidance.
30706 Branch: perl
30707 !> perlio.c t/io/tell.t
30708____________________________________________________________________________
30709[ 18513] By: jhi on 2003/01/18 18:07:01
30710 Log: Slight pod reformatting based on [perl #20284].
30711 Branch: perl
30712 ! README.mint ext/Data/Dumper/Dumper.pm
30713____________________________________________________________________________
30714[ 18512] By: jhi on 2003/01/17 21:00:15
30715 Log: EPOC perl address updates.
30716 Branch: perl
30717 ! README.epoc
30718____________________________________________________________________________
30719[ 18511] By: jhi on 2003/01/17 20:23:42
30720 Log: Upgrade to Digest 1.01.
30721 Branch: perl
30722 ! lib/Digest.pm
30723____________________________________________________________________________
30724[ 18510] By: jhi on 2003/01/17 19:53:37
30725 Log: Typo fixes from jmc@prioris.mini.pw.edu.pl (from openbsd.bugs)
30726 Branch: perl
30727 ! utils/libnetcfg.PL
30728____________________________________________________________________________
30729[ 18509] By: jhi on 2003/01/17 19:45:11
30730 Log: Upgrade to Digest::MD5 2.22.
30731 Branch: perl
30732 ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
30733 ! ext/Digest/MD5/MD5.xs ext/Digest/MD5/README
30734 ! ext/Digest/MD5/t/files.t
30735____________________________________________________________________________
30736[ 18508] By: merijn on 2003/01/17 14:12:53
30737 Log: Subject: Re: 18457 on cygwin/20030113
30738 From: Nick Ing-Simmons <nick.ing-simmons@elixent.com>
30739 Date: Fri, 17 Jan 2003 15:10:34 +0000
30740 Message-Id: <20030117151034.2651.3@bactrian.elixent.com>
30741 Branch: perl
30742 ! t/io/tell.t
30743____________________________________________________________________________
30744[ 18507] By: nick on 2003/01/17 14:05:27
30745 Log: Thread-protection for dup/fclose/dup2 scheme of stdio leak
30746 avoidance.
30747 Branch: perlio
30748 ! perlio.c
30749____________________________________________________________________________
30750[ 18506] By: nick on 2003/01/17 14:04:18
30751 Log: Correct typo (actually copy/paste of wrong thing).
30752 Branch: perlio
30753 ! t/io/tell.t
30754____________________________________________________________________________
30755[ 18505] By: jhi on 2003/01/17 13:36:55
30756 Log: Integrate:
30757 [ 18504]
30758 Integrate from perlio:
30759 [ 18476]
30760 Remove workaround for :stdio layer bug now fixed
30761 (Fixes #18975)
30762 Branch: maint-5.8/perl
30763 !> pp_sys.c
30764____________________________________________________________________________
30765[ 18504] By: jhi on 2003/01/17 13:21:51
30766 Log: Integrate from perlio:
30767 [ 18476]
30768 Remove workaround for :stdio layer bug now fixed
30769 (Fixes #18975)
30770 Branch: perl
30771 !> pp_sys.c
30772____________________________________________________________________________
30773[ 18503] By: jhi on 2003/01/16 23:29:57
30774 Log: Integrate:
30775 [ 18478]
30776 Upgrade to Encode 1.84.
30777
30778 [ 18479]
30779 Add a test for encoding 'utf8'.
30780
30781 [ 18480]
30782 Encode 1.84 broke the subtest #7, further study required.
30783
30784 [ 18481]
30785 Apparently some stdios have bugs (no! don't tell it is so!)
30786 or there is a corner of stdio that is substandardised.
30787
30788 [ 18483]
30789 Detypo.
30790
30791 [ 18484]
30792 Upgrade to Time::HiRes 1.42.
30793
30794 [ 18486]
30795 isa() and can() didn't work on magic variables
30796 see Message-Id: <20030114220737.2190ba7c.rgarciasuarez@free.fr>
30797 plus a test case by B. Goldberg
30798
30799 [ 18487]
30800 Add a test case for bug [perl #19545]
30801
30802 [ 18488]
30803 Subject: [PATCH 5.8.0] diagnostics.pm: useful apropos description for splain
30804 From: Brendan O'Dea <bod@debian.org>
30805 Date: Sun, 12 Jan 2003 06:17:30 +1100
30806 Message-ID: <20030111191730.GA19420@londo.c47.org>
30807
30808 [ 18489]
30809 Subject: [PATCH 5.8.0] perlrun.pod: fix -i examples
30810 From: Brendan O'Dea <bod@debian.org>
30811 Date: Sun, 12 Jan 2003 06:18:32 +1100
30812 Message-ID: <20030111191832.GA19441@londo.c47.org>
30813
30814 [ 18490]
30815 Make the locale-induced UTF-8-ification of STD fhs
30816 and the default file open layer explicit (either -C
30817 or PERL_UTF8_LOCALE), instead of implicit (and unasked-for).
30818
30819 [ 18491]
30820 if (0) the PL_widesyscalls code for now: Sarathy
30821 should take another look to see whether it is really
30822 safe to remove the code, too.
30823
30824 [ 18492]
30825 Subject: Update for ext/Digest/MD5/
30826 From: Gisle Aas <gisle@ActiveState.com>
30827 Date: 30 Dec 2002 07:38:16 -0800
30828 Message-ID: <lrd6njzfdj.fsf@caliper.activestate.com>
30829
30830 [ 18493]
30831 Subject: Update for ext/MIME/Base64/
30832 From: Gisle Aas <gisle@ActiveState.com>
30833 Date: 30 Dec 2002 07:34:34 -0800
30834 Message-ID: <lrhecvzfjp.fsf@caliper.activestate.com>
30835
30836 [ 18494]
30837 Upgrade to CGI.pm 2.89.
30838
30839 [ 18495]
30840 It seems the binmode() is needed with UTF-8 locales enabled.
30841
30842 [ 18496]
30843 Fix 'use encoding' I/O for code points 0x80..0xFF;
30844 code changes from Inaba Hiroto; test tweaks by jhi.
30845
30846 [ 18501]
30847 Subject: Re: [perl #19977] unlocalized $_ in File::Find clobbers upstream $_
30848 From: "Jos I. Boumans" <kane@dwim.org>
30849 Date: Thu, 16 Jan 2003 14:04:48 +0100
30850 Message-ID: <3E26ADF0.6010605@dwim.org>
30851 (with test tweaks)
30852
30853 [ 18502]
30854 Integrate from maint-5.6:
30855 [ 18477]
30856 search utility doesn't skip exe/lib/pdb files properly on windows
30857 Branch: maint-5.8/perl
30858 +> ext/Encode/t/enc_eucjp.t ext/Encode/t/enc_utf8.t
30859 !> (integrate 57 files)
30860____________________________________________________________________________
30861[ 18502] By: jhi on 2003/01/16 22:53:23
30862 Log: Integrate from maint-5.6:
30863 [ 18477]
30864 search utility doesn't skip exe/lib/pdb files properly on windows
30865 Branch: perl
30866 !> win32/bin/search.pl
30867____________________________________________________________________________
30868[ 18501] By: rgs on 2003/01/16 21:28:42
30869 Log: Subject: Re: [perl #19977] unlocalized $_ in File::Find clobbers upstream $_
30870 From: "Jos I. Boumans" <kane@dwim.org>
30871 Date: Thu, 16 Jan 2003 14:04:48 +0100
30872 Message-ID: <3E26ADF0.6010605@dwim.org>
30873 (with test tweaks)
30874 Branch: perl
30875 ! lib/File/Find.pm lib/File/Find/t/find.t
30876____________________________________________________________________________
30877[ 18500] By: rgs on 2003/01/16 21:17:14
30878 Log: Integrate #18447 from maint-5.8 :
30879 test.pl-ise t/op/fh.t.
30880 Branch: perl
30881 !> t/op/fh.t
30882____________________________________________________________________________
30883[ 18499] By: rgs on 2003/01/16 20:58:59
30884 Log: Integrate changes to Attribute::Handlers from maint-5.8
30885 (18404 and 18427).
30886 Subject: [PATCH] Re: Attribute::Handlers phase variance
30887 From: Richard Clamp <richardc@unixbeard.net>
30888 Date: Mon, 9 Dec 2002 11:10:24 +0000
30889 Message-ID: <20021209111024.GA14365@mirth.demon.co.uk>
30890 Branch: perl
30891 !> lib/Attribute/Handlers.pm lib/Attribute/Handlers/t/multi.t
30892____________________________________________________________________________
30893[ 18498] By: rgs on 2003/01/16 20:48:10
30894 Log: Integrate changes #18422 and #18423 from maint-5.8.
30895 18422 :
30896 Third Degree found a read of uninit memory (after setting
30897 grent_size with sysconf(), pwent_size was read). Also make
30898 the ERANGE/INVARG more consistent.
30899 18423 :
30900 spent_size was still off. (As far as I can tell
30901 _SC_GETPW_R_SIZE_MAX is supposed to be used also
30902 for spents, not just pwents.)
30903 Branch: perl
30904 !> reentr.c reentr.h reentr.pl
30905____________________________________________________________________________
30906[ 18497] By: rgs on 2003/01/16 20:40:58
30907 Log: Subject: [PATCH] Re: [perl #19393] Bug in Time::localtime?
30908 From: Dave Mitchell <davem@fdgroup.com>
30909 Date: Wed, 1 Jan 2003 21:43:24 +0000
30910 Message-ID: <20030101214324.F12907@fdgroup.com>
30911 (integrated from change #18397 in maint-5.8)
30912 Branch: perl
30913 !> lib/Time/Local.pm lib/Time/Local.t
30914____________________________________________________________________________
30915[ 18496] By: jhi on 2003/01/16 20:36:23
30916 Log: Fix 'use encoding' I/O for code points 0x80..0xFF;
30917 code changes from Inaba Hiroto; test tweaks by jhi.
30918 Branch: perl
30919 + ext/Encode/t/enc_eucjp.t
30920 ! MANIFEST doio.c ext/Encode/encoding.pm ext/Encode/t/enc_utf8.t
30921 ! pp.c sv.c sv.h t/uni/tr_utf8.t
30922____________________________________________________________________________
30923[ 18495] By: jhi on 2003/01/16 20:19:36
30924 Log: It seems the binmode() is needed with UTF-8 locales enabled.
30925 Branch: perl
30926 ! ext/Encode/t/CJKT.t
30927____________________________________________________________________________
30928[ 18494] By: jhi on 2003/01/16 20:11:35
30929 Log: Upgrade to CGI.pm 2.89.
30930 Branch: perl
30931 ! lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm lib/CGI/Pretty.pm
30932 ! lib/CGI/t/carp.t lib/CGI/t/html.t lib/CGI/t/pretty.t
30933____________________________________________________________________________
30934[ 18493] By: jhi on 2003/01/16 20:03:01
30935 Log: Subject: Update for ext/MIME/Base64/
30936 From: Gisle Aas <gisle@ActiveState.com>
30937 Date: 30 Dec 2002 07:34:34 -0800
30938 Message-ID: <lrhecvzfjp.fsf@caliper.activestate.com>
30939 Branch: perl
30940 ! ext/MIME/Base64/Base64.pm ext/MIME/Base64/Changes
30941 ! ext/MIME/Base64/QuotedPrint.pm
30942 ! ext/MIME/Base64/t/quoted-print.t ext/MIME/Base64/t/unicode.t
30943____________________________________________________________________________
30944[ 18492] By: jhi on 2003/01/16 19:56:07
30945 Log: Subject: Update for ext/Digest/MD5/
30946 From: Gisle Aas <gisle@ActiveState.com>
30947 Date: 30 Dec 2002 07:38:16 -0800
30948 Message-ID: <lrd6njzfdj.fsf@caliper.activestate.com>
30949 Branch: perl
30950 ! ext/Digest/MD5/Changes ext/Digest/MD5/MD5.pm
30951 ! ext/Digest/MD5/Makefile.PL ext/Digest/MD5/t/align.t
30952 ! ext/Digest/MD5/t/files.t
30953____________________________________________________________________________
30954[ 18491] By: jhi on 2003/01/16 19:24:10
30955 Log: if (0) the PL_widesyscalls code for now: Sarathy
30956 should take another look to see whether it is really
30957 safe to remove the code, too.
30958 Branch: perl
30959 ! win32/win32.h wince/win32.h
30960____________________________________________________________________________
30961[ 18490] By: jhi on 2003/01/16 01:58:39
30962 Log: Make the locale-induced UTF-8-ification of STD fhs
30963 and the default file open layer explicit (either -C
30964 or PERL_UTF8_LOCALE), instead of implicit (and unasked-for).
30965 Branch: perl
30966 ! embedvar.h gv.c intrpvar.h locale.c mg.c perl.c perlapi.h
30967 ! pod/perlrun.pod pod/perlunicode.pod pod/perluniintro.pod
30968 ! pod/perlvar.pod
30969____________________________________________________________________________
30970[ 18489] By: rgs on 2003/01/15 20:55:00
30971 Log: Subject: [PATCH 5.8.0] perlrun.pod: fix -i examples
30972 From: Brendan O'Dea <bod@debian.org>
30973 Date: Sun, 12 Jan 2003 06:18:32 +1100
30974 Message-ID: <20030111191832.GA19441@londo.c47.org>
30975 Branch: perl
30976 ! pod/perlrun.pod
30977____________________________________________________________________________
30978[ 18488] By: rgs on 2003/01/15 20:51:48
30979 Log: Subject: [PATCH 5.8.0] diagnostics.pm: useful apropos description for splain
30980 From: Brendan O'Dea <bod@debian.org>
30981 Date: Sun, 12 Jan 2003 06:17:30 +1100
30982 Message-ID: <20030111191730.GA19420@londo.c47.org>
30983 Branch: perl
30984 ! lib/diagnostics.pm
30985____________________________________________________________________________
30986[ 18487] By: rgs on 2003/01/15 20:45:14
30987 Log: Add a test case for bug [perl #19545]
30988 Branch: perl
30989 ! t/op/do.t
30990____________________________________________________________________________
30991[ 18486] By: rgs on 2003/01/15 20:34:52
30992 Log: isa() and can() didn't work on magic variables
30993 see Message-Id: <20030114220737.2190ba7c.rgarciasuarez@free.fr>
30994 plus a test case by B. Goldberg
30995 Branch: perl
30996 ! t/op/universal.t universal.c
30997____________________________________________________________________________
30998[ 18485] By: rgs on 2003/01/15 20:10:57
30999 Log: Subject: [PATCH] Re: [perl #19566] Perl 5.8.0 segfault
31000 From: Stephen McCamant <smcc@mit.edu>
31001 Date: Thu, 2 Jan 2003 18:08:23 -0500
31002 Message-ID: <15892.50791.692636.982873@syllepsis.MIT.EDU>
31003 Plus a test by Jarkko
31004 Integrated from changes 18444 and 18446 from maint-5.8
31005 Branch: perl
31006 +> t/op/readline.t
31007 !> MANIFEST pp_hot.c
31008____________________________________________________________________________
31009[ 18484] By: jhi on 2003/01/15 14:09:57
31010 Log: Upgrade to Time::HiRes 1.42.
31011 Branch: perl
31012 + ext/Time/HiRes/fallback/const-c.inc
31013 + ext/Time/HiRes/fallback/const-xs.inc
31014 ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
31015 ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
31016____________________________________________________________________________
31017[ 18483] By: jhi on 2003/01/15 00:23:20
31018 Log: Detypo.
31019 Branch: perl
31020 ! ext/Encode/Unicode/Unicode.xs
31021____________________________________________________________________________
31022[ 18482] By: rgs on 2003/01/14 21:41:04
31023 Log: Integrate change #18365 from maint-5.8 :
31024 Doc tweak on the S_ macros.
31025 Branch: perl
31026 !> pod/perlfunc.pod
31027____________________________________________________________________________
31028[ 18481] By: jhi on 2003/01/14 12:40:24
31029 Log: Apparently some stdios have bugs (no! don't tell it is so!)
31030 or there is a corner of stdio that is substandardised.
31031 Branch: perl
31032 ! t/io/tell.t
31033____________________________________________________________________________
31034[ 18480] By: jhi on 2003/01/14 01:25:14
31035 Log: Encode 1.84 broke the subtest #7, further study required.
31036 Branch: perl
31037 ! t/uni/tr_utf8.t
31038____________________________________________________________________________
31039[ 18479] By: jhi on 2003/01/13 23:13:02
31040 Log: Add a test for encoding 'utf8'.
31041 Branch: perl
31042 + ext/Encode/t/enc_utf8.t
31043 ! MANIFEST ext/Encode/MANIFEST
31044____________________________________________________________________________
31045[ 18478] By: jhi on 2003/01/13 23:10:55
31046 Log: Upgrade to Encode 1.84.
31047 Branch: perl
31048 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/Encode.xs
31049 ! ext/Encode/Unicode/Unicode.xs ext/Encode/encoding.pm
31050____________________________________________________________________________
31051[ 18477] By: gsar on 2003/01/13 22:55:44
31052 Log: search utility doesn't skip exe/lib/pdb files properly on windows
31053 Branch: maint-5.6/perl
31054 ! win32/bin/search.pl
31055____________________________________________________________________________
31056[ 18476] By: nick on 2003/01/13 10:14:22
31057 Log: Remove workaround for :stdio layer bug now fixed
31058 (Fixes #18975)
31059 Branch: perlio
31060 ! pp_sys.c
31061____________________________________________________________________________
31062[ 18475] By: jhi on 2003/01/13 02:42:47
31063 Log: Integrate from perlio:
31064 [ 18471]
31065 Fix #18711 and add test for it (and indeed tell on write
31066 handles at all !
31067
31068 (#18711 Serious bug of tell() in perl)
31069 Branch: perl
31070 !> perlio.c t/io/tell.t
31071____________________________________________________________________________
31072[ 18474] By: jhi on 2003/01/13 02:41:04
31073 Log: Integrate from perlio:
31074 [ 18470]
31075 Fix #16306 and #16880
31076
31077 (#16306 Big Badda leak in Sockets)
31078 (#16880 Memory leak with IO::Socket in Perl v5.8.0)
31079 Branch: perl
31080 !> perlio.c
31081____________________________________________________________________________
31082[ 18473] By: jhi on 2003/01/13 02:38:33
31083 Log: Integrate perlio #18040 and #18043 (no real changes;
31084 some whitespace changes but ignored them so that Dan's
31085 version of Encode wins)
31086 Branch: perl
31087 !> ext/Encode/Encode.xs
31088____________________________________________________________________________
31089[ 18472] By: jhi on 2003/01/13 01:31:01
31090 Log: Integrate perlio to mainline:
31091 [ 18240]
31092 Avoid eqtime() wiping the file (as suggested by
31093 "Luis G. Uribe C." <GUribe@SoftHome.net>
31094 Branch: perl
31095 !> lib/ExtUtils/Command.pm
31096____________________________________________________________________________
31097[ 18471] By: nick on 2003/01/12 17:34:33
31098 Log: Fix #18711 and add test for it (and indeed tell on write
31099 handles at all !
31100 Branch: perlio
31101 ! perlio.c t/io/tell.t
31102____________________________________________________________________________
31103[ 18470] By: nick on 2003/01/12 14:06:15
31104 Log: Fix #16306 and #16880
31105 Branch: perlio
31106 ! perlio.c
31107____________________________________________________________________________
31108[ 18469] By: nick on 2003/01/12 09:54:42
31109 Log: Integrate Mainline
31110 Branch: perlio
31111 +> ext/threads/t/problems.t
31112 !> (integrate 64 files)
31113____________________________________________________________________________
31114[ 18468] By: rgs on 2003/01/09 21:07:44
31115 Log: Subject: [PATCH] VMS perly build tweak
31116 From: "Craig A. Berry" <craigberry@mac.com>
31117 Date: Thu, 9 Jan 2003 14:44:40 -0600
31118 Message-Id: <a05200f03ba4389ff49eb@[172.16.52.1]>
31119 Branch: perl
31120 ! vms/descrip_mms.template
31121____________________________________________________________________________
31122[ 18467] By: rgs on 2003/01/09 21:03:07
31123 Log: Document that ${^TAINT} is read-only.
31124 Branch: perl
31125 ! pod/perlvar.pod
31126____________________________________________________________________________
31127[ 18466] By: jhi on 2003/01/09 14:07:25
31128 Log: Integrate:
31129 [ 18459]
31130 PerlFAQ sync.
31131
31132 [ 18465]
31133 Fix the doc for splitpath() in the File::Spec modules :
31134 this function doesn't return undef in any case.
31135 Branch: maint-5.8/perl
31136 !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
31137 !> lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm pod/perlfaq.pod
31138 !> pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq3.pod
31139 !> pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfaq6.pod
31140 !> pod/perlfaq7.pod pod/perlfaq8.pod pod/perlfaq9.pod
31141____________________________________________________________________________
31142[ 18465] By: rgs on 2003/01/08 22:02:26
31143 Log: Fix the doc for splitpath() in the File::Spec modules :
31144 this function doesn't return undef in any case.
31145 Branch: perl
31146 ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
31147 ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
31148____________________________________________________________________________
31149[ 18464] By: rgs on 2003/01/08 21:40:37
31150 Log: Subject: [PATCH] label code in pp_ctl.c
31151 From: Nicholas Clark <nick@unfortu.net>
31152 Date: Thu, 26 Dec 2002 21:19:36 +0000
31153 Message-ID: <20021226211935.GE284@Bagpuss.unfortu.net>
31154 (Integrated from change #18400 from maint-5.8)
31155 Branch: perl
31156 !> pp_ctl.c
31157____________________________________________________________________________
31158[ 18463] By: rgs on 2003/01/08 21:27:49
31159 Log: Subject: [DOCPATCH] hv_store and hv_store_ent
31160 From: Nicholas Clark <nick@unfortu.net>
31161 Date: Wed, 1 Jan 2003 18:17:59 +0000
31162 Message-ID: <20030101181757.GB296@Bagpuss.unfortu.net>
31163 (Integrated from change #18399 from maint-5.8)
31164 Branch: perl
31165 !> hv.c
31166____________________________________________________________________________
31167[ 18462] By: rgs on 2003/01/08 21:24:09
31168 Log: Integrate change #18391 from maint-5.8:
31169 Document the installprefix trick for compiling PASE Perl in AIX.
31170 Branch: perl
31171 !> README.os400
31172____________________________________________________________________________
31173[ 18461] By: rgs on 2003/01/08 21:16:54
31174 Log: Integrate change #18362 from maint-5.8:
31175 Fix [perl #18666] (taking the more conservative approach).
31176 Branch: perl
31177 !> lib/File/Spec/Unix.pm
31178____________________________________________________________________________
31179[ 18460] By: rgs on 2003/01/08 21:14:20
31180 Log: Integrate change #18361 from maint-5.8:
31181 Document that the socketpair tests are unhappy in old SCO,
31182 as per [perl #18537].
31183 Branch: perl
31184 !> pod/perl58delta.pod
31185____________________________________________________________________________
31186[ 18459] By: rgs on 2003/01/08 20:48:19
31187 Log: PerlFAQ sync.
31188 Branch: perl
31189 ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
31190 ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
31191 ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
31192 ! pod/perlfaq9.pod
31193____________________________________________________________________________
31194[ 18458] By: jhi on 2003/01/08 19:43:26
31195 Log: Integrate:
31196 [ 18438]
31197 Subject: Re: [PATCH] Tiny nits in perlre.pod
31198 From: andreas.koenig@anima.de (Andreas J. Koenig)
31199 Date: Fri, 03 Jan 2003 00:57:15 +0100
31200 Message-ID: <m33cob14x0.fsf@k242.linux.bogus>
31201
31202 [ 18439]
31203 Subject: [PATCH] [perl #15184] ExtUtils/t/Embed.t fails with -Duseshrplib -Dlibperl=...
31204 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
31205 Date: Fri, 13 Dec 2002 00:54:43 +0100
31206 Message-Id: <20021213005443.3077a229.rgarciasuarez@free.fr>
31207 Same as change 18403 for maint-5.8 branch
31208
31209 [ 18441]
31210 Subject: [DOCPATCH] File::Copy's synopsis
31211 From: Nicholas Clark <nick@unfortu.net>
31212 Date: Wed, 1 Jan 2003 21:09:30 +0000
31213 Message-ID: <20030101210930.GE296@Bagpuss.unfortu.net>
31214
31215 [ 18451]
31216 Subject: [PATCH perl@18746] VMS test adjustments
31217 Date: Sat, 04 Jan 2003 11:26:00 -0600
31218 From: "Craig A. Berry" <craigberry@mac.com>
31219 Message-ID: <3E171928.1040100@mac.com>
31220
31221 [ 18453]
31222 Change the value of ${^TAINT} : 0 without taint checks,
31223 1 with -T, and -1 with -t or -TU.
31224
31225 [ 18454]
31226 Integrate podlators-1.25
31227
31228 [ 18455]
31229 Subject: [PATCH] integrate more with report_evil_fh
31230 From: Nicholas Clark <nick@unfortu.net>
31231 Date: Thu, 26 Dec 2002 20:56:21 +0000
31232 Message-ID: <20021226205620.GA16584@Bagpuss.unfortu.net>
31233 Branch: maint-5.8/perl
31234 !> ext/Devel/Peek/Peek.t ext/Filter/t/call.t
31235 !> lib/ExtUtils/t/Embed.t lib/File/Copy.pm lib/Pod/Man.pm
31236 !> lib/Pod/t/man.t lib/charnames.t mg.c pod/perlre.pod
31237 !> pod/perlvar.pod pp_sys.c t/op/taint.t t/run/runenv.t
31238 !> t/run/switchI.t t/run/switcht.t
31239____________________________________________________________________________
31240[ 18457] By: jhi on 2003/01/08 01:47:02
31241 Log: Upgrade to Time::HiRes 1.42.
31242 Branch: maint-5.8/perl
31243 + ext/Time/HiRes/fallback/const-c.inc
31244 + ext/Time/HiRes/fallback/const-xs.inc
31245 ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
31246 ! ext/Time/HiRes/HiRes.xs ext/Time/HiRes/Makefile.PL
31247____________________________________________________________________________
31248[ 18456] By: hv on 2003/01/07 09:20:22
31249 Log: Subject: [PATCH] %_ (was Re: [PATCH] operation on `PL_na' may be undefined)
31250 From: Nicholas Clark <nick@unfortu.net>
31251 Date: Thu, 26 Dec 2002 21:16:27 +0000
31252 Message-ID: <20021226211626.GD284@Bagpuss.unfortu.net>
31253 Branch: perl
31254 ! doio.c dump.c ext/Data/Dumper/Dumper.xs gv.c op.c pad.c perl.c
31255 ! pp_ctl.c pp_hot.c pp_sort.c pp_sys.c sv.c toke.c universal.c
31256 ! utf8.c
31257____________________________________________________________________________
31258[ 18455] By: hv on 2003/01/07 08:54:38
31259 Log: Subject: [PATCH] integrate more with report_evil_fh
31260 From: Nicholas Clark <nick@unfortu.net>
31261 Date: Thu, 26 Dec 2002 20:56:21 +0000
31262 Message-ID: <20021226205620.GA16584@Bagpuss.unfortu.net>
31263 Branch: perl
31264 ! pp_sys.c
31265____________________________________________________________________________
31266[ 18454] By: hv on 2003/01/07 08:45:54
31267 Log: Integrate podlators-1.25
31268 Branch: perl
31269 ! lib/Pod/Man.pm lib/Pod/t/man.t
31270____________________________________________________________________________
31271[ 18453] By: rgs on 2003/01/06 20:31:43
31272 Log: Change the value of ${^TAINT} : 0 without taint checks,
31273 1 with -T, and -1 with -t or -TU.
31274 Branch: perl
31275 ! mg.c pod/perlvar.pod t/op/taint.t t/run/runenv.t
31276 ! t/run/switcht.t
31277____________________________________________________________________________
31278[ 18452] By: jhi on 2003/01/06 13:47:59
31279 Log: Regen Configure.
31280 Branch: maint-5.8/perl
31281 ! Configure
31282____________________________________________________________________________
31283[ 18451] By: merijn on 2003/01/06 06:43:11
31284 Log: Subject: [PATCH perl@18746] VMS test adjustments
31285 Date: Sat, 04 Jan 2003 11:26:00 -0600
31286 From: "Craig A. Berry" <craigberry@mac.com>
31287 Message-ID: <3E171928.1040100@mac.com>
31288 Branch: perl
31289 ! ext/Devel/Peek/Peek.t ext/Filter/t/call.t lib/charnames.t
31290 ! t/run/switchI.t
31291____________________________________________________________________________
31292[ 18450] By: jhi on 2003/01/06 04:44:28
31293 Log: Tiny output tweak.
31294 Branch: maint-5.8/perl
31295 ! t/op/pat.t
31296____________________________________________________________________________
31297[ 18449] By: jhi on 2003/01/05 16:12:26
31298 Log: Update Changes.
31299 Branch: maint-5.8/perl
31300 ! Changes patchlevel.h
31301____________________________________________________________________________
31302[ 18448] By: jhi on 2003/01/05 15:29:54
31303 Log: Subject: Partial Data::Dumper patch
31304 From: Richard Clamp <richardc@unixbeard.net>
31305 Date: Sat, 4 Jan 2003 00:52:47 +0000
31306 Message-ID: <20030104005247.GA27685@mirth.demon.co.uk>
31307
31308 Subject: Re: Partial Data::Dumper patch
31309 From: Slaven Rezic <slaven@rezic.de>
31310 Date: 04 Jan 2003 02:48:08 +0100
31311 Message-ID: <87u1gp4rdz.fsf@vran.herceg.de>
31312 Branch: maint-5.8/perl
31313 ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/t/dumper.t
31314____________________________________________________________________________
31315[ 18447] By: jhi on 2003/01/05 14:58:52
31316 Log: test.pl-ise t/op/fh.t.
31317 Branch: maint-5.8/perl
31318 ! t/op/fh.t
31319____________________________________________________________________________
31320[ 18446] By: jhi on 2003/01/05 14:58:06
31321 Log: Add a test for change #18444 (and a new test file, since
31322 I couldn't find anything fitting)
31323 Branch: maint-5.8/perl
31324 + t/op/readline.t
31325 ! MANIFEST
31326____________________________________________________________________________
31327[ 18445] By: jhi on 2003/01/05 14:46:32
31328 Log: Backport change #18444 to maint.
31329 Branch: maint-5.8/perl
31330 ! pp_hot.c sv.c sv.h
31331____________________________________________________________________________
31332[ 18444] By: jhi on 2003/01/05 14:33:04
31333 Log: Subject: [PATCH] Re: [perl #19566] Perl 5.8.0 segfault
31334 From: Stephen McCamant <smcc@mit.edu>
31335 Date: Thu, 2 Jan 2003 18:08:23 -0500
31336 Message-ID: <15892.50791.692636.982873@syllepsis.MIT.EDU>
31337 Branch: maint-5.8/perl
31338 ! pp_hot.c
31339____________________________________________________________________________
31340[ 18443] By: jhi on 2003/01/05 14:22:33
31341 Log: Subject: [PATCH perl@18746] VMS test adjustments
31342 From: "Craig A. Berry" <craigberry@mac.com>
31343 Date: Sat, 04 Jan 2003 11:26:00 -0600
31344 Message-ID: <3E171928.1040100@mac.com>
31345 Branch: maint-5.8/perl
31346 ! ext/Devel/Peek/Peek.t ext/Filter/t/call.t lib/charnames.t
31347 ! t/run/switchI.t
31348____________________________________________________________________________
31349[ 18442] By: jhi on 2003/01/04 21:18:39
31350 Log: Spotted by rgs.
31351 Branch: maint-5.8/perl
31352 ! lib/File/Copy.pm
31353____________________________________________________________________________
31354[ 18441] By: rgs on 2003/01/04 20:06:45
31355 Log: Subject: [DOCPATCH] File::Copy's synopsis
31356 From: Nicholas Clark <nick@unfortu.net>
31357 Date: Wed, 1 Jan 2003 21:09:30 +0000
31358 Message-ID: <20030101210930.GE296@Bagpuss.unfortu.net>
31359 Branch: perl
31360 ! lib/File/Copy.pm
31361____________________________________________________________________________
31362[ 18440] By: rgs on 2003/01/04 16:31:31
31363 Log: Integrate change #18420 from maint-5.8:
31364 Mea culpa: the join() was the string join, not the
31365 ithreads join().
31366 Branch: perl
31367 !> ext/threads/t/join.t
31368____________________________________________________________________________
31369[ 18439] By: rgs on 2003/01/04 15:34:54
31370 Log: Subject: [PATCH] [perl #15184] ExtUtils/t/Embed.t fails with -Duseshrplib -Dlibperl=...
31371 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
31372 Date: Fri, 13 Dec 2002 00:54:43 +0100
31373 Message-Id: <20021213005443.3077a229.rgarciasuarez@free.fr>
31374 Same as change 18403 for maint-5.8 branch
31375 Branch: perl
31376 ! lib/ExtUtils/t/Embed.t
31377____________________________________________________________________________
31378[ 18438] By: rgs on 2003/01/04 15:24:22
31379 Log: Subject: Re: [PATCH] Tiny nits in perlre.pod
31380 From: andreas.koenig@anima.de (Andreas J. Koenig)
31381 Date: Fri, 03 Jan 2003 00:57:15 +0100
31382 Message-ID: <m33cob14x0.fsf@k242.linux.bogus>
31383 Branch: perl
31384 ! pod/perlre.pod
31385____________________________________________________________________________
31386[ 18437] By: jhi on 2003/01/04 14:39:35
31387 Log: Integrate:
31388 [ 18434]
31389 Forgot to add problems.t with change #18419
31390 Branch: maint-5.8/perl
31391 +> ext/threads/t/problems.t
31392____________________________________________________________________________
31393[ 18436] By: jhi on 2003/01/04 14:37:33
31394 Log: Integrate:
31395 [ 18435]
31396 The problems.t is back.
31397 Branch: maint-5.8/perl
31398 !> MANIFEST
31399____________________________________________________________________________
31400[ 18435] By: jhi on 2003/01/04 14:36:08
31401 Log: The problems.t is back.
31402 Branch: perl
31403 ! MANIFEST
31404____________________________________________________________________________
31405[ 18434] By: sky on 2003/01/04 07:43:50
31406 Log: Forgot to add problems.t with change #18419
31407 Branch: perl
31408 + ext/threads/t/problems.t
31409____________________________________________________________________________
31410[ 18433] By: jhi on 2003/01/04 04:49:38
31411 Log: Integrate:
31412 [ 18432]
31413 One more (or, rather, less) //.
31414 Branch: maint-5.8/perl
31415 !> ext/threads/threads.xs
31416____________________________________________________________________________
31417[ 18432] By: jhi on 2003/01/04 04:48:30
31418 Log: One more (or, rather, less) //.
31419 Branch: perl
31420 ! ext/threads/threads.xs
31421____________________________________________________________________________
31422[ 18431] By: jhi on 2003/01/04 04:39:01
31423 Log: Integrate from maintperl:
31424 [ 18430]
31425 // is still not portable C commentary.
31426 Branch: perl
31427 !> ext/threads/threads.xs
31428____________________________________________________________________________
31429[ 18430] By: jhi on 2003/01/04 04:35:40
31430 Log: // is still not portable C commentary.
31431 Branch: maint-5.8/perl
31432 ! ext/threads/threads.xs
31433____________________________________________________________________________
31434[ 18429] By: jhi on 2003/01/04 04:19:57
31435 Log: AIX gcc (2.9) threaded build tweak (without the _THREAD_SAFE
31436 things like drand48_data are undefined).
31437 Branch: maint-5.8/perl
31438 ! hints/aix.sh
31439____________________________________________________________________________
31440[ 18428] By: jhi on 2003/01/04 03:58:22
31441 Log: Somehow I managed to get makefile.olds that didn't get cleaned away.
31442 Branch: maint-5.8/perl
31443 ! Makefile.SH x2p/Makefile.SH
31444____________________________________________________________________________
31445[ 18427] By: jhi on 2003/01/04 03:49:34
31446 Log: To go with change #18404.
31447 Branch: maint-5.8/perl
31448 ! lib/Attribute/Handlers/t/multi.t
31449____________________________________________________________________________
31450[ 18426] By: jhi on 2003/01/04 03:38:27
31451 Log: Integrate: [ 18425] Until Arthur really adds the problems.t.
31452 Branch: maint-5.8/perl
31453 !> MANIFEST
31454____________________________________________________________________________
31455[ 18425] By: jhi on 2003/01/04 03:37:04
31456 Log: Until Arthur really adds the problems.t.
31457 Branch: perl
31458 ! MANIFEST
31459____________________________________________________________________________
31460[ 18424] By: jhi on 2003/01/04 03:20:08
31461 Log: Integrate:
31462 [ 18417]
31463 Fake what context we are running in for CLONE and DESTROY so
31464 threads->tid() returns the correct value.
31465 This is reported as bug #10046
31466
31467 [ 18419]
31468 Fixes bug #15273, the return of the object caused
31469 the stash of the object to be cloned, cloning the entire syntax
31470 tree and all lexicals in there creating danglning copies to the
31471 object. (Pararell but unlinked STASH tree).
31472 This adds a new flag, when set it will use STASHES from the
31473 thread we are joining into avoiding the problem.
31474
31475 [ 18421]
31476 Fix long standing memory leak with pop and shift!
31477 Branch: maint-5.8/perl
31478 !> MANIFEST ext/threads/shared/shared.xs ext/threads/t/basic.t
31479 !> ext/threads/threads.xs sv.c sv.h
31480____________________________________________________________________________
31481[ 18423] By: jhi on 2003/01/04 03:12:42
31482 Log: spent_size was still off. (As far as I can tell
31483 _SC_GETPW_R_SIZE_MAX is supposed to be used also
31484 for spents, not just pwents.)
31485 Branch: maint-5.8/perl
31486 ! reentr.c reentr.pl
31487____________________________________________________________________________
31488[ 18422] By: jhi on 2003/01/04 03:04:29
31489 Log: Third Degree found a read of uninit memory (after setting
31490 grent_size with sysconf(), pwent_size was read). Also make
31491 the ERANGE/INVARG more consistent.
31492 Branch: maint-5.8/perl
31493 ! reentr.c reentr.h reentr.pl
31494____________________________________________________________________________
31495[ 18421] By: sky on 2003/01/04 01:27:55
31496 Log: Fix long standing memory leak with pop and shift!
31497 Branch: perl
31498 ! ext/threads/shared/shared.xs
31499____________________________________________________________________________
31500[ 18420] By: jhi on 2003/01/04 00:04:33
31501 Log: Mea culpa: the join() was the string join, not the
31502 ithreads join().
31503 Branch: maint-5.8/perl
31504 ! ext/threads/t/join.t
31505____________________________________________________________________________
31506[ 18419] By: sky on 2003/01/03 23:45:34
31507 Log: Fixes bug #15273, the return of the object caused
31508 the stash of the object to be cloned, cloning the entire syntax
31509 tree and all lexicals in there creating danglning copies to the
31510 object. (Pararell but unlinked STASH tree).
31511 This adds a new flag, when set it will use STASHES from the
31512 thread we are joining into avoiding the problem.
31513 Branch: perl
31514 ! MANIFEST ext/threads/threads.xs sv.c sv.h
31515____________________________________________________________________________
31516[ 18418] By: jhi on 2003/01/03 19:41:57
31517 Log: Upgrade to Time::HiRes 1.41 (building with core perl had
31518 become broken at some point, even before 1.40).
31519 Branch: maint-5.8/perl
31520 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
31521 ! ext/Time/HiRes/Makefile.PL
31522____________________________________________________________________________
31523[ 18417] By: sky on 2003/01/03 18:16:46
31524 Log: Fake what context we are running in for CLONE and DESTROY so
31525 threads->tid() returns the correct value.
31526 This is reported as bug #10046
31527 Branch: perl
31528 ! ext/threads/t/basic.t ext/threads/threads.xs
31529____________________________________________________________________________
31530[ 18416] By: jhi on 2003/01/03 17:50:45
31531 Log: Upgrade to Time::HiRes 1.40.
31532 Branch: maint-5.8/perl
31533 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
31534 ! ext/Time/HiRes/Makefile.PL
31535____________________________________________________________________________
31536[ 18415] By: jhi on 2003/01/03 16:45:03
31537 Log: regen headers.
31538 Branch: maint-5.8/perl
31539 ! pod/perlapi.pod
31540____________________________________________________________________________
31541[ 18414] By: jhi on 2003/01/03 16:39:33
31542 Log: Integrate:
31543 [ 18390]
31544 Use a more likely location for the perl binary
31545
31546 [ 18406]
31547 Under darwin 6.0+ (MacOSX 10.2) we have threadsafe
31548 libc_r functions.
31549
31550 [ 18407]
31551 Subject: Re: [perl #18257] Attempt to free unreferenced scalar (in 5 lines)
31552 From: hv@crypt.org
31553 Date: Thu, 02 Jan 2003 17:16:04 +0000
31554 Message-Id: <200301021716.h02HG5809404@crypt.compulink.co.uk>
31555
31556 [ 18408]
31557 Subject: win32_msgwait() problem
31558 From: Gurusamy Sarathy <gsar@ActiveState.com>
31559 Date: Fri, 13 Dec 2002 17:31:59 -0800
31560 Message-Id: <200212140132.gBE1Vxp02090@smtp3.ActiveState.com>
31561
31562 [ 18411]
31563 Subject: Re: [perl #19061] 'goto' confuses 'redo'
31564 From: Stephen McCamant <smcc@mit.edu>
31565 Date: Sun, 22 Dec 2002 22:09:51 -0500
31566 Message-ID: <15878.32383.94274.950128@syllepsis.MIT.EDU>
31567
31568 [ 18413]
31569 Change pp_lock to take a reference instead of a
31570 scalar since it wouldn't fork for the HELEM/AELEM
31571 case. This was reported in bug #10045
31572 Branch: maint-5.8/perl
31573 !> Porting/genlog ext/threads/shared/t/hv_refs.t hints/darwin.sh
31574 !> opcode.h opcode.pl opnames.h pp_ctl.c sv.c win32/win32.c
31575____________________________________________________________________________
31576[ 18413] By: sky on 2003/01/03 15:15:14
31577 Log: Change pp_lock to take a reference instead of a
31578 scalar since it wouldn't fork for the HELEM/AELEM
31579 case. This was reported in bug #10045
31580 Branch: perl
31581 ! ext/threads/shared/t/hv_refs.t opcode.h opcode.pl opnames.h
31582____________________________________________________________________________
31583[ 18412] By: hv on 2003/01/03 11:14:51
31584 Log: Integrate from maint-5.8 #18348:
31585 Make Math::Trig a little bit more better behaved module citizen.
31586 Branch: perl
31587 !> lib/Math/Trig.pm
31588____________________________________________________________________________
31589[ 18411] By: hv on 2003/01/03 11:11:09
31590 Log: Subject: Re: [perl #19061] 'goto' confuses 'redo'
31591 From: Stephen McCamant <smcc@mit.edu>
31592 Date: Sun, 22 Dec 2002 22:09:51 -0500
31593 Message-ID: <15878.32383.94274.950128@syllepsis.MIT.EDU>
31594 Branch: perl
31595 ! pp_ctl.c
31596____________________________________________________________________________
31597[ 18410] By: hv on 2003/01/03 11:06:40
31598 Log: Subject: new flag SvPADSTALE
31599 From: Dave Mitchell <davem@fdgroup.com>
31600 Date: Thu, 19 Dec 2002 19:00:21 +0000
31601 Message-ID: <20021219190021.D9530@fdgroup.com>
31602 Branch: perl
31603 ! dump.c scope.c sv.h
31604____________________________________________________________________________
31605[ 18409] By: hv on 2003/01/03 11:05:09
31606 Log: Subject: remove flag SvPADBUSY
31607 From: Dave Mitchell <davem@fdgroup.com>
31608 Date: Thu, 19 Dec 2002 18:55:43 +0000
31609 Message-ID: <20021219185543.C9530@fdgroup.com>
31610 Branch: perl
31611 ! dump.c ext/Devel/Peek/Peek.t pad.c scope.c sv.h
31612____________________________________________________________________________
31613[ 18408] By: hv on 2003/01/03 10:56:54
31614 Log: Subject: win32_msgwait() problem
31615 From: Gurusamy Sarathy <gsar@ActiveState.com>
31616 Date: Fri, 13 Dec 2002 17:31:59 -0800
31617 Message-Id: <200212140132.gBE1Vxp02090@smtp3.ActiveState.com>
31618 Branch: perl
31619 ! win32/win32.c
31620____________________________________________________________________________
31621[ 18407] By: hv on 2003/01/03 10:30:05
31622 Log: Subject: Re: [perl #18257] Attempt to free unreferenced scalar (in 5 lines)
31623 From: hv@crypt.org
31624 Date: Thu, 02 Jan 2003 17:16:04 +0000
31625 Message-Id: <200301021716.h02HG5809404@crypt.compulink.co.uk>
31626 Branch: perl
31627 ! sv.c
31628____________________________________________________________________________
31629[ 18406] By: sky on 2003/01/03 08:23:16
31630 Log: Under darwin 6.0+ (MacOSX 10.2) we have threadsafe
31631 libc_r functions.
31632 Branch: perl
31633 ! hints/darwin.sh
31634____________________________________________________________________________
31635[ 18405] By: jhi on 2003/01/03 03:06:40
31636 Log: Subject: [PATCH] Re: 5.8.0 dup strangety
31637 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
31638 Date: Tue, 31 Dec 2002 10:56:42 +0100
31639 Message-Id: <20021231105642.6bc7a0f4.rgarciasuarez@free.fr>
31640 Branch: maint-5.8/perl
31641 ! doio.c
31642____________________________________________________________________________
31643[ 18404] By: jhi on 2003/01/03 02:54:46
31644 Log: Subject: [PATCH] Re: Attribute::Handlers phase variance
31645 From: Richard Clamp <richardc@unixbeard.net>
31646 Date: Mon, 9 Dec 2002 11:10:24 +0000
31647 Message-ID: <20021209111024.GA14365@mirth.demon.co.uk>
31648 Branch: maint-5.8/perl
31649 ! lib/Attribute/Handlers.pm lib/Attribute/Handlers/t/multi.t
31650____________________________________________________________________________
31651[ 18403] By: jhi on 2003/01/03 02:49:17
31652 Log: Subject: [PATCH] [perl #15184] ExtUtils/t/Embed.t fails with -Duseshrplib -Dlibperl=...
31653 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
31654 Date: Fri, 13 Dec 2002 00:54:43 +0100
31655 Message-Id: <20021213005443.3077a229.rgarciasuarez@free.fr>
31656 Branch: maint-5.8/perl
31657 ! lib/ExtUtils/t/Embed.t
31658____________________________________________________________________________
31659[ 18402] By: jhi on 2003/01/03 02:47:18
31660 Log: Subject: [PATCH Pod::Checker] Decouple podchecker program and function
31661 From: Michael G Schwern <schwern@pobox.com>
31662 Date: Tue, 10 Dec 2002 15:25:02 -0800
31663 Message-ID: <20021210232502.GD25945@blackrider.schwern.org>
31664
31665 Subject: Re: [PATCH Pod::Checker] Decouple podchecker program and function
31666 From: Michael G Schwern <schwern@pobox.com>
31667 Date: Tue, 10 Dec 2002 15:40:05 -0800
31668 Message-ID: <20021210234005.GF25945@blackrider.schwern.org>
31669 Branch: maint-5.8/perl
31670 ! lib/Pod/Checker.pm pod/podchecker.PL t/pod/poderrs.xr
31671____________________________________________________________________________
31672[ 18401] By: jhi on 2003/01/03 02:40:44
31673 Log: Subject: [PATCH] integrate more with report_evil_fh
31674 From: Nicholas Clark <nick@unfortu.net>
31675 Date: Thu, 26 Dec 2002 20:56:21 +0000
31676 Message-ID: <20021226205620.GA16584@Bagpuss.unfortu.net>
31677 Branch: maint-5.8/perl
31678 ! pp_sys.c
31679____________________________________________________________________________
31680[ 18400] By: jhi on 2003/01/03 02:37:11
31681 Log: Subject: [PATCH] label code in pp_ctl.c
31682 From: Nicholas Clark <nick@unfortu.net>
31683 Date: Thu, 26 Dec 2002 21:19:36 +0000
31684 Message-ID: <20021226211935.GE284@Bagpuss.unfortu.net>
31685 Branch: maint-5.8/perl
31686 ! pp_ctl.c
31687____________________________________________________________________________
31688[ 18399] By: jhi on 2003/01/03 02:28:15
31689 Log: Subject: [DOCPATCH] hv_store and hv_store_ent
31690 From: Nicholas Clark <nick@unfortu.net>
31691 Date: Wed, 1 Jan 2003 18:17:59 +0000
31692 Message-ID: <20030101181757.GB296@Bagpuss.unfortu.net>
31693 Branch: maint-5.8/perl
31694 ! hv.c
31695____________________________________________________________________________
31696[ 18398] By: jhi on 2003/01/03 02:26:44
31697 Log: Subject: [DOCPATCH] File::Copy's synopsis
31698 From: Nicholas Clark <nick@unfortu.net>
31699 Date: Wed, 1 Jan 2003 21:09:30 +0000
31700 Message-ID: <20030101210930.GE296@Bagpuss.unfortu.net>
31701 Branch: maint-5.8/perl
31702 ! lib/File/Copy.pm
31703____________________________________________________________________________
31704[ 18397] By: jhi on 2003/01/03 02:25:38
31705 Log: Subject: [PATCH] Re: [perl #19393] Bug in Time::localtime?
31706 From: Dave Mitchell <davem@fdgroup.com>
31707 To: Ton Hospel <perl5-porters@ton.iguana.be>
31708 Date: Wed, 1 Jan 2003 21:43:24 +0000
31709 Message-ID: <20030101214324.F12907@fdgroup.com>
31710 Branch: maint-5.8/perl
31711 ! lib/Time/Local.pm lib/Time/Local.t
31712____________________________________________________________________________
31713[ 18396] By: jhi on 2003/01/03 02:23:28
31714 Log: Subject: Re: [PATCH] Tiny nits in perlre.pod
31715 From: andreas.koenig@anima.de (Andreas J. Koenig)
31716 Date: Fri, 03 Jan 2003 00:57:15 +0100
31717 Message-ID: <m33cob14x0.fsf@k242.linux.bogus>
31718 Branch: maint-5.8/perl
31719 ! pod/perlre.pod
31720____________________________________________________________________________
31721[ 18395] By: jhi on 2003/01/03 02:21:50
31722 Log: Subject: PATCH: perldoc in MAINT branch (probably unstable too)
31723 From: Chip Turner <cturner@redhat.com>
31724 Date: 02 Jan 2003 11:35:57 -0500
31725 Message-ID: <vzksmwb8q6q.fsf@minbar.devel.redhat.com>
31726 Branch: maint-5.8/perl
31727 ! lib/Pod/Perldoc.pm
31728____________________________________________________________________________
31729[ 18394] By: jhi on 2003/01/02 21:37:16
31730 Log: Document in more detail which tests will fail on FAT.
31731 Branch: maint-5.8/perl
31732 ! README.win32
31733____________________________________________________________________________
31734[ 18393] By: merijn on 2003/01/02 19:41:29
31735 Log: Subject: [PATCH perl-5.8/win32/makefile.mk] Re: Smoke [5.8.0] 18389 FAIL(Fm) MSWin32 5.0 Service Pack 3 (x86/1 cpu)
31736 Date: Thu, 2 Jan 2003 19:02:21 +0100
31737 Message-ID: <200301021902.22444.abe@ztreet.demon.nl>
31738 From: abe@ztreet.demon.nl (Abe Timmerman)
31739 Branch: perl
31740 ! win32/makefile.mk
31741____________________________________________________________________________
31742[ 18392] By: jhi on 2003/01/02 17:57:09
31743 Log: Subject: [PATCH perl-5.8/win32/makefile.mk] Re: Smoke [5.8.0] 18389 FAIL(Fm) MSWin32 5.0 Service Pack 3 (x86/1 cpu)
31744 From: Abe Timmerman <abe@ztreet.demon.nl>
31745 Date: Thu, 2 Jan 2003 19:02:21 +0100
31746 Message-Id: <200301021902.22444.abe@ztreet.demon.nl>
31747 Branch: maint-5.8/perl
31748 ! win32/makefile.mk
31749____________________________________________________________________________
31750[ 18391] By: jhi on 2003/01/02 13:44:51
31751 Log: Document the installprefix trick for compiling PASE Perl in AIX.
31752 Branch: maint-5.8/perl
31753 ! README.os400
31754____________________________________________________________________________
31755[ 18390] By: merijn on 2003/01/02 07:32:00
31756 Log: Use a more likely location for the perl binary
31757 Branch: perl
31758 ! Porting/genlog
31759____________________________________________________________________________
31760[ 18389] By: jhi on 2003/01/02 03:15:44
31761 Log: Subject: [PATCH maintperl@18383] more pad removal for VMS
31762 From: "Craig A. Berry" <craigberry@mac.com>
31763 Date: Wed, 01 Jan 2003 21:53:22 -0600
31764 Message-ID: <3E13B7B2.2070005@mac.com>
31765 Branch: maint-5.8/perl
31766 ! vms/descrip_mms.template
31767____________________________________________________________________________
31768[ 18388] By: jhi on 2003/01/02 01:41:55
31769 Log: List the PERL_MAGIC_utf8 ('w') flag.
31770 Branch: maint-5.8/perl
31771 ! pod/perlguts.pod
31772____________________________________________________________________________
31773[ 18387] By: jhi on 2003/01/02 01:39:31
31774 Log: The magic v-string patch from John Peacock for 5.8;
31775 permits the programmer to know when a given scalar was
31776 originally encoded as a v-string; Scalar::Util has already
31777 been enhanced to expose this at the Perl level.
31778 Branch: maint-5.8/perl
31779 ! dump.c perl.h pod/perlguts.pod sv.c sv.h t/op/ver.t util.c
31780____________________________________________________________________________
31781[ 18386] By: jhi on 2003/01/01 23:06:53
31782 Log: The change #18275 didn't translate the test case quite right.
31783 Branch: maint-5.8/perl
31784 ! t/op/split.t
31785____________________________________________________________________________
31786[ 18385] By: gsar on 2003/01/01 20:26:42
31787 Log: remove the CRs that snuck in via change#18382
31788 Branch: maint-5.8/perl
31789 ! win32/Makefile win32/makefile.mk
31790____________________________________________________________________________
31791[ 18384] By: nick on 2003/01/01 19:14:32
31792 Log: Integrate mainline
31793 Branch: perlio
31794 +> lib/Net/Ping/t/410_syn_host.t t/op/lc_user.t
31795 !> (integrate 166 files)
31796____________________________________________________________________________
31797[ 18383] By: jhi on 2003/01/01 17:02:29
31798 Log: Backport #18319 to 5.8, from Dave Mitchell.
31799 Branch: maint-5.8/perl
31800 ! op.c t/op/eval.t
31801____________________________________________________________________________
31802[ 18382] By: jhi on 2003/01/01 15:06:49
31803 Log: More tweaks from Autrijus: no pad.c, perl59->perl58 in
31804 installperl; and no pad.c in VMS, either.
31805 Branch: maint-5.8/perl
31806 ! installperl vms/descrip_mms.template win32/Makefile
31807 ! win32/makefile.mk
31808____________________________________________________________________________
31809[ 18381] By: jhi on 2003/01/01 15:02:04
31810 Log: Tweaks from Autrijus: threaded/win32 build, signedness.
31811 Branch: maint-5.8/perl
31812 ! sv.c
31813____________________________________________________________________________
31814[ 18380] By: jhi on 2002/12/31 16:34:22
31815 Log: Update Changes.
31816 Branch: maint-5.8/perl
31817 ! Changes patchlevel.h
31818____________________________________________________________________________
31819[ 18379] By: jhi on 2002/12/31 15:33:11
31820 Log: Integrate:
31821 [ 18371]
31822 Subject: [PATCH] Re: [perl #19330] Uneffective increment of $\
31823 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
31824 Date: Fri, 27 Dec 2002 16:14:24 +0100
31825 Message-Id: <20021227161424.17234e3c.rgarciasuarez@free.fr>
31826
31827 [ 18372]
31828 Subject: [PATCH lib/AutoSplit.pm] Holding filehandle open
31829 From: Michael G Schwern <schwern@pobox.com>
31830 Date: Sat, 21 Dec 2002 19:29:41 -0800
31831 Message-ID: <20021222032941.GD24887@blackrider.schwern.org>
31832
31833 [ 18373]
31834 Subject: [perl #19343] perlfunc.pod patch for stat() and lstat()
31835 From: Dave Paris (via RT) <perlbug-followup@perl.org>
31836 Date: 22 Dec 2002 05:15:14 -0000
31837 Message-Id: <rt-19343-46041.7.82970696202895@bugs6.perl.org>
31838
31839 [ 18374]
31840 Remove duplicate entry
31841
31842 [ 18378]
31843 integrate change#18377 from maint-5.6 branch
31844
31845 change#17566 needs to be more defensive about win32_dup2()
31846 itself calling SetStdHandle() (at least MSVCRT does this)
31847 Branch: maint-5.8/perl
31848 !> MANIFEST lib/AutoSplit.pm mg.c pod/perlfunc.pod t/op/magic.t
31849 !> win32/win32.c
31850____________________________________________________________________________
31851[ 18378] By: gsar on 2002/12/31 04:07:56
31852 Log: integrate change#18377 from maint-5.6 branch
31853
31854 change#17566 needs to be more defensive about win32_dup2()
31855 itself calling SetStdHandle() (at least MSVCRT does this)
31856 Branch: perl
31857 !> win32/win32.c
31858____________________________________________________________________________
31859[ 18377] By: gsar on 2002/12/31 04:02:12
31860 Log: change#17566 needs to be more defensive about win32_dup2()
31861 itself calling SetStdHandle() (at least MSVCRT does this)
31862 Branch: maint-5.6/perl
31863 ! win32/win32.c
31864____________________________________________________________________________
31865[ 18376] By: hv on 2002/12/31 02:02:17
31866 Log: Update Changes
31867 Branch: perl
31868 ! Changes patchlevel.h
31869____________________________________________________________________________
31870[ 18375] By: jhi on 2002/12/30 21:28:31
31871 Log: Better version of change #18370; use the new 'E' flag
31872 so that cxinc is exposed (as cpp) only to List::Util
31873 (well, any extension) (well, anyone who does -DPERL_EXT),
31874 no need to export it globally.
31875 Branch: maint-5.8/perl
31876 ! embed.fnc embed.h ext/List/Util/Makefile.PL global.sym
805e355f 31877____________________________________________________________________________
48e1ca0e
HS
31878[ 18374] By: hv on 2002/12/30 03:32:22
31879 Log: Remove duplicate entry
31880 Branch: perl
31881 ! MANIFEST
31882____________________________________________________________________________
31883[ 18373] By: hv on 2002/12/30 03:19:17
31884 Log: Subject: [perl #19343] perlfunc.pod patch for stat() and lstat()
31885 From: Dave Paris (via RT) <perlbug-followup@perl.org>
31886 Date: 22 Dec 2002 05:15:14 -0000
31887 Message-Id: <rt-19343-46041.7.82970696202895@bugs6.perl.org>
31888 Branch: perl
31889 ! pod/perlfunc.pod
31890____________________________________________________________________________
31891[ 18372] By: hv on 2002/12/30 03:13:42
31892 Log: Subject: [PATCH lib/AutoSplit.pm] Holding filehandle open
31893 From: Michael G Schwern <schwern@pobox.com>
31894 Date: Sat, 21 Dec 2002 19:29:41 -0800
31895 Message-ID: <20021222032941.GD24887@blackrider.schwern.org>
31896 Branch: perl
31897 ! lib/AutoSplit.pm
31898____________________________________________________________________________
31899[ 18371] By: hv on 2002/12/30 03:08:12
31900 Log: Subject: [PATCH] Re: [perl #19330] Uneffective increment of $\
31901 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
31902 Date: Fri, 27 Dec 2002 16:14:24 +0100
31903 Message-Id: <20021227161424.17234e3c.rgarciasuarez@free.fr>
31904 Branch: perl
31905 ! mg.c t/op/magic.t
31906____________________________________________________________________________
31907[ 18370] By: jhi on 2002/12/30 02:37:38
31908 Log: In AIX (strict symbol exports) the cxinc is needed for List::Util.
31909 Branch: maint-5.8/perl
31910 ! embed.fnc embed.h global.sym
31911____________________________________________________________________________
31912[ 18369] By: jhi on 2002/12/30 01:38:38
31913 Log: Missed one.
31914 Branch: maint-5.8/perl
31915 ! embed.fnc embed.h
31916____________________________________________________________________________
31917[ 18368] By: jhi on 2002/12/29 23:33:56
31918 Log: Continue on change #18367; implement the said flag, 'E'.
31919 (Some nm output studying was needed to get the right set
31920 of re symbols defined.)
31921 Branch: maint-5.8/perl
31922 ! embed.fnc embed.h embed.pl ext/re/Makefile.PL
31923____________________________________________________________________________
31924[ 18367] By: jhi on 2002/12/29 21:40:08
31925 Log: Caught by change #18366; thanks to the re extension we have some
31926 functions that are file static but yet part of "the public API"...
31927 Maybe a new class of exportability (a new embed.fnc flag) is
31928 required for this case.
31929 Branch: maint-5.8/perl
31930 ! embed.fnc embed.h
31931____________________________________________________________________________
31932[ 18366] By: jhi on 2002/12/29 21:28:27
31933 Log: Implement the CPP namespace protection from [perl #8610];
31934 unless a function has an 'A' flag, it's defined only if
31935 PERL_CORE. (Why do we have so many many functions with an
31936 'A' flag, is another matter.) (The number of #ifdef PERL_COREs
31937 could be cut down further by having a state variable and
31938 inserting #ifdefs and #endifs when the state flips.)
31939 Branch: maint-5.8/perl
31940 ! embed.h embed.pl
31941____________________________________________________________________________
31942[ 18365] By: jhi on 2002/12/29 15:01:08
31943 Log: Doc tweak on the S_ macros.
31944 Branch: maint-5.8/perl
31945 ! pod/perlfunc.pod
31946____________________________________________________________________________
31947[ 18364] By: jhi on 2002/12/29 14:54:43
31948 Log: Apply the doc patch from [perl #19343].
31949 Branch: maint-5.8/perl
31950 ! pod/perlfunc.pod
31951____________________________________________________________________________
31952[ 18363] By: jhi on 2002/12/29 14:49:14
31953 Log: Integrate:
31954 [ 18354]
31955 Subject: [PATCH] docpatch for cv.h
31956 From: Nicholas Clark <nick@unfortu.net>
31957 Date: Wed, 25 Dec 2002 21:01:04 +0000
31958 Message-Id: <20021225210102.GA284@Bagpuss.unfortu.net>
31959
31960 [ 18356]
31961 fix signed/unsigned mismatch warning from change#18266
31962
31963 [ 18358]
31964 save_re_context() was not saving many regexec.c state
31965 variables, resulting in various reentrancy problems when
31966 the swatches were autoloaded by perl in the midst of a
31967 match
31968 Branch: maint-5.8/perl
31969 !> cv.h regcomp.c
31970____________________________________________________________________________
31971[ 18362] By: jhi on 2002/12/29 00:51:29
31972 Log: Fix [perl #18666] (taking the more conservative approach).
31973 Branch: maint-5.8/perl
31974 ! lib/File/Spec/Unix.pm
31975____________________________________________________________________________
31976[ 18361] By: jhi on 2002/12/29 00:45:16
31977 Log: Document that the socketpair tests are unhappy in old SCO,
31978 as per [perl #18537].
31979 Branch: maint-5.8/perl
31980 ! pod/perl58delta.pod
31981____________________________________________________________________________
31982[ 18360] By: jhi on 2002/12/29 00:38:01
31983 Log: Fix from the bug report for [perl #19267].
31984 Branch: maint-5.8/perl
31985 ! lib/Pod/Man.pm
31986____________________________________________________________________________
31987[ 18359] By: jhi on 2002/12/28 22:33:16
31988 Log: A small tweak on top of #18353: don't display mg_len bytes of
31989 mg_ptr for PERL_MAGIC_utf8 because that's not what's there.
31990 Branch: maint-5.8/perl
31991 ! dump.c
31992____________________________________________________________________________
31993[ 18358] By: gsar on 2002/12/28 03:30:49
31994 Log: save_re_context() was not saving many regexec.c state
31995 variables, resulting in various reentrancy problems when
31996 the swatches were autoloaded by perl in the midst of a
31997 match
31998 Branch: perl
31999 ! regcomp.c
32000____________________________________________________________________________
32001[ 18357] By: gsar on 2002/12/28 02:16:51
32002 Log: silence another signed/unsigned mismatch warning
32003 Branch: perl
32004 ! op.c
32005____________________________________________________________________________
32006[ 18356] By: gsar on 2002/12/28 02:08:23
32007 Log: fix signed/unsigned mismatch warning from change#18266
32008 Branch: perl
32009 ! regcomp.c
32010____________________________________________________________________________
32011[ 18355] By: gsar on 2002/12/28 02:05:14
32012 Log: these variables are not in use anywhere since 5.8.0
32013 Branch: perl
32014 ! embedvar.h perlapi.h sv.c thrdvar.h
32015____________________________________________________________________________
32016[ 18354] By: ams on 2002/12/26 03:54:09
32017 Log: Subject: [PATCH] docpatch for cv.h
32018 From: Nicholas Clark <nick@unfortu.net>
32019 Date: Wed, 25 Dec 2002 21:01:04 +0000
32020 Message-Id: <20021225210102.GA284@Bagpuss.unfortu.net>
32021 Branch: perl
32022 ! cv.h
32023____________________________________________________________________________
32024[ 18353] By: jhi on 2002/12/26 02:07:06
32025 Log: Introduce a cache for UTF-8 data: length and byte<->char offset
32026 mapping are stored in a new type of magic. Speeds up length(),
32027 substr(), index(), rindex(), pos(), and some parts of s///.
32028
32029 The speedup varies a lot (on the usual suspects: what is the
32030 access pattern of the data, compiler, CPU), but should be at
32031 least one order of magnitude, and getting to the same magnitude
32032 as byte string speeds, and in some cases (length on unchanged data)
32033 even reaching the byte string speed. On the other hand, in some
32034 cases (index) the byte speed is still faster by a factor of five
32035 or so, but the bottleneck there does not seem to be any more
32036 the byte<->char offset mapping (instead, the fbm_instr() speed).
32037
32038 There is one cache slot for the length, and only two for the
32039 byte<->char offset mapping (the first one for the start->offset,
32040 and the second for the offset->offset+length, when talking
32041 in substr() terms).
32042
32043 Code this hairy is bound to have hairy trolls hiding under it.
32044 Branch: maint-5.8/perl
32045 ! dump.c embed.fnc embed.h mg.c perl.h proto.h sv.c util.c
32046____________________________________________________________________________
32047[ 18352] By: jhi on 2002/12/25 13:42:10
32048 Log: Integrate:
32049 [ 18350]
32050 Removal of duplicate comment block
32051
32052 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
32053 Subject: Re: [perl #19306] Sys::Syslog issues.
32054 Date: Mon, 23 Dec 2002 15:25:51 -0800
32055 Message-ID: </t5B+gzkg6DR092yn@efn.org>
32056
32057 [ 18351]
32058 #18345 was still broken; should be fixed now.
32059 Branch: maint-5.8/perl
32060 !> ext/Sys/Syslog/Syslog.pm sv.c
32061____________________________________________________________________________
32062[ 18351] By: hv on 2002/12/25 02:29:17
32063 Log: #18345 was still broken; should be fixed now.
32064 Branch: perl
32065 ! sv.c
32066____________________________________________________________________________
32067[ 18350] By: merijn on 2002/12/24 05:26:40
32068 Log: Removal of duplicate comment block
32069
32070 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
32071 Subject: Re: [perl #19306] Sys::Syslog issues.
32072 Date: Mon, 23 Dec 2002 15:25:51 -0800
32073 Message-ID: </t5B+gzkg6DR092yn@efn.org>
32074 Branch: perl
32075 ! ext/Sys/Syslog/Syslog.pm
32076____________________________________________________________________________
32077[ 18349] By: jhi on 2002/12/24 02:42:31
32078 Log: At least partially address [perl #10000] by speeding
32079 up both the ASCII case (by about 2-3%) and the UTF-8 case
32080 (by about 45%). The major trick is to avoid hitting the
32081 costly S_reginclass(). (Even before this patch the speedup
32082 since 5.8.0 was about 40-50%.) After this the UTF-8 case is
32083 still about 30-60% slower than the ASCII case. (Note that
32084 I'm unable to reproduce the 10-fold speed difference of the
32085 original bug report; I can see a factor of 2 or 3, but no more.)
32086 Branch: maint-5.8/perl
32087 ! regexec.c
32088____________________________________________________________________________
32089[ 18348] By: jhi on 2002/12/23 06:42:29
32090 Log: Make Math::Trig a little bit more better behaved module citizen.
32091 Branch: maint-5.8/perl
32092 ! lib/Math/Trig.pm
32093____________________________________________________________________________
32094[ 18347] By: jhi on 2002/12/23 06:37:31
32095 Log: Integrate:
32096 [ 18300]
32097 Subject: [patch] typo in perlop
32098 From: andreas.koenig@anima.de (Andreas J. Koenig)
32099 Date: Wed, 11 Dec 2002 21:31:14 +0100
32100 Message-ID: <m3k7igjo19.fsf@k242.linux.bogus>
32101
32102 [ 18304]
32103 Redone #18011 from metaunits
32104
32105 [ 18305]
32106 Enough changes to Configure and metaunits warrant an update.
32107 Several small changes and three additions
32108
32109 [ 18306]
32110 More documentation of obscure flags is good, even if the
32111 documentation might be not so good. Atleast it's not false!
32112 Documents the flags one can give to perl_clone
32113
32114 [ 18308]
32115 Subject: [PATCH] Re: [perl #19017] lexical "my" variables not visible in debugger "x" command
32116 From: peter@PSDT.com (Peter Scott)
32117 Date: 12 Dec 2002 18:13:17 -0000
32118 Message-ID: <20021212181317.50538.qmail@onion.perl.org>
32119 (fix bug [perl #19058])
32120
32121 [ 18310]
32122 regen-headers to get new API docs from #18306
32123
32124 [ 18312]
32125 Subject: [Fwd: Patch for perl utf8-related bug]
32126 From: Richard Hitt <rbh00@utsglobal.com>
32127 Date: Fri, 06 Dec 2002 16:47:42 -0800
32128 [perl #18932]
32129
32130 [ 18313]
32131 Subject: [PATCH 5.8.1 @oldish-18156] OS/2 REXX interface assuming Object REXX
32132 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32133 Date: Fri, 13 Dec 2002 14:08:00 -0800
32134 Message-ID: <20021213220800.GA2625@math.berkeley.edu>
32135
32136 [ 18314]
32137 Subject: [PATCH 5.8.1 @oldish-18156] Morphing to PM on OS/2
32138 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32139 Date: Fri, 13 Dec 2002 14:00:48 -0800
32140 Message-ID: <20021213220048.GA2606@math.berkeley.edu>
32141
32142 [ 18315]
32143 Subject: [PATCH 5.8.1 @oldish-18156] deprecated warnings
32144 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32145 Date: Fri, 13 Dec 2002 13:47:08 -0800
32146 Message-ID: <20021213214707.GA2588@math.berkeley.edu>
32147
32148 [ 18316]
32149 Subject: [PATCH 5.8.1 @oldish-18156] build
32150 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32151 Date: Fri, 13 Dec 2002 13:54:05 -0800
32152 Message-ID: <20021213215404.GA2597@math.berkeley.edu>
32153
32154 [ 18317]
32155 Integrate Net::Ping v2.26. (lib/Net/Ping/t/450_service.t should work now)
32156
32157 [ 18323]
32158 PerlSIO_stderr et al are not functions
32159
32160 [ 18324]
32161 windows: avoid prompting under some shells during $(MAKE) distclean
32162
32163 [ 18325]
32164 PerlIO_{stdoutf,vprintf} don't exist, should be PerlSIO_*
32165
32166 [ 18326]
32167 Win32.pod update
32168
32169 [ 18327]
32170 windows: support for large files
32171
32172 note that this change will break binary compatibility with the
32173 default 5.8.0 build options; nevertheless I think it is worth
32174 having in 5.8.1 (people who want the compatibility can disable
32175 the option in the makefile)
32176
32177 [ 18328]
32178 fix for GPF in C<print Win32::GetFullPathName('\\\\host\share')>
32179
32180 [ 18330]
32181 remove CRs from a couple of files (these show up as CRCRLF
32182 on windows)
32183
32184 [ 18332]
32185 $Config{prefixexp} was set incorrectly on windows
32186
32187 [ 18334]
32188 AIX compiler version updates
32189
32190 [ 18335]
32191 my_fflush_all() wasn't doing the right thing under useperlio
32192 on many platforms
32193
32194 [ 18337]
32195 handy hint: getting a perforce change as a usable patch
32196
32197 [ 18338]
32198 Subject: [PATCH] read permissions for h2ph-generated files
32199 From: Slaven Rezic <slaven.rezic@berlin.de>
32200 Date: Fri, 22 Nov 2002 14:49:14 +0100 (CET)
32201 Message-Id: <200211221349.gAMDnEAK014033@vran.herceg.de>
32202
32203 [ 18339]
32204 Integrate Time::HiRes v1.39 (for VMS build tweak)
32205
32206 [ 18342]
32207 Subject: [perl #18544] Patch included to fix problem.
32208 From: Richard Kandarian <richard.kandarian@lanl.gov>
32209 Date: Thu, 21 Nov 2002 08:00:20 -0700
32210 (from RT)
32211
32212 [ 18343]
32213 Subject: [perl #19153] Term::Complete (the argument of stty)
32214 From: OKAIE Yutaka (via RT) <perlbug-followup@perl.org>
32215 Date: 15 Dec 2002 13:45:23 -0000
32216 Message-Id: <rt-19153-45441.1.2145712923207@bugs6.perl.org>
32217
32218 [ 18344]
32219 more on #18312: sv.c:ss_dup()
32220
32221 [ 18345]
32222 more on #18344.
32223 Branch: maint-5.8/perl
32224 +> lib/Net/Ping/t/410_syn_host.t
32225 ! Configure config_h.SH
32226 !> (integrate 56 files)
32227____________________________________________________________________________
32228[ 18346] By: hv on 2002/12/23 06:14:22
32229 Log: integrate maint-5.8 #18301
32230 Branch: perl
32231 !> lib/perl5db.pl
32232____________________________________________________________________________
32233[ 18345] By: hv on 2002/12/23 06:01:17
32234 Log: more on #18344.
32235 Branch: perl
32236 ! sv.c
32237____________________________________________________________________________
32238[ 18344] By: hv on 2002/12/23 05:56:43
32239 Log: more on #18312: sv.c:ss_dup()
32240 Branch: perl
32241 ! sv.c
32242____________________________________________________________________________
32243[ 18343] By: hv on 2002/12/23 05:47:17
32244 Log: Subject: [perl #19153] Term::Complete (the argument of stty)
32245 From: OKAIE Yutaka (via RT) <perlbug-followup@perl.org>
32246 Date: 15 Dec 2002 13:45:23 -0000
32247 Message-Id: <rt-19153-45441.1.2145712923207@bugs6.perl.org>
32248 Branch: perl
32249 ! lib/Term/Complete.pm
32250____________________________________________________________________________
32251[ 18342] By: hv on 2002/12/23 05:27:25
32252 Log: Subject: [perl #18544] Patch included to fix problem.
32253 From: Richard Kandarian <richard.kandarian@lanl.gov>
32254 Date: Thu, 21 Nov 2002 08:00:20 -0700
32255 (from RT)
32256 Branch: perl
32257 ! regexec.c
32258____________________________________________________________________________
32259[ 18341] By: hv on 2002/12/23 05:08:49
32260 Log: Subject: [PATCH] operation on `PL_na' may be undefined
32261 From: Nicholas Clark <nick@unfortu.net>
32262 Date: Tue, 10 Dec 2002 19:59:18 +0000
32263 Message-ID: <20021210195917.GJ288@Bagpuss.unfortu.net>
32264 Branch: perl
32265 ! universal.c
32266____________________________________________________________________________
32267[ 18340] By: hv on 2002/12/23 05:04:29
32268 Log: Subject: [PATCH] 2% speedup (pp_entersub needs to go on a diet)
32269 From: Nicholas Clark <nick@unfortu.net>
32270 Date: Tue, 10 Dec 2002 18:55:28 +0000
32271 Message-ID: <20021210185527.GG288@Bagpuss.unfortu.net>
32272 Branch: perl
32273 ! pp_hot.c
32274____________________________________________________________________________
32275[ 18339] By: hv on 2002/12/23 04:39:48
32276 Log: Integrate Time::HiRes v1.39 (for VMS build tweak)
32277 Branch: perl
32278 ! ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
32279 ! ext/Time/HiRes/Makefile.PL
32280____________________________________________________________________________
32281[ 18338] By: hv on 2002/12/23 03:43:09
32282 Log: Subject: [PATCH] read permissions for h2ph-generated files
32283 From: Slaven Rezic <slaven.rezic@berlin.de>
32284 Date: Fri, 22 Nov 2002 14:49:14 +0100 (CET)
32285 Message-Id: <200211221349.gAMDnEAK014033@vran.herceg.de>
32286 Branch: perl
32287 ! utils/h2ph.PL
32288____________________________________________________________________________
32289[ 18337] By: hv on 2002/12/23 03:38:59
32290 Log: handy hint: getting a perforce change as a usable patch
32291 Branch: perl
32292 ! Porting/repository.pod
32293____________________________________________________________________________
32294[ 18336] By: hv on 2002/12/23 03:36:26
32295 Log: Reverse #18285, for reasons given in:
32296 Subject: Re: Precedence of ? :
32297 From: hv@crypt.org
32298 Date: Fri, 20 Dec 2002 00:35:27 +0000
32299 Message-Id: <200212200035.gBK0ZRm29309@crypt.compulink.co.uk>
32300 Branch: perl
32301 ! perly.c perly.y perly_c.diff pod/perldelta.pod t/op/cond.t
32302 ! vms/perly_c.vms
32303____________________________________________________________________________
32304[ 18335] By: gsar on 2002/12/18 23:12:14
32305 Log: my_fflush_all() wasn't doing the right thing under useperlio
32306 on many platforms
32307 Branch: perl
32308 ! util.c
32309____________________________________________________________________________
32310[ 18334] By: merijn on 2002/12/18 06:48:11
32311 Log: AIX compiler version updates
32312 Branch: perl
32313 ! README.aix
32314____________________________________________________________________________
32315[ 18333] By: gsar on 2002/12/18 03:21:42
32316 Log: integrate change#18332 from mainline
32317
32318 $Config{prefixexp} was set incorrectly on windows
32319 Branch: maint-5.6/perl
32320 !> win32/config.bc win32/config.gc win32/config.vc
32321____________________________________________________________________________
32322[ 18332] By: gsar on 2002/12/18 03:20:27
32323 Log: $Config{prefixexp} was set incorrectly on windows
32324 Branch: perl
32325 ! win32/config.bc win32/config.gc win32/config.vc
32326 ! win32/config.vc64
32327____________________________________________________________________________
32328[ 18331] By: gsar on 2002/12/18 02:38:13
32329 Log: integrate change#18326 from mainline
32330
32331 Win32.pod update
32332 Branch: maint-5.6/perl
32333 !> lib/Win32.pod
32334____________________________________________________________________________
32335[ 18330] By: gsar on 2002/12/18 02:32:20
32336 Log: remove CRs from a couple of files (these show up as CRCRLF
32337 on windows)
32338 Branch: perl
32339 ! jpl/JNI/JNI.xs jpl/JNI/Makefile.PL
32340____________________________________________________________________________
32341[ 18329] By: gsar on 2002/12/18 02:28:47
32342 Log: integrate change#18328 from mainline
32343
32344 fix for GPF in C<print Win32::GetFullPathName('\\\\host\share')>
32345 Branch: maint-5.6/perl
32346 !> win32/win32.c
32347____________________________________________________________________________
32348[ 18328] By: gsar on 2002/12/18 02:27:10
32349 Log: fix for GPF in C<print Win32::GetFullPathName('\\\\host\share')>
32350 Branch: perl
32351 ! win32/win32.c
32352____________________________________________________________________________
32353[ 18327] By: gsar on 2002/12/18 02:08:12
32354 Log: windows: support for large files
32355
32356 note that this change will break binary compatibility with the
32357 default 5.8.0 build options; nevertheless I think it is worth
32358 having in 5.8.1 (people who want the compatibility can disable
32359 the option in the makefile)
32360 Branch: perl
32361 ! ext/Devel/DProf/DProf.xs ext/POSIX/POSIX.xs
32362 ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/via/via.xs iperlsys.h
32363 ! pp_sys.c win32/Makefile win32/config.bc win32/config.gc
32364 ! win32/config.vc win32/config.vc64 win32/config_H.bc
32365 ! win32/config_H.gc win32/config_H.vc win32/config_H.vc64
32366 ! win32/config_sh.PL win32/makefile.mk win32/perlhost.h
32367 ! win32/win32.c win32/win32iop.h
32368____________________________________________________________________________
32369[ 18326] By: gsar on 2002/12/18 00:57:46
32370 Log: Win32.pod update
32371 Branch: perl
32372 ! lib/Win32.pod
32373____________________________________________________________________________
32374[ 18325] By: gsar on 2002/12/18 00:42:45
32375 Log: PerlIO_{stdoutf,vprintf} don't exist, should be PerlSIO_*
32376 Branch: perl
32377 ! XSUB.h
32378____________________________________________________________________________
32379[ 18324] By: gsar on 2002/12/18 00:34:08
32380 Log: windows: avoid prompting under some shells during $(MAKE) distclean
32381 Branch: perl
32382 ! win32/Makefile win32/makefile.mk
32383____________________________________________________________________________
32384[ 18323] By: gsar on 2002/12/18 00:17:29
32385 Log: PerlSIO_stderr et al are not functions
32386 Branch: perl
32387 ! XSUB.h
32388____________________________________________________________________________
32389[ 18322] By: gsar on 2002/12/17 22:58:09
32390 Log: integrate change#18321 from mainline
32391
32392 C<require '\foo\bar.pm'> fails on windows if not running
32393 from the root directory; for a test case, see:
32394
32395 http://bugs.activestate.com/show_bug.cgi?id=19317
32396
32397 this was due to not recognizing \foo\bar.pm as an absolute
32398 path name
32399 Branch: maint-5.8/perl
32400 !> util.h
32401____________________________________________________________________________
32402[ 18321] By: gsar on 2002/12/17 22:56:25
32403 Log: integrate change#18320 from maint-5.6 branch
32404
32405 C<require '\foo\bar.pm'> fails on windows if not running
32406 from the root directory; for a test case, see:
32407
32408 http://bugs.activestate.com/show_bug.cgi?id=19317
32409
32410 this was due to not recognizing \foo\bar.pm as an absolute
32411 path name
32412 Branch: perl
32413 !> util.h
32414____________________________________________________________________________
32415[ 18320] By: gsar on 2002/12/17 22:41:50
32416 Log: C<require '\foo\bar.pm'> fails on windows if not running
32417 from the root directory; for a test case, see:
32418
32419 http://bugs.activestate.com/show_bug.cgi?id=19317
32420
32421 this was due to not recognizing \foo\bar.pm as an absolute
32422 path name
32423 Branch: maint-5.6/perl
32424 ! util.h
32425____________________________________________________________________________
32426[ 18319] By: hv on 2002/12/17 10:08:24
32427 Log: Whoops, these are the changes supposed to be in #18318.
32428 Branch: perl
32429 ! pad.c t/op/eval.t
32430____________________________________________________________________________
32431[ 18318] By: hv on 2002/12/17 03:12:18
32432 Log: Subject: Re: [PATCH] Re: [perl #19022] POSIX failures in bleadperl
32433 From: Nicholas Clark <nick@unfortu.net>
32434 Date: Sat, 14 Dec 2002 23:13:37 +0000
32435 Message-ID: <20021214231337.GF306@Bagpuss.unfortu.net>
32436 Branch: perl
32437 ! pad.c t/op/eval.t
32438____________________________________________________________________________
32439[ 18317] By: hv on 2002/12/17 02:58:12
32440 Log: Integrate Net::Ping v2.26. (lib/Net/Ping/t/450_service.t should work now)
32441 Branch: perl
32442 + lib/Net/Ping/t/410_syn_host.t
32443 ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/t/400_ping_syn.t
32444 ! lib/Net/Ping/t/450_service.t
32445____________________________________________________________________________
32446[ 18316] By: hv on 2002/12/17 02:17:16
32447 Log: Subject: [PATCH 5.8.1 @oldish-18156] build
32448 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32449 Date: Fri, 13 Dec 2002 13:54:05 -0800
32450 Message-ID: <20021213215404.GA2597@math.berkeley.edu>
32451 Branch: perl
32452 ! os2/os2.c t/run/runenv.t
32453____________________________________________________________________________
32454[ 18315] By: hv on 2002/12/17 02:03:58
32455 Log: Subject: [PATCH 5.8.1 @oldish-18156] deprecated warnings
32456 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32457 Date: Fri, 13 Dec 2002 13:47:08 -0800
32458 Message-ID: <20021213214707.GA2588@math.berkeley.edu>
32459 Branch: perl
32460 ! lib/constant.t lib/fields.t
32461____________________________________________________________________________
32462[ 18314] By: hv on 2002/12/17 01:58:32
32463 Log: Subject: [PATCH 5.8.1 @oldish-18156] Morphing to PM on OS/2
32464 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32465 Date: Fri, 13 Dec 2002 14:00:48 -0800
32466 Message-ID: <20021213220048.GA2606@math.berkeley.edu>
32467 Branch: perl
32468 ! os2/OS2/Process/t/os2_process.t os2/os2.c
32469____________________________________________________________________________
32470[ 18313] By: hv on 2002/12/17 01:54:19
32471 Log: Subject: [PATCH 5.8.1 @oldish-18156] OS/2 REXX interface assuming Object REXX
32472 From: Ilya Zakharevich <ilya@Math.Berkeley.EDU>
32473 Date: Fri, 13 Dec 2002 14:08:00 -0800
32474 Message-ID: <20021213220800.GA2625@math.berkeley.edu>
32475 Branch: perl
32476 ! os2/OS2/REXX/REXX.xs
32477____________________________________________________________________________
32478[ 18312] By: hv on 2002/12/17 01:43:28
32479 Log: Subject: [Fwd: Patch for perl utf8-related bug]
32480 From: Richard Hitt <rbh00@utsglobal.com>
32481 Date: Fri, 06 Dec 2002 16:47:42 -0800
32482 [perl #18932]
32483 Branch: perl
32484 ! embed.fnc embed.h global.sym perl.h proto.h regcomp.c scope.c
32485 ! scope.h
32486____________________________________________________________________________
32487[ 18311] By: hv on 2002/12/17 00:52:05
32488 Log: Subject: [PATCH] Re: [jhi@iki.fi: enums are not nums]
32489 From: Dave Mitchell <davem@fdgroup.com>
32490 Date: Sat, 14 Dec 2002 19:16:49 +0000
32491 Message-ID: <20021214191649.B3992@fdgroup.com>
32492 Branch: perl
32493 ! embed.fnc pad.c pad.h pod/perlintern.pod proto.h
32494____________________________________________________________________________
32495[ 18310] By: hv on 2002/12/17 00:51:46
32496 Log: regen-headers to get new API docs from #18306
32497 Branch: perl
32498 ! pod/perlapi.pod
32499____________________________________________________________________________
32500[ 18308] By: rgs on 2002/12/16 22:06:23
32501 Log: Subject: [PATCH] Re: [perl #19017] lexical "my" variables not visible in debugger "x" command
32502 From: peter@PSDT.com (Peter Scott)
32503 Date: 12 Dec 2002 18:13:17 -0000
32504 Message-ID: <20021212181317.50538.qmail@onion.perl.org>
32505 (fix bug [perl #19058])
32506 Branch: perl
32507 ! lib/perl5db.pl
32508____________________________________________________________________________
32509[ 18307] By: rgs on 2002/12/16 22:01:14
32510 Log: Subject: [PATCH] Re: [perl #19017] lexical "my" variables not visible in debugger "x" command
32511 From: Dave Mitchell <davem@fdgroup.com>
32512 Date: Thu, 12 Dec 2002 23:42:35 +0000
32513 Message-ID: <20021212234235.A29245@fdgroup.com>
32514 and
32515 Date: Sat, 14 Dec 2002 19:16:38 +0000
32516 Message-ID: <20021214191638.A3992@fdgroup.com>
32517 Branch: perl
32518 ! embed.fnc embed.h pod/perlfunc.pod pod/perlintern.pod pp_ctl.c
32519 ! proto.h t/op/eval.t
32520____________________________________________________________________________
32521[ 18306] By: sky on 2002/12/16 21:41:40
32522 Log: More documentation of obscure flags is good, even if the
32523 documentation might be not so good. Atleast it's not false!
32524 Documents the flags one can give to perl_clone
32525 Branch: perl
32526 ! sv.c
32527____________________________________________________________________________
32528[ 18305] By: merijn on 2002/12/16 10:53:19
32529 Log: Enough changes to Configure and metaunits warrant an update.
32530 Several small changes and three additions
32531 Branch: perl
32532 ! Porting/Glossary
32533____________________________________________________________________________
32534[ 18304] By: merijn on 2002/12/16 10:44:57
32535 Log: Redone #18011 from metaunits
32536 Branch: perl
32537 ! Configure
32538____________________________________________________________________________
32539[ 18303] By: merijn on 2002/12/16 10:38:20
32540 Log: backport change #18011
32541 Branch: metaconfig
32542 ! U/installdirs/installprefix.U
32543____________________________________________________________________________
32544[ 18302] By: rgs on 2002/12/14 22:34:25
32545 Log: Subject: Proper fix for CvOUTSIDE weak refcounting
32546 From: Dave Mitchell <davem@fdgroup.com>
32547 Date: Tue, 10 Dec 2002 01:26:44 +0000
32548 Message-ID: <20021210012644.A7843@fdgroup.com>
32549 Branch: perl
32550 ! cv.h dump.c embed.fnc ext/B/B/Deparse.pm ext/B/defsubs_h.PL
32551 ! ext/Devel/Peek/Peek.t op.c pad.c pod/perlapi.pod
32552 ! pod/perlintern.pod pp_ctl.c sv.c t/op/closure.t
32553____________________________________________________________________________
32554[ 18301] By: jhi on 2002/12/13 02:12:54
32555 Log: Bad location of '==>' under the debugger,
32556 apply the patch.
32557 Branch: maint-5.8/perl
32558 ! lib/perl5db.pl
32559____________________________________________________________________________
32560[ 18300] By: rgs on 2002/12/12 20:40:22
32561 Log: Subject: [patch] typo in perlop
32562 From: andreas.koenig@anima.de (Andreas J. Koenig)
32563 Date: Wed, 11 Dec 2002 21:31:14 +0100
32564 Message-ID: <m3k7igjo19.fsf@k242.linux.bogus>
32565 Branch: perl
32566 ! pod/perlop.pod
32567____________________________________________________________________________
32568[ 18299] By: rgs on 2002/12/12 20:35:29
32569 Log: Integrate from maint-5.8 : changes 18290-1, 18293-5, 18297
32570 Branch: perl
32571 !> ext/POSIX/POSIX.pod ext/POSIX/t/is.t ext/POSIX/t/posix.t
32572 !> pod/perlre.pod pod/perlretut.pod regexec.c t/op/pat.t
32573 !> t/op/subst.t
32574____________________________________________________________________________
32575[ 18298] By: rgs on 2002/12/12 20:00:36
32576 Log: Whitespace and indentation fix in the output of B::Debug.
32577 Branch: perl
32578 ! ext/B/B/Debug.pm
32579____________________________________________________________________________
32580[ 18297] By: jhi on 2002/12/12 19:19:56
32581 Log: Warn about the non-portabilities of strftime.
32582 Branch: maint-5.8/perl
32583 ! ext/POSIX/POSIX.pod
32584____________________________________________________________________________
32585[ 18296] By: jhi on 2002/12/12 18:21:12
32586 Log: Integrate:
32587 [ 18292]
32588 Update to Scalar-List-Utils 1.09
32589 Branch: maint-5.8/perl
32590 !> ext/List/Util/ChangeLog ext/List/Util/Util.xs
32591 !> ext/List/Util/lib/List/Util.pm
32592____________________________________________________________________________
32593[ 18295] By: jhi on 2002/12/12 18:06:57
32594 Log: Until proven otherwise I don't think any of the strftime
32595 formats %c, %z, and %Z can be tested portably.
32596 Branch: maint-5.8/perl
32597 ! ext/POSIX/t/posix.t
32598____________________________________________________________________________
32599[ 18294] By: jhi on 2002/12/12 14:34:58
32600 Log: Resolve Abe's failing is.t, diagnosed by Sarathy
32601 (setlocale(LC_ALL, 'C') was the key). Document that
32602 locale settings may be hazardous to your isxxxx() health.
32603 (Surgeon General warning).
32604 Branch: maint-5.8/perl
32605 ! ext/POSIX/POSIX.pod ext/POSIX/t/is.t
32606____________________________________________________________________________
32607[ 18293] By: jhi on 2002/12/12 13:57:56
32608 Log: Resolve [#perl 15774] by fiat: simply document that
32609 \C in lookbehind is unsupported.
32610 Branch: maint-5.8/perl
32611 ! pod/perlre.pod pod/perlretut.pod
32612____________________________________________________________________________
32613[ 18292] By: gbarr on 2002/12/12 09:23:04
32614 Log: Update to Scalar-List-Utils 1.09
32615 Branch: perl
32616 ! ext/List/Util/ChangeLog ext/List/Util/Util.xs
32617 ! ext/List/Util/lib/List/Util.pm
32618____________________________________________________________________________
32619[ 18291] By: jhi on 2002/12/11 20:13:30
32620 Log: has already been fixed; add its test.
32621 Branch: maint-5.8/perl
32622 ! t/op/subst.t
32623____________________________________________________________________________
32624[ 18290] By: jhi on 2002/12/11 18:56:01
32625 Log: Fix [perl #15763].
32626 Branch: maint-5.8/perl
32627 ! regexec.c t/op/pat.t
32628____________________________________________________________________________
32629[ 18289] By: gsar on 2002/12/11 18:55:36
32630 Log: integrate repository.pod change from mainline
32631 Branch: maint-5.8/perl
32632 !> Porting/repository.pod
32633____________________________________________________________________________
32634[ 18288] By: gsar on 2002/12/11 18:54:28
32635 Log: integrate repository.pod changes from mainline
32636 Branch: maint-5.6/perl
32637 !> Porting/repository.pod
32638____________________________________________________________________________
32639[ 18287] By: gsar on 2002/12/11 18:53:07
32640 Log: this has been incorrect for a while now, and has changed
32641 again recently
32642 Branch: perl
32643 ! Porting/repository.pod
32644____________________________________________________________________________
32645[ 18286] By: jhi on 2002/12/11 14:43:36
32646 Log: Integrate:
32647 [ 18272]
32648 RT#15950
32649
32650 Subject: [PATCH] Typo in Term::ANSIColor
32651 Date: Fri, 2 Aug 2002 14:13:19 -0700 (PDT)
32652 From: "Mr. Nobody" <mrnobo1024 at yahoo.com>
32653
32654 [ 18277]
32655 Subject: [PATCH perl@18251] VMS build update
32656 Message-ID: <3DF56BE2.9000300@mac.com>
32657 Date: Mon, 09 Dec 2002 22:21:54 -0600
32658 From: "Craig A. Berry" <craigberry@mac.com>
32659
32660 [ 18278]
32661 Subject: Re: default lib dir should examine $Config{installstyle}
32662 Date: Tue, 10 Dec 2002 09:45:19 -0500 (EST)
32663 From: Andy Dougherty <doughera@lafayette.edu>
32664 Message-ID: <Pine.SOL.4.10.10212100925400.17526-100000@maxwell.phys.lafayette.edu>
32665
32666 [ 18279]
32667 Subject: Re: ANSIColor 1.06 released
32668 Version bump only after typo fix to sync with CPAN
32669
32670 [ 18282]
32671 Subject: Remove stale e-mail addresses
32672 From: Andy Dougherty <doughera@lafayette.edu>
32673 Date: Wed, 20 Nov 2002 09:40:33 -0500 (EST)
32674 Message-ID: <Pine.SOL.4.10.10211200938110.19608-100000@maxwell.phys.lafayette.edu>
32675
32676 [ 18283]
32677 More email addresses for #18282
32678
32679 [ 18284]
32680 One more email address for #18282
32681 Branch: maint-5.8/perl
32682 !> (integrate 31 files)
32683____________________________________________________________________________
32684[ 18285] By: hv on 2002/12/11 10:35:01
32685 Log: Subject: [PATCH] Re: Precedence of ? :
32686 From: Stephen McCamant <smcc@mit.edu>
32687 Date: Tue, 10 Dec 2002 00:57:07 -0500 (EST)
32688 Message-Id: <20021210055707.974F073CCC@syllepsis>
32689 Branch: perl
32690 ! perly.c perly.y perly_c.diff pod/perldelta.pod t/op/cond.t
32691 ! vms/perly_c.vms
32692____________________________________________________________________________
32693[ 18284] By: hv on 2002/12/11 10:21:12
32694 Log: One more email address for #18282
32695 Branch: perl
32696 ! lib/Pod/Perldoc.pm
32697____________________________________________________________________________
32698[ 18283] By: hv on 2002/12/11 10:18:07
32699 Log: More email addresses for #18282
32700 Branch: perl
32701 ! hints/aix.sh hints/apollo.sh hints/epix.sh hints/freebsd.sh
32702 ! hints/irix_6.sh hints/isc.sh hints/isc_2.sh hints/machten.sh
32703 ! hints/machten_2.sh hints/openbsd.sh hints/os2.sh
32704 ! hints/os390.sh hints/sunos_4_1.sh hints/titanos.sh
32705 ! hints/ultrix_4.sh hints/umips.sh hints/utekv.sh
32706____________________________________________________________________________
32707[ 18282] By: hv on 2002/12/11 10:16:05
32708 Log: Subject: Remove stale e-mail addresses
32709 From: Andy Dougherty <doughera@lafayette.edu>
32710 Date: Wed, 20 Nov 2002 09:40:33 -0500 (EST)
32711 Message-ID: <Pine.SOL.4.10.10211200938110.19608-100000@maxwell.phys.lafayette.edu>
32712 Branch: perl
32713 ! Porting/pumpkin.pod configure.gnu
32714 ! ext/ODBM_File/hints/dec_osf.pl ext/ODBM_File/hints/hpux.pl
32715 ! ext/ODBM_File/hints/ultrix.pl ext/SDBM_File/sdbm/README.too
32716 ! lib/File/Spec.pm perly.fixer pod/checkpods.PL
32717____________________________________________________________________________
32718[ 18281] By: hv on 2002/12/11 09:59:31
32719 Log: Integrate from maint-5.8 #18156, #18218.
32720 Branch: perl
32721 !> lib/Unicode/UCD.t lib/unicore/Category.pl
32722 !> lib/unicore/SpecialCasing.txt lib/unicore/UnicodeData.txt
32723 !> lib/unicore/lib/C.pl lib/unicore/lib/Cf.pl
32724 !> lib/unicore/lib/Cntrl.pl lib/unicore/lib/Graph.pl
32725 !> lib/unicore/lib/P.pl lib/unicore/lib/Pd.pl
32726 !> lib/unicore/lib/Print.pl lib/unicore/lib/Punct.pl t/op/pack.t
32727____________________________________________________________________________
32728[ 18280] By: rgs on 2002/12/10 21:30:10
32729 Log: Integrate from the maint-5.8/ branch :
32730 changes 18219, 18236, 18242-3, 18247-8,
32731 18253-5, 18257, 18273-6
32732 Branch: perl
32733 +> t/op/lc_user.t
32734 !> MANIFEST hints/irix_6.sh lib/File/Copy.pm lib/utf8_heavy.pl
32735 !> pod/perldiag.pod pod/perlguts.pod pod/perlsec.pod
32736 !> pod/perlunicode.pod pp.c t/op/lc.t t/op/pat.t t/op/split.t
32737 !> t/uni/tr_utf8.t
32738____________________________________________________________________________
32739[ 18279] By: merijn on 2002/12/10 14:10:03
32740 Log: Subject: Re: ANSIColor 1.06 released
32741 Version bump only after typo fix to sync with CPAN
32742 Branch: perl
32743 ! lib/Term/ANSIColor.pm
32744____________________________________________________________________________
32745[ 18278] By: merijn on 2002/12/10 14:05:25
32746 Log: Subject: Re: default lib dir should examine $Config{installstyle}
32747 Date: Tue, 10 Dec 2002 09:45:19 -0500 (EST)
32748 From: Andy Dougherty <doughera@lafayette.edu>
32749 Message-ID: <Pine.SOL.4.10.10212100925400.17526-100000@maxwell.phys.lafayette.edu>
32750 Branch: metaconfig
32751 ! U/installdirs/installstyle.U
32752____________________________________________________________________________
32753[ 18277] By: merijn on 2002/12/10 08:46:05
32754 Log: Subject: [PATCH perl@18251] VMS build update
32755 Message-ID: <3DF56BE2.9000300@mac.com>
32756 Date: Mon, 09 Dec 2002 22:21:54 -0600
32757 From: "Craig A. Berry" <craigberry@mac.com>
32758 Branch: perl
32759 ! configure.com ext/Time/HiRes/Makefile.PL
32760 ! vms/descrip_mms.template
32761____________________________________________________________________________
32762[ 18276] By: jhi on 2002/12/09 23:49:14
32763 Log: Move the tests added to pat.t in #18248 to lc.t.
32764 Branch: maint-5.8/perl
32765 ! t/op/lc.t t/op/pat.t
32766____________________________________________________________________________
32767[ 18275] By: jhi on 2002/12/09 23:21:58
32768 Log: Add Nick Clark's test case for [perl #18915].
32769 (The bug was fixed by change #18266.)
32770 Branch: maint-5.8/perl
32771 ! t/op/split.t
32772____________________________________________________________________________
32773[ 18274] By: jhi on 2002/12/09 23:19:57
32774 Log: test.pl-ise t/op/split.t
32775 Branch: maint-5.8/perl
32776 ! t/op/split.t
32777____________________________________________________________________________
32778[ 18273] By: jhi on 2002/12/09 22:48:39
32779 Log: Add Nick Clark's test case for [perl #18931].
32780 (The bug was fixed by change #18266.)
32781 Branch: maint-5.8/perl
32782 ! t/op/lc.t
32783____________________________________________________________________________
32784[ 18272] By: merijn on 2002/12/09 15:31:28
32785 Log: RT#15950
32786
32787 Subject: [PATCH] Typo in Term::ANSIColor
32788 Date: Fri, 2 Aug 2002 14:13:19 -0700 (PDT)
32789 From: "Mr. Nobody" <mrnobo1024 at yahoo.com>
32790 Branch: perl
32791 ! lib/Term/ANSIColor.pm
32792____________________________________________________________________________
32793[ 18271] By: jhi on 2002/12/09 02:41:11
32794 Log: Integrate:
32795 [ 18249]
32796 Suppress a compilation warning reported by Jarkko
32797 (variable initialization skipped by goto).
32798
32799 [ 18250]
32800 Fix bug #18874, essentially by reverting change #11890.
32801 Add a regression test for it.
32802
32803 [ 18251]
32804 Fix two cases of buffer overflow in the lexer.
32805
32806 [ 18259]
32807 Subject: [PATCH] Re: [perl #18651] Hash::Util's lock_key() breaks hash
32808 From: Nicholas Clark <nick@unfortu.net>
32809 Date: Mon, 2 Dec 2002 21:48:29 +0000
32810 Message-ID: <20021202214828.GA284@Bagpuss.unfortu.net>
32811
32812 [ 18260]
32813 Document that $ENV{TERM} may produce taint failures.
32814 Subject: Re: [perl #18717] spurious failures in regression test
32815 From: Slaven Rezic <slaven.rezic@berlin.de>
32816 Date: 29 Nov 2002 22:11:46 +0100
32817 Message-ID: <87hee0nkrx.fsf@vran.herceg.de>
32818
32819 [ 18261]
32820 Change the set of characters that are considered to be
32821 safe in $ENV{TERM} for taint checkings.
32822
32823 [ 18262]
32824 getservbyport() should accept an empty string as its
32825 proto argument (as does getservbyname()).
32826
32827 Subject: Re: Is this a bug or am I being stupid?
32828 From: Slaven Rezic <slaven.rezic@berlin.de>
32829 Date: 08 Dec 2002 01:54:37 +0100
32830 Message-ID: <87znrhl48i.fsf@vran.herceg.de>
32831
32832 [ 18263]
32833 Subject: Re: [perl #18888] $Exporter::Verbose=1 does not work for testing, $Heavy::Verbose is not setting the value to $Exporter::Verbose
32834 From: Slaven Rezic <slaven.rezic@berlin.de>
32835 Date: 08 Dec 2002 01:31:45 +0100
32836 Message-ID: <874r9pmjv2.fsf@vran.herceg.de>
32837
32838 [ 18264]
32839 Subject: Re: [perl #18165] "0" fails as right-hand argument to ..
32840 From: Slaven Rezic <slaven.rezic@berlin.de>
32841 Date: 30 Nov 2002 00:07:05 +0100
32842 Message-ID: <8765ugnffq.fsf@vran.herceg.de>
32843
32844 [ 18265]
32845 Subject: Re: [perl #18927] barewords with no errors
32846 From: Abe Timmerman <abe@ztreet.demon.nl>
32847 Date: Sun, 8 Dec 2002 17:12:56 +0100
32848 Message-Id: <200212081712.56102.abe@ztreet.demon.nl>
32849
32850 [ 18266]
32851 Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
32852 From: Abhijit Menon-Sen <ams@wiw.org>
32853 Date: Wed, 6 Nov 2002 19:38:11 +0530
32854 Message-ID: <20021106193811.E20858@lustre.dyn.wiw.org>
32855
32856 [ 18267]
32857 Subject: Re: [perl #18238] timezone and gmt offset as output by POSIX::strftime() are sometimes wrong
32858 From: Slaven Rezic <slaven.rezic@berlin.de>
32859 Date: 09 Nov 2002 23:21:16 +0100
32860 Message-ID: <874raqz8o3.fsf@vran.herceg.de>
32861
32862 [ 18268]
32863 fix #18266 sprintf format mismatch
32864
32865 [ 18269]
32866 Subject: Re: Bug in Filter::Simple
32867 From: Slaven Rezic <slaven.rezic@berlin.de>
32868 Date: 07 Nov 2002 10:01:41 +0100
32869 Message-ID: <87of91u51m.fsf@vran.herceg.de>
32870
32871 [ 18270]
32872 Subject: [perl #18256] xsubpp can make nested comments in C code
32873 From: Nicholas Clark (via RT) <perlbug@perl.org>
32874 Date: 7 Nov 2002 14:58:14 -0000
32875 Message-Id: <rt-18256-41218.19.7625495305233@bugs6.perl.org>
32876
32877 (plus regen Configure)
32878 Branch: maint-5.8/perl
32879 ! Configure config_h.SH
32880 !> ext/Filter/Util/Call/Call.xs ext/Filter/t/call.t
32881 !> ext/POSIX/t/posix.t hv.c lib/English.pm lib/English.t
32882 !> lib/Exporter/Heavy.pm lib/ExtUtils/xsubpp lib/Hash/Util.t
32883 !> pod/perldiag.pod pp_ctl.c pp_sys.c regcomp.c t/cmd/for.t
32884 !> t/comp/parser.t t/lib/strict/subs t/op/lc.t taint.c toke.c
32885 !> util.c
32886____________________________________________________________________________
32887[ 18270] By: hv on 2002/12/09 00:25:26
32888 Log: Subject: [perl #18256] xsubpp can make nested comments in C code
32889 From: Nicholas Clark (via RT) <perlbug@perl.org>
32890 Date: 7 Nov 2002 14:58:14 -0000
32891 Message-Id: <rt-18256-41218.19.7625495305233@bugs6.perl.org>
32892 Branch: perl
32893 ! lib/ExtUtils/xsubpp
32894____________________________________________________________________________
32895[ 18269] By: hv on 2002/12/09 00:19:33
32896 Log: Subject: Re: Bug in Filter::Simple
32897 From: Slaven Rezic <slaven.rezic@berlin.de>
32898 Date: 07 Nov 2002 10:01:41 +0100
32899 Message-ID: <87of91u51m.fsf@vran.herceg.de>
32900 Branch: perl
32901 ! ext/Filter/Util/Call/Call.xs ext/Filter/t/call.t
32902____________________________________________________________________________
32903[ 18268] By: hv on 2002/12/09 00:14:58
32904 Log: fix #18266 sprintf format mismatch
32905 Branch: perl
32906 ! regcomp.c
32907____________________________________________________________________________
32908[ 18267] By: hv on 2002/12/09 00:10:09
32909 Log: Subject: Re: [perl #18238] timezone and gmt offset as output by POSIX::strftime() are sometimes wrong
32910 From: Slaven Rezic <slaven.rezic@berlin.de>
32911 Date: 09 Nov 2002 23:21:16 +0100
32912 Message-ID: <874raqz8o3.fsf@vran.herceg.de>
32913 Branch: perl
32914 ! config_h.SH ext/POSIX/t/posix.t util.c
32915____________________________________________________________________________
32916[ 18266] By: hv on 2002/12/09 00:02:57
32917 Log: Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
32918 From: Abhijit Menon-Sen <ams@wiw.org>
32919 Date: Wed, 6 Nov 2002 19:38:11 +0530
32920 Message-ID: <20021106193811.E20858@lustre.dyn.wiw.org>
32921 Branch: perl
32922 ! regcomp.c t/op/lc.t
32923____________________________________________________________________________
32924[ 18265] By: rgs on 2002/12/08 22:10:45
32925 Log: Subject: Re: [perl #18927] barewords with no errors
32926 From: Abe Timmerman <abe@ztreet.demon.nl>
32927 Date: Sun, 8 Dec 2002 17:12:56 +0100
32928 Message-Id: <200212081712.56102.abe@ztreet.demon.nl>
32929 Branch: perl
32930 ! t/lib/strict/subs
32931____________________________________________________________________________
32932[ 18264] By: rgs on 2002/12/08 22:04:39
32933 Log: Subject: Re: [perl #18165] "0" fails as right-hand argument to ..
32934 From: Slaven Rezic <slaven.rezic@berlin.de>
32935 Date: 30 Nov 2002 00:07:05 +0100
32936 Message-ID: <8765ugnffq.fsf@vran.herceg.de>
32937 Branch: perl
32938 ! pp_ctl.c t/cmd/for.t
32939____________________________________________________________________________
32940[ 18263] By: rgs on 2002/12/08 21:56:13
32941 Log: Subject: Re: [perl #18888] $Exporter::Verbose=1 does not work for testing, $Heavy::Verbose is not setting the value to $Exporter::Verbose
32942 From: Slaven Rezic <slaven.rezic@berlin.de>
32943 Date: 08 Dec 2002 01:31:45 +0100
32944 Message-ID: <874r9pmjv2.fsf@vran.herceg.de>
32945 Branch: perl
32946 ! lib/Exporter/Heavy.pm
32947____________________________________________________________________________
32948[ 18262] By: rgs on 2002/12/08 20:31:42
32949 Log: getservbyport() should accept an empty string as its
32950 proto argument (as does getservbyname()).
32951
32952 Subject: Re: Is this a bug or am I being stupid?
32953 From: Slaven Rezic <slaven.rezic@berlin.de>
32954 Date: 08 Dec 2002 01:54:37 +0100
32955 Message-ID: <87znrhl48i.fsf@vran.herceg.de>
32956 Branch: perl
32957 ! pp_sys.c
32958____________________________________________________________________________
32959[ 18261] By: rgs on 2002/12/08 20:17:37
32960 Log: Change the set of characters that are considered to be
32961 safe in $ENV{TERM} for taint checkings.
32962 Branch: perl
32963 ! taint.c
32964____________________________________________________________________________
32965[ 18260] By: rgs on 2002/12/08 20:14:57
32966 Log: Document that $ENV{TERM} may produce taint failures.
32967 Subject: Re: [perl #18717] spurious failures in regression test
32968 From: Slaven Rezic <slaven.rezic@berlin.de>
32969 Date: 29 Nov 2002 22:11:46 +0100
32970 Message-ID: <87hee0nkrx.fsf@vran.herceg.de>
32971 Branch: perl
32972 ! pod/perldiag.pod
32973____________________________________________________________________________
32974[ 18259] By: rgs on 2002/12/08 19:34:34
32975 Log: Subject: [PATCH] Re: [perl #18651] Hash::Util's lock_key() breaks hash
32976 From: Nicholas Clark <nick@unfortu.net>
32977 Date: Mon, 2 Dec 2002 21:48:29 +0000
32978 Message-ID: <20021202214828.GA284@Bagpuss.unfortu.net>
32979 Branch: perl
32980 ! hv.c lib/Hash/Util.t
32981____________________________________________________________________________
32982[ 18258] By: jhi on 2002/12/08 15:24:00
32983 Log: Retract #18252 and #18256.
32984 Branch: maint-5.8/perl
32985 ! hv.c lib/Hash/Util.t regcomp.c t/op/lc.t
32986____________________________________________________________________________
32987[ 18257] By: jhi on 2002/12/07 22:38:49
32988 Log: Tiny doc tweak from Hugo for [perl #16783].
32989 Branch: maint-5.8/perl
32990 ! pod/perlsec.pod
32991____________________________________________________________________________
32992[ 18256] By: jhi on 2002/12/07 18:24:27
32993 Log: Subject: [PATCH] Re: [perl #18651] Hash::Util's lock_key() breaks hash
32994 From: Nicholas Clark <nick@unfortu.net>
32995 Date: Mon, 2 Dec 2002 21:48:29 +0000
32996 Message-ID: <20021202214828.GA284@Bagpuss.unfortu.net>
32997
32998 (the pp_sys.c and util.c were accidentally open,
32999 but luckily unmodified)
33000 Branch: maint-5.8/perl
33001 ! hv.c lib/Hash/Util.t pp_sys.c util.c
33002____________________________________________________________________________
33003[ 18255] By: jhi on 2002/12/07 16:57:32
33004 Log: The [perl #16843] has been fixed, add its test.
33005 Branch: maint-5.8/perl
33006 ! t/uni/tr_utf8.t
33007____________________________________________________________________________
33008[ 18254] By: jhi on 2002/12/07 16:26:27
33009 Log: Add user-definable To-mappings. (So if you don't agree
33010 with the Unicode mappings, you can make your own.)
33011 Resolves [perl #3741].
33012 Branch: maint-5.8/perl
33013 + t/op/lc_user.t
33014 ! MANIFEST lib/utf8_heavy.pl pod/perldiag.pod
33015 ! pod/perlunicode.pod
33016____________________________________________________________________________
33017[ 18253] By: jhi on 2002/12/07 15:35:43
33018 Log: test.pl-ise t/op/lc.t.
33019 Branch: maint-5.8/perl
33020 ! t/op/lc.t
33021____________________________________________________________________________
33022[ 18252] By: jhi on 2002/12/06 22:19:15
33023 Log: Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
33024 From: Abhijit Menon-Sen <ams@wiw.org>
33025 To: perl5-porters@perl.org
33026 Date: Wed, 6 Nov 2002 19:38:11 +0530
33027 Message-ID: <20021106193811.E20858@lustre.dyn.wiw.org>
33028 Branch: maint-5.8/perl
33029 ! regcomp.c t/op/lc.t
33030____________________________________________________________________________
33031[ 18251] By: rgs on 2002/12/06 21:27:55
33032 Log: Fix two cases of buffer overflow in the lexer.
33033 Branch: perl
33034 ! t/comp/parser.t toke.c
33035____________________________________________________________________________
33036[ 18250] By: rgs on 2002/12/06 20:44:26
33037 Log: Fix bug #18874, essentially by reverting change #11890.
33038 Add a regression test for it.
33039 Branch: perl
33040 ! lib/English.pm lib/English.t
33041____________________________________________________________________________
33042[ 18249] By: rgs on 2002/12/06 20:42:01
33043 Log: Suppress a compilation warning reported by Jarkko
33044 (variable initialization skipped by goto).
33045 Branch: perl
33046 ! toke.c
33047____________________________________________________________________________
33048[ 18248] By: jhi on 2002/12/06 13:58:05
33049 Log: A test for [perl #18857] (that was fixed by #18107) from Nick Clark.
33050 Branch: maint-5.8/perl
33051 ! t/op/pat.t
33052____________________________________________________________________________
33053[ 18247] By: jhi on 2002/12/06 13:40:10
33054 Log: More comments and robustness in pp_ucfirst() and pp_lcfirst().
33055 Branch: maint-5.8/perl
33056 ! pp.c
33057____________________________________________________________________________
33058[ 18246] By: pudge on 2002/12/04 12:51:38
33059 Log: Update Changes, Makefile.mk
33060 Branch: maint-5.6/macperl
33061 ! macos/Changes macos/Makefile.mk
33062____________________________________________________________________________
33063[ 18245] By: nick on 2002/12/04 10:33:38
33064 Log: Integrate mainline
33065 Branch: perlio
33066 +> ext/POSIX/t/is.t lib/Pod/Perldoc.pm lib/Pod/Perldoc/BaseTo.pm
33067 +> lib/Pod/Perldoc/GetOptsOO.pm lib/Pod/Perldoc/ToChecker.pm
33068 +> lib/Pod/Perldoc/ToMan.pm lib/Pod/Perldoc/ToNroff.pm
33069 +> lib/Pod/Perldoc/ToPod.pm lib/Pod/Perldoc/ToRtf.pm
33070 +> lib/Pod/Perldoc/ToText.pm lib/Pod/Perldoc/ToTk.pm
33071 +> lib/Pod/Perldoc/ToXml.pm lib/Pod/Perldoc/t/checkerbasic.t
33072 +> lib/Pod/Perldoc/t/perldocbasic.t lib/Pod/Perldoc/t/textbasic.t
33073 +> lib/Pod/PlainText.pm pod/perldoc.pod regen.pl regen_headers.pl
33074 +> t/comp/parser.t
33075 !> (integrate 138 files)
33076____________________________________________________________________________
33077[ 18244] By: gsar on 2002/12/04 08:20:20
33078 Log: integrate macperl-5.6 branch change (DynaLoader fix)
33079 Branch: maint-5.6/perl
33080 !> ext/DynaLoader/DynaLoader_pm.PL
33081____________________________________________________________________________
33082[ 18243] By: jhi on 2002/12/03 23:39:28
33083 Log: UTF8_IS_INVARIANT() is better then UTF8_IS_CONTINUED().
33084 (The latter matches also post-initial bytes of a multibyte.)
33085 Branch: maint-5.8/perl
33086 ! pod/perlguts.pod
33087____________________________________________________________________________
33088[ 18242] By: jhi on 2002/12/03 15:04:07
33089 Log: Slight tweaks on the XS-and-Unicode docs, inspired by [perl #17852].
33090 Branch: maint-5.8/perl
33091 ! pod/perlguts.pod pod/perlunicode.pod
33092____________________________________________________________________________
33093[ 18241] By: jhi on 2002/12/03 14:02:58
33094 Log: Integrate:
33095 [ 18239]
33096 Fix up #18229.
33097 Branch: maint-5.8/perl
33098 !> embedvar.h ext/threads/t/join.t perl.c perlapi.h perlvars.h
33099 !> pod/perlintern.pod
33100____________________________________________________________________________
33101[ 18240] By: nick on 2002/12/03 12:51:02
33102 Log: Avoid eqtime() wiping the file (as suggested by
33103 "Luis G. Uribe C." <GUribe@SoftHome.net>
33104 Branch: perlio
33105 ! lib/ExtUtils/Command.pm
33106____________________________________________________________________________
33107[ 18239] By: jhi on 2002/12/03 12:49:01
33108 Log: Fix up #18229.
33109 Branch: perl
33110 ! embedvar.h ext/threads/t/join.t perl.c perlapi.h perlvars.h
33111 ! pod/perlintern.pod
33112____________________________________________________________________________
33113[ 18238] By: pudge on 2002/12/03 03:32:47
33114 Log: Provide workaround for MacPerl bug #494368,
33115 a stack overflow problem in Text::ParseWords with
33116 very long lines. Better to have the old version
33117 of the module available just in case.
33118 Branch: maint-5.6/macperl
33119 + macos/lib/Text/ParseWords/Old.pm
33120____________________________________________________________________________
33121[ 18237] By: pudge on 2002/12/03 03:31:20
33122 Log: Fix (already in 5.8) for not modifying @INC
33123 Branch: maint-5.6/macperl
33124 ! ext/DynaLoader/DynaLoader_pm.PL
33125____________________________________________________________________________
33126[ 18236] By: jhi on 2002/12/03 01:25:45
33127 Log: According to Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
33128 gcc on IRIX (6.2) does not need and does indeed much better
33129 without -D_POSIX_C_SOURCE [perl #15128] (the inclusion of
33130 _POSIX_C_SOURCE in CFLAGS disables the definition of _SGIAPI
33131 and <sys/dirent.h> doesn't define struct dirent64,
33132 which causes reentr.c not to compile)
33133 Branch: maint-5.8/perl
33134 ! hints/irix_6.sh
33135____________________________________________________________________________
33136[ 18235] By: jhi on 2002/12/02 23:15:05
33137 Log: Update Changes.
33138 Branch: maint-5.8/perl
33139 ! Changes patchlevel.h
33140____________________________________________________________________________
33141[ 18234] By: jhi on 2002/12/02 22:30:41
33142 Log: Integrate:
33143 [ 17815]
33144 formatting cleanup and:
33145 Subject: Re: perl-5.8.0 on HP porting center
33146 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
33147 Date: Thu, 29 Aug 2002 12:23:31 +0200
33148 Message-Id: <20020829122221.0CA3.H.M.BRAND@hccnet.nl>
33149
33150 [ 18170]
33151 Move some tests from t/run/fresh_perl.t
33152 to the new t/comp/parser.t. The goal being to
33153 get rid of fresh_perl.t at some point.
33154
33155 [ 18228]
33156 integrate Pod-Perldoc-3.07. This replaces the original inline perldoc
33157 with a module-driven version, and separates out its docs.
33158
33159 [ 18229]
33160 $0 mofifying part I
33161
33162 Date: Sat, 30 Nov 2002 20:16:51 +0200
33163 From: Jarkko Hietaniemi <jhi@iki.fi>
33164 Subject: [PATCH] $0 modifying
33165 Message-ID: <20021130181651.GA5876@kosh.hut.fi>
33166
33167 [ 18230]
33168 $0 modifying part II (HP-UX only)
33169
33170 Date: Sat, 30 Nov 2002 20:16:51 +0200
33171 From: Jarkko Hietaniemi <jhi@iki.fi>
33172 Subject: [PATCH] $0 modifying
33173 Message-ID: <20021130181651.GA5876@kosh.hut.fi>
33174
33175 [ 18231]
33176 Subject: Re: [perl #15129] building a dynamically linked Perl 5.6.1 on HPUX 11.0
33177 Date: Mon, 2 Dec 2002 12:04:40 -0500 (EST)
33178 From: Andy Dougherty <doughera@lafayette.edu>
33179 Message-ID: <Pine.SOL.4.10.10212021200050.24023-100000@maxwell.phys.lafayette.edu>
33180
33181 [ 18232]
33182 Skip test #17 of lib/open.t when useperlio is not defined.
33183
33184 [ 18233]
33185 Fix bug #18573 : in a double-quoted string, a \c not followed
33186 by any character may corrupt memory due to reading past the
33187 end of the input buffer. Add a new error message corresponding
33188 to this case.
33189 Branch: maint-5.8/perl
33190 +> lib/Pod/Perldoc.pm lib/Pod/Perldoc/BaseTo.pm
33191 +> lib/Pod/Perldoc/GetOptsOO.pm lib/Pod/Perldoc/ToChecker.pm
33192 +> lib/Pod/Perldoc/ToMan.pm lib/Pod/Perldoc/ToNroff.pm
33193 +> lib/Pod/Perldoc/ToPod.pm lib/Pod/Perldoc/ToRtf.pm
33194 +> lib/Pod/Perldoc/ToText.pm lib/Pod/Perldoc/ToTk.pm
33195 +> lib/Pod/Perldoc/ToXml.pm lib/Pod/Perldoc/t/checkerbasic.t
33196 +> lib/Pod/Perldoc/t/perldocbasic.t lib/Pod/Perldoc/t/textbasic.t
33197 +> pod/perldoc.pod
33198 !> MANIFEST README.hpux ext/threads/t/join.t installperl
33199 !> lib/open.t makedef.pl mg.c perl.c pod/perldiag.pod
33200 !> pod/perlvar.pod sv.c t/comp/parser.t t/op/magic.t thread.h
33201 !> toke.c utils/perldoc.PL
33202____________________________________________________________________________
33203[ 18233] By: rgs on 2002/12/02 20:03:09
33204 Log: Fix bug #18573 : in a double-quoted string, a \c not followed
33205 by any character may corrupt memory due to reading past the
33206 end of the input buffer. Add a new error message corresponding
33207 to this case.
33208 Branch: perl
33209 ! pod/perldiag.pod t/comp/parser.t toke.c
33210____________________________________________________________________________
33211[ 18232] By: rgs on 2002/12/02 19:59:07
33212 Log: Skip test #17 of lib/open.t when useperlio is not defined.
33213 Branch: perl
33214 ! lib/open.t
33215____________________________________________________________________________
33216[ 18231] By: merijn on 2002/12/02 16:00:12
33217 Log: Subject: Re: [perl #15129] building a dynamically linked Perl 5.6.1 on HPUX 11.0
33218 Date: Mon, 2 Dec 2002 12:04:40 -0500 (EST)
33219 From: Andy Dougherty <doughera@lafayette.edu>
33220 Message-ID: <Pine.SOL.4.10.10212021200050.24023-100000@maxwell.phys.lafayette.edu>
33221 Branch: perl
33222 ! README.hpux
33223____________________________________________________________________________
33224[ 18230] By: merijn on 2002/12/02 15:45:31
33225 Log: $0 modifying part II (HP-UX only)
33226
33227 Date: Sat, 30 Nov 2002 20:16:51 +0200
33228 From: Jarkko Hietaniemi <jhi@iki.fi>
33229 Subject: [PATCH] $0 modifying
33230 Message-ID: <20021130181651.GA5876@kosh.hut.fi>
33231 Branch: perl
33232 ! mg.c
33233____________________________________________________________________________
33234[ 18229] By: merijn on 2002/12/02 15:43:16
33235 Log: $0 mofifying part I
33236
33237 Date: Sat, 30 Nov 2002 20:16:51 +0200
33238 From: Jarkko Hietaniemi <jhi@iki.fi>
33239 Subject: [PATCH] $0 modifying
33240 Message-ID: <20021130181651.GA5876@kosh.hut.fi>
33241 Branch: perl
33242 ! ext/threads/t/join.t makedef.pl mg.c perl.c pod/perlvar.pod
33243 ! sv.c t/op/magic.t thread.h
33244____________________________________________________________________________
33245[ 18228] By: hv on 2002/12/02 13:37:59
33246 Log: integrate Pod-Perldoc-3.07. This replaces the original inline perldoc
33247 with a module-driven version, and separates out its docs.
33248 Branch: perl
33249 + lib/Pod/Perldoc.pm lib/Pod/Perldoc/BaseTo.pm
33250 + lib/Pod/Perldoc/GetOptsOO.pm lib/Pod/Perldoc/ToChecker.pm
33251 + lib/Pod/Perldoc/ToMan.pm lib/Pod/Perldoc/ToNroff.pm
33252 + lib/Pod/Perldoc/ToPod.pm lib/Pod/Perldoc/ToRtf.pm
33253 + lib/Pod/Perldoc/ToText.pm lib/Pod/Perldoc/ToTk.pm
33254 + lib/Pod/Perldoc/ToXml.pm lib/Pod/Perldoc/t/checkerbasic.t
33255 + lib/Pod/Perldoc/t/perldocbasic.t lib/Pod/Perldoc/t/textbasic.t
33256 + pod/perldoc.pod
33257 ! MANIFEST utils/perldoc.PL
33258____________________________________________________________________________
33259[ 18227] By: jhi on 2002/12/02 13:23:48
33260 Log: Integrate:
33261 [ 18216]
33262 64bit Peek failure on HP-UX 11.00
33263
33264 Subject: Re: Smoke 18188
33265 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
33266 From: Slaven Rezic <slaven.rezic@berlin.de>
33267 Date: 28 Nov 2002 19:25:25 +0100
33268 Message-ID: <877kexsga2.fsf@vran.herceg.de>
33269
33270 [ 18217]
33271 Document the hint constants and where they're used.
33272
33273 [ 18224]
33274 Integrate PodParser-1.20, with matching tweaks to lib/Pod/t/latex.t
33275 and lib/Pod/t/utils.t to cater for simpler output text.
33276
33277 [ 18226]
33278 missed the new file from #18224
33279 Branch: maint-5.8/perl
33280 +> lib/Pod/PlainText.pm
33281 !> (integrate 37 files)
33282____________________________________________________________________________
33283[ 18226] By: hv on 2002/12/02 12:44:35
33284 Log: missed the new file from #18224
33285 Branch: perl
33286 + lib/Pod/PlainText.pm
33287 ! MANIFEST
33288____________________________________________________________________________
33289[ 18225] By: hv on 2002/12/02 03:09:42
33290 Log: integrate util.c fragment from #18200 to undef SA_RESTART on MacOS
33291 Branch: perl
33292 ! util.c
33293____________________________________________________________________________
33294[ 18224] By: hv on 2002/12/02 02:59:02
33295 Log: Integrate PodParser-1.20, with matching tweaks to lib/Pod/t/latex.t
33296 and lib/Pod/t/utils.t to cater for simpler output text.
33297 Branch: perl
33298 ! lib/Pod/Checker.pm lib/Pod/ParseUtils.pm lib/Pod/Usage.pm
33299 ! lib/Pod/t/latex.t lib/Pod/t/utils.t pod/podselect.PL
33300 ! t/pod/emptycmd.t t/pod/for.t t/pod/headings.t t/pod/include.t
33301 ! t/pod/included.t t/pod/lref.t t/pod/lref.xr
33302 ! t/pod/multiline_items.t t/pod/multiline_items.xr
33303 ! t/pod/nested_items.t t/pod/nested_seqs.t t/pod/oneline_cmds.t
33304 ! t/pod/pod2usage.t t/pod/pod2usage.xr t/pod/poderrs.t
33305 ! t/pod/poderrs.xr t/pod/podselect.t t/pod/podselect.xr
33306 ! t/pod/special_seqs.t t/pod/special_seqs.xr t/pod/testp2pt.pl
33307____________________________________________________________________________
33308[ 18223] By: hv on 2002/12/02 02:46:17
33309 Log: Subject: [PATCH] SvFAKE lexicals in scope for all of the sub
33310 From: Dave Mitchell <davem@fdgroup.com>
33311 Date: Mon, 25 Nov 2002 21:25:33 +0000
33312 Message-ID: <20021125212533.B29157@fdgroup.com>
33313 Branch: perl
33314 ! ext/Devel/Peek/Peek.t pad.c t/op/closure.t
33315____________________________________________________________________________
33316[ 18222] By: hv on 2002/12/02 02:23:28
33317 Log: #18221 broke t/op/eval.t
33318 Branch: perl
33319 ! t/op/eval.t
33320____________________________________________________________________________
33321[ 18221] By: hv on 2002/12/02 02:18:19
33322 Log: integrate 5.8-maint: changes #18174 18187 18189-92 18202 18209 18214-5
33323 Branch: perl
33324 +> ext/POSIX/t/is.t
33325 !> INSTALL MANIFEST README.os2 ext/Fcntl/t/syslfs.t
33326 !> ext/GDBM_File/GDBM_File.pm ext/GDBM_File/Makefile.PL
33327 !> lib/Unicode/UCD.pm lib/Unicode/UCD.t pod/perldiag.pod
33328 !> t/op/eval.t t/op/grep.t t/op/lfs.t t/op/subst.t
33329____________________________________________________________________________
33330[ 18220] By: hv on 2002/12/02 00:58:54
33331 Log: Subject: [PATCH 2nd attempt] allow evals to see the full lexical scope
33332 From: Dave Mitchell <davem@fdgroup.com>
33333 Date: Sun, 24 Nov 2002 22:19:06 +0000
33334 Message-ID: <20021124221906.A25386@fdgroup.com>
33335 Branch: perl
33336 ! cop.h cv.h dump.c embed.fnc embed.h ext/B/B.pm ext/B/B.xs
33337 ! ext/B/B/Bytecode.pm ext/B/B/C.pm ext/B/B/Debug.pm
33338 ! ext/Devel/Peek/Peek.t op.c pad.c pod/perlintern.pod pp_ctl.c
33339 ! pp_hot.c proto.h sv.c sv.h t/op/eval.t toke.c
33340____________________________________________________________________________
33341[ 18219] By: jhi on 2002/11/30 16:55:14
33342 Log: Integrate maint-5.6/macperl #17852.
33343 Branch: maint-5.8/perl
33344 !> lib/File/Copy.pm
33345____________________________________________________________________________
33346[ 18218] By: jhi on 2002/11/29 18:23:39
33347 Log: Add test from [perl #8026]
33348 Branch: maint-5.8/perl
33349 ! t/op/pack.t
33350____________________________________________________________________________
33351[ 18217] By: rgs on 2002/11/29 12:11:28
33352 Log: Document the hint constants and where they're used.
33353 Branch: perl
33354 ! ext/re/re.pm lib/File/Basename.pm lib/charnames.pm
33355 ! lib/filetest.pm lib/open.pm lib/overload.pm lib/vmsish.pm
33356 ! perl.h
33357____________________________________________________________________________
33358[ 18216] By: merijn on 2002/11/29 10:00:54
33359 Log: 64bit Peek failure on HP-UX 11.00
33360
33361 Subject: Re: Smoke 18188
33362 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
33363 From: Slaven Rezic <slaven.rezic@berlin.de>
33364 Date: 28 Nov 2002 19:25:25 +0100
33365 Message-ID: <877kexsga2.fsf@vran.herceg.de>
33366 Branch: perl
33367 ! ext/Devel/Peek/Peek.t
33368____________________________________________________________________________
33369[ 18215] By: jhi on 2002/11/29 00:32:10
33370 Log: perl #7887: Bad URL in README.os2
33371 Branch: maint-5.8/perl
33372 ! README.os2
33373____________________________________________________________________________
33374[ 18214] By: jhi on 2002/11/28 23:41:54
33375 Log: Two tests from perl #7806.
33376 Branch: maint-5.8/perl
33377 ! t/op/subst.t
33378____________________________________________________________________________
33379[ 18213] By: jhi on 2002/11/28 22:26:23
33380 Log: Unintended integratee from #18210.
33381 Branch: maint-5.8/perl
33382 - macos/config.h
33383____________________________________________________________________________
33384[ 18212] By: gsar on 2002/11/28 22:04:07
33385 Log: integrate macperl-5.6 changes
33386 Branch: maint-5.6/perl
33387 !> lib/File/Copy.pm util.c
33388____________________________________________________________________________
33389[ 18211] By: jhi on 2002/11/28 21:50:05
33390 Log: More pseudohashery.
33391 Branch: maint-5.8/perl
33392 ! lib/fields.t
33393____________________________________________________________________________
33394[ 18210] By: jhi on 2002/11/28 21:24:10
33395 Log: Integrate:
33396 [ 18200]
33397 Yet another approach to signal handling (Matthias)
33398
33399 (from maint-5.8/macperl)
33400 Branch: maint-5.8/perl
33401 +> macos/config.h
33402 !> util.c
33403____________________________________________________________________________
33404[ 18209] By: jhi on 2002/11/28 19:07:20
33405 Log: Add the test case from perl #9728.
33406 Branch: maint-5.8/perl
33407 ! t/op/eval.t
33408____________________________________________________________________________
33409[ 18208] By: jhi on 2002/11/28 16:57:01
33410 Log: Retry the #17920.
33411 Branch: maint-5.8/perl
33412 ! av.c embed.fnc embed.h ext/GDBM_File/GDBM_File.xs global.sym
33413 ! handy.h perl.c perl.h pod/perlrun.pod proto.h sv.c util.c
33414____________________________________________________________________________
33415[ 18207] By: jhi on 2002/11/28 16:49:00
33416 Log: Urque. Retract #18206 since it got two patches interleaved
33417 (the #17920, and an unfinished experimental patch).
33418 Branch: maint-5.8/perl
33419 ! av.c embed.fnc embed.h ext/GDBM_File/GDBM_File.xs
33420 ! ext/threads/t/join.t global.sym handy.h intrpvar.h makedef.pl
33421 ! mg.c perl.c perl.h pod/perlrun.pod pod/perlvar.pod sv.c
33422 ! t/op/magic.t thread.h util.c
33423____________________________________________________________________________
33424[ 18206] By: jhi on 2002/11/28 16:45:11
33425 Log: Integrate:
33426 [ 17920]
33427 LEAKTEST is dead, RIP
33428 Subject: Re: [perl #17197] SIGSEGV in perl 5.8.0 multithread build with -DLEAKTEST
33429 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
33430 Date: Mon, 23 Sep 2002 18:33:12 +0200
33431 Message-Id: <20020923182824.C7B6.H.M.BRAND@hccnet.nl>
33432
33433 (since LEAKTEST seems to be fundamentally obsolete,
33434 even maint-5.8 shouldn't keep flogging a dead feature)
33435 Branch: maint-5.8/perl
33436 ! ext/threads/t/join.t intrpvar.h makedef.pl mg.c perl.c
33437 ! pod/perlvar.pod sv.c t/op/magic.t thread.h
33438 !> av.c embed.fnc embed.h ext/GDBM_File/GDBM_File.xs global.sym
33439 !> handy.h perl.h pod/perlrun.pod util.c
33440____________________________________________________________________________
33441[ 18205] By: jhi on 2002/11/28 15:25:35
33442 Log: Another pseudohash usage.
33443 Branch: maint-5.8/perl
33444 ! lib/constant.t
33445____________________________________________________________________________
33446[ 18204] By: jhi on 2002/11/28 14:55:34
33447 Log: Integrate:
33448 [ 18203]
33449 Slight beauty tweak.
33450 Branch: maint-5.8/perl
33451 !> intrpvar.h
33452____________________________________________________________________________
33453[ 18203] By: jhi on 2002/11/28 14:54:34
33454 Log: Slight beauty tweak.
33455 Branch: perl
33456 ! intrpvar.h
33457____________________________________________________________________________
33458[ 18202] By: jhi on 2002/11/28 14:49:11
33459 Log: Add test for bug #18153.
33460 Branch: maint-5.8/perl
33461 ! t/op/grep.t
33462____________________________________________________________________________
33463[ 18201] By: pudge on 2002/11/28 06:01:31
33464 Log: Bump version, update Changes/resources
33465 Branch: maint-5.6/macperl
33466 ! macos/Changes macos/MPVersion.r macos/macperl/MacPerl.rsrc
33467____________________________________________________________________________
33468[ 18200] By: pudge on 2002/11/28 05:29:12
33469 Log: Yet another approach to signal handling (Matthias)
33470 Branch: macperl
33471 ! macos/config.h util.c
33472 Branch: maint-5.6/macperl
33473 ! macos/config.h util.c
33474 Branch: maint-5.8/macperl
33475 ! macos/config.h util.c
33476____________________________________________________________________________
33477[ 18199] By: pudge on 2002/11/28 05:20:16
33478 Log: Integrate maint-5.8/macperl/ from maint-5.8/perl/
33479 Branch: maint-5.8/macperl
33480 +> (branch 46 files)
33481 !> (integrate 448 files)
33482____________________________________________________________________________
33483[ 18198] By: pudge on 2002/11/28 04:31:03
33484 Log: Integrate macperl/ from perl/
33485 Branch: macperl
33486 +> (branch 48 files)
33487 - ext/Thread/thr5005.t vos/Makefile vos/build.cm
33488 - vos/compile_perl.cm vos/config.alpha.def vos/config.alpha.h
33489 - vos/config.ga.def vos/config.ga.h vos/config.pl
33490 - vos/configure_perl.cm vos/install_perl.cm vos/perl.bind
33491 - vos/test_vos_dummies.c vos/vos_dummies.c
33492 !> (integrate 501 files)
33493____________________________________________________________________________
33494[ 18197] By: jhi on 2002/11/28 04:14:27
33495 Log: Integrate:
33496 [ 18175]
33497 Subject: [Encode] 1.83 + bleedperl patch released
33498 From: Dan Kogai <dankogai@dan.co.jp>
33499 Date: Tue, 19 Nov 2002 03:18:44 +0900
33500 Message-Id: <2C132F6D-FB22-11D6-87FC-0003939A104C@dan.co.jp>
33501
33502 [ 18176]
33503 Subject: Re: [perl #18479] Error when no strict refs in effect
33504 From: Slaven Rezic <slaven.rezic@berlin.de>
33505 Date: 18 Nov 2002 22:50:04 +0100
33506 Message-ID: <87smxya6pf.fsf@vran.herceg.de>
33507
33508 [ 18177]
33509 add support for STASH and MAGIC information for REFs to sv_dump().
33510 Subject: [PATCH]
33511 From: Slaven Rezic <slaven.rezic@berlin.de>
33512 Date: Mon, 18 Nov 2002 11:09:51 +0100 (CET)
33513 Message-Id: <200211181009.gAIA9pFG034877@vran.herceg.de>
33514
33515 [ 18178]
33516 Subject: Re: Storable bug #1698
33517 From: Slaven Rezic <slaven.rezic@berlin.de>
33518 Date: 18 Nov 2002 10:41:36 +0100
33519 Message-ID: <87ptt343lb.fsf@vran.herceg.de>
33520
33521 [ 18179]
33522 Subject: [PATCH] UTF8 regexp {n} bug
33523 From: Inaba Hiroto <inaba@st.rim.or.jp>
33524 Date: Sat, 16 Nov 2002 19:23:00 +0900
33525 Message-ID: <3DD61C83.62FF9887@st.rim.or.jp>
33526
33527 [ 18182]
33528 Subject: #17171: ld flag for shrplib on OpenBSD
33529 Date: Wed, 11 Sep 2002 13:44:12 -0600 (MDT)
33530 From: "Todd C. Miller" <Todd.Miller at courtesan.com>
33531
33532 [ 18183]
33533 Subject: Re: [perl #18626] bug in perlipc man page
33534 From: Slaven Rezic <slaven.rezic@berlin.de>
33535 Date: 23 Nov 2002 21:23:20 +0100
33536 Message-ID: <87bs4gdohz.fsf@vran.herceg.de>
33537
33538 [ 18184]
33539 Subject: [PATCH] 2 Pod errors in perlop.pod
33540 From: andreas.koenig@anima.de (Andreas J. Koenig)
33541 Date: Mon, 25 Nov 2002 10:21:08 +0100
33542 Message-ID: <m31y5admyj.fsf@k242.linux.bogus>
33543
33544 Plus a few similar POD fixes
33545
33546 [ 18185]
33547 PerlFAQ sync.
33548
33549 [ 18186]
33550 Subject: DESTROY called in scalar context ?
33551 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
33552 Date: Tue, 29 Oct 2002 22:04:23 +0100
33553 Message-Id: <20021029220423.6f8e6600.rgarciasuarez@free.fr>
33554
33555 [ 18188]
33556 Subject: Re: [perl #18203] Recursive call in PerlIO_find_layer
33557 From: Slaven Rezic <slaven.rezic@berlin.de>
33558 Date: 03 Nov 2002 10:59:43 +0100
33559 Message-ID: <877kfvnfcg.fsf@vran.herceg.de>
33560 Branch: maint-5.8/perl
33561 ! Configure config_h.SH
33562 !> (integrate 41 files)
33563____________________________________________________________________________
33564[ 18196] By: pudge on 2002/11/28 03:39:14
33565 Log: Make installme more robust
33566 Branch: maint-5.6/macperl
33567 ! macos/macperl/Droplets/installme.plx
33568____________________________________________________________________________
33569[ 18195] By: pudge on 2002/11/28 03:38:25
33570 Log: Work around weird startup Apple events (Matthias, MacPerl Bug #543491)
33571 Branch: maint-5.6/macperl
33572 ! macos/macperl/MPAppleEvents.c macos/macperl/MPAppleEvents.h
33573 ! macos/macperl/MPMain.c
33574____________________________________________________________________________
33575[ 18194] By: pudge on 2002/11/28 03:35:41
33576 Log: Implement InitCursorCtl wrappers (Matthias, MacPerl Bug #526707)
33577 Branch: maint-5.6/macperl
33578 ! macos/SubLaunch.c macos/macish.c macos/macish.h
33579____________________________________________________________________________
33580[ 18193] By: pudge on 2002/11/28 03:20:15
33581 Log: Add first phase of Carbon support to macperl/ext/.
33582 Covers Components, Files, Gestalt, Memory, MoreFiles, Notification,
33583 Processes, Resources, Sound, Speech, Types, and the MacPerl module.
33584 Support functions and docs in Carbon/. Added MoreFiles source.
33585 Moved around and began to rewrite some test files.
33586 Branch: maint-5.6/macperl
33587 + macos/ext/Mac/Carbon/Carbon.h macos/ext/Mac/Carbon/Carbon.pm
33588 + macos/ext/Mac/Carbon/MANIFEST
33589 + macos/ext/Mac/Carbon/MANIFEST.SKIP
33590 + macos/ext/Mac/Carbon/Makefile.PL macos/ext/Mac/Carbon/README
33591 + macos/ext/Mac/Carbon/t/Carbon.t macos/ext/Mac/Carbon/typemap
33592 + macos/ext/Mac/Carbon/xsubpps/xsubpp-5.6.1
33593 + macos/ext/Mac/Carbon/xsubpps/xsubpp-5.8.0
33594 + macos/ext/Mac/Components/eg/ListComponents.plx
33595 + macos/ext/Mac/Components/t/Components.t
33596 + macos/ext/Mac/MoreFiles/MoreFilesSrc/DirectoryCopy.c
33597 + macos/ext/Mac/MoreFiles/MoreFilesSrc/DirectoryCopy.h
33598 + macos/ext/Mac/MoreFiles/MoreFilesSrc/FSpCompat.c
33599 + macos/ext/Mac/MoreFiles/MoreFilesSrc/FSpCompat.h
33600 + macos/ext/Mac/MoreFiles/MoreFilesSrc/FileCopy.c
33601 + macos/ext/Mac/MoreFiles/MoreFilesSrc/FileCopy.h
33602 + macos/ext/Mac/MoreFiles/MoreFilesSrc/FullPath.c
33603 + macos/ext/Mac/MoreFiles/MoreFilesSrc/FullPath.h
33604 + macos/ext/Mac/MoreFiles/MoreFilesSrc/IterateDirectory.c
33605 + macos/ext/Mac/MoreFiles/MoreFilesSrc/IterateDirectory.h
33606 + macos/ext/Mac/MoreFiles/MoreFilesSrc/MoreDesktopMgr.c
33607 + macos/ext/Mac/MoreFiles/MoreFilesSrc/MoreDesktopMgr.h
33608 + macos/ext/Mac/MoreFiles/MoreFilesSrc/MoreFiles.c
33609 + macos/ext/Mac/MoreFiles/MoreFilesSrc/MoreFiles.h
33610 + macos/ext/Mac/MoreFiles/MoreFilesSrc/MoreFilesExtras.c
33611 + macos/ext/Mac/MoreFiles/MoreFilesSrc/MoreFilesExtras.h
33612 + macos/ext/Mac/MoreFiles/MoreFilesSrc/Optimization.h
33613 + macos/ext/Mac/MoreFiles/MoreFilesSrc/OptimizationEnd.h
33614 + macos/ext/Mac/MoreFiles/MoreFilesSrc/Search.c
33615 + macos/ext/Mac/MoreFiles/MoreFilesSrc/Search.h
33616 + macos/ext/Mac/MoreFiles/eg/Application.plx
33617 + macos/ext/Mac/MoreFiles/eg/Iterate.plx
33618 + macos/ext/Mac/MoreFiles/t/MoreFiles.t
33619 + macos/ext/Mac/Processes/eg/Processes.plx
33620 + macos/ext/Mac/Sound/t/Scream.rsrc
33621 + macos/ext/Mac/Sound/t/Sound.t
33622 + macos/ext/Mac/Speech/eg/Cellist.plx
33623 + macos/ext/Mac/Speech/eg/DumpVoices.plx
33624 + macos/ext/Mac/Speech/eg/JukeBox.plx
33625 + macos/ext/Mac/Speech/eg/Phonemes.plx
33626 + macos/ext/Mac/Speech/t/Speech.t macos/ext/MacPerl/t/MacPerl.t
33627 - macos/ext/Mac/Components/t/ListComponents.t
33628 - macos/ext/Mac/MoreFiles/t/Application.t
33629 - macos/ext/Mac/MoreFiles/t/Iterate.t
33630 - macos/ext/Mac/Sound/t/Scream.t
33631 - macos/ext/Mac/Speech/t/Cellist.t
33632 - macos/ext/Mac/Speech/t/DumpVoices.t
33633 - macos/ext/Mac/Speech/t/JukeBox.t
33634 - macos/ext/Mac/Speech/t/Phonemes.t
33635 ! macos/ext/Mac/Components/Components.pm
33636 ! macos/ext/Mac/Components/Components.xs
33637 ! macos/ext/Mac/Components/Makefile.PL
33638 ! macos/ext/Mac/Files/Files.pm macos/ext/Mac/Files/Files.xs
33639 ! macos/ext/Mac/Files/Makefile.PL macos/ext/Mac/Files/t/Files.t
33640 ! macos/ext/Mac/Gestalt/Gestalt.pm
33641 ! macos/ext/Mac/Gestalt/Gestalt.xs
33642 ! macos/ext/Mac/Gestalt/Makefile.PL
33643 ! macos/ext/Mac/Gestalt/t/Gestalt.t
33644 ! macos/ext/Mac/Memory/Makefile.PL
33645 ! macos/ext/Mac/Memory/Memory.pm macos/ext/Mac/Memory/Memory.xs
33646 ! macos/ext/Mac/Memory/t/Memory.t macos/ext/Mac/MoreFiles/MF.xs
33647 ! macos/ext/Mac/MoreFiles/Makefile.PL
33648 ! macos/ext/Mac/MoreFiles/MoreFiles.pm
33649 ! macos/ext/Mac/Notification/Makefile.PL
33650 ! macos/ext/Mac/Notification/Notification.pm
33651 ! macos/ext/Mac/Notification/Notification.xs
33652 ! macos/ext/Mac/Notification/t/Notification.t
33653 ! macos/ext/Mac/Processes/Makefile.PL
33654 ! macos/ext/Mac/Processes/Processes.pm
33655 ! macos/ext/Mac/Processes/Processes.xs
33656 ! macos/ext/Mac/Processes/t/Processes.t
33657 ! macos/ext/Mac/Resources/Makefile.PL
33658 ! macos/ext/Mac/Resources/Resources.pm
33659 ! macos/ext/Mac/Resources/Resources.xs
33660 ! macos/ext/Mac/Resources/t/Resources.t
33661 ! macos/ext/Mac/Sound/Makefile.PL macos/ext/Mac/Sound/Sound.pm
33662 ! macos/ext/Mac/Sound/Sound.xs macos/ext/Mac/Speech/Makefile.PL
33663 ! macos/ext/Mac/Speech/Speech.pm macos/ext/Mac/Speech/Speech.xs
33664 ! macos/ext/Mac/Types/Makefile.PL macos/ext/Mac/Types/Types.pm
33665 ! macos/ext/Mac/Types/Types.xs macos/ext/Mac/Types/t/Types.t
33666 ! macos/ext/MacPerl/MacPerl.pm macos/ext/MacPerl/MacPerl.xs
33667 ! macos/ext/MacPerl/Makefile.PL macos/ext/MacPerl/OSA.xs
33668____________________________________________________________________________
33669[ 18192] By: jhi on 2002/11/27 03:14:22
33670 Log: Doc tweak for perl #9731.
33671 Branch: maint-5.8/perl
33672 ! pod/perldiag.pod
33673____________________________________________________________________________
33674[ 18191] By: jhi on 2002/11/27 02:56:52
33675 Log: A bit of additional information regarding BIND's harmful
33676 effects (perl #9465).
33677 Branch: maint-5.8/perl
33678 ! INSTALL
33679____________________________________________________________________________
33680[ 18190] By: jhi on 2002/11/27 02:28:34
33681 Log: Fix perl #18519: GDBM_SYNC and GDBM_SYNCMODE were unsupported.
33682 Branch: maint-5.8/perl
33683 ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/Makefile.PL
33684____________________________________________________________________________
33685[ 18189] By: jhi on 2002/11/27 01:51:45
33686 Log: Add the new POSIX isxxx() test by Ed Santiago <esm@pobox.com>
33687 (perl #16799).
33688 Branch: maint-5.8/perl
33689 + ext/POSIX/t/is.t
33690 ! MANIFEST
33691____________________________________________________________________________
33692[ 18188] By: hv on 2002/11/27 01:32:52
33693 Log: Subject: Re: [perl #18203] Recursive call in PerlIO_find_layer
33694 From: Slaven Rezic <slaven.rezic@berlin.de>
33695 Date: 03 Nov 2002 10:59:43 +0100
33696 Message-ID: <877kfvnfcg.fsf@vran.herceg.de>
33697 Branch: perl
33698 ! embedvar.h intrpvar.h lib/open.t perlapi.h perlio.c
33699____________________________________________________________________________
33700[ 18187] By: jhi on 2002/11/27 01:26:02
33701 Log: Follow-up on change #18122 (perl #18065) as noted by Philip Newton.
33702 Branch: maint-5.8/perl
33703 ! ext/Fcntl/t/syslfs.t t/op/lfs.t
33704____________________________________________________________________________
33705[ 18186] By: hv on 2002/11/27 00:57:18
33706 Log: Subject: DESTROY called in scalar context ?
33707 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
33708 Date: Tue, 29 Oct 2002 22:04:23 +0100
33709 Message-Id: <20021029220423.6f8e6600.rgarciasuarez@free.fr>
33710 Branch: perl
33711 ! sv.c
33712____________________________________________________________________________
33713[ 18185] By: rgs on 2002/11/26 21:06:48
33714 Log: PerlFAQ sync.
33715 Branch: perl
33716 ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
33717 ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
33718 ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
33719 ! pod/perlfaq9.pod
33720____________________________________________________________________________
33721[ 18184] By: rgs on 2002/11/26 20:42:25
33722 Log: Subject: [PATCH] 2 Pod errors in perlop.pod
33723 From: andreas.koenig@anima.de (Andreas J. Koenig)
33724 Date: Mon, 25 Nov 2002 10:21:08 +0100
33725 Message-ID: <m31y5admyj.fsf@k242.linux.bogus>
33726
33727 Plus a few similar POD fixes
33728 Branch: perl
33729 ! pod/perl570delta.pod pod/perl572delta.pod pod/perlop.pod
33730 ! pod/perltie.pod
33731____________________________________________________________________________
33732[ 18183] By: rgs on 2002/11/26 19:53:26
33733 Log: Subject: Re: [perl #18626] bug in perlipc man page
33734 From: Slaven Rezic <slaven.rezic@berlin.de>
33735 Date: 23 Nov 2002 21:23:20 +0100
33736 Message-ID: <87bs4gdohz.fsf@vran.herceg.de>
33737 Branch: perl
33738 ! pod/perlipc.pod
33739____________________________________________________________________________
33740[ 18182] By: merijn on 2002/11/26 08:44:39
33741 Log: Subject: #17171: ld flag for shrplib on OpenBSD
33742 Date: Wed, 11 Sep 2002 13:44:12 -0600 (MDT)
33743 From: "Todd C. Miller" <Todd.Miller at courtesan.com>
33744 Branch: perl
33745 ! Configure
33746____________________________________________________________________________
33747[ 18181] By: merijn on 2002/11/26 08:40:39
33748 Log: Subject: #17171: ld flag for shrplib on OpenBSD
33749 Date: Wed, 11 Sep 2002 13:44:12 -0600 (MDT)
33750 From: "Todd C. Miller" <Todd.Miller at courtesan.com>
33751 Branch: metaconfig/U/perl
33752 ! libperl.U
33753____________________________________________________________________________
33754[ 18180] By: hv on 2002/11/25 03:10:03
33755 Log: integrate #18144 updates to pod/perlport.pod
33756 Branch: perl
33757 ! pod/perlport.pod
33758____________________________________________________________________________
33759[ 18179] By: hv on 2002/11/25 03:06:44
33760 Log: Subject: [PATCH] UTF8 regexp {n} bug
33761 From: Inaba Hiroto <inaba@st.rim.or.jp>
33762 Date: Sat, 16 Nov 2002 19:23:00 +0900
33763 Message-ID: <3DD61C83.62FF9887@st.rim.or.jp>
33764 Branch: perl
33765 ! regcomp.c t/op/pat.t
33766____________________________________________________________________________
33767[ 18178] By: hv on 2002/11/25 02:43:40
33768 Log: Subject: Re: Storable bug #1698
33769 From: Slaven Rezic <slaven.rezic@berlin.de>
33770 Date: 18 Nov 2002 10:41:36 +0100
33771 Message-ID: <87ptt343lb.fsf@vran.herceg.de>
33772 Branch: perl
33773 ! ext/Storable/Storable.xs ext/Storable/t/blessed.t
33774 ! ext/Storable/t/forgive.t
33775____________________________________________________________________________
33776[ 18177] By: hv on 2002/11/25 02:37:07
33777 Log: add support for STASH and MAGIC information for REFs to sv_dump().
33778 Subject: [PATCH]
33779 From: Slaven Rezic <slaven.rezic@berlin.de>
33780 Date: Mon, 18 Nov 2002 11:09:51 +0100 (CET)
33781 Message-Id: <200211181009.gAIA9pFG034877@vran.herceg.de>
33782 Branch: perl
33783 ! dump.c ext/Devel/Peek/Peek.t
33784____________________________________________________________________________
33785[ 18176] By: hv on 2002/11/25 02:31:10
33786 Log: Subject: Re: [perl #18479] Error when no strict refs in effect
33787 From: Slaven Rezic <slaven.rezic@berlin.de>
33788 Date: 18 Nov 2002 22:50:04 +0100
33789 Message-ID: <87smxya6pf.fsf@vran.herceg.de>
33790 Branch: perl
33791 ! pp_ctl.c
33792____________________________________________________________________________
33793[ 18175] By: hv on 2002/11/25 02:20:48
33794 Log: Subject: [Encode] 1.83 + bleedperl patch released
33795 From: Dan Kogai <dankogai@dan.co.jp>
33796 Date: Tue, 19 Nov 2002 03:18:44 +0900
33797 Message-Id: <2C132F6D-FB22-11D6-87FC-0003939A104C@dan.co.jp>
33798 Branch: perl
33799 ! ext/Encode/AUTHORS ext/Encode/Changes ext/Encode/Encode.pm
33800 ! ext/Encode/Encode.xs ext/Encode/MANIFEST ext/Encode/bin/enc2xs
33801 ! ext/Encode/lib/Encode/JP/JIS7.pm ext/Encode/t/rt.pl
33802 ! t/uni/tr_7jis.t t/uni/tr_sjis.t t/uni/tr_utf8.t
33803____________________________________________________________________________
33804[ 18174] By: jhi on 2002/11/24 22:35:23
33805 Log: Fix perl #7305: UnicodeCD::compexcl is weird
33806 Branch: maint-5.8/perl
33807 ! lib/Unicode/UCD.pm lib/Unicode/UCD.t
33808____________________________________________________________________________
33809[ 18173] By: jhi on 2002/11/23 02:02:33
33810 Log: Integrate:
33811 [ 18135]
33812 Subject: [PATCH] perlopentut and PerlIO documentation
33813 From: Slaven Rezic <slaven.rezic@berlin.de>
33814 Date: 08 Nov 2002 22:22:19 +0100
33815 Message-ID: <8765v7kb90.fsf@vran.herceg.de>
33816
33817 [ 18136]
33818 Subject: t/run/runenv.t bug
33819 From: Salvador "Fandiño" <sfandino@yahoo.com>
33820 Date: Fri, 8 Nov 2002 08:07:13 -0800 (PST)
33821 Message-ID: <20021108160713.78109.qmail@web13409.mail.yahoo.com>
33822
33823 [ 18137]
33824 Subject: [PATCH] warning fix in SYNOPSIS example of Term::ReadLine pod
33825 From: Slaven Rezic <slaven.rezic@berlin.de>
33826 Date: Sat, 9 Nov 2002 22:31:31 +0100 (CET)
33827 Message-Id: <200211092131.gA9LVVAV007663@vran.herceg.de>
33828
33829 [ 18139]
33830 Date: Tue, 12 Nov 2002 16:49:22 +0200
33831 From: Jarkko Hietaniemi <jhi@iki.fi>
33832 Subject: [PATCH] Tru64 osvers
33833 Message-ID: <20021112144922.GI511825@lyta.hut.fi>
33834
33835 [ 18141]
33836 repair 18139 (missing awk command)
33837
33838 [ 18147]
33839 Subject: [PATCH] Typo in perl58delta
33840 From: andreas.koenig@anima.de (Andreas J. Koenig)
33841 Date: Sat, 16 Nov 2002 16:29:14 +0100
33842 Message-ID: <m3u1ihjzxx.fsf@k242.linux.bogus>
33843
33844 [ 18148]
33845 New B::Lint option, bare-subs, that checks for implicitely
33846 quoted barewords that are also subroutines, from
33847 Ian Phillipps <ip@tarragon-et.co.uk>.
33848 Message-ID: <20021107122909.A11199@bob.tarragon-et.co.uk>
33849 With a few tweaks to the implementation and tests.
33850
33851 [ 18149]
33852 New B::Lint option, bare-subs, that checks for implicitely
33853 quoted barewords that are also subroutines, from
33854 Ian Phillipps <ip@tarragon-et.co.uk>.
33855 Message-ID: <20021107122909.A11199@bob.tarragon-et.co.uk>
33856 With a few tweaks to the implementation and tests.
33857 (previous change was empty)
33858
33859 [ 18150]
33860 Subject: [PATCH] optional code for debugging leaking scalars
33861 From: Dave Mitchell <davem@fdgroup.com>
33862 Date: Thu, 14 Nov 2002 23:03:00 +0000
33863 Message-ID: <20021114230300.B18614@fdgroup.com>
33864
33865 [ 18151]
33866 Document PRIVSHIFT.
33867 Subject: [PATCH] two small doc patches
33868 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
33869 Date: Thu, 14 Nov 2002 15:07:35 -0800
33870 Message-ID: <3yC19gzkguTO092yn@efn.org>
33871
33872 [ 18152]
33873 Subject: Re: [PATCH] optional code for debugging leaking scalars
33874 From: Dave Mitchell <davem@fdgroup.com>
33875 Date: Sat, 16 Nov 2002 22:18:23 +0000
33876 Message-ID: <20021116221823.A23614@fdgroup.com>
33877 Documentation for change #18150.
33878
33879 [ 18154]
33880 Correction to change #18152, by Dave Mitchell.
33881
33882 [ 18158]
33883 Remove duplicate my() declaration giving warnings from change #18105.
33884
33885 [ 18159]
33886 Subject: Re: [perl #18113] UNIVERSAL::AUTOLOAD doesn't work if the stash doesn't exist yet
33887 From: Gurusamy Sarathy <gsar@ActiveState.com>
33888 Date: Wed, 30 Oct 2002 20:58:15 -0800
33889 Message-Id: <200210310458.g9V4wFK00513@smtp3.ActiveState.com>
33890 Date: Wed, 30 Oct 2002 21:56:22 -0800
33891 Message-Id: <200210310556.g9V5uMK05748@smtp3.ActiveState.com>
33892 Date: Wed, 30 Oct 2002 22:55:30 -0800
33893 Message-Id: <200210310655.g9V6tUK10959@smtp3.ActiveState.com>
33894
33895 [ 18160]
33896 Subject: [PATCH] regen_headers outside Makefile (was Re: [PATCH] embed.pl doc)
33897 From: Nicholas Clark <nick@unfortu.net>
33898 Date: Tue, 29 Oct 2002 23:00:05 +0000
33899 Message-ID: <20021029230003.GF287@Bagpuss.unfortu.net>
33900
33901 [ 18161]
33902 Subject: [PATCH Win32] Document wperl.exe
33903 From: "Brent Dax" <brentdax@cpan.org>
33904 Date: Fri, 15 Nov 2002 23:02:01 -0800
33905 Message-ID: <034e01c28d3e$0fed1680$6501a8c0@deepblue>
33906
33907 [ 18162]
33908 Subject: [PATCH ext/threads/threads.xs] trivial typo
33909 From: Dave Mitchell <davem@fdgroup.com>
33910 Date: Thu, 14 Nov 2002 22:55:39 +0000
33911 Message-ID: <20021114225539.A18614@fdgroup.com>
33912
33913 [ 18163]
33914 Subject: Re: [PATCH] AutoLoader gives wrong message
33915 From: Peter Scott <Peter@PSDT.com>
33916 Date: Thu, 07 Nov 2002 19:04:27 -0800
33917 Message-id: <4.3.2.7.2.20021107185902.00b93ec0@shell2.webquarry.com>
33918
33919 With a tweak to the END cleanup block to fully remove the
33920 temporary test directory
33921
33922 [ 18164]
33923 t/io/crlf.t failed with miniperl.
33924
33925 [ 18165]
33926 Subject: Re: [PATCH] UTF-8 enabling via locale (was: Re: Redhat 8 issue?)
33927 From: Jarkko Hietaniemi <jhi@iki.fi>
33928 Date: Sun, 3 Nov 2002 17:50:08 +0200
33929 Message-ID: <20021103155008.GA382682@lyta.hut.fi>
33930
33931 [ 18166]
33932 Fix perl bug #17920 : a case of parser coredump.
33933 The fix is to disable Perl_block_start and Perl_block_end
33934 when the yacc parser has encountered errors. This prevents
33935 corruption of the internal stack, at the expense of correctness,
33936 but this doesn't matter as the code is unparseable anyway.
33937
33938 [ 18168]
33939 Subject: [PATCH] hires sleeping wants libs
33940 Date: Wed, 20 Nov 2002 17:18:31 +0200
33941 From: Jarkko Hietaniemi <jhi@iki.fi>
33942 Message-ID: <20021120151830.GC127060@lyta.hut.fi>
33943
33944 [ 18169]
33945 Add a test for bug #17920, and a new test file for it.
33946
33947 [ 18170]
33948 Move some tests from t/run/fresh_perl.t
33949 to the new t/comp/parser.t. The goal being to
33950 get rid of fresh_perl.t at some point.
33951
33952 [ 18171]
33953 A new test for $^S, based on a patch by Iain 'Spoon' Truskett.
33954 Fix the existing tests that didn't checked the difference
33955 between 0 and undef.
33956
33957 [ 18172]
33958 Subject: [PATCH] Historic version labels
33959 From: andreas.koenig@anima.de (Andreas J. Koenig)
33960 Date: Fri, 22 Nov 2002 14:39:41 +0100
33961 Message-ID: <m3lm3loh9e.fsf@k242.linux.bogus>
33962
33963 (and regen Configure, regen_headers)
33964 Branch: maint-5.8/perl
33965 +> regen.pl regen_headers.pl t/comp/parser.t
33966 ! Configure README.ce config_h.SH ext/B/B.pm ext/B/t/concise.t
33967 !> (integrate 35 files)
33968____________________________________________________________________________
33969[ 18172] By: rgs on 2002/11/22 21:44:09
33970 Log: Subject: [PATCH] Historic version labels
33971 From: andreas.koenig@anima.de (Andreas J. Koenig)
33972 Date: Fri, 22 Nov 2002 14:39:41 +0100
33973 Message-ID: <m3lm3loh9e.fsf@k242.linux.bogus>
33974 Branch: perl
33975 ! Changes5.005 Changes5.6
33976____________________________________________________________________________
33977[ 18171] By: rgs on 2002/11/22 21:15:54
33978 Log: A new test for $^S, based on a patch by Iain 'Spoon' Truskett.
33979 Fix the existing tests that didn't checked the difference
33980 between 0 and undef.
33981 Branch: perl
33982 ! t/op/magic.t
33983____________________________________________________________________________
33984[ 18170] By: rgs on 2002/11/22 20:49:12
33985 Log: Move some tests from t/run/fresh_perl.t
33986 to the new t/comp/parser.t. The goal being to
33987 get rid of fresh_perl.t at some point.
33988 Branch: perl
33989 ! t/comp/parser.t t/run/fresh_perl.t
33990____________________________________________________________________________
33991[ 18169] By: rgs on 2002/11/21 20:49:36
33992 Log: Add a test for bug #17920, and a new test file for it.
33993 Branch: perl
33994 + t/comp/parser.t
33995 ! MANIFEST
33996____________________________________________________________________________
33997[ 18168] By: merijn on 2002/11/21 13:59:12
33998 Log: Subject: [PATCH] hires sleeping wants libs
33999 Date: Wed, 20 Nov 2002 17:18:31 +0200
34000 From: Jarkko Hietaniemi <jhi@iki.fi>
34001 Message-ID: <20021120151830.GC127060@lyta.hut.fi>
34002 Branch: perl
34003 ! Configure hints/irix_6.sh
34004____________________________________________________________________________
34005[ 18167] By: merijn on 2002/11/21 13:49:58
34006 Log: Subject: [PATCH] hires sleeping wants libs
34007 Date: Wed, 20 Nov 2002 17:18:31 +0200
34008 From: Jarkko Hietaniemi <jhi@iki.fi>
34009 Message-ID: <20021120151830.GC127060@lyta.hut.fi>
34010 Branch: metaconfig
34011 ! U/modified/Myinit.U
34012____________________________________________________________________________
34013[ 18166] By: rgs on 2002/11/19 23:02:31
34014 Log: Fix perl bug #17920 : a case of parser coredump.
34015 The fix is to disable Perl_block_start and Perl_block_end
34016 when the yacc parser has encountered errors. This prevents
34017 corruption of the internal stack, at the expense of correctness,
34018 but this doesn't matter as the code is unparseable anyway.
34019 Branch: perl
34020 ! op.c
34021____________________________________________________________________________
34022[ 18165] By: rgs on 2002/11/19 22:45:36
34023 Log: Subject: Re: [PATCH] UTF-8 enabling via locale (was: Re: Redhat 8 issue?)
34024 From: Jarkko Hietaniemi <jhi@iki.fi>
34025 Date: Sun, 3 Nov 2002 17:50:08 +0200
34026 Message-ID: <20021103155008.GA382682@lyta.hut.fi>
34027 Branch: perl
34028 ! lib/open.pm locale.c pod/perl58delta.pod
34029____________________________________________________________________________
34030[ 18164] By: rgs on 2002/11/19 22:32:52
34031 Log: t/io/crlf.t failed with miniperl.
34032 Branch: perl
34033 ! t/io/crlf.t
34034____________________________________________________________________________
34035[ 18163] By: rgs on 2002/11/19 22:11:24
34036 Log: Subject: Re: [PATCH] AutoLoader gives wrong message
34037 From: Peter Scott <Peter@PSDT.com>
34038 Date: Thu, 07 Nov 2002 19:04:27 -0800
34039 Message-id: <4.3.2.7.2.20021107185902.00b93ec0@shell2.webquarry.com>
34040
34041 With a tweak to the END cleanup block to fully remove the
34042 temporary test directory
34043 Branch: perl
34044 ! lib/AutoLoader.t
34045____________________________________________________________________________
34046[ 18162] By: rgs on 2002/11/19 21:29:25
34047 Log: Subject: [PATCH ext/threads/threads.xs] trivial typo
34048 From: Dave Mitchell <davem@fdgroup.com>
34049 Date: Thu, 14 Nov 2002 22:55:39 +0000
34050 Message-ID: <20021114225539.A18614@fdgroup.com>
34051 Branch: perl
34052 ! ext/threads/threads.xs
34053____________________________________________________________________________
34054[ 18161] By: rgs on 2002/11/19 21:26:21
34055 Log: Subject: [PATCH Win32] Document wperl.exe
34056 From: "Brent Dax" <brentdax@cpan.org>
34057 Date: Fri, 15 Nov 2002 23:02:01 -0800
34058 Message-ID: <034e01c28d3e$0fed1680$6501a8c0@deepblue>
34059 Branch: perl
34060 ! README.win32
34061____________________________________________________________________________
34062[ 18160] By: hv on 2002/11/19 12:07:25
34063 Log: Subject: [PATCH] regen_headers outside Makefile (was Re: [PATCH] embed.pl doc)
34064 From: Nicholas Clark <nick@unfortu.net>
34065 Date: Tue, 29 Oct 2002 23:00:05 +0000
34066 Message-ID: <20021029230003.GF287@Bagpuss.unfortu.net>
34067 Branch: perl
34068 + regen.pl regen_headers.pl
34069 ! MANIFEST Makefile.SH autodoc.pl bytecode.pl embed.pl
34070 ! keywords.pl opcode.pl regcomp.pl
34071____________________________________________________________________________
34072[ 18159] By: hv on 2002/11/19 11:48:30
34073 Log: Subject: Re: [perl #18113] UNIVERSAL::AUTOLOAD doesn't work if the stash doesn't exist yet
34074 From: Gurusamy Sarathy <gsar@ActiveState.com>
34075 Date: Wed, 30 Oct 2002 20:58:15 -0800
34076 Message-Id: <200210310458.g9V4wFK00513@smtp3.ActiveState.com>
34077 Date: Wed, 30 Oct 2002 21:56:22 -0800
34078 Message-Id: <200210310556.g9V5uMK05748@smtp3.ActiveState.com>
34079 Date: Wed, 30 Oct 2002 22:55:30 -0800
34080 Message-Id: <200210310655.g9V6tUK10959@smtp3.ActiveState.com>
34081 Branch: perl
34082 ! gv.c pp_hot.c t/op/method.t
34083____________________________________________________________________________
34084[ 18158] By: hv on 2002/11/19 11:35:16
34085 Log: Remove duplicate my() declaration giving warnings from change #18105.
34086 Branch: perl
34087 ! lib/Class/Struct.t
34088____________________________________________________________________________
34089[ 18157] By: nick on 2002/11/19 10:16:27
34090 Log: Integrate mainline
34091 Branch: perlio
34092 +> ext/List/Util/t/isvstring.t ext/List/Util/t/refaddr.t
34093 +> t/run/switchI.t t/uni/tr_7jis.t t/uni/tr_eucjp.t
34094 +> t/uni/tr_sjis.t t/uni/tr_utf8.t
34095 ! ext/Encode/Encode.xs
34096 !> (integrate 77 files)
34097____________________________________________________________________________
34098[ 18156] By: jhi on 2002/11/18 23:06:22
34099 Log: Unicode 3.2 Errata from
34100 http://www.unicode.org/unicode/uni2errata/UnicodeErrata.html
34101 (errata 2002 October 31 and 2002 October 30)
34102 (If/when 3.2.1 or 4.0 happens, just replace SpecialCasing
34103 and UnicodeData, don't bother with diffs, and rerun
34104 perl ./mktables)
34105 Branch: maint-5.8/perl
34106 ! lib/Unicode/UCD.t lib/unicore/Category.pl
34107 ! lib/unicore/SpecialCasing.txt lib/unicore/UnicodeData.txt
34108 ! lib/unicore/lib/C.pl lib/unicore/lib/Cf.pl
34109 ! lib/unicore/lib/Cntrl.pl lib/unicore/lib/Graph.pl
34110 ! lib/unicore/lib/P.pl lib/unicore/lib/Pd.pl
34111 ! lib/unicore/lib/Print.pl lib/unicore/lib/Punct.pl
34112____________________________________________________________________________
34113[ 18155] By: jhi on 2002/11/16 22:34:07
34114 Log: make regen_headers
34115 Branch: maint-5.8/perl
34116 ! pod/perlapi.pod proto.h
34117____________________________________________________________________________
34118[ 18154] By: rgs on 2002/11/16 22:08:44
34119 Log: Correction to change #18152, by Dave Mitchell.
34120 Branch: perl
34121 ! pod/perlhack.pod
34122____________________________________________________________________________
34123[ 18153] By: jhi on 2002/11/16 21:24:13
34124 Log: Tripped by the pseudo-hash warning.
34125 Branch: maint-5.8/perl
34126 ! t/op/hashwarn.t
34127____________________________________________________________________________
34128[ 18152] By: rgs on 2002/11/16 21:23:15
34129 Log: Subject: Re: [PATCH] optional code for debugging leaking scalars
34130 From: Dave Mitchell <davem@fdgroup.com>
34131 Date: Sat, 16 Nov 2002 22:18:23 +0000
34132 Message-ID: <20021116221823.A23614@fdgroup.com>
34133 Documentation for change #18150.
34134 Branch: perl
34135 ! pod/perlhack.pod
34136____________________________________________________________________________
34137[ 18151] By: rgs on 2002/11/16 20:45:26
34138 Log: Document PRIVSHIFT.
34139 Subject: [PATCH] two small doc patches
34140 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
34141 Date: Thu, 14 Nov 2002 15:07:35 -0800
34142 Message-ID: <3yC19gzkguTO092yn@efn.org>
34143 Branch: perl
34144 ! sv.h
34145____________________________________________________________________________
34146[ 18150] By: rgs on 2002/11/16 20:25:57
34147 Log: Subject: [PATCH] optional code for debugging leaking scalars
34148 From: Dave Mitchell <davem@fdgroup.com>
34149 Date: Thu, 14 Nov 2002 23:03:00 +0000
34150 Message-ID: <20021114230300.B18614@fdgroup.com>
34151 Branch: perl
34152 ! perl.c sv.c
34153____________________________________________________________________________
34154[ 18149] By: rgs on 2002/11/16 20:10:50
34155 Log: New B::Lint option, bare-subs, that checks for implicitely
34156 quoted barewords that are also subroutines, from
34157 Ian Phillipps <ip@tarragon-et.co.uk>.
34158 Message-ID: <20021107122909.A11199@bob.tarragon-et.co.uk>
34159 With a few tweaks to the implementation and tests.
34160 (previous change was empty)
34161 Branch: perl
34162 ! ext/B/B/Lint.pm ext/B/t/lint.t
34163____________________________________________________________________________
34164[ 18148] By: rgs on 2002/11/16 20:05:34
34165 Log: New B::Lint option, bare-subs, that checks for implicitely
34166 quoted barewords that are also subroutines, from
34167 Ian Phillipps <ip@tarragon-et.co.uk>.
34168 Message-ID: <20021107122909.A11199@bob.tarragon-et.co.uk>
34169 With a few tweaks to the implementation and tests.
34170 Branch: perl
34171 ! ext/B/B/Lint.pm ext/B/t/lint.t
34172____________________________________________________________________________
34173[ 18147] By: rgs on 2002/11/16 19:52:54
34174 Log: Subject: [PATCH] Typo in perl58delta
34175 From: andreas.koenig@anima.de (Andreas J. Koenig)
34176 Date: Sat, 16 Nov 2002 16:29:14 +0100
34177 Message-ID: <m3u1ihjzxx.fsf@k242.linux.bogus>
34178 Branch: perl
34179 ! pod/perl58delta.pod
34180____________________________________________________________________________
34181[ 18146] By: jhi on 2002/11/16 15:09:26
34182 Log: Typo noticed by Philip Newton.
34183 Branch: maint-5.8/perl
34184 ! pod/perldiag.pod
34185____________________________________________________________________________
34186[ 18145] By: jhi on 2002/11/16 02:53:59
34187 Log: Add 5.005-style thread deprecation warning (at each
34188 thread create).
34189 Branch: maint-5.8/perl
34190 ! ext/Thread/Thread.xs pod/perldelta.pod pod/perldiag.pod
34191____________________________________________________________________________
34192[ 18144] By: jhi on 2002/11/15 22:30:36
34193 Log: perlport tweaks:
34194 - timezone
34195 - $!, Errno
34196 - metainformation changing
34197 - perlunicode
34198 Branch: maint-5.8/perl
34199 ! pod/perlport.pod
34200____________________________________________________________________________
34201[ 18143] By: jhi on 2002/11/15 04:37:24
34202 Log: Add pseudo-hashes deprecation warning (at each pseudo-hash access).
34203 Branch: maint-5.8/perl
34204 ! av.c pod/perldelta.pod pod/perldiag.pod t/lib/warnings/av
34205____________________________________________________________________________
34206[ 18142] By: rgs on 2002/11/12 22:09:39
34207 Log: Subject: [PATCH] Re: threads and Win2000 (Smoke 18064 FAIL(F) MSWin32 5.0 W2000Pro)
34208 From: Dave Mitchell <davem@fdgroup.com>
34209 Date: Thu, 7 Nov 2002 16:38:02 +0000
34210 Message-ID: <20021107163802.C25337@fdgroup.com>
34211 Branch: perl
34212 ! pad.h
34213____________________________________________________________________________
34214[ 18141] By: merijn on 2002/11/12 16:15:30
34215 Log: repair 18139 (missing awk command)
34216 Branch: perl
34217 ! Configure
34218____________________________________________________________________________
34219[ 18140] By: merijn on 2002/11/12 16:12:14
34220 Log: added missing awk. <blush>
34221 Branch: metaconfig
34222 ! U/modified/Oldconfig.U
34223____________________________________________________________________________
34224[ 18139] By: merijn on 2002/11/12 14:20:36
34225 Log: Date: Tue, 12 Nov 2002 16:49:22 +0200
34226 From: Jarkko Hietaniemi <jhi@iki.fi>
34227 Subject: [PATCH] Tru64 osvers
34228 Message-ID: <20021112144922.GI511825@lyta.hut.fi>
34229 Branch: perl
34230 ! Configure
34231____________________________________________________________________________
34232[ 18138] By: merijn on 2002/11/12 14:08:50
34233 Log: Date: Tue, 12 Nov 2002 16:49:22 +0200
34234 From: Jarkko Hietaniemi <jhi@iki.fi>
34235 Subject: [PATCH] Tru64 osvers
34236 Message-ID: <20021112144922.GI511825@lyta.hut.fi>
34237 Branch: metaconfig
34238 ! U/modified/Oldconfig.U
34239____________________________________________________________________________
34240[ 18137] By: rgs on 2002/11/10 21:57:04
34241 Log: Subject: [PATCH] warning fix in SYNOPSIS example of Term::ReadLine pod
34242 From: Slaven Rezic <slaven.rezic@berlin.de>
34243 Date: Sat, 9 Nov 2002 22:31:31 +0100 (CET)
34244 Message-Id: <200211092131.gA9LVVAV007663@vran.herceg.de>
34245 Branch: perl
34246 ! lib/Term/ReadLine.pm
34247____________________________________________________________________________
34248[ 18136] By: rgs on 2002/11/10 21:38:44
34249 Log: Subject: t/run/runenv.t bug
34250 From: Salvador "Fandiño" <sfandino@yahoo.com>
34251 Date: Fri, 8 Nov 2002 08:07:13 -0800 (PST)
34252 Message-ID: <20021108160713.78109.qmail@web13409.mail.yahoo.com>
34253 Branch: perl
34254 ! t/run/runenv.t
34255____________________________________________________________________________
34256[ 18135] By: rgs on 2002/11/10 21:30:36
34257 Log: Subject: [PATCH] perlopentut and PerlIO documentation
34258 From: Slaven Rezic <slaven.rezic@berlin.de>
34259 Date: 08 Nov 2002 22:22:19 +0100
34260 Message-ID: <8765v7kb90.fsf@vran.herceg.de>
34261 Branch: perl
34262 ! lib/PerlIO.pm pod/perlopentut.pod
34263____________________________________________________________________________
34264[ 18134] By: jhi on 2002/11/09 22:10:52
34265 Log: Update Changes.
34266 Branch: maint-5.8/perl
34267 ! Changes patchlevel.h
34268____________________________________________________________________________
34269[ 18133] By: jhi on 2002/11/09 21:56:38
34270 Log: Integrate
34271
34272 [ 18122]
34273 Subject: [perl #18065] LFS related bug in perl-5.8.0 testsuite
34274 From: "david@dhaller.de (via RT)" <perlbug@perl.org>
34275 Date: 23 Oct 2002 18:42:51 -0000
34276 Message-Id: <rt-18065-40384.14.044473925414@bugs6.perl.org>
34277
34278 [ 18123]
34279 Subject: PATCH x2p/find2perl.PL
34280 From: "Newton, Philip" <Philip.Newton@datenrevision.de>
34281 Date: Thu, 24 Oct 2002 10:05:19 +0200
34282 Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCF41@hamsem01.de.gedas.vwg>
34283
34284 [ 18124]
34285 Subject: [PATCH] File::Temp documentation fix
34286 From: Slaven Rezic <slaven.rezic@berlin.de>
34287 Date: Thu, 24 Oct 2002 19:04:20 +0200 (CEST)
34288 Message-Id: <200210241704.g9OH4KlR030883@vran.herceg.de>
34289
34290 [ 18125]
34291 Subject: Re: The Inaba patch for tr/// vs. use encoding
34292 From: Dan Kogai <dankogai@dan.co.jp>
34293 Date: Fri, 25 Oct 2002 13:04:00 +0900
34294 Message-Id: <CAC896FE-E7CE-11D6-9228-0003939A104C@dan.co.jp>
34295 Branch: maint-5.8/perl
34296 +> t/uni/tr_7jis.t t/uni/tr_eucjp.t t/uni/tr_sjis.t
34297 +> t/uni/tr_utf8.t
34298 !> MANIFEST ext/Fcntl/t/syslfs.t lib/File/Temp.pm t/op/lfs.t
34299 !> x2p/find2perl.PL
34300____________________________________________________________________________
34301[ 18132] By: jhi on 2002/11/09 21:50:30
34302 Log: Integrate
34303
34304 [ 18121]
34305 Subject: Re: [perl #18038] DESTROY change in 5.8.0?
34306 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
34307 Date: Sun, 03 Nov 2002 15:48:18 -0800
34308 Message-ID: <CXbx9gzkgS8W092yn@efn.org>
34309 Branch: maint-5.8/perl
34310 !> sv.c t/op/tie.t
34311____________________________________________________________________________
34312[ 18131] By: jhi on 2002/11/09 21:28:07
34313 Log: Integrate
34314
34315 [ 18119]
34316 Subject: [perl #18154] Problem found in calculating offsets in regex
34317 From: Mark Pease (via RT) <perlbug@perl.org>
34318 Date: 29 Oct 2002 20:23:54 -0000
34319 Message-Id: <rt-18154-40762.0.46361502706489@bugs6.perl.org>
34320
34321 [ 18120]
34322 Subject: Re: Is this true that Perl 5.8 uses :crlf as default DISCIPLINE on so ckets?
34323 From: Gurusamy Sarathy <gsar@ActiveState.com>
34324 Date: Sat, 19 Oct 2002 12:11:43 -0700
34325 Message-Id: <200210191911.g9JJBhK02618@smtp3.ActiveState.com>
34326 Branch: maint-5.8/perl
34327 !> doio.c ext/DB_File/t/db-recno.t perl.h pp_sys.c regcomp.c
34328 !> win32/win32.h
34329____________________________________________________________________________
34330[ 18130] By: jhi on 2002/11/09 21:25:39
34331 Log: Integrate
34332
34333 [ 18118]
34334 Subject: Re: [perl #17605] strange behaviour (difference between perl 5.6 and perl 5.8.0) in the regexp
34335 From: hv@crypt.org
34336 Date: Sun, 03 Nov 2002 16:41:24 +0000
34337 Message-Id: <200211031641.gA3GfOm08609@crypt.compulink.co.uk>
34338
34339 (closure.t required manual edit since blead had a new test)
34340 Branch: maint-5.8/perl
34341 !> ext/B/B/Concise.pm op.c pp_hot.c t/op/closure.t
34342 !> t/op/sub_lval.t
34343____________________________________________________________________________
34344[ 18129] By: jhi on 2002/11/09 21:20:02
34345 Log: Integrate
34346
34347 [ 18115]
34348 Subject: Re: [perl #18048] read \*FH, ... returns undef but doesn' t set $! if \*FH not open
34349 From: Slaven Rezic <slaven.rezic@berlin.de>
34350 Date: 24 Oct 2002 00:44:35 +0200
34351 Message-ID: <87vg3sixm4.fsf@vran.herceg.de>
34352
34353 [ 18117]
34354 "make distclean" should remove the generated file lib/Config.pod.
34355 Branch: maint-5.8/perl
34356 !> Makefile.SH pod/perldiag.pod pod/perlfunc.pod pp_sys.c
34357 !> t/io/binmode.t t/io/print.t t/io/read.t t/lib/warnings/pp_sys
34358____________________________________________________________________________
34359[ 18128] By: jhi on 2002/11/09 21:15:09
34360 Log: Integrate
34361
34362 [ 18116]
34363 The new test introduced in #18114 failed with threads
34364
34365 (edit //= to be ||=)
34366 Branch: maint-5.8/perl
34367 !> ext/B/t/concise.t
34368____________________________________________________________________________
34369[ 18127] By: jhi on 2002/11/09 21:07:43
34370 Log: Integrate
34371
34372 [ 18114]
34373 Subject: Re: [PATCH] [perl #18175] B::Concise,-exec doesn't handle // operator well
34374 From: Stephen McCamant <smcc@mit.edu>
34375 Date: Thu, 31 Oct 2002 01:35:29 -0500
34376 Message-ID: <15808.53041.181907.308803@syllepsis.MIT.EDU>
34377
34378 plus a test case in ext/B/t/concise.t
34379 plus a (less intrusive, but less future-proof) fix for a
34380 similar problem in B::walkoptree_exec().
34381
34382 (edit away dor and dorassign)
34383 Branch: maint-5.8/perl
34384 !> ext/B/B.pm ext/B/B/Concise.pm ext/B/t/concise.t
34385____________________________________________________________________________
34386[ 18126] By: jhi on 2002/11/09 19:00:47
34387 Log: Integrate
34388
34389 [ 18102]
34390 Subject: Re: [perl #18066] Bug in -I when path has double colons?
34391 From: Slaven Rezic <slaven.rezic@berlin.de>
34392 Date: 30 Oct 2002 11:18:47 +0100
34393 Message-ID: <87of9c2prs.fsf@vran.herceg.de>
34394
34395 With the corresponding change to embed.fnc
34396
34397 [ 18105]
34398 Subject: Re: Class::Struct, simple patch, tests
34399 From: Marty Pauley <marty+p5p@kasei.com>
34400 Date: Fri, 18 Oct 2002 22:26:38 +0100
34401 Message-ID: <20021018212638.GB3764@soto.kasei.com>
34402
34403 [ 18106]
34404 new test based on:
34405 Subject: [TEST] for [PATCH] bug in utf8.c(?)
34406 From: Marty Pauley <marty+p5p@kasei.com>
34407 Date: Fri, 18 Oct 2002 21:02:38 +0100
34408 Message-ID: <20021018200238.GY3764@soto.kasei.com>
34409
34410 [ 18107]
34411 1. Update pp_ucfirst to enter the UTF-8 branch only if the first
34412 character is UTF-8. (Copied from pp_lcfirst.)
34413 2. sv_dump() should display FLAGS=...,UTF8 for both POK and pPOK.
34414
34415 [ 18108]
34416 Put back the DO NOT EDIT headers in proto.h and global.sym
34417
34418 Subject: Re: [perl #18066] Bug in -I when path has double colons?
34419 From: Slaven Rezic <slaven.rezic@berlin.de>
34420 Date: 03 Nov 2002 10:25:10 +0100
34421 Message-ID: <87adkrngy1.fsf@vran.herceg.de>
34422
34423 [ 18109]
34424 Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
34425 From: hv@crypt.org
34426 Date: Tue, 05 Nov 2002 13:30:00 +0000
34427 Message-Id: <200211051330.gA5DU0p00718@crypt.compulink.co.uk>
34428
34429 This is half of the fix for #18107. The swash_init() problems
34430 described in <20021105143646.M18101@lustre.dyn.wiw.org> remain,
34431 but can now be seen only with UTF-8 test cases.
34432
34433 [ 18113]
34434 make regen_headers.
34435 Backport change #18078 to warnings.pl.
34436
34437 plus make regen_headers
34438 Branch: maint-5.8/perl
34439 +> t/run/switchI.t
34440 ! pod/perlapi.pod
34441 !> MANIFEST dump.c embed.fnc embed.h embedvar.h global.sym
34442 !> lib/Class/Struct.pm lib/Class/Struct.t lib/utf8.t perl.c
34443 !> perlapi.c perlapi.h pp.c proto.h t/run/runenv.t warnings.pl
34444____________________________________________________________________________
34445[ 18125] By: hv on 2002/11/07 14:01:57
34446 Log: Subject: Re: The Inaba patch for tr/// vs. use encoding
34447 From: Dan Kogai <dankogai@dan.co.jp>
34448 Date: Fri, 25 Oct 2002 13:04:00 +0900
34449 Message-Id: <CAC896FE-E7CE-11D6-9228-0003939A104C@dan.co.jp>
34450 Branch: perl
34451 + t/uni/tr_7jis.t t/uni/tr_eucjp.t t/uni/tr_sjis.t
34452 + t/uni/tr_utf8.t
34453 ! MANIFEST
34454____________________________________________________________________________
34455[ 18124] By: hv on 2002/11/07 13:51:39
34456 Log: Subject: [PATCH] File::Temp documentation fix
34457 From: Slaven Rezic <slaven.rezic@berlin.de>
34458 Date: Thu, 24 Oct 2002 19:04:20 +0200 (CEST)
34459 Message-Id: <200210241704.g9OH4KlR030883@vran.herceg.de>
34460 Branch: perl
34461 ! lib/File/Temp.pm
34462____________________________________________________________________________
34463[ 18123] By: hv on 2002/11/07 13:46:59
34464 Log: Subject: PATCH x2p/find2perl.PL
34465 From: "Newton, Philip" <Philip.Newton@datenrevision.de>
34466 Date: Thu, 24 Oct 2002 10:05:19 +0200
34467 Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCF41@hamsem01.de.gedas.vwg>
34468 Branch: perl
34469 ! x2p/find2perl.PL
34470____________________________________________________________________________
34471[ 18122] By: hv on 2002/11/07 13:40:25
34472 Log: Subject: [perl #18065] LFS related bug in perl-5.8.0 testsuite
34473 From: "david@dhaller.de (via RT)" <perlbug@perl.org>
34474 Date: 23 Oct 2002 18:42:51 -0000
34475 Message-Id: <rt-18065-40384.14.044473925414@bugs6.perl.org>
34476 Branch: perl
34477 ! ext/Fcntl/t/syslfs.t t/op/lfs.t
34478____________________________________________________________________________
34479[ 18121] By: hv on 2002/11/07 13:21:15
34480 Log: Subject: Re: [perl #18038] DESTROY change in 5.8.0?
34481 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
34482 Date: Sun, 03 Nov 2002 15:48:18 -0800
34483 Message-ID: <CXbx9gzkgS8W092yn@efn.org>
34484 Branch: perl
34485 ! sv.c t/op/tie.t
34486____________________________________________________________________________
34487[ 18120] By: hv on 2002/11/07 13:14:21
34488 Log: Subject: Re: Is this true that Perl 5.8 uses :crlf as default DISCIPLINE on so ckets?
34489 From: Gurusamy Sarathy <gsar@ActiveState.com>
34490 Date: Sat, 19 Oct 2002 12:11:43 -0700
34491 Message-Id: <200210191911.g9JJBhK02618@smtp3.ActiveState.com>
34492 Branch: perl
34493 ! doio.c ext/DB_File/t/db-recno.t perl.h pp_sys.c win32/win32.h
34494____________________________________________________________________________
34495[ 18119] By: hv on 2002/11/07 12:13:28
34496 Log: Subject: [perl #18154] Problem found in calculating offsets in regex
34497 From: Mark Pease (via RT) <perlbug@perl.org>
34498 Date: 29 Oct 2002 20:23:54 -0000
34499 Message-Id: <rt-18154-40762.0.46361502706489@bugs6.perl.org>
34500 Branch: perl
34501 ! regcomp.c
34502____________________________________________________________________________
34503[ 18118] By: hv on 2002/11/07 11:33:38
34504 Log: Subject: Re: [perl #17605] strange behaviour (difference between perl 5.6 and perl 5.8.0) in the regexp
34505 From: hv@crypt.org
34506 Date: Sun, 03 Nov 2002 16:41:24 +0000
34507 Message-Id: <200211031641.gA3GfOm08609@crypt.compulink.co.uk>
34508 Branch: perl
34509 ! ext/B/B/Concise.pm op.c pp_hot.c t/op/closure.t
34510 ! t/op/sub_lval.t
34511____________________________________________________________________________
34512[ 18117] By: rgs on 2002/11/06 22:15:36
34513 Log: "make distclean" should remove the generated file lib/Config.pod.
34514 Branch: perl
34515 ! Makefile.SH
34516____________________________________________________________________________
34517[ 18116] By: rgs on 2002/11/06 22:11:06
34518 Log: The new test introduced in #18114 failed with threads
34519 Branch: perl
34520 ! ext/B/t/concise.t
34521____________________________________________________________________________
34522[ 18115] By: rgs on 2002/11/06 20:43:14
34523 Log: Subject: Re: [perl #18048] read \*FH, ... returns undef but doesn' t set $! if \*FH not open
34524 From: Slaven Rezic <slaven.rezic@berlin.de>
34525 Date: 24 Oct 2002 00:44:35 +0200
34526 Message-ID: <87vg3sixm4.fsf@vran.herceg.de>
34527 Branch: perl
34528 ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c t/io/binmode.t
34529 ! t/io/print.t t/io/read.t t/lib/warnings/pp_sys
34530____________________________________________________________________________
34531[ 18114] By: rgs on 2002/11/06 20:08:53
34532 Log: Subject: Re: [PATCH] [perl #18175] B::Concise,-exec doesn't handle // operator well
34533 From: Stephen McCamant <smcc@mit.edu>
34534 Date: Thu, 31 Oct 2002 01:35:29 -0500
34535 Message-ID: <15808.53041.181907.308803@syllepsis.MIT.EDU>
34536
34537 plus a test case in ext/B/t/concise.t
34538 plus a (less intrusive, but less future-proof) fix for a
34539 similar problem in B::walkoptree_exec().
34540 Branch: perl
34541 ! ext/B/B.pm ext/B/B/Concise.pm ext/B/t/concise.t
34542____________________________________________________________________________
34543[ 18113] By: rgs on 2002/11/05 20:11:55
34544 Log: make regen_headers.
34545 Backport change #18078 to warnings.pl.
34546 Branch: perl
34547 ! global.sym perlapi.c perlapi.h proto.h warnings.pl
34548____________________________________________________________________________
34549[ 18112] By: jhi on 2002/11/05 13:26:28
34550 Log: perl embed.pl
34551 Branch: maint-5.8/perl
34552 ! embed.h embedvar.h global.sym perlapi.c perlapi.h proto.h
34553____________________________________________________________________________
34554[ 18111] By: jhi on 2002/11/05 13:24:59
34555 Log: Integrate
34556
34557 [ 18067]
34558 [PATCH] embed.pl doc. (embed.pl reorganization for doc headers)
34559 Wed, 23 Oct 2002; Jarkko Hietaniemi <jhi@iki.fi>
34560 With some additional modifications
34561
34562 [ 18068]
34563 Repair broken previous patch. I don't like it, but not repairing it
34564 breaks each and every build. Will teach me to test on the same
34565 machine where I patched it. Sorry.
34566
34567 [ 18108]
34568 Put back the DO NOT EDIT headers in proto.h and global.sym
34569
34570 Subject: Re: [perl #18066] Bug in -I when path has double colons?
34571 From: Slaven Rezic <slaven.rezic@berlin.de>
34572 Date: 03 Nov 2002 10:25:10 +0100
34573 Message-ID: <87adkrngy1.fsf@vran.herceg.de>
34574 Branch: maint-5.8/perl
34575 !> embed.pl
34576____________________________________________________________________________
34577[ 18110] By: jhi on 2002/11/05 13:12:12
34578 Log: Integrate
34579
34580 [ 17951]
34581 MakeMaker's INSTALLSITEMANXDIR Configure's counterpart
34582 Thu, 25 Jul 2002, Andy Dougherty
34583
34584 (had to regen Configure)
34585 Branch: maint-5.8/perl
34586 ! Configure config_h.SH
34587 !> Policy_sh.SH
34588____________________________________________________________________________
34589[ 18109] By: ams on 2002/11/05 13:03:34
34590 Log: Subject: Re: [perl #18107] lc(), uc() and ucfirst() broken inside utf8 regex
34591 From: hv@crypt.org
34592 Date: Tue, 05 Nov 2002 13:30:00 +0000
34593 Message-Id: <200211051330.gA5DU0p00718@crypt.compulink.co.uk>
34594
34595 This is half of the fix for #18107. The swash_init() problems
34596 described in <20021105143646.M18101@lustre.dyn.wiw.org> remain,
34597 but can now be seen only with UTF-8 test cases.
34598 Branch: perl
34599 ! pp.c
34600____________________________________________________________________________
34601[ 18108] By: merijn on 2002/11/05 07:52:08
34602 Log: Put back the DO NOT EDIT headers in proto.h and global.sym
34603
34604 Subject: Re: [perl #18066] Bug in -I when path has double colons?
34605 From: Slaven Rezic <slaven.rezic@berlin.de>
34606 Date: 03 Nov 2002 10:25:10 +0100
34607 Message-ID: <87adkrngy1.fsf@vran.herceg.de>
34608 Branch: perl
34609 ! embed.pl
34610____________________________________________________________________________
34611[ 18107] By: ams on 2002/11/05 03:43:46
34612 Log: 1. Update pp_ucfirst to enter the UTF-8 branch only if the first
34613 character is UTF-8. (Copied from pp_lcfirst.)
34614 2. sv_dump() should display FLAGS=...,UTF8 for both POK and pPOK.
34615 Branch: perl
34616 ! dump.c pp.c
34617____________________________________________________________________________
34618[ 18106] By: hv on 2002/11/05 01:43:27
34619 Log: new test based on:
34620 Subject: [TEST] for [PATCH] bug in utf8.c(?)
34621 From: Marty Pauley <marty+p5p@kasei.com>
34622 Date: Fri, 18 Oct 2002 21:02:38 +0100
34623 Message-ID: <20021018200238.GY3764@soto.kasei.com>
34624 Branch: perl
34625 ! lib/utf8.t
34626____________________________________________________________________________
34627[ 18105] By: hv on 2002/11/05 00:59:30
34628 Log: Subject: Re: Class::Struct, simple patch, tests
34629 From: Marty Pauley <marty+p5p@kasei.com>
34630 Date: Fri, 18 Oct 2002 22:26:38 +0100
34631 Message-ID: <20021018212638.GB3764@soto.kasei.com>
34632 Branch: perl
34633 ! lib/Class/Struct.pm lib/Class/Struct.t
34634____________________________________________________________________________
34635[ 18104] By: jhi on 2002/11/04 22:23:54
34636 Log: Integrate
34637 [ 17946]
34638 nanosleep on VMS not present
34639 Branch: maint-5.8/perl
34640 !> configure.com
34641____________________________________________________________________________
34642[ 18103] By: jhi on 2002/11/04 22:11:33
34643 Log: Integrate
34644 [ 17944]
34645 nanosleep probes as per Jarkko's request
34646
34647 (and regen Configure)
34648 Branch: maint-5.8/perl
34649 ! Configure config_h.SH
34650 !> NetWare/config_H.wc Porting/config.sh Porting/config_H
34651 !> epoc/config.sh perl.h win32/config.bc win32/config.gc
34652 !> win32/config.vc win32/config.vc64 win32/config_H.bc
34653 !> win32/config_H.gc win32/config_H.vc win32/config_H.vc64
34654 !> wince/config.ce wince/config_H.ce
34655____________________________________________________________________________
34656[ 18102] By: rgs on 2002/11/04 21:43:53
34657 Log: Subject: Re: [perl #18066] Bug in -I when path has double colons?
34658 From: Slaven Rezic <slaven.rezic@berlin.de>
34659 Date: 30 Oct 2002 11:18:47 +0100
34660 Message-ID: <87of9c2prs.fsf@vran.herceg.de>
34661
34662 With the corresponding change to embed.fnc
34663 Branch: perl
34664 + t/run/switchI.t
34665 ! MANIFEST embed.fnc embed.h embedvar.h global.sym perl.c
34666 ! proto.h t/run/runenv.t
34667____________________________________________________________________________
34668[ 18101] By: jhi on 2002/11/04 21:29:57
34669 Log: Integrate
34670
34671 [ 17731]
34672 Subject: [PATCH] Configure missing d_modflproto=''
34673 From: "Gerrit P. Haase" <gp@familiehaase.de>
34674 Date: Tue, 13 Aug 2002 15:11:05 +0200
34675 Message-id: <11417599086.20020813151105@familiehaase.de>
34676
34677 [ 17739]
34678 Subject: Re: [perl #15326] Not OK: perl v5.8.0 on i686-linux-64int-ld 2.4.5
34679 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
34680 Date: Tue, 23 Jul 2002 09:21:10 +0200
34681 Message-id: <20020723092051.184C.H.M.BRAND@hccnet.nl>
34682
34683 [ 17902]
34684 [PATCH perl@17882] configure.com needs d_modflproto
34685 Thu 12 Sep 2002 23:19, "Craig A. Berry"
34686
34687 [ 17919]
34688 Subject: [PATCH] AIX hints missinga >&4
34689 From: Jarkko Hietaniemi <jhi@iki.fi>
34690 Date: Fri, 13 Sep 2002 16:48:42 +0300
34691 Message-ID: <20020913134842.GD8929@lyta.hut.fi>
34692 Branch: maint-5.8/perl
34693 !> Configure configure.com hints/aix.sh
34694____________________________________________________________________________
34695[ 18100] By: jhi on 2002/11/04 21:21:09
34696 Log: Integrate (two changes that are followups for changes already in)
34697
34698 [ 17745]
34699 perldelta for #17727
34700
34701 [ 17831]
34702 #17827 misses some win32 tweaks
34703 Branch: maint-5.8/perl
34704 !> pod/perldelta.pod win32/Makefile win32/makefile.mk
34705____________________________________________________________________________
34706[ 18099] By: jhi on 2002/11/04 21:17:25
34707 Log: Integrate (automerge didn't work, required manual copying from
34708 a post-17815 snapshot and editing a '59' to '58')
34709
34710 [ 17815]
34711 formatting cleanup and:
34712 Subject: Re: perl-5.8.0 on HP porting center
34713 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
34714 Date: Thu, 29 Aug 2002 12:23:31 +0200
34715 Message-Id: <20020829122221.0CA3.H.M.BRAND@hccnet.nl>
34716 Branch: maint-5.8/perl
34717 ! installperl
34718____________________________________________________________________________
34719[ 18098] By: jhi on 2002/11/04 18:53:22
34720 Log: Kick patchlevel.
34721 Branch: maint-5.8/perl
34722 ! patchlevel.h
34723____________________________________________________________________________
34724[ 18097] By: jhi on 2002/11/04 18:52:23
34725 Log: Update Changes.
34726 Branch: maint-5.8/perl
34727 ! Changes patchlevel.h
34728____________________________________________________________________________
34729[ 18096] By: jhi on 2002/11/04 18:46:09
34730 Log: Integrate
34731
34732 [ 18090]
34733 extend #13786 to cover the other four identical chunks of code
34734 to avoid looping under overload.
34735
34736 [ 18091]
34737 How pre-5.9.0 Perl can be fooled by a defined-or.
34738
34739 [ 18093]
34740 s/Perlf/Perl/ (thanks rgs)
34741 Branch: maint-5.8/perl
34742 !> pod/perldiag.pod sv.c
34743____________________________________________________________________________
34744[ 18095] By: jhi on 2002/11/04 17:45:47
34745 Log: Integrate (now tests 100% in Tru64 5.1A):
34746
34747 [ 18083]
34748 [PATCH] Typo configpm
34749 Mon, 4 Nov 2002; Rafael Garcia-Suarez <rgarciasuarez@free.fr>
34750
34751 [ 18084]
34752 Tru64, gcc -O3, datasize
34753 Sun, 3 Nov 2002; Jarkko Hietaniemi <jhi@iki.fi>
34754
34755 [ 18085]
34756 Subject: Re: [perl #17064] illegal legal unicode character
34757 From: hv@crypt.org
34758 Date: Mon, 04 Nov 2002 13:23:49 +0000
34759 Message-Id: <200211041323.gA4DNn313132@crypt.compulink.co.uk>
34760
34761 [ 18086]
34762 integrate from perlio: changes #17709, #17795, #17796, #18032
34763
34764 [ 18088]
34765 Charnames take 4
34766 Mon, 04 Nov 2002; H.Merijn Brand <h.m.brand@hccnet.nl>
34767 Branch: maint-5.8/perl
34768 !> Porting/apply README.tru64 configpm ext/PerlIO/t/encoding.t
34769 !> ext/PerlIO/t/via.t ext/PerlIO/via/via.xs hints/dec_osf.sh
34770 !> lib/charnames.pm lib/charnames.t perlio.c regexec.c
34771 !> t/io/crlf.t t/op/split.t
34772____________________________________________________________________________
34773[ 18094] By: merijn on 2002/11/04 16:08:22
34774 Log: Changed the warning detection pattern because of:
34775
34776 Subject: ccache gcc3.2 doesn't work
34777 From: Nicholas Clark <nick@ccl4.org>
34778 Date: Tue, 29 Oct 2002 15:01:39
34779 Message-ID: <20021029150139.J82080@plum.flirble.org>
34780 Branch: perl
34781 ! Configure
34782____________________________________________________________________________
34783[ 18093] By: jhi on 2002/11/04 16:06:39
34784 Log: s/Perlf/Perl/ (thanks rgs)
34785 Branch: perl
34786 ! pod/perldiag.pod
34787____________________________________________________________________________
34788[ 18092] By: merijn on 2002/11/04 15:57:58
34789 Log: Using ccache will change the warning that we want to catch
34790 Mon, 04 Nov 2002; H.Merijn Brand, Nicholas Clark
34791 Branch: metaconfig/U/perl
34792 ! gccvers.U
34793____________________________________________________________________________
34794[ 18091] By: jhi on 2002/11/04 15:50:07
34795 Log: How pre-5.9.0 Perl can be fooled by a defined-or.
34796 Branch: perl
34797 ! pod/perldiag.pod
34798____________________________________________________________________________
34799[ 18090] By: hv on 2002/11/04 15:49:29
34800 Log: extend #13786 to cover the other four identical chunks of code
34801 to avoid looping under overload.
34802 Branch: perl
34803 ! sv.c
34804____________________________________________________________________________
34805[ 18089] By: jhi on 2002/11/04 15:44:28
34806 Log: The //= meme seems to be catching on.
34807 Branch: maint-5.8/perl
34808 ! t/op/anonsub.t
34809____________________________________________________________________________
34810[ 18088] By: merijn on 2002/11/04 15:37:06
34811 Log: Charnames take 4
34812 Mon, 04 Nov 2002; H.Merijn Brand <h.m.brand@hccnet.nl>
34813 Branch: perl
34814 ! lib/charnames.pm lib/charnames.t
34815____________________________________________________________________________
34816[ 18087] By: jhi on 2002/11/04 15:28:23
34817 Log: Integrate:
34818
34819 [ 17677]
34820 Main branch no longer needs op/taint.t version check.
34821 Branch: maint-5.8/perl
34822 !> t/op/taint.t
34823____________________________________________________________________________
34824[ 18086] By: hv on 2002/11/04 15:16:34
34825 Log: integrate from perlio: changes #17709, #17795, #17796, #18032
34826 Branch: perl
34827 !> Porting/apply ext/PerlIO/t/encoding.t ext/PerlIO/t/via.t
34828 !> ext/PerlIO/via/via.xs perlio.c t/io/crlf.t
34829____________________________________________________________________________
34830[ 18085] By: hv on 2002/11/04 12:17:12
34831 Log: Subject: Re: [perl #17064] illegal legal unicode character
34832 From: hv@crypt.org
34833 Date: Mon, 04 Nov 2002 13:23:49 +0000
34834 Message-Id: <200211041323.gA4DNn313132@crypt.compulink.co.uk>
34835 Branch: perl
34836 ! regexec.c t/op/split.t
34837____________________________________________________________________________
34838[ 18084] By: merijn on 2002/11/04 11:04:45
34839 Log: Tru64, gcc -O3, datasize
34840 Sun, 3 Nov 2002; Jarkko Hietaniemi <jhi@iki.fi>
34841 Branch: perl
34842 ! README.tru64 hints/dec_osf.sh
34843____________________________________________________________________________
34844[ 18083] By: merijn on 2002/11/04 10:58:52
34845 Log: Typo configpm
34846 Mon, 4 Nov 2002; Rafael Garcia-Suarez <rgarciasuarez@free.fr>
34847 Branch: perl
34848 ! configpm
34849____________________________________________________________________________
34850[ 18082] By: jhi on 2002/11/04 05:38:52
34851 Log: Integrate: the same caveat as for #18080.
34852
34853 [ 17779]
34854 upgrade bignum to v0.13: fix test failures and update docs
34855
34856 [ 17780]
34857 fix bignum test failures
34858
34859 [ 17784]
34860 #17780 relies on unixy paths to locate own directory for bignum tests.
34861
34862 [ 17785]
34863 fix non-ANSI C++-style comment
34864 Subject: [ PATCH ] Smoke 17780 /pro/3gl/CPAN/perl-current
34865 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
34866 Date: Mon, 26 Aug 2002 09:15:18 +0200
34867 Message-Id: <20020826090145.6975.H.M.BRAND@hccnet.nl>
34868
34869 [ 17841]
34870 Subject: [PATCH] op/getpid.t failure
34871 From: Michael G Schwern <schwern@pobox.com>
34872 Date: Tue, 3 Sep 2002 17:48:24 -0700
34873 Message-ID: <20020904004824.GG2701@ool-18b93024.dyn.optonline.net>
34874
34875 [ 17872]
34876 temporarily skip failing Storable tests caused by #17869
34877
34878 [ 17901]
34879 Subject: [PATCH] more PASE wisdom
34880 From: Jarkko Hietaniemi <jhi@iki.fi>
34881 Date: Fri, 13 Sep 2002 00:17:39 +0300
34882 Message-ID: <20020912211739.GB6980@lyta.hut.fi>
34883
34884 [ 17912]
34885 Subject: [PATCH] AIX test shouldn't trip OS/400 PASE
34886 From: Jarkko Hietaniemi <jhi@iki.fi>
34887 Date: Thu, 19 Sep 2002 18:59:48 +0300
34888 Message-Id: <20020919155948.GU208696@lyta.hut.fi>
34889
34890 Subject: [PATCH] more PASE tweakage
34891 From: Jarkko Hietaniemi <jhi@iki.fi>
34892 Date: Thu, 19 Sep 2002 18:01:44 +0300
34893 Message-Id: <20020919150144.GJ208696@lyta.hut.fi>
34894
34895 [ 17963]
34896 Subject: Re: [perl #17376] Bug Report - our(%)
34897 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
34898 Date: Tue, 01 Oct 2002 09:54:30 -0700
34899 Message-ID: <GNdm9gzkgWOS092yn@efn.org>
34900
34901 [ 17969]
34902 Subject: [PATCH] Storable and code serialization: documentation
34903 From: Slaven Rezic <slaven.rezic@berlin.de>
34904 Date: Wed, 2 Oct 2002 10:21:37 +0200 (CEST)
34905 Message-Id: <200210020821.g928Lb2i003767@vran.herceg.de>
34906
34907 [ 17970]
34908 Add a line about 2.05.
34909
34910 [ 17971]
34911 Subject: Re: Not OK 17969
34912 From: Slaven Rezic <slaven.rezic@berlin.de>
34913 Date: 03 Oct 2002 13:12:58 +0200
34914 Message-Id: <87lm5fn5c5.fsf@vran.herceg.de>
34915
34916 [ 17974]
34917 Fix a precedence problem.
34918
34919 [ 17977]
34920 Complement to change #17976 :
34921 there was a similar bug on rdo().
34922 Increment $Safe::VERSION.
34923
34924 [ 17980]
34925 Upgrade Safe.pm to 2.09 after CPAN backport.
34926 Fix testcases to run properly outside perl core build enviroment.
34927
34928 [ 17986]
34929 Remove use of caller() in strict.pm, and tighten Safe compartment
34930 for Storable tests to match.
34931
34932 [ 18000]
34933 Subject: [PATCH] perl573delta delinting
34934 From: Jarkko Hietaniemi <jhi@iki.fi>
34935 Date: Fri, 4 Oct 2002 16:19:31 +0300
34936 Message-ID: <20021004131931.GE278184@lyta.hut.fi>
34937
34938 [ 18008]
34939 Subject: [PATCH] Storable 2.06 (was Re: Bug in ext/Storable/t/integer.t)
34940 From: Nicholas Clark <nick@unfortu.net>
34941 Date: Mon, 7 Oct 2002 23:35:34 +0100
34942 Message-ID: <20021007223534.GD286@Bagpuss.unfortu.net>
34943
34944 [ 18014]
34945 Subject: Re: [PATCH] perl573delta delinting
34946 From: Philip Newton <Philip.Newton@gmx.net>
34947 Date: Sat, 12 Oct 2002 21:25:49 +0200
34948 Message-ID: <iotgqucnbttvvc43o0j7kv55p5dstui4oc@4ax.com>
34949
34950 [ 18019]
34951 Subject: Japanese translation of Storable
34952 From: "KAWAI,Takanori" <GCD00051@nifty.ne.jp>
34953 Date: Tue, 15 Oct 2002 06:31:01 +0900
34954 Message-Id: <003801c273c9$05888910$1401a8c0@hipposam>
34955
34956 [ 18024]
34957 Subject: Re: [perl #17061] no strict 'garbage'
34958 From: Slaven Rezic <slaven.rezic@berlin.de>
34959 Date: 10 Oct 2002 16:23:22 +0200
34960 Message-ID: <87ptui5q5h.fsf@vran.herceg.de>
34961
34962 [ 18061]
34963 Subject: [PATCH lib/IO.t] Add tests for IO.pm
34964 From: chromatic <chromatic@wgz.org>
34965 Date: Mon, 21 Oct 2002 20:27:43 -0700
34966 Message-ID: <20021022033253.57952.qmail@onion.perl.org>
34967
34968 [ 18063]
34969 change #18038 gives too many problems on t/450_service.t; disable
34970 it for now
34971 Branch: maint-5.8/perl
34972 !> (integrate 32 files)
34973____________________________________________________________________________
34974[ 18081] By: jhi on 2002/11/04 05:26:36
34975 Log: Integrate:
34976
34977 [ 17741]
34978 Subject: Re: [PATCH] Storable and CODE references
34979 From: Slaven Rezic <slaven.rezic@berlin.de>
34980 Date: 17 Aug 2002 21:58:03 +0200
34981 Message-id: <87bs812r78.fsf@vran.herceg.de>
34982 Branch: maint-5.8/perl
34983 +> ext/Storable/t/code.t
34984 !> MANIFEST ext/Storable/Storable.xs ext/Storable/t/forgive.t
34985 !> ext/Storable/t/malice.t
34986____________________________________________________________________________
34987[ 18080] By: jhi on 2002/11/04 05:23:04
34988 Log: The first big import towards 5.8.1, @18078. Please do NOT
34989 expect all to work yet, some tests will fail. This is just
34990 a reasonably optimal/maximal push in the general direction.
34991
34992 [ 17655]
34993 Upgrade to Unicode::Collate 0.20.
34994
34995 [ 17656]
34996 Subject: [PATCH] Typo in regcomp.c
34997 From: Chris Ball <chris@cpan.org>
34998 Date: 26 Jul 2002 17:49:35 +0100
34999 Message-Id: <868z3yzb6o.fsf@void.printf.net>
35000 (With additional tweak to s_reginclasslen.)
35001
35002 [ 17672]
35003 Subject: Re: mention of "use sort" botched in perlfunc?
35004 From: Michael G Schwern <schwern@pobox.com>
35005 Date: Sat, 20 Jul 2002 13:49:58 -0400 (18:49 BST)
35006 Message-id: <20020720174958.GL362@ool-18b93024.dyn.optonline.net>
35007
35008 [ 17673]
35009 Subject: [PATCH] AUTHORS
35010 From: Walt Mankowski <waltman@pobox.com>
35011 Date: Sat, 20 Jul 2002 22:56:12 -0400 (Sun 03:56 BST)
35012 Message-id: <20020721025612.GB15958@pobox.com>
35013
35014 [ 17674]
35015 Subject: [PATCH] AUTHORS
35016 From: Colin Watson <colinw@zeus.com>
35017 Date: Thu, 25 Jul 2002 15:54:37 +0100
35018 Message-id: <20020725145437.GC4921@zeus.com>
35019
35020 [ 17675]
35021 Fix email address for Kragen Sitaker <kragen@pobox.com>.
35022
35023 [ 17676]
35024 Subject: Re: [PATCH] Re: taint news
35025 From: Rick Delaney <rick.delaney@rogers.com>
35026 Date: 04 Aug 2002 00:28:58 EDT
35027 Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
35028 Ref: 20020208.005
35029
35030 [ 17678]
35031 Subject: Re: [ID 20020704.001] my $foo = $1 won't taint $foo (with use re 'taint')
35032 From: hv@crypt.org
35033 Date: Sun, 04 Aug 2002 17:40:30 +0100
35034 Message-id: <200208041640.g74GeUU25061@crypt.compulink.co.uk>
35035
35036 [ 17679]
35037 [ID 20020704.001] again: #17678 caused test failures in pod2html,
35038 in which $1 could leak from previous regexp
35039
35040 [ 17680]
35041 warn that keywords.h is generated
35042
35043 [ 17681]
35044 typo
35045
35046 [ 17683]
35047 Integrate from maint-5.6/macperl via macperl
35048 Changes 17660, 17661, 17662, 17663, 17664
35049
35050 [ 17684]
35051 Integrate from perlio: change #17653 fixes bug RT15283
35052
35053 [ 17685]
35054 Subject: Re: mention of "use sort" botched in perlfunc? + PATCH
35055 From: "John P. Linderman" <jpl@research.att.com>
35056 Date: Sun, 21 Jul 2002 12:13:32 -0400 (17:13 BST)
35057 Message-id: <200207211613.MAA69505@raptor.research.att.com>
35058
35059 [ 17686]
35060 More regression tests for $^H and %^H.
35061 Add a TODO test for eval "" preserving %^H.
35062
35063 [ 17687]
35064 PerlIO::scalar wasn't able to read from non-string
35065 scalar ; now stringifies its argument.
35066
35067 [ 17688]
35068 Subject: [PATCH] XS build fix for VMS
35069 From: "Craig A. Berry" <craigberry@mac.com>
35070 Date: Sun, 4 Aug 2002 12:13:06 -0500
35071 Message-ID: <a05111b07b97256e1c335@[172.16.52.1]>
35072
35073 [ 17689]
35074 Subject: Re: no warnings 'io';
35075 From: Nicholas Clark <nick@unfortu.net>
35076 Date: Sat, 27 Jul 2002 21:49:55 +0100
35077 Message-ID: <20020727204954.GB5117@Bagpuss.unfortu.net>
35078
35079 Plus a little bit of regression tests.
35080
35081 [ 17690]
35082 Doc fix : the symbol for COPs wasn't documented.
35083
35084 [ 17691]
35085 Subject: [perl #15398] Usage::pod2usage looks for perldoc in $Config{bin} and not in $Config{scriptdir}
35086 From: Henrik Tougaard (via RT) <perlbug@perl.org>
35087 Date: 23 Jul 2002 13:45:49 -0000 (Tue 14:45 BST)
35088 Message-id: <rt-15398-31095.6.30466042998663@perl>
35089
35090 [ 17692]
35091 Subject: [PATCH] README.jp and README.cn
35092 From: Autrijus Tang <autrijus@autrijus.org>
35093 Date: Thu, 25 Jul 2002 07:05:11 +0800
35094 Message-id: <20020724230511.GA1327@not.autrijus.org>
35095
35096 [ 17693]
35097 Subject: [PATCH: lib/ExtUtils/MM_Unix.pm] Be less strict about what's POD.
35098 From: Abigail <abigail@foad.org>
35099 Date: Thu, 25 Jul 2002 08:52:52 -0700 (16:52 BST)
35100 Message-id: <20020725085252.A2703@ucan.foad.org>
35101
35102 [ 17694]
35103 Subject: Re: [RE-PATCH] Not OK: perl v5.8.0 on PA-RISC2.0 11.00
35104 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35105 Date: Wed, 31 Jul 2002 16:04:02 +0200
35106 Message-id: <20020731155005.4915.H.M.BRAND@hccnet.nl>
35107
35108 [ 17695]
35109 Subject: [PATCH] Re: [perl #15479] perl 5.8.0 segfault
35110 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
35111 Date: Fri, 2 Aug 2002 00:13:10 +0200
35112 Message-id: <20020802001310.7e1dc694.rgarciasuarez@free.fr>
35113
35114 [ 17696]
35115 Subject: Re: [perl #15523] Memory Leak in split with trailing empty elements
35116 From: Slaven Rezic <slaven.rezic@berlin.de>
35117 Date: 31 Jul 2002 09:50:06 +0200
35118 Message-id: <87ado85ob5.fsf@vran.herceg.de>
35119
35120 [ 17697]
35121 Subject: Doc patch for Class::Struct under 5.8.0
35122 From: Damian Conway <damian@conway.org>
35123 Date: Tue, 30 Jul 2002 23:03:14 +1000
35124 Message-id: <3D471FCF.1C7C6E6B@conway.org>
35125
35126 [ 17698]
35127 Subject: [perl #16000] Configure -Dstatic_ext=foo builds foo as both static and dynamic
35128 From: Yitzchak Scott-Thoennes (via RT) <perlbug@perl.org>
35129 Date: 6 Aug 2002 04:28:15 -0000 (Tue 05:28 BST)
35130 Message-id: <rt-16000-32913.8.41582281961522@bugs6.perl.org>
35131
35132 [ 17699]
35133 Subject: [PATCH] Re: [perl #15898] coredump with variable our
35134 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
35135 Date: Fri, 2 Aug 2002 23:44:21 +0200
35136 Message-id: <20020802234421.11c62fe6.rgarciasuarez@free.fr>
35137
35138 [ 17700]
35139 Subject: [DOC PATCH] perlipc.pod
35140 From: Arjen Laarhoven <arjen@nl.demon.net>
35141 Date: Tue, 6 Aug 2002 14:16:01 +0200
35142 Message-id: <20020806121601.GK40785@aragorn.noc.nl.demon.net>
35143
35144 [ 17701]
35145 Subject: [PATCH] Re: pp_sys.c compile failed..
35146 From: Andy Dougherty <doughera@lafayette.edu>
35147 Date: Tue, 6 Aug 2002 10:42:07 -0400 (EDT) (15:42 BST)
35148 Message-id: <Pine.SOL.4.10.10208061024250.5315-100000@maxwell.phys.lafayette.edu>
35149
35150 [ 17702]
35151 Subject: Re: README.aix
35152 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35153 Date: Tue, 30 Jul 2002 13:30:29 +0200
35154 Message-id: <20020730130812.48B9.H.M.BRAND@hccnet.nl>
35155
35156 [ 17704]
35157 Fix bug #16080 : an attribute list should end at '}'
35158
35159 [ 17705]
35160 More tests for the attribute syntax, from the
35161 attributes manpage.
35162
35163 [ 17706]
35164 Subject: Re: missing lower range in {} regex
35165 From: "John P. Linderman" <jpl@research.att.com>
35166 Date: Fri, 09 Aug 2002 12:48:55 -0400
35167 Message-ID: <200208091648.MAA77577@raptor.research.att.com>
35168
35169 [ 17707]
35170 Subject: New HP-UX itanium servers
35171 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35172 Date: Wed, 07 Aug 2002 13:25:57 +0200
35173 Message-ID: <20020807132518.FCBF.H.M.BRAND@hccnet.nl>
35174
35175 [ 17710]
35176 Subject: [PATCH] pod/perlfaq4.pod
35177 From: Abigail <abigail@foad.org>
35178 Date: Tue, 30 Jul 2002 09:52:02 -0700 (17:52 BST)
35179 Message-id: <20020730095202.A6462@ucan.foad.org>
35180 Add references to Regexp::Common.
35181
35182 [ 17711]
35183 Subject: [PATCH s2p] Small typo correction
35184 From: "Newton, Philip" <Philip.Newton@datenrevision.de>
35185 Date: Wed, 7 Aug 2002 11:50:51 +0200
35186 Message-id: <C9A98F2128EDD411B0920008C7B337A13DCE2B@hamsem01.de.gedas.vwg>
35187
35188 [ 17712]
35189 Subject: Re: Smoke 17703 /pro/3gl/CPAN/perl-current
35190 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35191 Date: Mon, 12 Aug 2002 10:25:20 +0200
35192 Message-id: <20020812102347.AFB6.H.M.BRAND@hccnet.nl>
35193 gcc bug test needs -lm
35194
35195 [ 17713]
35196 Subject: [PATCH] gv_fullname3 as call to gv_fullname4
35197 From: Nicholas Clark <nick@unfortu.net>
35198 Date: Sun, 11 Aug 2002 16:59:16 +0100
35199 Message-id: <20020811155914.GE300@Bagpuss.unfortu.net>
35200
35201 [ 17714]
35202 Subject: [PATCH] perltodo.pod
35203 From: Richard.Foley@t-online.de
35204 Date: Sun, 11 Aug 2002 18:26:10 +0200
35205 Message-id: <17dwY1-0spbdoC@fwd06.sul.t-online.com>
35206 perlbug credits
35207
35208 [ 17716]
35209 Subject: Re: [ID 20020713.001] chomp($data=<tied_fh>) strangeness.
35210 From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
35211 Date: Sat, 13 Jul 2002 17:44:02 +0100
35212 Message-id: <200207131644.g6DGi2214456@crypt.compulink.co.uk>
35213
35214 [ 17717]
35215 Subject: Re: [PATCH@8545] [ID 20000808.005] OP_REFGEN as an lvalue
35216 From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
35217 Date: Sat, 27 Jan 2001 19:31:29 -0800 (PST)
35218 Message-ID: <14963.32943.102669.67625@soda.csua.berkeley.edu>
35219
35220 [ 17719]
35221 Subject: [perl #15987] Tests fail when sources are under CVS control
35222 From: Warren Jones (via RT) <perlbug@perl.org>
35223 Date: 5 Aug 2002 19:08:50 -0000 (Mon 20:08 BST)
35224 Message-id: <rt-15987-32864.15.6255441902154@bugs6.perl.org>
35225
35226 [ 17720]
35227 Subject: Re: [PATCH] Re: taint news
35228 From: Rick Delaney <rick.delaney@rogers.com>
35229 Date: 04 Aug 2002 00:28:58 EDT
35230 Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
35231 missed patch fragment from Change #17676
35232
35233 [ 17721]
35234 #17717 needed tests fixing up
35235
35236 [ 17722]
35237 Subject: Minor perlrun.pod patch
35238 From: Iain Truskett <spoon@cpan.org>
35239 Date: Fri, 16 Aug 2002 16:20:27 +1000
35240 Message-Id: <20020816162027.D17196@eh.org>
35241
35242 [ 17724]
35243 ext/B/defsubs.h also depends on the program that builds it
35244
35245 [ 17727]
35246 Subject: [PATCH 5.7.3] Negative subscripts optionally passed to tied array methods
35247 From: Mark-Jason Dominus <mjd@plover.com>
35248 Date: Sun, 14 Apr 2002 23:38:55 -0400 (Mon 04:38 BST)
35249 Message-id: <20020415033855.6343.qmail@plover.com>
35250
35251 [ 17729]
35252 Subject: [PATCH] Safe.pm documentation
35253 From: Slaven Rezic <slaven.rezic@berlin.de>
35254 Date: Sat, 10 Aug 2002 19:30:38 +0200 (CEST)
35255 Message-id: <200208101730.g7AHUc9p001668@vran.herceg.de>
35256
35257 [ 17733]
35258 Subject: Server rename revisited
35259 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35260 Date: Tue, 13 Aug 2002 19:19:03 +0200
35261 Message-id: <20020813191821.DC98.H.M.BRAND@hccnet.nl>
35262
35263 [ 17734]
35264 Subject: [PATCH] Re: Pod::Functions tpyo
35265 From: Abe Timmerman <abe@ztreet.demon.nl>
35266 Date: Tue, 13 Aug 2002 23:47:00 +0200
35267 Message-id: <200208132347.00782.abe@ztreet.demon.nl>
35268
35269 [ 17735]
35270 Subject: Re: [perl #16198] pod tpyo in hostent.pm
35271 From: Mark-Jason Dominus <mjd@plover.com>
35272 Date: Tue, 13 Aug 2002 21:19:08 -0400 (Wed 02:19 BST)
35273 Message-id: <20020814011909.22744.qmail@plover.com>
35274
35275 [ 17736]
35276 Subject: [PATCH] Re: 5.8.0 sprintf (?) problem with floats?
35277 From: Dave Mitchell <davem@fdgroup.com>
35278 Date: Fri, 16 Aug 2002 23:31:07 +0100
35279 Message-id: <20020816233107.E9388@fdgroup.com>
35280
35281 [ 17737]
35282 Effect a speedy recovery from POD affected by (ahem, Australian)
35283 negligence.
35284
35285 [ 17743]
35286 Subject: Re: [PATCH] fix typos in perlpacktut
35287 From: "Mr. Nobody" <mrnobo1024@yahoo.com>
35288 Date: Fri, 16 Aug 2002 20:40:58 -0700 (PDT) (Sat 04:40 BST)
35289 Message-id: <20020817034058.45633.qmail@web20802.mail.yahoo.com>
35290
35291 [ 17744]
35292 Subject: typo in perfunc.pod
35293 From: "John P. Linderman" <jpl@research.att.com>
35294 Date: Mon, 19 Aug 2002 08:45:31 -0400 (EDT) (13:45 BST)
35295 Message-id: <200208191245.IAA20072@raptor.research.att.com>
35296
35297 [ 17748]
35298 todo test for linux $0 modification
35299 Subject: Re: [perl #16206] $0 in 5.8
35300 From: Slaven Rezic <slaven.rezic@berlin.de>
35301 Date: 17 Aug 2002 21:32:37 +0200
35302 Message-id: <87elcx2sdm.fsf@vran.herceg.de>
35303
35304 [ 17749]
35305 avoid use of %caller::EXPORT
35306 Subject: [PATCH] Re: question about Exporter::import
35307 From: Nicholas Clark <nick@unfortu.net>
35308 Date: Wed, 14 Aug 2002 21:33:12 +0100
35309 Message-id: <20020814203311.GD278@Bagpuss.unfortu.net>
35310
35311 [ 17750]
35312 Subject: [PATCH] Fix DBM filters
35313 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
35314 Date: Wed, 21 Aug 2002 11:40:49 +0100
35315 Message-ID: <AIEAJICLCBDNAAOLLOKLAEHCFEAA.Paul.Marquess@btinternet.com>
35316
35317 [ 17752]
35318 Subject: [Announce] Unicode::Collate 0.20 -> UCA version 9
35319 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
35320 Date: Fri, 26 Jul 2002 02:59:12 +0900
35321 Message-Id: <20020726025828.B5E9.BQW10602@nifty.com>
35322
35323 [ 17753]
35324 Subject: podlators 1.24 released
35325 From: Russ Allbery <rra@stanford.edu>
35326 Date: Sat, 03 Aug 2002 20:56:42 -0700
35327 Message-ID: <ylbs8jff9h.fsf@windlord.stanford.edu>
35328
35329 [ 17754]
35330 Subject: ANNOUNCE: Math-BigInt v1.62
35331 From: Tels <perl_dummy@bloodgate.com>
35332 Date: Wed, 21 Aug 2002 19:12:59 +0200 (CEST)
35333 Message-Id: <200208211513.g7LFDUs02512@crypt.org>
35334
35335 [ 17755]
35336 new files from #17754
35337
35338 [ 17756]
35339 Subject: ANNOUCNE: Math::BigRat v0.09
35340 From: Tels <perl_dummy@bloodgate.com>
35341 Date: Wed, 14 Aug 2002 20:12:03 +0200 (CEST)
35342 Message-Id: <200208141812.g7EICrV23771@crypt.org>
35343
35344 [ 17757]
35345 new file for #17756
35346
35347 [ 17758]
35348 bignum-0.12 updates from:
35349 Subject: [ANNOUCNE] Big Math::Big* update
35350 From: Tels <perl_dummy@bloodgate.com>
35351 Date: Tue, 13 Aug 2002 22:02:09 +0200 (CEST)
35352 Message-Id: <200208132121.g7DLLRV21408@crypt.org>
35353
35354 [ 17759]
35355 Subject: [PATCH] x2p/str.c signedness nits
35356 From: Jarkko Hietaniemi <jhi@iki.fi>
35357 Date: Fri, 23 Aug 2002 02:43:30 +0300
35358 Message-Id: <20020822234330.GC31624@lyta.hut.fi>
35359
35360 [ 17760]
35361 Subject: [PATCH] PPPort IVSIZE and SvPV_nolen
35362 From: Jarkko Hietaniemi <jhi@iki.fi>
35363 Date: Fri, 23 Aug 2002 05:29:09 +0300
35364 Message-Id: <20020823022909.GC9135@lyta.hut.fi>
35365
35366 [ 17761]
35367 Incorporate fix from JHI at:
35368 http://rt.perl.org/rt2/Ticket/Display.html?id=16708
35369
35370 [ 17764]
35371 a2p wasn't installed with -Dversiononly
35372
35373 [ 17765]
35374 Subject: [PATCH] remove 2 unit warnings from lib/Net/t/hostname.t
35375 From: Nicholas Clark <nick@unfortu.net>
35376 Date: Sat, 24 Aug 2002 17:01:08 +0100
35377 Message-ID: <20020824160107.GI280@Bagpuss.unfortu.net>
35378 (plus a typo fix)
35379
35380 [ 17766]
35381 Subject: [perl #16737] [PATCH] Perl5.8.0 two simple typos in perlxstut
35382 From: Peter BARABAS (via RT) <perlbug@perl.org>
35383 Date: 24 Aug 2002 08:16:19 -0000
35384 Message-ID: <rt-16737-35573.3.51579548306248@bugs6.perl.org>
35385
35386 [ 17767]
35387 Subject: [perl #16281] patch to enable perldoc -n for MSWin32 (perl-5.8.0)
35388 From: "Randy W. Sims" (via RT) <perlbug@perl.org>
35389 Date: 18 Aug 2002 13:27:12 -0000
35390 Message-Id: <rt-16281-34264.3.49471192322156@bugs6.perl.org>
35391
35392 [ 17768]
35393 Subject: [PATCH] fix lib.pm's import() to accept readonly parameters
35394 From: Anton Berezin <tobez@tobez.org>
35395 Date: Tue, 20 Aug 2002 23:44:25 +0200
35396 Message-ID: <20020820214425.GG16178@heechee.tobez.org>
35397
35398 [ 17769]
35399 Subject: bit more for WinCE
35400 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
35401 Date: Wed, 21 Aug 2002 01:31:52 +0400
35402 Message-ID: <000f01c24891$045c4990$2b5ec3d9@vad>
35403
35404 [ 17770]
35405 Subject: [PATCH] let perlfaq1.pod mention 5.8 as the current stable release
35406 From: "Jos I. Boumans" <kane@cpan.org>
35407 Date: Wed, 21 Aug 2002 14:55:51 +0200
35408 Message-ID: <20020821124817.34761.qmail@onion.perl.org>
35409
35410 [ 17771]
35411 Subject: Newdated info for HP-UX
35412 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35413 Date: Wed, 21 Aug 2002 20:20:17 +0200
35414 Message-Id: <20020821201737.697B.H.M.BRAND@hccnet.nl>
35415
35416 [ 17772]
35417 Subject: Re: p5p patches
35418 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35419 Date: Fri, 23 Aug 2002 15:27:48 +0200
35420 Message-Id: <20020823152535.D3EA.H.M.BRAND@hccnet.nl>
35421
35422 [ 17773]
35423 Subject: Re: a bugfix for Pod::Html (in diff -u format)
35424 From: DH <crazyinsomniac@yahoo.com>
35425 Date: Thu, 22 Aug 2002 02:32:50 -0700 (PDT)
35426 Message-ID: <20020822093250.30523.qmail@web40205.mail.yahoo.com>
35427
35428 [ 17774]
35429 Subject: [PATCH lib/Benchmark.(pm|t)] Make cmpthese work as documented.
35430 From: Abigail <abigail@foad.org>
35431 Date: Thu, 22 Aug 2002 04:10:39 -0700
35432 Message-ID: <20020822041039.A2089@ucan.foad.org>
35433
35434 [ 17775]
35435 Subject: [perl #16729] crypt() doesn't work in multithreaded perl
35436 From: "mls@suse.de (via RT)" <perlbug@perl.org>
35437 Date: 23 Aug 2002 15:24:39 -0000
35438 Message-Id: <rt-16729-35555.9.25145891475907@bugs6.perl.org>
35439
35440 [ 17776]
35441 Subject: [PATCH] ExtUtils::Constant 0.13
35442 From: Nicholas Clark <nick@unfortu.net>
35443 Date: Fri, 23 Aug 2002 19:21:12 +0100
35444 Message-ID: <20020823182111.GA281@Bagpuss.unfortu.net>
35445
35446 [ 17778]
35447 Subject: Encode 1.76 Released
35448 From: Dan Kogai <dankogai@dan.co.jp>
35449 Date: su elo 25, 2002 11:27:07 US/Eastern
35450 Message-Id: <1DE68466-B83F-11D6-8805-0003939A104C@dan.co.jp>
35451
35452 [ 17781]
35453 #17775 changed reentr.c instead of reentr.pl, which generates it
35454
35455 [ 17782]
35456 new test for change #17773
35457 Subject: lib/Pod/t/htmlview.t and lib/Pod/t/htmlview.pod patch (to account for the Pod::Html patch)
35458 From: DH <crazyinsomniac@yahoo.com>
35459 Date: Mon, 26 Aug 2002 01:36:27 -0700 (PDT)
35460 Message-ID: <20020826083627.46199.qmail@web40207.mail.yahoo.com>
35461
35462 [ 17783]
35463 Subject: [ANNOUNCE] Test::Simple 0.47
35464 From: Michael G Schwern <schwern@pobox.com>
35465 Date: Mon, 26 Aug 2002 04:13:03 -0700
35466 Message-ID: <20020826111303.GJ758@ool-18b93024.dyn.optonline.net>
35467
35468 [ 17786]
35469 Subject: CPAN Upload: S/SB/SBURKE/Test-1.21.tar.gz
35470 From: "Sean M. Burke" <sburke@cpan.org>
35471 Date: Mon, 26 Aug 2002 04:38:19 -0600
35472 Message-Id: <5.1.0.14.1.20020826043702.022ca320@mail.spinn.net>
35473
35474 [ 17787]
35475 fix for:
35476 Subject: [perl #16773] "abc" =~ /(ab)()(c)??/ broken
35477 From: (Randal L. Schwartz) (via RT) <perlbug@perl.org>
35478 Date: 26 Aug 2002 15:01:36 -0000
35479 Message-Id: <rt-16773-35748.5.13188490159294@bugs6.perl.org>
35480
35481 [ 17789]
35482 Subject: Patch perlvar.pod
35483 From: mjd@plover.com
35484 Date: 27 Aug 2002 03:03:01 -0000
35485 Message-Id: <20020827030301.32481.qmail@plover.com>
35486
35487 [ 17790]
35488 #17783 introduced an outdated test module, causing failure in
35489 lib/ExtUtils/t/problems.t. This grabs a more recent copy from
35490 ExtUtils::MakeMaker.
35491
35492 [ 17791]
35493 Missing MANIFEST files for #17783.
35494
35495 [ 17797]
35496 Subject: Re: [perl #16677] B::SV::FLAGS dumps core
35497 From: Mark-Jason Dominus <mjd@plover.com>
35498 Date: Sun, 25 Aug 2002 22:31:54 -0400
35499 Message-ID: <20020826023154.22986.qmail@plover.com>
35500
35501 [ 17798]
35502 Subject: [PATCH] posixify getppid on linux-multithread
35503 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
35504 Date: Tue, 6 Aug 2002 21:56:46 +0200
35505 Message-Id: <20020806215646.3f6852bb.rgarciasuarez@free.fr>
35506
35507 [ 17799]
35508 Subject: Re: if.pm bug.
35509 From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
35510 Date: Sun, 25 Aug 2002 00:27:59 +0200
35511 Message-ID: <20020824222210.16387.qmail@onion.perl.org>
35512
35513 [ 17800]
35514 Subject: Patch: Put local($^I, @ARGV) = ... trick back into perlfaq5
35515 From: Mark-Jason Dominus <mjd@plover.com>
35516 Date: Sun, 25 Aug 2002 12:09:53 -0400
35517 Message-ID: <20020825160953.15987.qmail@plover.com>
35518
35519 [ 17801]
35520 Subject: [PATCH] ExtUtils::Constant 0.14
35521 From: Nicholas Clark <nick@unfortu.net>
35522 Date: Sun, 25 Aug 2002 18:06:00 +0100
35523 Message-ID: <20020825170600.GE322@Bagpuss.unfortu.net>
35524
35525 [ 17802]
35526 Subject: [perl #16769] Documention bug
35527 From: "dformosa@dformosa.zeta.org.au (via RT)" <perlbug@perl.org>
35528 Date: 26 Aug 2002 10:01:04 -0000
35529 Message-Id: <rt-16769-35720.17.1057454913803@bugs6.perl.org>
35530
35531 [ 17803]
35532 Subject: [PATCH] AIX compiler setup sanity checking
35533 From: Jarkko Hietaniemi <jhi@iki.fi>
35534 Date: Thu, 29 Aug 2002 16:43:51 +0300
35535 Message-Id: <20020829134351.GG5219@lyta.hut.fi>
35536
35537 [ 17804]
35538 Subject: [PATCH] B::check_av() ; B::Deparse for CHECK blocks
35539 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
35540 Date: Tue, 27 Aug 2002 23:36:53 +0200
35541 Message-Id: <20020827233653.535bc211.rgarciasuarez@free.fr>
35542
35543 [ 17805]
35544 Fix based on:
35545 Subject: [perl #16799] Perl 5.8.0 breaks POSIX::isprint() (and other POSIX::xxx)
35546 From: "esm@pobox.com (via RT)" <perlbug@perl.org>
35547 Date: 27 Aug 2002 22:10:16 -0000
35548 Message-Id: <rt-16799-35846.14.4842888832041@bugs6.perl.org>
35549
35550 [ 17806]
35551 #17449 failed to apply the actual patch. This is it.
35552
35553 [ 17807]
35554 Subject: [PATCH] IRIX + INSTALL
35555 From: Jarkko Hietaniemi <jhi@iki.fi>
35556 Date: Fri, 30 Aug 2002 06:31:48 +0300
35557 Message-Id: <20020830033148.GA874@lyta.hut.fi>
35558
35559 [ 17808]
35560 Subject: [PATCH] Tru64 vs Berkeley DB
35561 From: Jarkko Hietaniemi <jhi@iki.fi>
35562 Date: Fri, 30 Aug 2002 06:56:38 +0300
35563 Message-Id: <20020830035638.GB874@lyta.hut.fi>
35564
35565 [ 17810]
35566 Subject: [PATCH] Fixes to threads::shared when disabled
35567 From: Michael G Schwern <schwern@pobox.com>
35568 Date: Wed, 28 Aug 2002 06:04:18 -0700
35569 Message-ID: <20020828130418.GG773@ool-18b93024.dyn.optonline.net>
35570
35571 [ 17811]
35572 Subject: Re: Recent changes on the HP porting center
35573 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35574 Date: Wed, 28 Aug 2002 17:39:27 +0200
35575 Message-Id: <20020828173024.3E95.H.M.BRAND@hccnet.nl>
35576
35577 [ 17812]
35578 Subject: [PATCH] typos in Hash::Util documentation
35579 From: Slaven Rezic <slaven.rezic@berlin.de>
35580 Date: Wed, 28 Aug 2002 17:08:50 +0200 (CEST)
35581 Message-Id: <200208281508.g7SF8o9Z015197@vran.herceg.de>
35582
35583 [ 17813]
35584 Subject: [PATCH] Re: glob names and Regexp type introspection
35585 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
35586 Date: Thu, 29 Aug 2002 17:31:31 -0700
35587 Message-ID: <jzrb9gzkgO7W092yn@efn.org>
35588
35589 [ 17814]
35590 Subject: [PATCH] perlmod.pod nit
35591 From: Autrijus Tang <autrijus@autrijus.org>
35592 Date: Thu, 29 Aug 2002 03:49:34 +0800
35593 Message-ID: <20020828194934.GA12244@not.autrijus.org>
35594
35595 [ 17816]
35596 Subject: [PATCH 5.8.0] Term::Cap allow # comments in infcocmp output
35597 From: "Brendan O'Dea" <bod@debian.org>
35598 Date: Thu, 29 Aug 2002 22:46:47 +1000
35599 Message-ID: <20020829124647.GA1498@londo.odea.dropbear.id.au>
35600
35601 [ 17817]
35602 Subject: [PATCH] AUTHORS
35603 From: "Brendan O'Dea" <bod@debian.org>
35604 Date: Thu, 29 Aug 2002 22:49:34 +1000
35605 Message-ID: <20020829124934.GA1984@londo.odea.dropbear.id.au>
35606
35607 [ 17818]
35608 add test related to change #17799:
35609 Subject: Re: if.pm bug.
35610 From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
35611 Date: Thu, 29 Aug 2002 19:39:58 +0200
35612 Message-ID: <20020829173358.34731.qmail@onion.perl.org>
35613
35614 [ 17821]
35615 Advertise Linux::Pid.
35616
35617 [ 17822]
35618 Some simple tests for the POSIX::isXXX() functions.
35619
35620 [ 17823]
35621 Fix bug #16828.
35622 Add a few tests to ext/B/t/b.t, make it use Test::More.
35623
35624 [ 17824]
35625 Subject: [perl #16971] [PATCH] Fix a couple of URLs that changed recently.
35626 From: Richard Soderberg (via RT) <perlbug@perl.org>
35627 Date: 3 Sep 2002 18:48:54 -0000
35628 Message-ID: <rt-16971-36426.15.5276119194873@bugs6.perl.org>
35629
35630 Subject: [PATCH] A variety of README nitpicks.
35631 From: Richard Soderberg <rs@crystalflame.net>
35632 Date: Tue, 3 Sep 2002 11:54:39 -0700 (PDT)
35633 Message-ID: <Pine.LNX.4.33.0209031148280.32671-200000@oregonnet.com>
35634
35635 [ 17825]
35636 Subject: Re: Possible bug in IPC/Semaphore.pm [PATCH]
35637 From: "John P. Linderman" <jpl@research.att.com>
35638 Date: Wed, 28 Aug 2002 08:04:29 -0400 (EDT)
35639 Message-Id: <200208271900.PAA98096@raptor.research.att.com>
35640
35641 [ 17826]
35642 Subject: [PATCH 5.8.0] allow Sys::Syslog test to fail gracefully
35643 From: "Brendan O'Dea" <bod@debian.org>
35644 Date: Thu, 29 Aug 2002 22:42:39 +1000
35645 Message-ID: <20020829124239.GA31934@londo.odea.dropbear.id.au>
35646
35647 [ 17827]
35648 Subject: [PATCH] OS/400 PASE port
35649 From: Jarkko Hietaniemi <jhi@iki.fi>
35650 Date: Thu, 29 Aug 2002 22:22:51 +0300
35651 Message-ID: <20020829192251.GA27102@lyta.hut.fi>
35652
35653 [ 17828]
35654 Subject: [PATCH] File::Spec->catfile not canonicalizing consistently
35655 From: Michael G Schwern <schwern@pobox.com>
35656 Date: Fri, 30 Aug 2002 03:40:45 -0700
35657 Message-ID: <20020830104044.GF859@ool-18b93024.dyn.optonline.net>
35658
35659 [ 17829]
35660 Subject: Correction for AUTHORS.html
35661 From: Sean Davis <dive@ender.com>
35662 Date: Fri, 30 Aug 2002 03:51:16 -0700
35663 Message-ID: <20020830035116.A18739@endersgame.net>
35664
35665 [ 17830]
35666 update email address for Paul Marquess
35667
35668 [ 17833]
35669 Subject: [PATCH] use sysconf(_SC_CLK_TCK) for times()
35670 From: Jarkko Hietaniemi <jhi@iki.fi>
35671 Date: Sun, 1 Sep 2002 19:23:55 +0300
35672 Message-ID: <20020901162355.GH12536@lyta.hut.fi>
35673
35674 [ 17834]
35675 perldoc: allow arguments for pager
35676 Subject: perldoc patch for better $Config{pager} support, mandir patch, fhs patch
35677 From: Chip Turner <cturner@redhat.com>
35678 Date: 02 Sep 2002 01:17:23 -0400
35679 Message-ID: <vzku1l9x95o.fsf@minbar.devel.redhat.com>
35680
35681 [ 17835]
35682 fix coredump after 64k-deep recursion
35683 Subject: Re: debugging coredump with -DD
35684 From: hv@crypt.org
35685 Date: Tue, 03 Sep 2002 14:34:20 +0100
35686 Message-Id: <200209031334.g83DYLN09709@crypt.compulink.co.uk>
35687
35688 [ 17836]
35689 Subject: [PATCH] DB_File 1.805
35690 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
35691 Date: Mon, 2 Sep 2002 23:56:40 +0100
35692 Message-ID: <AIEAJICLCBDNAAOLLOKLAEMCFFAA.Paul.Marquess@btinternet.com>
35693
35694 [ 17837]
35695 Subject: [PATCH lib/Config.t] test grandfathered Config variables
35696 From: Michael G Schwern <schwern@pobox.com>
35697 Date: Mon, 2 Sep 2002 22:29:07 -0700
35698 Message-ID: <20020903052907.GR8061@ool-18b93024.dyn.optonline.net>
35699
35700 [ 17838]
35701 Subject: [PATCHes] Still no working Berkeley DB in OS X 10.2
35702 From: =?ISO-8859-1?Q?Kay_R=F6pke?= <kay@dolphin-services.de>
35703 Date: Tue, 3 Sep 2002 13:46:18 +0200
35704 Message-Id: <C287A20E-BF32-11D6-A454-000393414688@dolphin-services.de>
35705
35706 [ 17839]
35707 Subject: Re: [PATCH 5.8.0] add accessors for POSIX::SigAction
35708 From: "Brendan O'Dea" <bod@debian.org>
35709 Date: Wed, 4 Sep 2002 02:36:10 +1000
35710 Message-ID: <20020903163610.GA14595@londo.odea.dropbear.id.au>
35711
35712 [ 17840]
35713 Subject: [PATCH] File::Basename doesn't lazy load Carp right.
35714 and Subject: [PATCH] More modules that don't lazy load Carp right.
35715 From: Michael G Schwern <schwern@pobox.com>
35716 Date: Tue, 3 Sep 2002 17:21:57 -0700
35717 Message-ID: <20020904002157.GD2701@ool-18b93024.dyn.optonline.net>
35718 and Message-ID: <20020904003857.GE2701@ool-18b93024.dyn.optonline.net>
35719
35720 [ 17844]
35721 #17836 (DB_File-1.805) misses a couple of dTHX declarations
35722
35723 [ 17845]
35724 Avoid 'unportable' warnings for lib/Math/BigInt/t/constant.t
35725
35726 [ 17846]
35727 Subject: Re: [PATCH] A variety of README nitpicks.
35728 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
35729 Date: Wed, 04 Sep 2002 09:10:05 +0200
35730 Message-Id: <20020904090853.F13D.H.M.BRAND@hccnet.nl>
35731
35732 [ 17848]
35733 AUTHORS: preferred address for Allen Smith
35734
35735 [ 17849]
35736 document setting the email address
35737
35738 [ 17850]
35739 Subject: [PATCH] (mostly (Unicode)) pod nits
35740 From: Jarkko Hietaniemi <jhi@iki.fi>
35741 Date: Fri, 6 Sep 2002 06:01:57 +0300
35742 Message-Id: <20020906030157.GA28252@lyta.hut.fi>
35743
35744 [ 17859]
35745 Subject: Re: [PATCH] Attempt at speeding up Config.pm. Didn't work.
35746 From: Nicholas Clark <nick@unfortu.net>
35747 Date: Mon, 2 Sep 2002 23:22:32 +0100
35748 Message-ID: <20020902222231.GG284@Bagpuss.unfortu.net>
35749
35750 [ 17860]
35751 #17859 misuses s/// return values
35752
35753 [ 17861]
35754 Subject: Re: [PATCH t/test.pl] Let is/isnt() handle undef without warnings
35755 From: Michael G Schwern <schwern@pobox.com>
35756 Date: Fri, 6 Sep 2002 14:03:16 -0700
35757 Message-ID: <20020906210315.GC808@ool-18b93024.dyn.optonline.net>
35758
35759 [ 17862]
35760 Subject: [PATCH t/TestInit.pm] Set env PERL_CORE
35761 From: Michael G Schwern <schwern@pobox.com>
35762 Date: Wed, 4 Sep 2002 11:38:01 -0700
35763 Message-ID: <20020904183801.GF8367@ool-18b93024.dyn.optonline.net>
35764
35765 [ 17863]
35766 setting PERL_CORE as in #17861 violates assumptions made by taint tests
35767
35768 [ 17864]
35769 Subject: sv_2pv_flags and ROK and UTF8 flags
35770 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
35771 Date: Wed, 04 Sep 2002 21:09:01 -0700
35772 Message-ID: <djtd9gzkgyLd092yn@efn.org>
35773 Date: Fri, 06 Sep 2002 09:23:03 -0700
35774 Message-ID: <nZNe9gzkgKdH092yn@efn.org>
35775
35776 [ 17865]
35777 Subject: Unicode::Collate 0.23 Released
35778 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
35779 Date: Thu, 05 Sep 2002 23:28:32 +0900
35780 Message-Id: <20020905232316.8151.BQW10602@nifty.com>
35781
35782 [ 17866]
35783 Subject: [PATCH] OS/400 PASE symbol scan tweak
35784 From: Jarkko Hietaniemi <jhi@kosh.hut.fi>
35785 Date: Thu, 5 Sep 2002 21:46:20 +0300 (EET DST)
35786 Message-Id: <200209051846.g85IkKOk013697@kosh.hut.fi>
35787
35788 [ 17867]
35789 Subject: [PATCH] allow using hires time() in Benchmark
35790 From: Jarkko Hietaniemi <jhi@iki.fi>
35791 Date: Fri, 6 Sep 2002 00:38:11 +0300
35792 Message-ID: <20020905213811.GA23771@lyta.hut.fi>
35793
35794 [ 17868]
35795 small fix to perl58delta for MIME::QuotedPrint, from Jarkko
35796
35797 [ 17869]
35798 Subject: [perl #17061] no strict 'garbage'
35799 From: Elizabeth Mattijsen (via RT) <perlbug@perl.org>
35800 Date: 6 Sep 2002 19:31:02 -0000
35801 Message-Id: <rt-17061-36808.6.19994322284541@bugs6.perl.org>
35802 Date: Sat, 07 Sep 2002 13:40:22 +0200
35803 Message-Id: <4.2.0.58.20020907133846.02476d40@mickey.dijkmat.nl>
35804
35805 [ 17870]
35806 regularise whitespace and formatting in util.c
35807
35808 [ 17871]
35809 Subject: [PATCH] tiddly tidy up for util.c
35810 From: Nicholas Clark <nick@unfortu.net>
35811 Date: Fri, 6 Sep 2002 23:00:14 +0100
35812 Message-ID: <20020906220013.GD428@Bagpuss.unfortu.net>
35813
35814 [ 17874]
35815 Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
35816 From: "Allen Smith" <easmith@beatrice.rutgers.edu>
35817 Date: Sat, 7 Sep 2002 05:25:45 -0400
35818 Message-Id: <10209070525.ZM1584639@puck2.rutgers.edu>
35819
35820 [ 17875]
35821 Subject: [PATCH] cleanup temp files (was Re: Smoke 17805 irix 6.5 6.5.16m IP32 r5000 /usr/share/src/cpan-current-benedick)
35822 From: Nicholas Clark <nick@unfortu.net>
35823 Date: Sun, 8 Sep 2002 15:46:44 +0100
35824 Message-ID: <20020908144643.GC286@Bagpuss.unfortu.net>
35825
35826 Plus two other similar tweaks
35827
35828 [ 17876]
35829 Subject: Re: Smoke 17849 MSWin32 (w2k/GCC)
35830 From: Abe Timmerman <abe@ztreet.demon.nl>
35831 Date: Mon, 9 Sep 2002 01:32:19 +0200
35832 Message-Id: <200209090132.19891.abe@ztreet.demon.nl>
35833
35834 [ 17877]
35835 Subject: [PATCH] configpm
35836 From: Abe Timmerman <abe@ztreet.demon.nl>
35837 Date: Sun, 8 Sep 2002 17:21:19 +0200
35838 Message-Id: <200209081721.19233.abe@ztreet.demon.nl>
35839
35840 [ 17878]
35841 small grammar fix in Benchmark docs
35842
35843 [ 17879]
35844 Subject: [PATCH] Configure locincpth vs Jaguar gcc 3
35845 From: Jarkko Hietaniemi <jhi@iki.fi>
35846 Date: Mon, 9 Sep 2002 00:07:46 +0300
35847 Message-ID: <20020908210746.GB4136@lyta.hut.fi>
35848
35849 [ 17880]
35850 integrate Math::BigInt-1.63
35851 Subject: Re: [perl #16997] Math::BigFloat hang on bsqrt [ANNOUNCE v1.63
35852 From: Tels <perl_dummy@bloodgate.com>
35853 Date: Mon, 09 Sep 2002 00:23:01 +0200 (CEST)
35854 Message-Id: <200209082022.g88KMGY20194@crypt.org>
35855
35856 [ 17881]
35857 Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
35858 From: "Allen Smith" <easmith@beatrice.rutgers.edu>
35859 Date: Mon, 9 Sep 2002 01:48:08 -0400
35860 Message-Id: <10209090148.ZM1555835@puck2.rutgers.edu>
35861
35862 [ 17883]
35863 Subject: [PATCH] Quieten warnings in Deparse.pm
35864 From: Paul Johnson <paul@pjcj.net>
35865 Date: Sun, 8 Sep 2002 23:50:11 +0200
35866 Message-ID: <20020908215011.GA879@pjcj.net>
35867
35868 [ 17884]
35869 Subject: [PATCH] File/Find/t/find.t tests 1 and 2 (was Re: [perl #17061] no strict 'garbage')
35870 From: Nicholas Clark <nick@unfortu.net>
35871 Date: Sun, 8 Sep 2002 19:45:52 +0100
35872 Message-ID: <20020908184551.GH286@Bagpuss.unfortu.net>
35873
35874 [ 17885]
35875 Subject: [PATCH] strict.pm pod at __END__
35876 From: Nicholas Clark <nick@unfortu.net>
35877 Date: Sun, 8 Sep 2002 22:36:09 +0100
35878 Message-ID: <20020908213608.GM286@Bagpuss.unfortu.net>
35879
35880 [ 17886]
35881 Subject: [PATCH] Re: [PATCH] Attempt at speeding up Config.pm. Didn't work.
35882 From: Nicholas Clark <nick@unfortu.net>
35883 Date: Sun, 8 Sep 2002 23:05:54 +0100
35884 Message-ID: <20020908220553.GO286@Bagpuss.unfortu.net>
35885
35886 [ 17887]
35887 Subject: Re: [PATCH] Quieten warnings in Deparse.pm
35888 From: Paul Johnson <paul@pjcj.net>
35889 Date: Mon, 9 Sep 2002 23:37:33 +0200
35890 Message-ID: <20020909213733.GD879@pjcj.net>
35891
35892 [ 17888]
35893 New low-price HP servers
35894
35895 [ 17892]
35896 Callback behaviour in hints
35897 Mon, 9 Sep 2002, Allen Smith
35898
35899 [ 17897]
35900 Subject: [perl #17119] typo in utils/dprofpp.PL
35901 From: "Todd C. Miller" (via RT) <perlbug@perl.org>
35902 Date: 10 Sep 2002 18:49:56 -0000
35903 Message-ID: <rt-17119-37126.4.55444095171472@bugs6.perl.org>
35904
35905 [ 17898]
35906 Fix bug #17006 : remove spurious do{} in the deparsing
35907 of s/.../.../e.
35908
35909 [ 17899]
35910 Re: [perl #17170] NetBSD and useshrplib config option
35911 Thu 12 Sep 2002 09:22, Rafael Garcia-Suarez
35912
35913 [ 17906]
35914 Fix pod/perlmodlib.PL (it wasn't generating a complete list
35915 of modules.) Regenerate pod/perlmodlib.pod. Add a warning :
35916 not all modules listed in perlmodlib are necessarily installed.
35917 Plus some corrections by Vincent Lefevre.
35918
35919 [ 17907]
35920 Subject: Re: [perl #17174] perl 5.8.0 fails tests on NetBSD/Alpha
35921 From: Jarkko Hietaniemi <jhi@iki.fi>
35922 Date: Sun, 15 Sep 2002 18:02:17 +0300
35923 Message-ID: <20020915150217.GB21300@lyta.hut.fi>
35924
35925 [ 17908]
35926 Subject: [perl #17340] When used/requied Locale::*** modules unexpectedly modify $_
35927 From: (Ilya Martynov) (via RT) <perlbug@perl.org>
35928 Date: 15 Sep 2002 19:06:56 -0000
35929 Message-Id: <rt-17340-37749.5.67862754668525@bugs6.perl.org>
35930
35931 [ 17909]
35932 Pod formatting nit, found by Merijn and Jos Boumans.
35933
35934 [ 17910]
35935 Fix #17375 (rcatline didn't work on a formerly-defined undef) by
35936 checking for SvOK in do_readline().
35937
35938 [ 17911]
35939 Typo fix.
35940
35941 [ 17913]
35942 Subject: [PATCH perl@17882] file spec tweaks for VMS
35943 From: "Craig A. Berry" <craigberry@mac.com>
35944 Date: Wed, 18 Sep 2002 16:57:02 -0500
35945 Message-ID: <3D88F6AE.3020708@mac.com>
35946
35947 [ 17914]
35948 Subject: [PATCH] PASE saga continues
35949 From: Jarkko Hietaniemi <jhi@iki.fi>
35950 Date: Thu, 19 Sep 2002 23:30:20 +0300
35951 Message-ID: <20020919203020.GB274453@lyta.hut.fi>
35952
35953 [ 17915]
35954 Patch #17914 was empty ; this should have been applied instead.
35955
35956 [ 17916]
35957 Subject: [PATCH 5.8.0] perlembed.pod: make some examples work with multiplicity
35958 From: "Brendan O'Dea" <bod@debian.org>
35959 Date: Tue, 10 Sep 2002 09:19:05 +1000
35960 Message-ID: <20020909231905.GA31868@londo.odea.dropbear.id.au>
35961
35962 [ 17917]
35963 Subject: Re: [perl #17141] Text::Wrap "this should not happen" message
35964 From: Slaven Rezic <slaven.rezic@berlin.de>
35965 Date: 11 Sep 2002 19:37:09 +0200
35966 Message-ID: <871y80a0my.fsf@vran.herceg.de>
35967
35968 [ 17918]
35969 Subject: [PATCH] perldoc -f stat (perlfunc.pod)
35970 From: "Brendan O'Dea" <bod@debian.org>
35971 Date: Mon, 23 Sep 2002 22:45:40 +1000
35972 Message-ID: <20020923124540.GB28031@londo.odea.dropbear.id.au>
35973
35974 [ 17921]
35975 add TODO tests for slow our() declaration
35976 Subject: Re: [perl #17376] Bug Report - our(%)
35977 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
35978 Date: Thu, 19 Sep 2002 22:34:01 -0700
35979 Message-ID: <JNri9gzkgSBB092yn@efn.org>
35980
35981 [ 17922]
35982 Subject: Re: [PATCH] spurious t/auto directory appears
35983 From: Michael G Schwern <schwern@pobox.com>
35984 Date: Fri, 13 Sep 2002 23:56:05 -0400
35985 Message-ID: <20020914035605.GF18928@ool-18b93024.dyn.optonline.net>
35986
35987 [ 17923]
35988 Subject: [PATCH] Re: Advice on coredump
35989 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
35990 Date: Wed, 18 Sep 2002 22:14:57 +0200
35991 Message-Id: <20020918221457.16cb1b43.rgarciasuarez@free.fr>
35992
35993 [ 17925]
35994 Subject: [PATCH v2] enable -ansi -pedantic
35995 From: Jarkko Hietaniemi <jhi@iki.fi>
35996 Date: Wed, 18 Sep 2002 01:19:25 +0300
35997 Message-ID: <20020917221925.GF85044@lyta.hut.fi>
35998
35999 [ 17926]
36000 Subject: [PATCH] defuse installusrbinperl
36001 From: Jarkko Hietaniemi <jhi@iki.fi>
36002 Date: Thu, 19 Sep 2002 18:01:03 +0300
36003 Message-ID: <20020919150103.GI208696@lyta.hut.fi>
36004
36005 [ 17927]
36006 Subject: [PATCH] Re: [perl #17439] broken Locale::Language in a UTF environment
36007 From: Marty Pauley <marty+p5p@kasei.com>
36008 Date: Fri, 20 Sep 2002 09:52:16 +0100
36009 Message-Id: 20020920085216.GC10512@soto.kasei.com
36010
36011 [ 17928]
36012 Subject: [PATCH] bug in utf8.c(?)
36013 From: Marty Pauley <marty+p5p@kasei.com>
36014 Date: Fri, 20 Sep 2002 10:55:33 +0100
36015 Subject: [PATCH] bug in utf8.c(?)
36016
36017 [ 17930]
36018 Subject: [perl #17445] Class::Struct patch: version number, examples
36019 From: Ken Neighbors (via RT) <perlbug@perl.org>
36020 Date: 19 Sep 2002 18:48:22 -0000
36021 Message-Id: <rt-17445-38150.7.26118647008619@bugs6.perl.org>
36022
36023 [ 17931]
36024 Subject: [PATCH] [perl #10021] Fixing bareword usage under strict.pm
36025 From: Kay_Röpke <kay@dolphin-services.de>
36026 Date: Fri, 20 Sep 2002 16:09:08 +0200
36027 Message-Id: <8775B355-CCA2-11D6-AADE-000393414688@dolphin-services.de>
36028
36029 [ 17932]
36030 #17931 checked for wrong constant
36031
36032 [ 17933]
36033 Subject: [PATCH] perl #17453
36034 From: Jarkko Hietaniemi <jhi@iki.fi>
36035 Date: Fri, 20 Sep 2002 17:22:45 +0300
36036 Message-ID: <20020920142245.GG280265@lyta.hut.fi>
36037
36038 [ 17934]
36039 missing '.' in test from #17932
36040
36041 [ 17935]
36042 Subject: [PATCH 5.8.0 DOC] perlopentut.pod, #3: The last of the content changes.
36043 From: Andy Lester <andy@petdance.com>
36044 Date: Fri, 20 Sep 2002 12:23:41 -0500
36045 Message-ID: <20020920172341.GA15672@petdance.com>
36046
36047 [ 17936]
36048 Subject: [PATCH] configure.com -- don't exclude threads::shared
36049 From: "Craig A. Berry" <craigberry@mac.com>
36050 Date: Wed, 25 Sep 2002 17:14:33 -0500
36051 Message-ID: <3D923549.6050809@mac.com>
36052
36053 [ 17938]
36054 Email address change for Stéphane Payrard
36055
36056 [ 17939]
36057 Subject: [perl #17222] [PATCH] h2ph and Fortran, other wacky headers on IRIX
36058 From: Allen Smith (via RT) <perlbug@perl.org>
36059 Date: 13 Sep 2002 03:01:30 -0000
36060 Message-Id: <rt-17222-37356.6.04859798196188@bugs6.perl.org>
36061
36062 [ 17940]
36063 Subject: Re: [perl #17587] Attribute::Handlers and Config in 5.9.0
36064 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
36065 Date: Fri, 27 Sep 2002 13:52:18 +0200
36066 Message-Id: <20020927135218.3a20dd68.rgarciasuarez@free.fr>
36067
36068 [ 17941]
36069 Subject: [perl #16796] Configure script buglet
36070 From: "Amick, Eric" (via RT) <perlbug@perl.org>
36071 Date: 27 Aug 2002 20:09:29 -0000
36072 Message-Id: <rt-16796-35837.19.7072355819815@bugs6.perl.org>
36073
36074 [ 17945]
36075 -Dgccansipedantic only for gcc 3+
36076 Mon, 30 Sep 2002, Jarkko Hietaniemi <jhi@iki.fi>
36077
36078 [ 17947]
36079 Subject: Re: sv_2pv_flags and ROK and UTF8 flags
36080 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
36081 Date: Wed, 11 Sep 2002 22:22:45 -0700
36082 Message-ID: <lSCg9gzkgymX092yn@efn.org>
36083
36084 [ 17948]
36085 Subject: [REPATCH lib/AutoLoader.pm] Remove Dependency on Exporter (take 2 or 3)
36086 From: chromatic <chromatic@wgz.org>
36087 Date: Fri, 13 Sep 2002 14:26:08 -0700
36088 Message-Id: <200209131426.08116.chromatic@wgz.org>
36089
36090 [ 17949]
36091 patch based on:
36092 Subject: Re: [perl #17376] Bug Report - our(%)
36093 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
36094 Date: Mon, 30 Sep 2002 15:22:18 -0700
36095 Message-ID: <a6Mm9gzkgK0P092yn@efn.org>
36096
36097 [ 17950]
36098 Add silly bandaid to stop segfaults on subsequent accesses to
36099 the Nullgv returned by gv_fetchpv() in S_scan_inputsymbol()
36100 (<$fred>).
36101
36102 [ 17952]
36103 better handling of whitespace in autodoc declarations; fragment from:
36104 Subject: [PATCH pad.c,h] move all pad-related code to its own src file
36105 From: Dave Mitchell <davem@fdgroup.com>
36106 Date: Wed, 25 Sep 2002 23:40:23 +0100
36107 Message-ID: <20020925234023.A20044@fdgroup.com>
36108
36109 [ 17954]
36110 Subject: [PATCH] Re: perlio bug?
36111 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
36112 Date: Wed, 25 Sep 2002 21:58:12 +0200
36113 Message-Id: <20020925215812.3b7adb0d.rgarciasuarez@free.fr>
36114
36115 [ 17955]
36116 add precedence warning for bitwise docs
36117 Subject: [PATCH] Bug in ARM's floating point emulation - Need someone, really...
36118 From: Mike Guy <mjtg@cam.ac.uk>
36119 Date: Thu, 26 Sep 2002 13:20:45 +0100
36120 Message-Id: <E17uXdN-0003ko-00@libra.cus.cam.ac.uk>
36121
36122 [ 17956]
36123 Devel::Peek tests from:
36124 Subject: [PATCH] MGf_TAINTEDDIR and MGf_MINMATCH reuse unknown to dump.c
36125 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
36126 Date: Thu, 26 Sep 2002 22:16:39 -0700
36127 Message-ID: <3m+k9gzkgqnP092yn@efn.org>
36128
36129 [ 17957]
36130 document how to set APPLLIB_EXP
36131 Subject: Re: [perl #15957] error installing perl 5.8.0
36132 From: Andy Dougherty <doughera@lafayette.edu>
36133 Date: Fri, 27 Sep 2002 09:13:29 -0400 (EDT)
36134 Message-ID: <Pine.SOL.4.10.10209270902210.6800-100000@maxwell.phys.lafayette.edu>
36135
36136 [ 17958]
36137 missing quote from #17957
36138
36139 [ 17959]
36140 Subject: [DOCPATCH] Unicode porting advice
36141 From: andreas.koenig@anima.de (Andreas J. Koenig)
36142 Date: Fri, 27 Sep 2002 15:30:16 +0200
36143 Message-ID: <m3znu3zhjr.fsf@k242.linux.bogus>
36144
36145 [ 17961]
36146 Subject: Re: Hash::Util::lock_keys inhibits bless
36147 From: andreas.koenig@anima.de (Andreas J. Koenig)
36148 Date: Mon, 30 Sep 2002 17:24:06 +0200
36149 Message-ID: <m3zntzwlex.fsf@k242.linux.bogus>
36150
36151 [ 17962]
36152 Subject: [PATCH] no [] in tr///
36153 From: Jarkko Hietaniemi <jhi@iki.fi>
36154 Date: Wed, 2 Oct 2002 17:09:11 +0300
36155 Message-Id: <20021002140911.GH278184@lyta.hut.fi>
36156
36157 [ 17964]
36158 Subject: Re: [PATCH] Re: builtin die parsed differently to CORE::GLOBAL::die
36159 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
36160 Date: Tue, 1 Oct 2002 23:34:35 +0200
36161 Message-Id: <20021001233435.318514f3.rgarciasuarez@free.fr>
36162
36163 [ 17965]
36164 op/tr.t test is affected by #17962
36165
36166 [ 17966]
36167 Subject: [PATCH] retropatch
36168 From: Jarkko Hietaniemi <jhi@iki.fi>
36169 Date: Fri, 27 Sep 2002 03:51:34 +0300
36170 Message-ID: <20020927005134.GB339120@lyta.hut.fi>
36171
36172 [ 17967]
36173 Subject: [PATCH] reentrant buffers
36174 From: Jarkko Hietaniemi <jhi@iki.fi>
36175 Date: Fri, 27 Sep 2002 01:08:56 +0300
36176 Message-ID: <20020926220856.GA339120@lyta.hut.fi>
36177
36178 [ 17968]
36179 Subject: [PATCH] Re: speed of my
36180 From: Stephen McCamant <smcc@mit.edu>
36181 Date: Wed, 2 Oct 2002 21:48:59 -0400
36182 Message-Id: <15771.41483.524281.299958@syllepsis.MIT.EDU>
36183
36184 [ 17972]
36185 Add a new warning, "Possible precedence problem on bitwise
36186 %c operator", triggerred when a bitwise op has a numeric
36187 comparison op as child.
36188
36189 [ 17973]
36190 Change the warning message "%s trapped by operation mask"
36191 to include '' around the op name. Document it in perldiag.
36192
36193 [ 17976]
36194 Fix bug #17744, suggested by Andreas Jurenda,
36195 tweaked by rgs (security hole in Safe).
36196
36197 [ 17978]
36198 Upgrade to Attribute::Handlers 0.78
36199
36200 [ 17979]
36201 Subject: [PATCH] fix typo in Tie::Array
36202 From: "Jos I. Boumans" <kane@cpan.org>
36203 Date: sat okt 5, 2002 20:39:17 Europe/Stockholm
36204 Message-Id: <20021005183920.14746.qmail@onion.perl.org>
36205
36206 [ 17981]
36207 Try #3 for Porting/pumpkin.pod APPLLIB_EXP quoting
36208 Tue, 8 Oct 2002; Andy Dougherty <doughera@lafayette.edu>
36209
36210 [ 17982]
36211 Correct mailing list archive URL
36212 Wed, 9 Oct 2002; Slaven Rezic <slaven.rezic@berlin.de>
36213
36214 [ 17983]
36215 Tru64 and gcc and threads
36216 Sat, 5 Oct 2002; Jarkko Hietaniemi <jhi@iki.fi>
36217
36218 [ 17984]
36219 Fix bug #17823 : non-modifying tr/// stringifies references
36220
36221 [ 17985]
36222 Subject: Re: README.cygwin draft update
36223 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
36224 Date: Mon, 07 Oct 2002 17:15:09 -0700
36225 Message-ID: <NOio9gzkg6oR092yn@efn.org>
36226
36227 [ 17987]
36228 Subject: Re: [perl #17075] sprintf: '%.[num](g|G)' documentation incorrect
36229 From: "Allen Smith" <easmith@beatrice.rutgers.edu>
36230 Date: Mon, 9 Sep 2002 17:36:55 -0400
36231 Message-Id: <10209091736.ZM1631710@puck2.rutgers.edu>
36232
36233 [ 17988]
36234 Subject: [PATCH] Make Exporter cope with changing EXPORT_OK (was Re: Recent changes to Exporter::Heavy break Math::Pari)
36235 From: Nicholas Clark <nick@unfortu.net>
36236 Date: Sat, 28 Sep 2002 18:52:00 +0100
36237 Message-ID: <20020928175159.GC403@Bagpuss.unfortu.net>
36238
36239 [ 17989]
36240 Subject: PATCH: lib/ExtUtils/typemap
36241 From: Brian Ingerson <ingy@ttul.org>
36242 Date: Sat, 28 Sep 2002 13:03:24 -0700
36243 Message-ID: <20020928130324.A16900@ttul.org>
36244
36245 [ 17992]
36246 Subject: Re: Hash::Util::lock_keys inhibits bless
36247 From: andreas.koenig@anima.de (Andreas J. Koenig)
36248 Date: Fri, 04 Oct 2002 06:38:57 +0200
36249 Message-ID: <m3bs6astr2.fsf@k242.linux.bogus>
36250
36251 [ 17993]
36252 croak() is better written Perl_croak() in C code.
36253
36254 [ 17994]
36255 Fix bug #17776 : memory corruption in qr/##/x
36256
36257 [ 17995]
36258 Subject: [perl #17819] Typo in perltooc?
36259 From: Bob Wilkinson (via RT) <perlbug@perl.org>
36260 Date: 9 Oct 2002 09:50:40 -0000
36261 Message-Id: <rt-17819-39445.14.7484532089852@bugs6.perl.org>
36262
36263 Subject: [perl #17821] Typo in perltooc
36264 From: Bob Wilkinson (via RT) <perlbug@perl.org>
36265 Date: 9 Oct 2002 10:12:51 -0000
36266 Message-Id: <rt-17821-39458.9.41452851965508@bugs6.perl.org>
36267
36268 [ 17996]
36269 Subject: [PROPOSED PATCH lib/AutoLoader.t lib/AutoLoader.pm] Test and Improve unimport()
36270 From: chromatic <chromatic@wgz.org>
36271 Date: Thu, 03 Oct 2002 22:56:54 -0700
36272 Message-ID: <20021004060120.33329.qmail@onion.perl.org>
36273
36274 [ 17997]
36275 Subject: [perl #17751] File::Spec::Win32::canonpath patch try#3
36276 From: Information Service <info@lingo.kiev.ua>
36277 Date: Wed, 09 Oct 2002 07:17:00 +0400
36278 Message-ID: <3DA39FAC.85471200@lingo.kiev.ua>
36279
36280 [ 17998]
36281 Fix bug #17771 : segfault with the 'for' statement modifier
36282 used inside a map or a grep.
36283
36284 [ 17999]
36285 Subject: [PATCH] No warn, just ERANGE (Was: Re: [PATCH] reentrant buffers)
36286 From: Jarkko Hietaniemi <jhi@iki.fi>
36287 Date: Fri, 4 Oct 2002 16:11:57 +0300
36288 Message-ID: <20021004131157.GD278184@lyta.hut.fi>
36289
36290 [ 18001]
36291 Subject: Re: Smoke 17977 FAIL(F) MSWin32 5.0 W2000Pro (MSWin32-x86)
36292 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
36293 Date: Thu, 10 Oct 2002 14:28:55 -0700
36294 Message-ID: <XEfp9gzkgquV092yn@efn.org>
36295
36296 [ 18002]
36297 Subject: [Encode] 1.77 Released
36298 From: Dan Kogai <dankogai@dan.co.jp>
36299 Date: Sun, 6 Oct 2002 12:52:52 +0900
36300 Message-Id: <16D4C6C9-D8DF-11D6-A5EA-0003939A104C@dan.co.jp>
36301
36302 [ 18003]
36303 Second attempt to fix Devel::Peek test of $ENV{PATH}, after #17956
36304 and #18001.
36305
36306 [ 18004]
36307 updated hints for Darwin from Wilfredo Sanchez <wsanchez@mit.edu>
36308
36309 [ 18005]
36310 Subject: Re: Building bleadperl (minperl) fails completely under VC7
36311 From: Abe Timmerman <abeltje@cpan.org>
36312 Date: Tue, 8 Oct 2002 14:16:56 +0200
36313 Message-Id: <200210081416.56942.abeltje@cpan.org>
36314
36315 [ 18007]
36316 Subject: [perl #17773] errors in c2ph(1) man page
36317 From: Eric Melville (via RT) <perlbug@perl.org>
36318 Date: 7 Oct 2002 02:58:34 -0000
36319 Message-Id: <rt-17773-39313.12.4820309875481@bugs6.perl.org>
36320
36321 [ 18009]
36322 Subject: [PATCH perldoc] For screaming hell's sake
36323 From: Simon Cozens <simon@netthink.co.uk>
36324 Date: Tue, 8 Oct 2002 11:13:07 +0100
36325 Message-ID: <20021008101307.GA8175@netthink.co.uk>
36326
36327 [ 18010]
36328 Subject: [PATCH] Re: [perl #17772] pack "w" /* this cannot happen ;-) */ is fallacious
36329 From: Nicholas Clark <nick@unfortu.net>
36330 Date: Tue, 8 Oct 2002 21:52:53 +0100
36331 Message-ID: <20021008205253.GA283@Bagpuss.unfortu.net>
36332
36333 [ 18011]
36334 Subject: [perl #17805] BUG: Grammar bug during Configure
36335 From: Richard Hitt (via RT) <perlbug@perl.org>
36336 Date: 8 Oct 2002 21:04:30 -0000
36337 Message-Id: <rt-17805-39395.9.0319493317925@bugs6.perl.org>
36338
36339 [ 18012]
36340 #18005 was not enough
36341 Subject: [PATCH win32/makefile.mk] (Was Re: Building bleadperl (minperl) fails completely under VC7)
36342 From: Abe Timmerman <abeltje@cpan.org>
36343 Date: Sat, 12 Oct 2002 17:56:39 +0200
36344 Message-Id: <200210121756.39803.abeltje@cpan.org>
36345
36346 [ 18013]
36347 Subject: [PATCH] for -Dm
36348 From: Slaven Rezic <slaven.rezic@berlin.de>
36349 Date: Wed, 9 Oct 2002 00:49:33 +0200 (CEST)
36350 Message-Id: <200210082249.g98MnXqM076566@vran.herceg.de>
36351
36352 [ 18015]
36353 The -0 command-line switch wasn't setting $/ at compile-time.
36354 Move the initialization of $/ just after switch parsing
36355 (it was done after yyparse().)
36356
36357 [ 18016]
36358 Subject: [PATCH] minor typos in perlhist.pod and perlunicode.pod
36359 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
36360 Date: Sun, 13 Oct 2002 09:02:36 +0900
36361 Message-Id: <20021013090227.FFCD.BQW10602@nifty.com>
36362
36363 [ 18017]
36364 Subject: [PATCH] perlipc.pod
36365 From: Slaven Rezic <slaven.rezic@berlin.de>
36366 Date: Sun, 13 Oct 2002 14:26:26 +0200 (CEST)
36367 Message-Id: <200210131226.g9DCQQLN014591@vran.herceg.de>
36368
36369 [ 18018]
36370 Subject: Re: [PATCH] cv.h: Comment update
36371 From: Paul Johnson <paul@pjcj.net>
36372 Date: Mon, 14 Oct 2002 20:00:50 +0200
36373 Message-ID: <20021014180050.GC7333@pjcj.net>
36374
36375 [ 18020]
36376 prototype() didn't warn when used in void context.
36377
36378 [ 18021]
36379 Subject: [PATCH] minor tweaks in Porting/pumpkin.pod
36380 From: Slaven Rezic <slaven.rezic@berlin.de>
36381 Date: Thu, 3 Oct 2002 21:54:22 +0200 (CEST)
36382 Message-Id: <200210031954.g93JsMiZ034457@vran.herceg.de>
36383
36384 [ 18022]
36385 Subject: Re: [perl #17809] Different warning behaviour between normal and tied hashes
36386 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
36387 Date: Tue, 15 Oct 2002 17:01:43 -0700
36388 Message-ID: <nxKr9gzkgmBO092yn@efn.org>
36389
36390 [ 18023]
36391 Subject: Re: [perl #17830] open FH, "<&", $fd
36392 From: Steve Grazzini <grazz@nyc.rr.com>
36393 Date: 11 Oct 2002 22:28:58 -0000
36394 Message-ID: <20021011222858.452.qmail@onion.perl.org>
36395
36396 [ 18025]
36397 definition of MAXPATHLEN
36398 Subject: [PATCH] standard lawyerism
36399 From: Jarkko Hietaniemi <jhi@iki.fi>
36400 Date: Fri, 11 Oct 2002 02:48:26 +0300
36401 Message-ID: <20021010234825.GM292305@lyta.hut.fi>
36402
36403 [ 18028]
36404 Subject: [PATCH t/run/switches.t] Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
36405 From: Abe Timmerman <abe@ztreet.demon.nl>
36406 Date: Thu, 17 Oct 2002 23:38:34 +0200
36407 Message-Id: <200210172338.34728.abe@ztreet.demon.nl>
36408
36409 [ 18029]
36410 minor tweaks in Porting/pumpkin.pod
36411 Fri, 18 Oct 2002; Philip Newton <Philip.Newton@gmx.net>
36412
36413 [ 18033]
36414 Upgrade to Test.pm v1.23
36415
36416 [ 18034]
36417 Update to Time::HiRes v1.38
36418
36419 [ 18035]
36420 Subject: Re: [perl #17951] Strange UTF error
36421 From: Jarkko Hietaniemi <jhi@iki.fi>
36422 Date: Wed, 16 Oct 2002 18:50:51 +0300
36423 Message-ID: <20021016155051.GB268437@lyta.hut.fi>
36424
36425 [ 18036]
36426 Subject: Re: [perl #17892] Perl's mkdir() doesn't remove trailing slashes
36427 From: Slaven Rezic <slaven.rezic@berlin.de>
36428 Date: 14 Oct 2002 09:37:18 +0200
36429 Message-ID: <8765w5wjwx.fsf@vran.herceg.de>
36430
36431 [ 18037]
36432 Subject: [PATCH] t/op/pack.t: Tru64 5.1A gcc 3.2.1 no inf
36433 From: Jarkko Hietaniemi <jhi@iki.fi>
36434 Date: Mon, 14 Oct 2002 14:49:54 +0300
36435 Message-ID: <20021014114954.GB80937@lyta.hut.fi>
36436
36437 [ 18038]
36438 Update to Net::Ping v2.23
36439
36440 [ 18039]
36441 Subject: Re: [PATCH] Warning on pararameterless 'use IO' and doc update
36442 From: =?iso-8859-1?Q?St=E9phane?= Payrard <s.payrard@wanadoo.fr>
36443 Date: Tue, 15 Oct 2002 02:17:03 +0200
36444 Message-ID: <20021015001703.GG7914@stefp.dyndns.org>
36445
36446 [ 18041]
36447 Subject: Re: [perl #18019] regex overoptimization
36448 From: hv@crypt.org
36449 Date: Mon, 21 Oct 2002 03:21:54 +0100
36450 Message-Id: <200210210221.g9L2LsU32598@crypt.compulink.co.uk>
36451
36452 [ 18042]
36453 Subject: Re: [perl #16184] Unexpected warning when using C<< open FH => >>
36454 From: hv@crypt.org
36455 Date: Mon, 21 Oct 2002 11:27:40 +0100
36456 Message-Id: <200210211027.g9LARef05722@crypt.compulink.co.uk>
36457
36458 [ 18044]
36459 Subject: [PATCH] Shell.pm object methods broken
36460 From: Dan Brook <dbrook@easyspace.com>
36461 Date: Thu, 17 Oct 2002 16:05:04 +0100
36462 Message-Id: <20021017160504.63926a1b.dbrook@easyspace.com>
36463
36464 [ 18045]
36465 improve 'atomicity' wording
36466
36467 [ 18046]
36468 Subject: Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
36469 From: Alain Barbet <alian@alianwebserver.com>
36470 Date: Fri, 18 Oct 2002 15:29:29 +0200
36471 Message-ID: <3DB00CB9.70708@alianwebserver.com>
36472
36473 [ 18047]
36474 Subject: [PATCH] AutoLoader gives wrong message
36475 From: Peter Scott <peter@psdt.com>
36476 Date: Thu, 17 Oct 2002 19:54:56 -0700
36477 Message-id: <4.3.2.7.2.20021017192450.00b3dce0@shell2.webquarry.com>
36478
36479 [ 18049]
36480 Subject: [PATCH] perluniintro
36481 From: Jarkko Hietaniemi <jhi@iki.fi>
36482 Date: Sun, 20 Oct 2002 15:48:09 +0300
36483 Message-ID: <20021020124809.GE444369@lyta.hut.fi>
36484
36485 [ 18050]
36486 perlmodlib.pod nit suggested by David Dyck (bug #18055)
36487 Regenerate perlmodlib.pod
36488
36489 [ 18051]
36490 Further tweaks to perluniintro.pod
36491
36492 [ 18052]
36493 Further tweaks to perlmodlib.pod.
36494 Add a note about perllocal.pod, which wasn't documented.
36495
36496 [ 18053]
36497 charnames pragma extended with :alias for customized
36498 unicode naming aliases
36499 Mon, 21 Oct 2002; "H.Merijn Brand" <h.m.brand@hccnet.nl>
36500
36501 [ 18055]
36502 Reverse change #8066 and sense of test, to satisfy [perl #17763]
36503
36504 [ 18056]
36505 Subject: [PATCH] B/C.pm: make $0 to argv[0] again
36506 From: Autrijus Tang <autrijus@autrijus.org>
36507 Date: Sat, 19 Oct 2002 17:51:57 +0800
36508 Message-ID: <20021019095157.GA430@not.autrijus.org>
36509
36510 [ 18057]
36511 Subject: [Encode] 1.80 released
36512 From: Dan Kogai <dankogai@dan.co.jp>
36513 Date: Tue, 22 Oct 2002 05:47:16 +0900
36514 Message-Id: <48F1B85D-E536-11D6-A87D-0003939A104C@dan.co.jp>
36515
36516 [ 18058]
36517 Subject: The Inaba patch for tr/// vs. use encoding
36518 From: Dan Kogai <dankogai@dan.co.jp>
36519 Date: Mon, 21 Oct 2002 17:36:02 +0900
36520 Message-Id: <218B4434-E4D0-11D6-A668-0003939A104C@dan.co.jp>
36521
36522 [ 18059]
36523 Subject: [perl #18036] perldoc refuses to run on BeOS
36524 From: "mauzo@csv.warwick.ac.uk (via RT)" <perlbug@perl.org>
36525 Date: 21 Oct 2002 10:18:50 -0000
36526 Message-Id: <rt-18036-40246.15.4017814246886@bugs6.perl.org>
36527
36528 [ 18060]
36529 2 lines of change #18039 had several problems
36530
36531 [ 18062]
36532 Subject: [PATCH] DB_File 1.806
36533 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
36534 Date: Tue, 22 Oct 2002 11:16:21 +0100
36535 Message-ID: <AIEAJICLCBDNAAOLLOKLCEDMFLAA.Paul.Marquess@btinternet.com>
36536
36537 [ 18069]
36538 Subject: [PATCH] Re: [PATCH] Re: [perl #17772] pack "w" /* this cannot happen ;-) */ is fallacious
36539 From: Nicholas Clark <nick@unfortu.net>
36540 Date: Sun, 27 Oct 2002 22:31:08 +0000
36541 Message-ID: <20021027223108.GK292@Bagpuss.unfortu.net>
36542
36543 [ 18071]
36544 Subject: RE: [PATCH] Warning on pararameterless 'use IO' and doc update
36545 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
36546 Date: Mon, 28 Oct 2002 12:53:52 -0000
36547 Message-ID: <AIEAJICLCBDNAAOLLOKLAEOEFLAA.Paul.Marquess@btinternet.com>
36548
36549 [ 18072]
36550 Partial fix of bug [perl #17589] : prevent the parser to
36551 segfault when encountering the erroneous construct "sub;".
36552
36553 [ 18073]
36554 Subject: [perl #18165] "0" fails as right-hand argument to ..
36555 From: Mark-Jason Dominus (via RT) <perlbug@perl.org>
36556 Date: 30 Oct 2002 17:27:53 -0000
36557 Message-Id: <rt-18165-40816.6.86096008382222@bugs6.perl.org>
36558
36559 (Fixed by making an exception for .."0" in pp_flop.)
36560
36561 [ 18074]
36562 Subject: Re: [perl #18114] [no subject] BUG: "-4\n".."0\n" is not DWIM
36563 but "-4\n".."-0\n" is!
36564 From: Slaven Rezic <slaven.rezic@berlin.de>
36565 Date: 30 Oct 2002 16:22:36 +0100
36566 Message-Id: <87n0ow0x4z.fsf@vran.herceg.de>
36567
36568 Subject: RE: [perl #18114] [no subject] [TEST PATCH]BUG: "-4\n".."0\n"
36569 is not DWIM but "-4\n".."-0\n" is!
36570 From: "Orton, Yves" <yves.orton@mciworldcom.de>
36571 Date: Wed, 30 Oct 2002 11:59:31 -0000
36572 Message-Id: <71B318898201D311845C0008C75DAD1C07B78BF7@defra1ex2>
36573
36574 (Applied over previous fix.)
36575
36576 [ 18075]
36577 Adjust the number of tests in t/op/range.t
36578
36579 [ 18076]
36580 Update to Scalar-List-Utils 1.08
36581
36582 [ 18077]
36583 Subject: [PATCH lib/Config.*] Document and test Config::config_re().
36584 (with tweaks)
36585 From: Michael G Schwern <schwern@pobox.com>
36586 Date: Wed, 4 Sep 2002 12:06:08 -0700
36587 Message-ID: <20020904190607.GG8367@ool-18b93024.dyn.optonline.net>
36588
36589 [ 18078]
36590 avoid reliance on croak() prototype
36591 Branch: maint-5.8/perl
36592 +> (branch 34 files)
36593 !> (integrate 343 files)
36594____________________________________________________________________________
36595[ 18079] By: jhi on 2002/11/04 02:06:17
36596 Log: Integrate:
36597
36598 [ 17639]
36599 It's all yours, Hugo.
36600 (Flip Changes as Changes5.8, start new Changes)
36601
36602 [ 17644]
36603 Copy perldelta as perl58delta, purge the perldelta.
36604
36605 The 17639 required editing to talk about 5.8.1 instead of
36606 5.9.X; the 17644 required manual resolving since perldelta
36607 was a bit confused between three Perl versions.
36608 Branch: maint-5.8/perl
36609 +> Changes5.8 pod/perl58delta.pod
36610 !> Changes MANIFEST pod/perldelta.pod
36611____________________________________________________________________________
36612[ 18078] By: hv on 2002/11/03 13:20:50
36613 Log: avoid reliance on croak() prototype
36614 Branch: perl
36615 ! lib/warnings.pm
36616____________________________________________________________________________
36617[ 18077] By: hv on 2002/11/03 13:18:17
36618 Log: Subject: [PATCH lib/Config.*] Document and test Config::config_re().
36619 (with tweaks)
36620 From: Michael G Schwern <schwern@pobox.com>
36621 Date: Wed, 4 Sep 2002 12:06:08 -0700
36622 Message-ID: <20020904190607.GG8367@ool-18b93024.dyn.optonline.net>
36623 Branch: perl
36624 ! configpm lib/Config.t
36625____________________________________________________________________________
36626[ 18076] By: gbarr on 2002/11/03 10:11:18
36627 Log: Update to Scalar-List-Utils 1.08
36628 Branch: perl
36629 + ext/List/Util/t/isvstring.t ext/List/Util/t/refaddr.t
36630 ! MANIFEST ext/List/Util/ChangeLog ext/List/Util/README
36631 ! ext/List/Util/Util.xs ext/List/Util/lib/List/Util.pm
36632 ! ext/List/Util/lib/Scalar/Util.pm ext/List/Util/t/first.t
36633 ! ext/List/Util/t/reduce.t
36634____________________________________________________________________________
36635[ 18075] By: rgs on 2002/10/31 20:58:12
36636 Log: Adjust the number of tests in t/op/range.t
36637 Branch: perl
36638 ! t/op/range.t
36639____________________________________________________________________________
36640[ 18074] By: ams on 2002/10/30 22:30:32
36641 Log: Subject: Re: [perl #18114] [no subject] BUG: "-4\n".."0\n" is not DWIM
36642 but "-4\n".."-0\n" is!
36643 From: Slaven Rezic <slaven.rezic@berlin.de>
36644 Date: 30 Oct 2002 16:22:36 +0100
36645 Message-Id: <87n0ow0x4z.fsf@vran.herceg.de>
36646
36647 Subject: RE: [perl #18114] [no subject] [TEST PATCH]BUG: "-4\n".."0\n"
36648 is not DWIM but "-4\n".."-0\n" is!
36649 From: "Orton, Yves" <yves.orton@mciworldcom.de>
36650 Date: Wed, 30 Oct 2002 11:59:31 -0000
36651 Message-Id: <71B318898201D311845C0008C75DAD1C07B78BF7@defra1ex2>
36652
36653 (Applied over previous fix.)
36654 Branch: perl
36655 ! pp_ctl.c t/op/range.t
36656____________________________________________________________________________
36657[ 18073] By: ams on 2002/10/30 19:47:12
36658 Log: Subject: [perl #18165] "0" fails as right-hand argument to ..
36659 From: Mark-Jason Dominus (via RT) <perlbug@perl.org>
36660 Date: 30 Oct 2002 17:27:53 -0000
36661 Message-Id: <rt-18165-40816.6.86096008382222@bugs6.perl.org>
36662
36663 (Fixed by making an exception for .."0" in pp_flop.)
36664 Branch: perl
36665 ! pp_ctl.c t/op/range.t
36666____________________________________________________________________________
36667[ 18072] By: rgs on 2002/10/29 20:37:31
36668 Log: Partial fix of bug [perl #17589] : prevent the parser to
36669 segfault when encountering the erroneous construct "sub;".
36670 Branch: perl
36671 ! pod/perldiag.pod t/op/anonsub.t toke.c
36672____________________________________________________________________________
36673[ 18071] By: rgs on 2002/10/28 21:57:25
36674 Log: Subject: RE: [PATCH] Warning on pararameterless 'use IO' and doc update
36675 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
36676 Date: Mon, 28 Oct 2002 12:53:52 -0000
36677 Message-ID: <AIEAJICLCBDNAAOLLOKLAEOEFLAA.Paul.Marquess@btinternet.com>
36678 Branch: perl
36679 ! ext/IO/IO.pm ext/IO/lib/IO/t/IO.t
36680____________________________________________________________________________
36681[ 18070] By: rgs on 2002/10/28 20:46:33
36682 Log: Subject: [PATCH] Re: Not OK: perl v5.9.0 +DEVEL17881 on i386-freebsd 4.6-release (UNINSTALLED)
36683 From: Nicholas Clark <nick@unfortu.net>
36684 Date: Sun, 27 Oct 2002 18:39:03 +0000
36685 Message-ID: <20021027183902.GJ292@Bagpuss.unfortu.net>
36686 Branch: perl
36687 ! util.c
36688____________________________________________________________________________
36689[ 18069] By: rgs on 2002/10/28 20:44:12
36690 Log: Subject: [PATCH] Re: [PATCH] Re: [perl #17772] pack "w" /* this cannot happen ;-) */ is fallacious
36691 From: Nicholas Clark <nick@unfortu.net>
36692 Date: Sun, 27 Oct 2002 22:31:08 +0000
36693 Message-ID: <20021027223108.GK292@Bagpuss.unfortu.net>
36694 Branch: perl
36695 ! t/op/pack.t
36696____________________________________________________________________________
36697[ 18068] By: merijn on 2002/10/27 17:57:15
36698 Log: Repair broken previous patch. I don't like it, but not repairing it
36699 breaks each and every build. Will teach me to test on the same
36700 machine where I patched it. Sorry.
36701 Branch: perl
36702 ! embed.pl
36703____________________________________________________________________________
36704[ 18067] By: merijn on 2002/10/27 06:02:21
36705 Log: embed.pl doc. (embed.pl reorganization for doc headers)
36706 Wed, 23 Oct 2002; Jarkko Hietaniemi <jhi@iki.fi>
36707 With some additional modifications
36708 Branch: perl
36709 ! embed.pl
36710____________________________________________________________________________
36711[ 18066] By: nick on 2002/10/25 18:21:59
36712 Log: More mainline integrate (so I can diff)
36713 Branch: perlio
36714 !> README.irix README.tru64 lib/Net/Ping/t/450_service.t
36715____________________________________________________________________________
36716[ 18065] By: nick on 2002/10/25 18:20:42
36717 Log: Integrate mainline
36718 Branch: perlio
36719 +> ext/Encode/bin/ucmsort ext/Encode/t/rt.pl ext/IO/lib/IO/t/IO.t
36720 +> ext/Time/HiRes/typemap lib/Net/Ping/t/150_syn_inst.t
36721 +> lib/Net/Ping/t/400_ping_syn.t lib/Net/Ping/t/450_service.t
36722 - ext/Thread/thr5005.t
36723 !> (integrate 71 files)
36724____________________________________________________________________________
36725[ 18064] By: merijn on 2002/10/25 11:47:07
36726 Log: The 5005thread todo list; 2 down 25 to go
36727 Branch: perl
36728 ! README.irix README.tru64
36729____________________________________________________________________________
36730[ 18063] By: hv on 2002/10/25 00:28:48
36731 Log: change #18038 gives too many problems on t/450_service.t; disable
36732 it for now
36733 Branch: perl
36734 ! lib/Net/Ping/t/450_service.t
36735____________________________________________________________________________
36736[ 18062] By: hv on 2002/10/25 00:21:17
36737 Log: Subject: [PATCH] DB_File 1.806
36738 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
36739 Date: Tue, 22 Oct 2002 11:16:21 +0100
36740 Message-ID: <AIEAJICLCBDNAAOLLOKLCEDMFLAA.Paul.Marquess@btinternet.com>
36741 Branch: perl
36742 ! ext/DB_File/Changes ext/DB_File/DB_File.pm
36743 ! ext/DB_File/DB_File.xs ext/DB_File/t/db-btree.t
36744 ! ext/DB_File/t/db-hash.t ext/DB_File/t/db-recno.t
36745____________________________________________________________________________
36746[ 18061] By: hv on 2002/10/25 00:13:07
36747 Log: Subject: [PATCH lib/IO.t] Add tests for IO.pm
36748 From: chromatic <chromatic@wgz.org>
36749 Date: Mon, 21 Oct 2002 20:27:43 -0700
36750 Message-ID: <20021022033253.57952.qmail@onion.perl.org>
36751 Branch: perl
36752 + ext/IO/lib/IO/t/IO.t
36753 ! MANIFEST lib/Net/Ping/t/450_service.t
36754____________________________________________________________________________
36755[ 18060] By: hv on 2002/10/24 23:54:50
36756 Log: 2 lines of change #18039 had several problems
36757 Branch: perl
36758 ! ext/IO/IO.pm
36759____________________________________________________________________________
36760[ 18059] By: hv on 2002/10/24 23:46:29
36761 Log: Subject: [perl #18036] perldoc refuses to run on BeOS
36762 From: "mauzo@csv.warwick.ac.uk (via RT)" <perlbug@perl.org>
36763 Date: 21 Oct 2002 10:18:50 -0000
36764 Message-Id: <rt-18036-40246.15.4017814246886@bugs6.perl.org>
36765 Branch: perl
36766 ! utils/perldoc.PL
36767____________________________________________________________________________
36768[ 18058] By: hv on 2002/10/24 23:36:48
36769 Log: Subject: The Inaba patch for tr/// vs. use encoding
36770 From: Dan Kogai <dankogai@dan.co.jp>
36771 Date: Mon, 21 Oct 2002 17:36:02 +0900
36772 Message-Id: <218B4434-E4D0-11D6-A668-0003939A104C@dan.co.jp>
36773 Branch: perl
36774 ! mg.c regcomp.c sv.c toke.c
36775____________________________________________________________________________
36776[ 18057] By: hv on 2002/10/24 23:16:15
36777 Log: Subject: [Encode] 1.80 released
36778 From: Dan Kogai <dankogai@dan.co.jp>
36779 Date: Tue, 22 Oct 2002 05:47:16 +0900
36780 Message-Id: <48F1B85D-E536-11D6-A87D-0003939A104C@dan.co.jp>
36781 Branch: perl
36782 + ext/Encode/bin/ucmsort ext/Encode/t/rt.pl
36783 ! MANIFEST ext/Encode/AUTHORS ext/Encode/Changes
36784 ! ext/Encode/Encode.pm ext/Encode/Encode.xs
36785 ! ext/Encode/lib/Encode/MIME/Header.pm
36786 ! ext/Encode/lib/Encode/Supported.pod ext/Encode/t/CJKT.t
36787 ! ext/Encode/t/jperl.t ext/Encode/t/mime-header.t
36788 ! ext/Encode/ucm/cp932.ucm ext/Encode/ucm/cp936.ucm
36789 ! ext/Encode/ucm/cp949.ucm ext/Encode/ucm/cp950.ucm
36790____________________________________________________________________________
36791[ 18056] By: hv on 2002/10/24 22:48:06
36792 Log: Subject: [PATCH] B/C.pm: make $0 to argv[0] again
36793 From: Autrijus Tang <autrijus@autrijus.org>
36794 Date: Sat, 19 Oct 2002 17:51:57 +0800
36795 Message-ID: <20021019095157.GA430@not.autrijus.org>
36796 Branch: perl
36797 ! ext/B/B/C.pm
36798____________________________________________________________________________
36799[ 18055] By: hv on 2002/10/24 22:34:10
36800 Log: Reverse change #8066 and sense of test, to satisfy [perl #17763]
36801 Branch: perl
36802 ! pp_sys.c t/run/fresh_perl.t
36803____________________________________________________________________________
36804[ 18054] By: hv on 2002/10/24 22:17:40
36805 Log: change #18030 needs the removal of ext/Thread/thr5005.t
36806 Branch: perl
36807 - ext/Thread/thr5005.t
36808____________________________________________________________________________
36809[ 18053] By: merijn on 2002/10/24 08:20:09
36810 Log: charnames pragma extended with :alias for customized
36811 unicode naming aliases
36812 Mon, 21 Oct 2002; "H.Merijn Brand" <h.m.brand@hccnet.nl>
36813 Branch: perl
36814 ! lib/charnames.pm lib/charnames.t
36815____________________________________________________________________________
36816[ 18052] By: rgs on 2002/10/23 19:16:50
36817 Log: Further tweaks to perlmodlib.pod.
36818 Add a note about perllocal.pod, which wasn't documented.
36819 Branch: perl
36820 ! pod/perlmodlib.PL pod/perlmodlib.pod
36821____________________________________________________________________________
36822[ 18051] By: rgs on 2002/10/23 18:56:08
36823 Log: Further tweaks to perluniintro.pod
36824 Branch: perl
36825 ! pod/perluniintro.pod
36826____________________________________________________________________________
36827[ 18050] By: rgs on 2002/10/22 19:11:12
36828 Log: perlmodlib.pod nit suggested by David Dyck (bug #18055)
36829 Regenerate perlmodlib.pod
36830 Branch: perl
36831 ! pod/perlmodlib.PL pod/perlmodlib.pod
36832____________________________________________________________________________
36833[ 18049] By: rgs on 2002/10/22 18:48:00
36834 Log: Subject: [PATCH] perluniintro
36835 From: Jarkko Hietaniemi <jhi@iki.fi>
36836 Date: Sun, 20 Oct 2002 15:48:09 +0300
36837 Message-ID: <20021020124809.GE444369@lyta.hut.fi>
36838 Branch: perl
36839 ! pod/perluniintro.pod
36840____________________________________________________________________________
36841[ 18048] By: hv on 2002/10/22 17:04:26
36842 Log: Subject: [PATCH] PL_curpad == AvARRAY(PL_comppad) always
36843 From: Dave Mitchell <davem@fdgroup.com>
36844 Date: Fri, 18 Oct 2002 13:36:40 +0100
36845 Message-ID: <20021018133640.A19172@fdgroup.com>
36846 Branch: perl
36847 ! cop.h embed.fnc ext/List/Util/Util.xs global.sym op.c pad.c
36848 ! pad.h perl.c perlapi.h pod/perlintern.pod pp_ctl.c proto.h
36849 ! regcomp.c regexec.c scope.c scope.h sv.c t/op/closure.t
36850____________________________________________________________________________
36851[ 18047] By: hv on 2002/10/22 16:20:18
36852 Log: Subject: [PATCH] AutoLoader gives wrong message
36853 From: Peter Scott <peter@psdt.com>
36854 Date: Thu, 17 Oct 2002 19:54:56 -0700
36855 Message-id: <4.3.2.7.2.20021017192450.00b3dce0@shell2.webquarry.com>
36856 Branch: perl
36857 ! lib/AutoLoader.pm
36858____________________________________________________________________________
36859[ 18046] By: hv on 2002/10/22 15:52:40
36860 Log: Subject: Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
36861 From: Alain Barbet <alian@alianwebserver.com>
36862 Date: Fri, 18 Oct 2002 15:29:29 +0200
36863 Message-ID: <3DB00CB9.70708@alianwebserver.com>
36864 Branch: perl
36865 ! README.win32 win32/makefile.mk win32/win32.c
36866____________________________________________________________________________
36867[ 18045] By: hv on 2002/10/22 15:47:21
36868 Log: improve 'atomicity' wording
36869 Branch: perl
36870 ! lib/filetest.pm
36871____________________________________________________________________________
36872[ 18044] By: hv on 2002/10/22 15:43:55
36873 Log: Subject: [PATCH] Shell.pm object methods broken
36874 From: Dan Brook <dbrook@easyspace.com>
36875 Date: Thu, 17 Oct 2002 16:05:04 +0100
36876 Message-Id: <20021017160504.63926a1b.dbrook@easyspace.com>
36877 Branch: perl
36878 ! lib/Shell.pm lib/Shell.t
36879____________________________________________________________________________
36880[ 18043] By: nick on 2002/10/21 17:50:44
36881 Log: Test UTF-8 encoded input to Encode::XS::decode and fix it.
36882 Branch: perlio
36883 ! ext/Encode/Encode.xs ext/Encode/t/mime-header.t
36884____________________________________________________________________________
36885[ 18042] By: hv on 2002/10/21 09:20:54
36886 Log: Subject: Re: [perl #16184] Unexpected warning when using C<< open FH => >>
36887 From: hv@crypt.org
36888 Date: Mon, 21 Oct 2002 11:27:40 +0100
36889 Message-Id: <200210211027.g9LARef05722@crypt.compulink.co.uk>
36890 Branch: perl
36891 ! t/lib/warnings/toke toke.c
36892____________________________________________________________________________
36893[ 18041] By: hv on 2002/10/21 01:14:48
36894 Log: Subject: Re: [perl #18019] regex overoptimization
36895 From: hv@crypt.org
36896 Date: Mon, 21 Oct 2002 03:21:54 +0100
36897 Message-Id: <200210210221.g9L2LsU32598@crypt.compulink.co.uk>
36898 Branch: perl
36899 ! regcomp.c t/op/re_tests
36900____________________________________________________________________________
36901[ 18040] By: nick on 2002/10/20 16:20:37
36902 Log: Handle case where octets are UTF-8 encoded
36903 Branch: perlio
36904 ! ext/Encode/Encode.xs
36905____________________________________________________________________________
36906[ 18039] By: hv on 2002/10/20 14:33:16
36907 Log: Subject: Re: [PATCH] Warning on pararameterless 'use IO' and doc update
36908 From: =?iso-8859-1?Q?St=E9phane?= Payrard <s.payrard@wanadoo.fr>
36909 Date: Tue, 15 Oct 2002 02:17:03 +0200
36910 Message-ID: <20021015001703.GG7914@stefp.dyndns.org>
36911 Branch: perl
36912 ! ext/IO/IO.pm
36913____________________________________________________________________________
36914[ 18038] By: hv on 2002/10/20 14:23:06
36915 Log: Update to Net::Ping v2.23
36916 Branch: perl
36917 + lib/Net/Ping/t/150_syn_inst.t lib/Net/Ping/t/400_ping_syn.t
36918 + lib/Net/Ping/t/450_service.t
36919 ! MANIFEST lib/Net/Ping.pm lib/Net/Ping/t/110_icmp_inst.t
36920 ! lib/Net/Ping/t/200_ping_tcp.t
36921____________________________________________________________________________
36922[ 18037] By: hv on 2002/10/20 13:57:06
36923 Log: Subject: [PATCH] t/op/pack.t: Tru64 5.1A gcc 3.2.1 no inf
36924 From: Jarkko Hietaniemi <jhi@iki.fi>
36925 Date: Mon, 14 Oct 2002 14:49:54 +0300
36926 Message-ID: <20021014114954.GB80937@lyta.hut.fi>
36927 Branch: perl
36928 ! t/op/pack.t
36929____________________________________________________________________________
36930[ 18036] By: hv on 2002/10/20 13:43:56
36931 Log: Subject: Re: [perl #17892] Perl's mkdir() doesn't remove trailing slashes
36932 From: Slaven Rezic <slaven.rezic@berlin.de>
36933 Date: 14 Oct 2002 09:37:18 +0200
36934 Message-ID: <8765w5wjwx.fsf@vran.herceg.de>
36935 Branch: perl
36936 ! pp_sys.c t/op/mkdir.t
36937____________________________________________________________________________
36938[ 18035] By: hv on 2002/10/20 13:39:09
36939 Log: Subject: Re: [perl #17951] Strange UTF error
36940 From: Jarkko Hietaniemi <jhi@iki.fi>
36941 Date: Wed, 16 Oct 2002 18:50:51 +0300
36942 Message-ID: <20021016155051.GB268437@lyta.hut.fi>
36943 Branch: perl
36944 ! lib/utf8_heavy.pl t/run/fresh_perl.t
36945____________________________________________________________________________
36946[ 18034] By: hv on 2002/10/20 13:23:16
36947 Log: Update to Time::HiRes v1.38
36948 Branch: perl
36949 + ext/Time/HiRes/typemap
36950 ! MANIFEST ext/Time/HiRes/Changes ext/Time/HiRes/HiRes.pm
36951 ! ext/Time/HiRes/HiRes.t ext/Time/HiRes/HiRes.xs
36952 ! ext/Time/HiRes/Makefile.PL
36953____________________________________________________________________________
36954[ 18033] By: hv on 2002/10/20 13:12:25
36955 Log: Upgrade to Test.pm v1.23
36956 Branch: perl
36957 ! lib/Test.pm
36958____________________________________________________________________________
36959[ 18032] By: nick on 2002/10/20 12:36:16
36960 Log: Encode::utf8 encode/decode methods as XS that obeys
36961 same protocol as Encode::XS - allows :encoding(UTF-8)
36962 to cope with partial chars at end of buffer.
36963 Branch: perlio
36964 ! ext/Encode/Encode.pm ext/Encode/Encode.xs
36965 ! ext/PerlIO/t/encoding.t
36966____________________________________________________________________________
36967[ 18031] By: nick on 2002/10/20 09:06:00
36968 Log: Integrate mainline
36969 Branch: perlio
36970 +> ext/Safe/safe3.t lib/version.pm lib/version.t pad.c pad.h
36971 +> pod/perl573delta.pod t/comp/our.t
36972 !> (integrate 211 files)
36973____________________________________________________________________________
36974[ 18030] By: merijn on 2002/10/19 14:10:21
36975 Log: Happy chainsaw stories; The removal of the 5005 threads
36976 Still imcomplete. Configure will follow
36977 Branch: perl
36978 ! MANIFEST NetWare/Makefile NetWare/config.wc
36979 ! NetWare/config_H.wc NetWare/nw5thread.c NetWare/nw5thread.h
36980 ! Porting/Glossary Porting/config.sh Porting/config_H
36981 ! config_h.SH cop.h cv.h deb.c dosish.h dump.c embed.fnc embed.h
36982 ! embed.pl embedvar.h epoc/config.sh ext/B/B.xs ext/B/B/C.pm
36983 ! ext/B/ramblings/runtime.porting ext/B/t/lint.t
36984 ! ext/DynaLoader/dl_aix.xs ext/Thread/README.threads
36985 ! ext/Thread/Thread.xs ext/Thread/thr5005.t gv.c hints/darwin.sh
36986 ! installperl intrpvar.h makedef.pl mg.c miniperlmain.c
36987 ! myconfig.SH op.c os2/os2.c os2/os2ish.h pad.c perl.c perl.h
36988 ! perlvars.h pod/perltoc.pod pp.c pp.h pp_ctl.c pp_hot.c
36989 ! pp_sort.c proto.h scope.c sv.c sv.h thrdvar.h thread.h toke.c
36990 ! uconfig.h uconfig.sh util.c vms/vms.c win32/Makefile
36991 ! win32/config.bc win32/config.gc win32/config.vc
36992 ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
36993 ! win32/config_H.vc win32/config_H.vc64 win32/config_sh.PL
36994 ! win32/makefile.mk win32/perllib.c win32/win32.c win32/win32.h
36995 ! win32/win32sck.c win32/win32thread.c win32/win32thread.h
36996 ! wince/Makefile.ce wince/config.ce wince/config_H.ce
36997 ! wince/config_sh.PL wince/win32.h wince/win32thread.c
36998 ! wince/win32thread.h wince/wincesck.c
36999____________________________________________________________________________
37000[ 18029] By: merijn on 2002/10/18 07:28:21
37001 Log: minor tweaks in Porting/pumpkin.pod
37002 Fri, 18 Oct 2002; Philip Newton <Philip.Newton@gmx.net>
37003 Branch: perl
37004 ! Porting/pumpkin.pod
37005____________________________________________________________________________
37006[ 18028] By: rgs on 2002/10/17 20:33:32
37007 Log: Subject: [PATCH t/run/switches.t] Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
37008 From: Abe Timmerman <abe@ztreet.demon.nl>
37009 Date: Thu, 17 Oct 2002 23:38:34 +0200
37010 Message-Id: <200210172338.34728.abe@ztreet.demon.nl>
37011 Branch: perl
37012 ! t/run/switches.t
37013____________________________________________________________________________
37014[ 18027] By: hv on 2002/10/17 14:39:27
37015 Log: Subject: Re: versions too accurate
37016 From: John Peacock <jpeacock@rowman.com>
37017 Date: Mon, 14 Oct 2002 22:36:48 -0400
37018 Message-ID: <3DAB7F40.1050200@rowman.com>
37019 Branch: perl
37020 ! lib/version.pm util.c
37021____________________________________________________________________________
37022[ 18026] By: hv on 2002/10/17 14:29:41
37023 Log: Subject: Re: [PATCH] Version object combined patch
37024 From: John Peacock <jpeacock@rowman.com>
37025 Date: Thu, 10 Oct 2002 21:23:01 -0400
37026 Message-ID: <3DA627F5.5050907@rowman.com>
37027 Branch: perl
37028 ! lib/version.pm lib/version.t pod/perldiag.pod util.c
37029____________________________________________________________________________
37030[ 18025] By: hv on 2002/10/17 13:37:04
37031 Log: definition of MAXPATHLEN
37032 Subject: [PATCH] standard lawyerism
37033 From: Jarkko Hietaniemi <jhi@iki.fi>
37034 Date: Fri, 11 Oct 2002 02:48:26 +0300
37035 Message-ID: <20021010234825.GM292305@lyta.hut.fi>
37036 Branch: perl
37037 ! perl.h
37038____________________________________________________________________________
37039[ 18024] By: hv on 2002/10/17 13:34:01
37040 Log: Subject: Re: [perl #17061] no strict 'garbage'
37041 From: Slaven Rezic <slaven.rezic@berlin.de>
37042 Date: 10 Oct 2002 16:23:22 +0200
37043 Message-ID: <87ptui5q5h.fsf@vran.herceg.de>
37044 Branch: perl
37045 ! ext/Storable/Storable.pm
37046____________________________________________________________________________
37047[ 18023] By: hv on 2002/10/17 12:56:28
37048 Log: Subject: Re: [perl #17830] open FH, "<&", $fd
37049 From: Steve Grazzini <grazz@nyc.rr.com>
37050 Date: 11 Oct 2002 22:28:58 -0000
37051 Message-ID: <20021011222858.452.qmail@onion.perl.org>
37052 Branch: perl
37053 ! doio.c t/io/open.t
37054____________________________________________________________________________
37055[ 18022] By: hv on 2002/10/17 12:24:42
37056 Log: Subject: Re: [perl #17809] Different warning behaviour between normal and tied hashes
37057 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37058 Date: Tue, 15 Oct 2002 17:01:43 -0700
37059 Message-ID: <nxKr9gzkgmBO092yn@efn.org>
37060 Branch: perl
37061 ! t/op/assignwarn.t
37062____________________________________________________________________________
37063[ 18021] By: hv on 2002/10/17 11:28:38
37064 Log: Subject: [PATCH] minor tweaks in Porting/pumpkin.pod
37065 From: Slaven Rezic <slaven.rezic@berlin.de>
37066 Date: Thu, 3 Oct 2002 21:54:22 +0200 (CEST)
37067 Message-Id: <200210031954.g93JsMiZ034457@vran.herceg.de>
37068 Branch: perl
37069 ! Porting/pumpkin.pod
37070____________________________________________________________________________
37071[ 18020] By: rgs on 2002/10/16 18:43:21
37072 Log: prototype() didn't warn when used in void context.
37073 Branch: perl
37074 ! op.c t/lib/warnings/op
37075____________________________________________________________________________
37076[ 18019] By: ams on 2002/10/15 20:54:53
37077 Log: Subject: Japanese translation of Storable
37078 From: "KAWAI,Takanori" <GCD00051@nifty.ne.jp>
37079 Date: Tue, 15 Oct 2002 06:31:01 +0900
37080 Message-Id: <003801c273c9$05888910$1401a8c0@hipposam>
37081 Branch: perl
37082 ! ext/Storable/README
37083____________________________________________________________________________
37084[ 18018] By: rgs on 2002/10/15 19:08:20
37085 Log: Subject: Re: [PATCH] cv.h: Comment update
37086 From: Paul Johnson <paul@pjcj.net>
37087 Date: Mon, 14 Oct 2002 20:00:50 +0200
37088 Message-ID: <20021014180050.GC7333@pjcj.net>
37089 Branch: perl
37090 ! cv.h
37091____________________________________________________________________________
37092[ 18017] By: rgs on 2002/10/14 20:37:06
37093 Log: Subject: [PATCH] perlipc.pod
37094 From: Slaven Rezic <slaven.rezic@berlin.de>
37095 Date: Sun, 13 Oct 2002 14:26:26 +0200 (CEST)
37096 Message-Id: <200210131226.g9DCQQLN014591@vran.herceg.de>
37097 Branch: perl
37098 ! pod/perlipc.pod
37099____________________________________________________________________________
37100[ 18016] By: rgs on 2002/10/14 20:30:03
37101 Log: Subject: [PATCH] minor typos in perlhist.pod and perlunicode.pod
37102 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
37103 Date: Sun, 13 Oct 2002 09:02:36 +0900
37104 Message-Id: <20021013090227.FFCD.BQW10602@nifty.com>
37105 Branch: perl
37106 ! pod/perlunicode.pod
37107____________________________________________________________________________
37108[ 18015] By: rgs on 2002/10/12 20:22:37
37109 Log: The -0 command-line switch wasn't setting $/ at compile-time.
37110 Move the initialization of $/ just after switch parsing
37111 (it was done after yyparse().)
37112 Branch: perl
37113 ! perl.c t/run/switches.t
37114____________________________________________________________________________
37115[ 18014] By: rgs on 2002/10/12 20:18:55
37116 Log: Subject: Re: [PATCH] perl573delta delinting
37117 From: Philip Newton <Philip.Newton@gmx.net>
37118 Date: Sat, 12 Oct 2002 21:25:49 +0200
37119 Message-ID: <iotgqucnbttvvc43o0j7kv55p5dstui4oc@4ax.com>
37120 Branch: perl
37121 ! pod/perl573delta.pod
37122____________________________________________________________________________
37123[ 18013] By: hv on 2002/10/12 15:41:50
37124 Log: Subject: [PATCH] for -Dm
37125 From: Slaven Rezic <slaven.rezic@berlin.de>
37126 Date: Wed, 9 Oct 2002 00:49:33 +0200 (CEST)
37127 Message-Id: <200210082249.g98MnXqM076566@vran.herceg.de>
37128 Branch: perl
37129 ! malloc.c
37130____________________________________________________________________________
37131[ 18012] By: hv on 2002/10/12 15:39:49
37132 Log: #18005 was not enough
37133 Subject: [PATCH win32/makefile.mk] (Was Re: Building bleadperl (minperl) fails completely under VC7)
37134 From: Abe Timmerman <abeltje@cpan.org>
37135 Date: Sat, 12 Oct 2002 17:56:39 +0200
37136 Message-Id: <200210121756.39803.abeltje@cpan.org>
37137 Branch: perl
37138 ! win32/makefile.mk
37139____________________________________________________________________________
37140[ 18011] By: hv on 2002/10/12 15:36:43
37141 Log: Subject: [perl #17805] BUG: Grammar bug during Configure
37142 From: Richard Hitt (via RT) <perlbug@perl.org>
37143 Date: 8 Oct 2002 21:04:30 -0000
37144 Message-Id: <rt-17805-39395.9.0319493317925@bugs6.perl.org>
37145 Branch: perl
37146 ! Configure
37147____________________________________________________________________________
37148[ 18010] By: hv on 2002/10/12 15:31:06
37149 Log: Subject: [PATCH] Re: [perl #17772] pack "w" /* this cannot happen ;-) */ is fallacious
37150 From: Nicholas Clark <nick@unfortu.net>
37151 Date: Tue, 8 Oct 2002 21:52:53 +0100
37152 Message-ID: <20021008205253.GA283@Bagpuss.unfortu.net>
37153 Branch: perl
37154 ! pod/perldiag.pod pp_pack.c t/op/pack.t
37155____________________________________________________________________________
37156[ 18009] By: hv on 2002/10/12 15:12:18
37157 Log: Subject: [PATCH perldoc] For screaming hell's sake
37158 From: Simon Cozens <simon@netthink.co.uk>
37159 Date: Tue, 8 Oct 2002 11:13:07 +0100
37160 Message-ID: <20021008101307.GA8175@netthink.co.uk>
37161 Branch: perl
37162 ! utils/perldoc.PL
37163____________________________________________________________________________
37164[ 18008] By: hv on 2002/10/12 14:38:19
37165 Log: Subject: [PATCH] Storable 2.06 (was Re: Bug in ext/Storable/t/integer.t)
37166 From: Nicholas Clark <nick@unfortu.net>
37167 Date: Mon, 7 Oct 2002 23:35:34 +0100
37168 Message-ID: <20021007223534.GD286@Bagpuss.unfortu.net>
37169 Branch: perl
37170 ! ext/Storable/ChangeLog ext/Storable/Makefile.PL
37171 ! ext/Storable/README ext/Storable/Storable.pm
37172 ! ext/Storable/Storable.xs ext/Storable/t/downgrade.t
37173 ! ext/Storable/t/forgive.t ext/Storable/t/integer.t
37174 ! ext/Storable/t/malice.t ext/Storable/t/restrict.t
37175____________________________________________________________________________
37176[ 18007] By: hv on 2002/10/12 14:22:36
37177 Log: Subject: [perl #17773] errors in c2ph(1) man page
37178 From: Eric Melville (via RT) <perlbug@perl.org>
37179 Date: 7 Oct 2002 02:58:34 -0000
37180 Message-Id: <rt-17773-39313.12.4820309875481@bugs6.perl.org>
37181 Branch: perl
37182 ! utils/c2ph.PL
37183____________________________________________________________________________
37184[ 18006] By: hv on 2002/10/12 14:19:55
37185 Log: Subject: [PATCH pad.c] Re: closure failures
37186 From: Dave Mitchell <davem@fdgroup.com>
37187 Date: Mon, 7 Oct 2002 02:42:13 +0100
37188 Message-ID: <20021007024213.B29760@fdgroup.com>
37189 Branch: perl
37190 ! pad.c
37191____________________________________________________________________________
37192[ 18005] By: hv on 2002/10/12 14:17:07
37193 Log: Subject: Re: Building bleadperl (minperl) fails completely under VC7
37194 From: Abe Timmerman <abeltje@cpan.org>
37195 Date: Tue, 8 Oct 2002 14:16:56 +0200
37196 Message-Id: <200210081416.56942.abeltje@cpan.org>
37197 Branch: perl
37198 ! win32/Makefile
37199____________________________________________________________________________
37200[ 18004] By: hv on 2002/10/12 14:06:59
37201 Log: updated hints for Darwin from Wilfredo Sanchez <wsanchez@mit.edu>
37202 Branch: perl
37203 ! hints/darwin.sh
37204____________________________________________________________________________
37205[ 18003] By: hv on 2002/10/12 13:48:34
37206 Log: Second attempt to fix Devel::Peek test of $ENV{PATH}, after #17956
37207 and #18001.
37208 Branch: perl
37209 ! ext/Devel/Peek/Peek.t
37210____________________________________________________________________________
37211[ 18002] By: hv on 2002/10/11 23:22:56
37212 Log: Subject: [Encode] 1.77 Released
37213 From: Dan Kogai <dankogai@dan.co.jp>
37214 Date: Sun, 6 Oct 2002 12:52:52 +0900
37215 Message-Id: <16D4C6C9-D8DF-11D6-A5EA-0003939A104C@dan.co.jp>
37216 Branch: perl
37217 ! ext/Encode/Changes ext/Encode/Encode.pm
37218 ! ext/Encode/Unicode/Unicode.pm ext/Encode/encoding.pm
37219 ! ext/Encode/lib/Encode/Alias.pm
37220 ! ext/Encode/lib/Encode/Encoding.pm ext/Encode/t/jperl.t
37221 ! ext/Encode/ucm/big5-eten.ucm
37222____________________________________________________________________________
37223[ 18001] By: hv on 2002/10/11 22:52:43
37224 Log: Subject: Re: Smoke 17977 FAIL(F) MSWin32 5.0 W2000Pro (MSWin32-x86)
37225 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37226 Date: Thu, 10 Oct 2002 14:28:55 -0700
37227 Message-ID: <XEfp9gzkgquV092yn@efn.org>
37228 Branch: perl
37229 ! ext/Devel/Peek/Peek.t
37230____________________________________________________________________________
37231[ 18000] By: hv on 2002/10/11 22:30:36
37232 Log: Subject: [PATCH] perl573delta delinting
37233 From: Jarkko Hietaniemi <jhi@iki.fi>
37234 Date: Fri, 4 Oct 2002 16:19:31 +0300
37235 Message-ID: <20021004131931.GE278184@lyta.hut.fi>
37236 Branch: perl
37237 ! pod/perl573delta.pod
37238____________________________________________________________________________
37239[ 17999] By: hv on 2002/10/11 22:28:36
37240 Log: Subject: [PATCH] No warn, just ERANGE (Was: Re: [PATCH] reentrant buffers)
37241 From: Jarkko Hietaniemi <jhi@iki.fi>
37242 Date: Fri, 4 Oct 2002 16:11:57 +0300
37243 Message-ID: <20021004131157.GD278184@lyta.hut.fi>
37244 Branch: perl
37245 ! pod/perldiag.pod reentr.c reentr.pl
37246____________________________________________________________________________
37247[ 17998] By: rgs on 2002/10/11 19:53:05
37248 Log: Fix bug #17771 : segfault with the 'for' statement modifier
37249 used inside a map or a grep.
37250 Branch: perl
37251 ! pp_ctl.c t/op/grep.t
37252____________________________________________________________________________
37253[ 17997] By: hv on 2002/10/11 12:10:39
37254 Log: Subject: [perl #17751] File::Spec::Win32::canonpath patch try#3
37255 From: Information Service <info@lingo.kiev.ua>
37256 Date: Wed, 09 Oct 2002 07:17:00 +0400
37257 Message-ID: <3DA39FAC.85471200@lingo.kiev.ua>
37258 Branch: perl
37259 ! lib/File/Spec/Win32.pm lib/File/Spec/t/Spec.t
37260____________________________________________________________________________
37261[ 17996] By: hv on 2002/10/11 11:55:53
37262 Log: Subject: [PROPOSED PATCH lib/AutoLoader.t lib/AutoLoader.pm] Test and Improve unimport()
37263 From: chromatic <chromatic@wgz.org>
37264 Date: Thu, 03 Oct 2002 22:56:54 -0700
37265 Message-ID: <20021004060120.33329.qmail@onion.perl.org>
37266 Branch: perl
37267 ! lib/AutoLoader.pm lib/AutoLoader.t
37268____________________________________________________________________________
37269[ 17995] By: ams on 2002/10/11 05:24:20
37270 Log: Subject: [perl #17819] Typo in perltooc?
37271 From: Bob Wilkinson (via RT) <perlbug@perl.org>
37272 Date: 9 Oct 2002 09:50:40 -0000
37273 Message-Id: <rt-17819-39445.14.7484532089852@bugs6.perl.org>
37274
37275 Subject: [perl #17821] Typo in perltooc
37276 From: Bob Wilkinson (via RT) <perlbug@perl.org>
37277 Date: 9 Oct 2002 10:12:51 -0000
37278 Message-Id: <rt-17821-39458.9.41452851965508@bugs6.perl.org>
37279 Branch: perl
37280 ! pod/perltooc.pod
37281____________________________________________________________________________
37282[ 17994] By: rgs on 2002/10/10 20:19:27
37283 Log: Fix bug #17776 : memory corruption in qr/##/x
37284 Branch: perl
37285 ! sv.c t/op/pat.t
37286____________________________________________________________________________
37287[ 17993] By: rgs on 2002/10/10 19:52:00
37288 Log: croak() is better written Perl_croak() in C code.
37289 Branch: perl
37290 ! util.c
37291____________________________________________________________________________
37292[ 17992] By: hv on 2002/10/10 11:29:12
37293 Log: Subject: Re: Hash::Util::lock_keys inhibits bless
37294 From: andreas.koenig@anima.de (Andreas J. Koenig)
37295 Date: Fri, 04 Oct 2002 06:38:57 +0200
37296 Message-ID: <m3bs6astr2.fsf@k242.linux.bogus>
37297 Branch: perl
37298 ! lib/Hash/Util.pm
37299____________________________________________________________________________
37300[ 17991] By: hv on 2002/10/10 11:20:41
37301 Log: new files lib/version.pm and lib/version.t for change #17990.
37302 Branch: perl
37303 + lib/version.pm lib/version.t
37304____________________________________________________________________________
37305[ 17990] By: hv on 2002/10/10 11:19:57
37306 Log: Subject: [PATCH] Version object combined patch
37307 From: John Peacock <jpeacock@rowman.com>
37308 Date: Fri, 04 Oct 2002 23:15:10 -0400
37309 Message-ID: <3D9E593E.1060605@rowman.com>
37310 Branch: perl
37311 ! MANIFEST embed.fnc embed.h global.sym pod/perlapi.pod
37312 ! pod/perlintern.pod proto.h t/comp/use.t universal.c util.c
37313____________________________________________________________________________
37314[ 17989] By: hv on 2002/10/10 10:48:42
37315 Log: Subject: PATCH: lib/ExtUtils/typemap
37316 From: Brian Ingerson <ingy@ttul.org>
37317 Date: Sat, 28 Sep 2002 13:03:24 -0700
37318 Message-ID: <20020928130324.A16900@ttul.org>
37319 Branch: perl
37320 ! lib/ExtUtils/typemap
37321____________________________________________________________________________
37322[ 17988] By: hv on 2002/10/10 10:45:19
37323 Log: Subject: [PATCH] Make Exporter cope with changing EXPORT_OK (was Re: Recent changes to Exporter::Heavy break Math::Pari)
37324 From: Nicholas Clark <nick@unfortu.net>
37325 Date: Sat, 28 Sep 2002 18:52:00 +0100
37326 Message-ID: <20020928175159.GC403@Bagpuss.unfortu.net>
37327 Branch: perl
37328 ! lib/Exporter.t lib/Exporter/Heavy.pm
37329____________________________________________________________________________
37330[ 17987] By: hv on 2002/10/10 10:27:40
37331 Log: Subject: Re: [perl #17075] sprintf: '%.[num](g|G)' documentation incorrect
37332 From: "Allen Smith" <easmith@beatrice.rutgers.edu>
37333 Date: Mon, 9 Sep 2002 17:36:55 -0400
37334 Message-Id: <10209091736.ZM1631710@puck2.rutgers.edu>
37335 Branch: perl
37336 ! pod/perlfunc.pod
37337____________________________________________________________________________
37338[ 17986] By: hv on 2002/10/10 09:51:24
37339 Log: Remove use of caller() in strict.pm, and tighten Safe compartment
37340 for Storable tests to match.
37341 Branch: perl
37342 ! ext/Storable/t/code.t lib/strict.pm lib/strict.t
37343____________________________________________________________________________
37344[ 17985] By: hv on 2002/10/10 09:27:00
37345 Log: Subject: Re: README.cygwin draft update
37346 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37347 Date: Mon, 07 Oct 2002 17:15:09 -0700
37348 Message-ID: <NOio9gzkg6oR092yn@efn.org>
37349 Branch: perl
37350 ! README.cygwin pod/perl58delta.pod
37351____________________________________________________________________________
37352[ 17984] By: rgs on 2002/10/09 19:17:08
37353 Log: Fix bug #17823 : non-modifying tr/// stringifies references
37354 Branch: perl
37355 ! doop.c t/op/tr.t
37356____________________________________________________________________________
37357[ 17983] By: merijn on 2002/10/09 12:22:26
37358 Log: Tru64 and gcc and threads
37359 Sat, 5 Oct 2002; Jarkko Hietaniemi <jhi@iki.fi>
37360 Branch: perl
37361 ! thread.h
37362____________________________________________________________________________
37363[ 17982] By: merijn on 2002/10/09 10:34:40
37364 Log: Correct mailing list archive URL
37365 Wed, 9 Oct 2002; Slaven Rezic <slaven.rezic@berlin.de>
37366 Branch: perl
37367 ! Porting/pumpkin.pod
37368____________________________________________________________________________
37369[ 17981] By: merijn on 2002/10/09 04:49:06
37370 Log: Try #3 for Porting/pumpkin.pod APPLLIB_EXP quoting
37371 Tue, 8 Oct 2002; Andy Dougherty <doughera@lafayette.edu>
37372 Branch: perl
37373 ! Porting/pumpkin.pod
37374____________________________________________________________________________
37375[ 17980] By: sky on 2002/10/06 15:40:56
37376 Log: Upgrade Safe.pm to 2.09 after CPAN backport.
37377 Fix testcases to run properly outside perl core build enviroment.
37378 Branch: perl
37379 ! ext/Opcode/Safe.pm ext/Safe/safe1.t ext/Safe/safe2.t
37380 ! ext/Safe/safe3.t
37381____________________________________________________________________________
37382[ 17979] By: sky on 2002/10/06 07:03:19
37383 Log: Subject: [PATCH] fix typo in Tie::Array
37384 From: "Jos I. Boumans" <kane@cpan.org>
37385 Date: sat okt 5, 2002 20:39:17 Europe/Stockholm
37386 Message-Id: <20021005183920.14746.qmail@onion.perl.org>
37387 Branch: perl
37388 ! lib/Tie/Array.pm
37389____________________________________________________________________________
37390[ 17978] By: sky on 2002/10/05 04:44:10
37391 Log: Upgrade to Attribute::Handlers 0.78
37392 Branch: perl
37393 ! lib/Attribute/Handlers.pm lib/Attribute/Handlers/Changes
37394 ! lib/Attribute/Handlers/README
37395____________________________________________________________________________
37396[ 17977] By: rgs on 2002/10/04 20:01:54
37397 Log: Complement to change #17976 :
37398 there was a similar bug on rdo().
37399 Increment $Safe::VERSION.
37400 Branch: perl
37401 ! ext/Opcode/Safe.pm ext/Safe/safe3.t
37402____________________________________________________________________________
37403[ 17976] By: rgs on 2002/10/04 19:44:48
37404 Log: Fix bug #17744, suggested by Andreas Jurenda,
37405 tweaked by rgs (security hole in Safe).
37406 Branch: perl
37407 + ext/Safe/safe3.t
37408 ! MANIFEST ext/Opcode/Safe.pm
37409____________________________________________________________________________
37410[ 17975] By: merijn on 2002/10/04 13:30:17
37411 Log: Non ANSI feature detection in enum
37412 Branch: perl
37413 ! pad.h
37414____________________________________________________________________________
37415[ 17974] By: rgs on 2002/10/03 21:00:50
37416 Log: Fix a precedence problem.
37417 Branch: perl
37418 ! ext/Storable/t/integer.t
37419____________________________________________________________________________
37420[ 17973] By: rgs on 2002/10/03 20:34:13
37421 Log: Change the warning message "%s trapped by operation mask"
37422 to include '' around the op name. Document it in perldiag.
37423 Branch: perl
37424 ! ext/Opcode/Opcode.t ext/Opcode/Safe.pm ext/Safe/safe2.t op.c
37425 ! pod/perldiag.pod
37426____________________________________________________________________________
37427[ 17972] By: rgs on 2002/10/03 20:26:54
37428 Log: Add a new warning, "Possible precedence problem on bitwise
37429 %c operator", triggerred when a bitwise op has a numeric
37430 comparison op as child.
37431 Branch: perl
37432 ! op.c pod/perldiag.pod t/lib/warnings/op
37433____________________________________________________________________________
37434[ 17971] By: ams on 2002/10/03 11:03:41
37435 Log: Subject: Re: Not OK 17969
37436 From: Slaven Rezic <slaven.rezic@berlin.de>
37437 Date: 03 Oct 2002 13:12:58 +0200
37438 Message-Id: <87lm5fn5c5.fsf@vran.herceg.de>
37439 Branch: perl
37440 ! ext/Storable/Storable.pm ext/Storable/t/code.t
37441 ! ext/Storable/t/downgrade.t ext/Storable/t/forgive.t
37442 ! ext/Storable/t/malice.t
37443____________________________________________________________________________
37444[ 17970] By: ams on 2002/10/03 02:21:15
37445 Log: Add a line about 2.05.
37446 Branch: perl
37447 ! ext/Storable/ChangeLog
37448____________________________________________________________________________
37449[ 17969] By: ams on 2002/10/03 02:12:27
37450 Log: Subject: [PATCH] Storable and code serialization: documentation
37451 From: Slaven Rezic <slaven.rezic@berlin.de>
37452 Date: Wed, 2 Oct 2002 10:21:37 +0200 (CEST)
37453 Message-Id: <200210020821.g928Lb2i003767@vran.herceg.de>
37454 Branch: perl
37455 ! ext/Storable/MANIFEST ext/Storable/Storable.pm
37456 ! ext/Storable/t/code.t
37457____________________________________________________________________________
37458[ 17968] By: ams on 2002/10/03 01:40:51
37459 Log: Subject: [PATCH] Re: speed of my
37460 From: Stephen McCamant <smcc@mit.edu>
37461 Date: Wed, 2 Oct 2002 21:48:59 -0400
37462 Message-Id: <15771.41483.524281.299958@syllepsis.MIT.EDU>
37463 Branch: perl
37464 ! pp.c
37465____________________________________________________________________________
37466[ 17967] By: hv on 2002/10/02 15:04:57
37467 Log: Subject: [PATCH] reentrant buffers
37468 From: Jarkko Hietaniemi <jhi@iki.fi>
37469 Date: Fri, 27 Sep 2002 01:08:56 +0300
37470 Message-ID: <20020926220856.GA339120@lyta.hut.fi>
37471 Branch: perl
37472 ! INSTALL pod/perldiag.pod pod/perlthrtut.pod reentr.c reentr.pl
37473____________________________________________________________________________
37474[ 17966] By: hv on 2002/10/02 14:46:52
37475 Log: Subject: [PATCH] retropatch
37476 From: Jarkko Hietaniemi <jhi@iki.fi>
37477 Date: Fri, 27 Sep 2002 03:51:34 +0300
37478 Message-ID: <20020927005134.GB339120@lyta.hut.fi>
37479 Branch: perl
37480 + pod/perl573delta.pod
37481 ! MANIFEST pod/buildtoc.PL pod/perl.pod
37482____________________________________________________________________________
37483[ 17965] By: hv on 2002/10/02 14:42:21
37484 Log: op/tr.t test is affected by #17962
37485 Branch: perl
37486 ! t/op/tr.t
37487____________________________________________________________________________
37488[ 17964] By: hv on 2002/10/02 14:38:59
37489 Log: Subject: Re: [PATCH] Re: builtin die parsed differently to CORE::GLOBAL::die
37490 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
37491 Date: Tue, 1 Oct 2002 23:34:35 +0200
37492 Message-Id: <20021001233435.318514f3.rgarciasuarez@free.fr>
37493 Branch: perl
37494 ! t/op/override.t toke.c
37495____________________________________________________________________________
37496[ 17963] By: hv on 2002/10/02 14:15:22
37497 Log: Subject: Re: [perl #17376] Bug Report - our(%)
37498 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37499 Date: Tue, 01 Oct 2002 09:54:30 -0700
37500 Message-ID: <GNdm9gzkgWOS092yn@efn.org>
37501 Branch: perl
37502 ! op.c pp_hot.c t/comp/our.t
37503____________________________________________________________________________
37504[ 17962] By: ams on 2002/10/02 14:10:07
37505 Log: Subject: [PATCH] no [] in tr///
37506 From: Jarkko Hietaniemi <jhi@iki.fi>
37507 Date: Wed, 2 Oct 2002 17:09:11 +0300
37508 Message-Id: <20021002140911.GH278184@lyta.hut.fi>
37509 Branch: perl
37510 ! pod/perldiag.pod toke.c
37511____________________________________________________________________________
37512[ 17961] By: hv on 2002/10/02 14:09:11
37513 Log: Subject: Re: Hash::Util::lock_keys inhibits bless
37514 From: andreas.koenig@anima.de (Andreas J. Koenig)
37515 Date: Mon, 30 Sep 2002 17:24:06 +0200
37516 Message-ID: <m3zntzwlex.fsf@k242.linux.bogus>
37517 Branch: perl
37518 ! lib/Hash/Util.pm
37519____________________________________________________________________________
37520[ 17959] By: hv on 2002/10/02 14:06:29
37521 Log: Subject: [DOCPATCH] Unicode porting advice
37522 From: andreas.koenig@anima.de (Andreas J. Koenig)
37523 Date: Fri, 27 Sep 2002 15:30:16 +0200
37524 Message-ID: <m3znu3zhjr.fsf@k242.linux.bogus>
37525 Branch: perl
37526 ! pod/perlunicode.pod
37527____________________________________________________________________________
37528[ 17958] By: hv on 2002/10/02 13:57:06
37529 Log: missing quote from #17957
37530 Branch: perl
37531 ! Porting/pumpkin.pod
37532____________________________________________________________________________
37533[ 17957] By: hv on 2002/10/02 13:55:56
37534 Log: document how to set APPLLIB_EXP
37535 Subject: Re: [perl #15957] error installing perl 5.8.0
37536 From: Andy Dougherty <doughera@lafayette.edu>
37537 Date: Fri, 27 Sep 2002 09:13:29 -0400 (EDT)
37538 Message-ID: <Pine.SOL.4.10.10209270902210.6800-100000@maxwell.phys.lafayette.edu>
37539 Branch: perl
37540 ! Porting/pumpkin.pod
37541____________________________________________________________________________
37542[ 17956] By: hv on 2002/10/02 13:51:12
37543 Log: Devel::Peek tests from:
37544 Subject: [PATCH] MGf_TAINTEDDIR and MGf_MINMATCH reuse unknown to dump.c
37545 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37546 Date: Thu, 26 Sep 2002 22:16:39 -0700
37547 Message-ID: <3m+k9gzkgqnP092yn@efn.org>
37548 Branch: perl
37549 ! ext/Devel/Peek/Peek.t
37550____________________________________________________________________________
37551[ 17955] By: hv on 2002/10/02 13:43:26
37552 Log: add precedence warning for bitwise docs
37553 Subject: [PATCH] Bug in ARM's floating point emulation - Need someone, really...
37554 From: Mike Guy <mjtg@cam.ac.uk>
37555 Date: Thu, 26 Sep 2002 13:20:45 +0100
37556 Message-Id: <E17uXdN-0003ko-00@libra.cus.cam.ac.uk>
37557 Branch: perl
37558 ! pod/perlop.pod
37559____________________________________________________________________________
37560[ 17954] By: hv on 2002/10/02 13:18:01
37561 Log: Subject: [PATCH] Re: perlio bug?
37562 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
37563 Date: Wed, 25 Sep 2002 21:58:12 +0200
37564 Message-Id: <20020925215812.3b7adb0d.rgarciasuarez@free.fr>
37565 Branch: perl
37566 ! doio.c pod/perldiag.pod t/lib/warnings/doio
37567____________________________________________________________________________
37568[ 17953] By: hv on 2002/10/02 12:55:29
37569 Log: Subject: [PATCH pad.c,h] move all pad-related code to its own src file
37570 From: Dave Mitchell <davem@fdgroup.com>
37571 Date: Wed, 25 Sep 2002 23:40:23 +0100
37572 Message-ID: <20020925234023.A20044@fdgroup.com>
37573 Branch: perl
37574 + pad.c pad.h
37575 ! MANIFEST Makefile.SH Makefile.micro cop.h cv.h dump.c
37576 ! embed.fnc embed.h embedvar.h ext/B/B.xs ext/Devel/Peek/Peek.t
37577 ! op.c op.h perl.c perl.h perlapi.h pod/perlapi.pod
37578 ! pod/perlintern.pod pp.c pp_ctl.c pp_hot.c pp_sort.c pp_sys.c
37579 ! proto.h scope.c sv.c toke.c
37580____________________________________________________________________________
37581[ 17952] By: hv on 2002/10/02 11:23:38
37582 Log: better handling of whitespace in autodoc declarations; fragment from:
37583 Subject: [PATCH pad.c,h] move all pad-related code to its own src file
37584 From: Dave Mitchell <davem@fdgroup.com>
37585 Date: Wed, 25 Sep 2002 23:40:23 +0100
37586 Message-ID: <20020925234023.A20044@fdgroup.com>
37587 Branch: perl
37588 ! autodoc.pl
37589____________________________________________________________________________
37590[ 17951] By: merijn on 2002/10/02 09:15:18
37591 Log: MakeMaker's INSTALLSITEMANXDIR Configure's counterpart
37592 Thu, 25 Jul 2002, Andy Dougherty
37593 Branch: perl
37594 ! Configure Policy_sh.SH
37595____________________________________________________________________________
37596[ 17950] By: ams on 2002/10/02 03:43:41
37597 Log: Add silly bandaid to stop segfaults on subsequent accesses to
37598 the Nullgv returned by gv_fetchpv() in S_scan_inputsymbol()
37599 (<$fred>).
37600 Branch: perl
37601 ! op.c
37602____________________________________________________________________________
37603[ 17949] By: hv on 2002/10/01 08:49:02
37604 Log: patch based on:
37605 Subject: Re: [perl #17376] Bug Report - our(%)
37606 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37607 Date: Mon, 30 Sep 2002 15:22:18 -0700
37608 Message-ID: <a6Mm9gzkgK0P092yn@efn.org>
37609 Branch: perl
37610 ! op.c
37611____________________________________________________________________________
37612[ 17948] By: hv on 2002/10/01 08:26:44
37613 Log: Subject: [REPATCH lib/AutoLoader.pm] Remove Dependency on Exporter (take 2 or 3)
37614 From: chromatic <chromatic@wgz.org>
37615 Date: Fri, 13 Sep 2002 14:26:08 -0700
37616 Message-Id: <200209131426.08116.chromatic@wgz.org>
37617 Branch: perl
37618 ! lib/AutoLoader.pm
37619____________________________________________________________________________
37620[ 17947] By: hv on 2002/10/01 08:10:21
37621 Log: Subject: Re: sv_2pv_flags and ROK and UTF8 flags
37622 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37623 Date: Wed, 11 Sep 2002 22:22:45 -0700
37624 Message-ID: <lSCg9gzkgymX092yn@efn.org>
37625 Branch: perl
37626 ! dump.c mg.h regexec.c sv.c t/op/pat.t
37627____________________________________________________________________________
37628[ 17946] By: merijn on 2002/09/30 15:19:36
37629 Log: nanosleep on VMS not present
37630 Branch: perl
37631 ! configure.com
37632____________________________________________________________________________
37633[ 17945] By: merijn on 2002/09/30 09:51:40
37634 Log: -Dgccansipedantic only for gcc 3+
37635 Mon, 30 Sep 2002, Jarkko Hietaniemi <jhi@iki.fi>
37636 Branch: perl
37637 ! Porting/pumpkin.pod cflags.SH
37638____________________________________________________________________________
37639[ 17944] By: merijn on 2002/09/30 08:29:33
37640 Log: nanosleep probes as per Jarkko's request
37641 Branch: perl
37642 ! Configure NetWare/config_H.wc Porting/config.sh
37643 ! Porting/config_H config_h.SH epoc/config.sh perl.h
37644 ! win32/config.bc win32/config.gc win32/config.vc
37645 ! win32/config.vc64 win32/config_H.bc win32/config_H.gc
37646 ! win32/config_H.vc win32/config_H.vc64 wince/config.ce
37647 ! wince/config_H.ce
37648____________________________________________________________________________
37649[ 17943] By: merijn on 2002/09/30 05:56:58
37650 Log: Backport 17941 ([perl #16796] Configure script buglet)
37651 27 Aug 2002 20:09:29, "Amick, Eric" (via RT) <perlbug@perl.org>
37652 Branch: metaconfig
37653 ! U/modified/Loc.U
37654____________________________________________________________________________
37655[ 17942] By: ams on 2002/09/29 22:26:37
37656 Log: Remove package; (Heh heh.)
37657 Branch: perl
37658 ! gv.c intrpvar.h op.c perl.c perly.c perly.h perly.y
37659 ! perly_c.diff sv.c t/lib/warnings/op t/op/anonsub.t
37660 ! vms/perly_c.vms vms/perly_h.vms
37661____________________________________________________________________________
37662[ 17941] By: hv on 2002/09/29 12:11:06
37663 Log: Subject: [perl #16796] Configure script buglet
37664 From: "Amick, Eric" (via RT) <perlbug@perl.org>
37665 Date: 27 Aug 2002 20:09:29 -0000
37666 Message-Id: <rt-16796-35837.19.7072355819815@bugs6.perl.org>
37667 Branch: perl
37668 ! Configure
37669____________________________________________________________________________
37670[ 17940] By: hv on 2002/09/29 11:59:28
37671 Log: Subject: Re: [perl #17587] Attribute::Handlers and Config in 5.9.0
37672 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
37673 Date: Fri, 27 Sep 2002 13:52:18 +0200
37674 Message-Id: <20020927135218.3a20dd68.rgarciasuarez@free.fr>
37675 Branch: perl
37676 ! lib/Attribute/Handlers.pm
37677____________________________________________________________________________
37678[ 17939] By: hv on 2002/09/29 11:55:17
37679 Log: Subject: [perl #17222] [PATCH] h2ph and Fortran, other wacky headers on IRIX
37680 From: Allen Smith (via RT) <perlbug@perl.org>
37681 Date: 13 Sep 2002 03:01:30 -0000
37682 Message-Id: <rt-17222-37356.6.04859798196188@bugs6.perl.org>
37683 Branch: perl
37684 ! t/lib/h2ph.pht utils/h2ph.PL
37685____________________________________________________________________________
37686[ 17938] By: rgs on 2002/09/28 20:42:59
37687 Log: Email address change for Stéphane Payrard
37688 Branch: perl
37689 ! AUTHORS
37690____________________________________________________________________________
37691[ 17937] By: hv on 2002/09/27 10:05:42
37692 Log: Subject: Re: [REVISED PATCH] Magic v-strings
37693 From: John Peacock <jpeacock@rowman.com>
37694 Date: Thu, 19 Sep 2002 22:30:58 -0400
37695 Message-ID: <3D8A8862.3000602@rowman.com>
37696 Branch: perl
37697 ! sv.c util.c
37698____________________________________________________________________________
37699[ 17936] By: hv on 2002/09/27 10:00:42
37700 Log: Subject: [PATCH] configure.com -- don't exclude threads::shared
37701 From: "Craig A. Berry" <craigberry@mac.com>
37702 Date: Wed, 25 Sep 2002 17:14:33 -0500
37703 Message-ID: <3D923549.6050809@mac.com>
37704 Branch: perl
37705 ! configure.com
37706____________________________________________________________________________
37707[ 17935] By: hv on 2002/09/27 09:48:19
37708 Log: Subject: [PATCH 5.8.0 DOC] perlopentut.pod, #3: The last of the content changes.
37709 From: Andy Lester <andy@petdance.com>
37710 Date: Fri, 20 Sep 2002 12:23:41 -0500
37711 Message-ID: <20020920172341.GA15672@petdance.com>
37712 Branch: perl
37713 ! pod/perlopentut.pod
37714____________________________________________________________________________
37715[ 17934] By: hv on 2002/09/26 18:50:02
37716 Log: missing '.' in test from #17932
37717 Branch: perl
37718 ! t/lib/strict/subs
37719____________________________________________________________________________
37720[ 17933] By: hv on 2002/09/26 17:01:11
37721 Log: Subject: [PATCH] perl #17453
37722 From: Jarkko Hietaniemi <jhi@iki.fi>
37723 Date: Fri, 20 Sep 2002 17:22:45 +0300
37724 Message-ID: <20020920142245.GG280265@lyta.hut.fi>
37725 Branch: perl
37726 ! lib/utf8_heavy.pl t/op/pat.t
37727____________________________________________________________________________
37728[ 17932] By: hv on 2002/09/26 16:47:32
37729 Log: #17931 checked for wrong constant
37730 Branch: perl
37731 ! op.c
37732____________________________________________________________________________
37733[ 17931] By: hv on 2002/09/26 16:29:26
37734 Log: Subject: [PATCH] [perl #10021] Fixing bareword usage under strict.pm
37735 From: Kay_Röpke <kay@dolphin-services.de>
37736 Date: Fri, 20 Sep 2002 16:09:08 +0200
37737 Message-Id: <8775B355-CCA2-11D6-AADE-000393414688@dolphin-services.de>
37738 Branch: perl
37739 ! op.c t/lib/strict/subs
37740____________________________________________________________________________
37741[ 17930] By: hv on 2002/09/26 15:56:07
37742 Log: Subject: [perl #17445] Class::Struct patch: version number, examples
37743 From: Ken Neighbors (via RT) <perlbug@perl.org>
37744 Date: 19 Sep 2002 18:48:22 -0000
37745 Message-Id: <rt-17445-38150.7.26118647008619@bugs6.perl.org>
37746 Branch: perl
37747 ! lib/Class/Struct.pm
37748____________________________________________________________________________
37749[ 17929] By: merijn on 2002/09/26 12:15:04
37750 Log: Backport 17925 and 17926
37751 enable -ansi -pedantic; Jarkko Hietaniemi <jhi@iki.fi>; Wed, 18 Sep 2002
37752 defuse installusrbinperl; Jarkko Hietaniemi <jhi@iki.fi>; Thu, 19 Sep 2002
37753 Branch: metaconfig
37754 ! U/installdirs/instubperl.U
37755 Branch: metaconfig/U/perl
37756 ! gccvers.U
37757____________________________________________________________________________
37758[ 17928] By: hv on 2002/09/26 09:54:05
37759 Log: Subject: [PATCH] bug in utf8.c(?)
37760 From: Marty Pauley <marty+p5p@kasei.com>
37761 Date: Fri, 20 Sep 2002 10:55:33 +0100
37762 Subject: [PATCH] bug in utf8.c(?)
37763 Branch: perl
37764 ! utf8.c
37765____________________________________________________________________________
37766[ 17927] By: hv on 2002/09/26 09:37:19
37767 Log: Subject: [PATCH] Re: [perl #17439] broken Locale::Language in a UTF environment
37768 From: Marty Pauley <marty+p5p@kasei.com>
37769 Date: Fri, 20 Sep 2002 09:52:16 +0100
37770 Message-Id: 20020920085216.GC10512@soto.kasei.com
37771 Branch: perl
37772 ! lib/Locale/Codes/t/languages.t lib/Locale/Language.pm
37773____________________________________________________________________________
37774[ 17926] By: hv on 2002/09/26 09:28:06
37775 Log: Subject: [PATCH] defuse installusrbinperl
37776 From: Jarkko Hietaniemi <jhi@iki.fi>
37777 Date: Thu, 19 Sep 2002 18:01:03 +0300
37778 Message-ID: <20020919150103.GI208696@lyta.hut.fi>
37779 Branch: perl
37780 ! Configure
37781____________________________________________________________________________
37782[ 17925] By: hv on 2002/09/26 09:15:55
37783 Log: Subject: [PATCH v2] enable -ansi -pedantic
37784 From: Jarkko Hietaniemi <jhi@iki.fi>
37785 Date: Wed, 18 Sep 2002 01:19:25 +0300
37786 Message-ID: <20020917221925.GF85044@lyta.hut.fi>
37787 Branch: perl
37788 ! Configure Porting/pumpkin.pod cflags.SH doio.c mg.c perl.c
37789 ! perl.h perlio.c pp_ctl.c pp_hot.c pp_sys.c sv.h toke.c util.c
37790____________________________________________________________________________
37791[ 17924] By: hv on 2002/09/26 08:44:16
37792 Log: Subject: [PATCH] ANSI-clean? (was Re: [PATCH] COW for ithreads)
37793 From: Nicholas Clark <nick@unfortu.net>
37794 Date: Sat, 14 Sep 2002 18:49:10 +0100
37795 Message-ID: <20020914174909.GG285@Bagpuss.unfortu.net>
37796 Branch: perl
37797 ! sv.c
37798____________________________________________________________________________
37799[ 17923] By: hv on 2002/09/26 08:33:54
37800 Log: Subject: [PATCH] Re: Advice on coredump
37801 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
37802 Date: Wed, 18 Sep 2002 22:14:57 +0200
37803 Message-Id: <20020918221457.16cb1b43.rgarciasuarez@free.fr>
37804 Branch: perl
37805 ! op.c t/op/closure.t
37806____________________________________________________________________________
37807[ 17922] By: hv on 2002/09/26 08:25:28
37808 Log: Subject: Re: [PATCH] spurious t/auto directory appears
37809 From: Michael G Schwern <schwern@pobox.com>
37810 Date: Fri, 13 Sep 2002 23:56:05 -0400
37811 Message-ID: <20020914035605.GF18928@ool-18b93024.dyn.optonline.net>
37812 Branch: perl
37813 ! lib/ExtUtils/t/Installed.t
37814____________________________________________________________________________
37815[ 17921] By: hv on 2002/09/26 08:21:59
37816 Log: add TODO tests for slow our() declaration
37817 Subject: Re: [perl #17376] Bug Report - our(%)
37818 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
37819 Date: Thu, 19 Sep 2002 22:34:01 -0700
37820 Message-ID: <JNri9gzkgSBB092yn@efn.org>
37821 Branch: perl
37822 + t/comp/our.t
37823 ! MANIFEST
37824____________________________________________________________________________
37825[ 17920] By: hv on 2002/09/26 08:16:43
37826 Log: LEAKTEST is dead, RIP
37827 Subject: Re: [perl #17197] SIGSEGV in perl 5.8.0 multithread build with -DLEAKTEST
37828 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
37829 Date: Mon, 23 Sep 2002 18:33:12 +0200
37830 Message-Id: <20020923182824.C7B6.H.M.BRAND@hccnet.nl>
37831 Branch: perl
37832 ! av.c embed.fnc embed.h ext/GDBM_File/GDBM_File.xs global.sym
37833 ! handy.h perl.c perl.h pod/perlrun.pod proto.h sv.c util.c
37834____________________________________________________________________________
37835[ 17919] By: hv on 2002/09/26 07:59:42
37836 Log: Subject: [PATCH] AIX hints missinga >&4
37837 From: Jarkko Hietaniemi <jhi@iki.fi>
37838 Date: Fri, 13 Sep 2002 16:48:42 +0300
37839 Message-ID: <20020913134842.GD8929@lyta.hut.fi>
37840 Branch: perl
37841 ! hints/aix.sh
37842____________________________________________________________________________
37843[ 17918] By: hv on 2002/09/26 07:51:10
37844 Log: Subject: [PATCH] perldoc -f stat (perlfunc.pod)
37845 From: "Brendan O'Dea" <bod@debian.org>
37846 Date: Mon, 23 Sep 2002 22:45:40 +1000
37847 Message-ID: <20020923124540.GB28031@londo.odea.dropbear.id.au>
37848 Branch: perl
37849 ! pod/perlfunc.pod
37850____________________________________________________________________________
37851[ 17917] By: hv on 2002/09/26 07:46:43
37852 Log: Subject: Re: [perl #17141] Text::Wrap "this should not happen" message
37853 From: Slaven Rezic <slaven.rezic@berlin.de>
37854 Date: 11 Sep 2002 19:37:09 +0200
37855 Message-ID: <871y80a0my.fsf@vran.herceg.de>
37856 Branch: perl
37857 ! lib/Text/TabsWrap/t/wrap.t lib/Text/Wrap.pm
37858____________________________________________________________________________
37859[ 17916] By: hv on 2002/09/26 07:31:42
37860 Log: Subject: [PATCH 5.8.0] perlembed.pod: make some examples work with multiplicity
37861 From: "Brendan O'Dea" <bod@debian.org>
37862 Date: Tue, 10 Sep 2002 09:19:05 +1000
37863 Message-ID: <20020909231905.GA31868@londo.odea.dropbear.id.au>
37864 Branch: perl
37865 ! pod/perlembed.pod
37866____________________________________________________________________________
37867[ 17915] By: rgs on 2002/09/24 20:19:22
37868 Log: Patch #17914 was empty ; this should have been applied instead.
37869 Branch: perl
37870 ! hints/aix.sh
37871____________________________________________________________________________
37872[ 17914] By: rgs on 2002/09/21 19:58:57
37873 Log: Subject: [PATCH] PASE saga continues
37874 From: Jarkko Hietaniemi <jhi@iki.fi>
37875 Date: Thu, 19 Sep 2002 23:30:20 +0300
37876 Message-ID: <20020919203020.GB274453@lyta.hut.fi>
37877 Branch: perl
37878 ! hints/aix.sh
37879____________________________________________________________________________
37880[ 17913] By: rgs on 2002/09/21 19:46:56
37881 Log: Subject: [PATCH perl@17882] file spec tweaks for VMS
37882 From: "Craig A. Berry" <craigberry@mac.com>
37883 Date: Wed, 18 Sep 2002 16:57:02 -0500
37884 Message-ID: <3D88F6AE.3020708@mac.com>
37885 Branch: perl
37886 ! lib/File/Spec/VMS.pm vms/ext/filespec.t
37887____________________________________________________________________________
37888[ 17912] By: ams on 2002/09/19 17:21:24
37889 Log: Subject: [PATCH] AIX test shouldn't trip OS/400 PASE
37890 From: Jarkko Hietaniemi <jhi@iki.fi>
37891 Date: Thu, 19 Sep 2002 18:59:48 +0300
37892 Message-Id: <20020919155948.GU208696@lyta.hut.fi>
37893
37894 Subject: [PATCH] more PASE tweakage
37895 From: Jarkko Hietaniemi <jhi@iki.fi>
37896 Date: Thu, 19 Sep 2002 18:01:44 +0300
37897 Message-Id: <20020919150144.GJ208696@lyta.hut.fi>
37898 Branch: perl
37899 ! README.os400 hints/aix.sh
37900____________________________________________________________________________
37901[ 17911] By: ams on 2002/09/17 19:29:53
37902 Log: Typo fix.
37903 Branch: perl
37904 ! ext/POSIX/POSIX.pod
37905____________________________________________________________________________
37906[ 17910] By: ams on 2002/09/17 18:09:32
37907 Log: Fix #17375 (rcatline didn't work on a formerly-defined undef) by
37908 checking for SvOK in do_readline().
37909 Branch: perl
37910 ! pp_hot.c t/op/gv.t
37911____________________________________________________________________________
37912[ 17909] By: rgs on 2002/09/16 21:49:27
37913 Log: Pod formatting nit, found by Merijn and Jos Boumans.
37914 Branch: perl
37915 ! pod/perlunicode.pod
37916____________________________________________________________________________
37917[ 17908] By: rgs on 2002/09/16 21:34:55
37918 Log: Subject: [perl #17340] When used/requied Locale::*** modules unexpectedly modify $_
37919 From: (Ilya Martynov) (via RT) <perlbug@perl.org>
37920 Date: 15 Sep 2002 19:06:56 -0000
37921 Message-Id: <rt-17340-37749.5.67862754668525@bugs6.perl.org>
37922 Branch: perl
37923 ! lib/Locale/Country.pm lib/Locale/Currency.pm
37924 ! lib/Locale/Language.pm lib/Locale/Script.pm
37925____________________________________________________________________________
37926[ 17907] By: rgs on 2002/09/16 20:33:51
37927 Log: Subject: Re: [perl #17174] perl 5.8.0 fails tests on NetBSD/Alpha
37928 From: Jarkko Hietaniemi <jhi@iki.fi>
37929 Date: Sun, 15 Sep 2002 18:02:17 +0300
37930 Message-ID: <20020915150217.GB21300@lyta.hut.fi>
37931 Branch: perl
37932 ! hints/netbsd.sh
37933____________________________________________________________________________
37934[ 17906] By: rgs on 2002/09/15 11:30:38
37935 Log: Fix pod/perlmodlib.PL (it wasn't generating a complete list
37936 of modules.) Regenerate pod/perlmodlib.pod. Add a warning :
37937 not all modules listed in perlmodlib are necessarily installed.
37938 Plus some corrections by Vincent Lefevre.
37939 Branch: perl
37940 ! lib/Term/ReadLine.pm pod/perlmodlib.PL pod/perlmodlib.pod
37941____________________________________________________________________________
37942[ 17905] By: nick on 2002/09/15 10:55:51
37943 Log: Integrate mainline
37944 Branch: perlio
37945 +> lib/Unicode/Collate/t/index.t
37946 !> (integrate 54 files)
37947____________________________________________________________________________
37948[ 17904] By: merijn on 2002/09/13 14:02:18
37949 Log: Tabs erroneusly expanded to spaces, causing AIX to fail
37950 in building DProf
37951 Branch: perl
37952 ! Configure
37953____________________________________________________________________________
37954[ 17903] By: merijn on 2002/09/13 14:00:35
37955 Log: Fix tab/space issue that entered in 17893. AIX.
37956 Branch: metaconfig
37957 ! U/modified/libc.U
37958____________________________________________________________________________
37959[ 17902] By: merijn on 2002/09/13 07:47:29
37960 Log: configure.com needs d_modflproto
37961 Thu 12 Sep 2002 23:19, "Craig A. Berry"
37962 Branch: perl
37963 ! configure.com
37964____________________________________________________________________________
37965[ 17901] By: rgs on 2002/09/12 20:19:55
37966 Log: Subject: [PATCH] more PASE wisdom
37967 From: Jarkko Hietaniemi <jhi@iki.fi>
37968 Date: Fri, 13 Sep 2002 00:17:39 +0300
37969 Message-ID: <20020912211739.GB6980@lyta.hut.fi>
37970 Branch: perl
37971 ! README.os400
37972____________________________________________________________________________
37973[ 17900] By: rgs on 2002/09/12 19:33:06
37974 Log: Fix a syntax incompatibility introduced by the // operator.
37975 (Note that C<print $fh //> is still a syntax error, it
37976 wasn't with perl 5.8.0.)
37977 Branch: perl
37978 ! t/op/dor.t toke.c
37979____________________________________________________________________________
37980[ 17899] By: merijn on 2002/09/12 15:22:06
37981 Log: Re: [perl #17170] NetBSD and useshrplib config option
37982 Thu 12 Sep 2002 09:22, Rafael Garcia-Suarez
37983 Branch: metaconfig/U/perl
37984 ! libperl.U
37985 Branch: perl
37986 ! Porting/Glossary
37987____________________________________________________________________________
37988[ 17898] By: rgs on 2002/09/11 20:58:46
37989 Log: Fix bug #17006 : remove spurious do{} in the deparsing
37990 of s/.../.../e.
37991 Branch: perl
37992 ! ext/B/B/Deparse.pm ext/B/t/deparse.t
37993____________________________________________________________________________
37994[ 17897] By: rgs on 2002/09/11 20:56:21
37995 Log: Subject: [perl #17119] typo in utils/dprofpp.PL
37996 From: "Todd C. Miller" (via RT) <perlbug@perl.org>
37997 Date: 10 Sep 2002 18:49:56 -0000
37998 Message-ID: <rt-17119-37126.4.55444095171472@bugs6.perl.org>
37999 Branch: perl
38000 ! utils/dprofpp.PL
38001____________________________________________________________________________
38002[ 17896] By: merijn on 2002/09/11 08:31:45
38003 Log: re-synced Configure to backported metaunits
38004 Branch: perl
38005 ! Configure Porting/Glossary Porting/config.sh Porting/config_H
38006 ! config_h.SH
38007____________________________________________________________________________
38008[ 17895] By: merijn on 2002/09/11 08:21:54
38009 Log: Cleaning up from metalint; reverting wrong voidflags fix from 17893;
38010 fix obvious typo from 17827
38011 Branch: metaconfig
38012 ! U/modified/libc.U U/modified/usenm.U U/modified/voidflags.U
38013 Branch: metaconfig/U/perl
38014 ! d_modfl.U gccvers.U
38015____________________________________________________________________________
38016[ 17894] By: merijn on 2002/09/10 17:48:15
38017 Log: Postchecking config_h.SH helps to catch typo's
38018 Also took the comments from the original patch
38019 Branch: metaconfig/U/perl
38020 ! d_modfl.U
38021____________________________________________________________________________
38022[ 17893] By: merijn on 2002/09/10 17:31:36
38023 Log: Backport all Configure patches 17671 .. 17881
38024 to the metaunits
38025 Branch: metaconfig
38026 ! U/installdirs/prefix.U U/modified/libc.U U/modified/usenm.U
38027 ! U/modified/voidflags.U
38028 Branch: metaconfig/U/perl
38029 ! Extensions.U d_modfl.U gccvers.U
38030____________________________________________________________________________
38031[ 17892] By: merijn on 2002/09/10 15:43:53
38032 Log: Callback behaviour in hints
38033 Mon, 9 Sep 2002, Allen Smith
38034 Branch: perl
38035 ! hints/README.hints
38036____________________________________________________________________________
38037[ 17891] By: jhi on 2002/09/10 13:16:40
38038 Log: metaconfig tweakage.
38039 Branch: metaconfig
38040 + U/newer
38041 ! README U/mksample
38042____________________________________________________________________________
38043[ 17890] By: merijn on 2002/09/10 12:17:49
38044 Log: Metaconfig documentation update (part 2)
38045 Fri 06 Sep 2002 20:26, Andy Dougherty
38046 Branch: metaconfig
38047 ! README U.check/MANIFEST U/README U/mksample
38048 ! dist-3.0at70b/mcon/U/abortsig.U
38049 ! dist-3.0at70b/mcon/U/alignbytes.U
38050 ! dist-3.0at70b/mcon/U/bitpbyte.U
38051 ! dist-3.0at70b/mcon/U/byteorder.U
38052 ! dist-3.0at70b/mcon/U/ccflags.U
38053 ! dist-3.0at70b/mcon/U/charorder.U
38054 ! dist-3.0at70b/mcon/U/charsize.U
38055 ! dist-3.0at70b/mcon/U/d_NOFILE.U
38056 ! dist-3.0at70b/mcon/U/d_PORTAR.U
38057 ! dist-3.0at70b/mcon/U/d_SHM_MAC.U
38058 ! dist-3.0at70b/mcon/U/d_access.U
38059 ! dist-3.0at70b/mcon/U/d_bsdjmp.U
38060 ! dist-3.0at70b/mcon/U/d_casti32.U
38061 ! dist-3.0at70b/mcon/U/d_castneg.U
38062 ! dist-3.0at70b/mcon/U/d_charsprf.U
38063 ! dist-3.0at70b/mcon/U/d_ckeypad.U
38064 ! dist-3.0at70b/mcon/U/d_const.U
38065 ! dist-3.0at70b/mcon/U/d_eofpipe.U
38066 ! dist-3.0at70b/mcon/U/d_fd_set.U
38067 ! dist-3.0at70b/mcon/U/d_getpagsz.U
38068 ! dist-3.0at70b/mcon/U/d_getpgrp.U
38069 ! dist-3.0at70b/mcon/U/d_isascii.U
38070 ! dist-3.0at70b/mcon/U/d_keepsig.U
38071 ! dist-3.0at70b/mcon/U/d_nolnbuf.U
38072 ! dist-3.0at70b/mcon/U/d_open3.U
38073 ! dist-3.0at70b/mcon/U/d_pidcheck.U
38074 ! dist-3.0at70b/mcon/U/d_safebcpy.U
38075 ! dist-3.0at70b/mcon/U/d_safemcpy.U
38076 ! dist-3.0at70b/mcon/U/d_sanemcmp.U
38077 ! dist-3.0at70b/mcon/U/d_scannl.U
38078 ! dist-3.0at70b/mcon/U/d_setpgrp.U
38079 ! dist-3.0at70b/mcon/U/d_sgndchr.U
38080 ! dist-3.0at70b/mcon/U/d_sigaction.U
38081 ! dist-3.0at70b/mcon/U/d_sigsetjmp.U
38082 ! dist-3.0at70b/mcon/U/d_stdstdio.U
38083 ! dist-3.0at70b/mcon/U/d_strctcpy.U
38084 ! dist-3.0at70b/mcon/U/d_volatile.U
38085 ! dist-3.0at70b/mcon/U/d_vprintf.U
38086 ! dist-3.0at70b/mcon/U/d_wifstat.U
38087 ! dist-3.0at70b/mcon/U/doublesize.U
38088 ! dist-3.0at70b/mcon/U/errnolist.U
38089 ! dist-3.0at70b/mcon/U/floatsize.U dist-3.0at70b/mcon/U/i_db.U
38090 ! dist-3.0at70b/mcon/U/i_sysioctl.U
38091 ! dist-3.0at70b/mcon/U/i_time.U dist-3.0at70b/mcon/U/install.U
38092 ! dist-3.0at70b/mcon/U/intsize.U dist-3.0at70b/mcon/U/models.U
38093 ! dist-3.0at70b/mcon/U/nblock_io.U
38094 ! dist-3.0at70b/mcon/U/nlist_pfx.U
38095 ! dist-3.0at70b/mcon/U/orderlib.U
38096 ! dist-3.0at70b/mcon/U/prototype.U
38097 ! dist-3.0at70b/mcon/U/ptrsize.U dist-3.0at70b/mcon/U/randbits.U
38098 ! dist-3.0at70b/mcon/U/randfunc.U
38099 ! dist-3.0at70b/mcon/U/sbrksmart.U
38100 ! dist-3.0at70b/mcon/U/selecttype.U
38101 ! dist-3.0at70b/mcon/U/sockopt.U
38102 ! dist-3.0at70b/mcon/U/ssizetype.U
38103 ! dist-3.0at70b/mcon/U/sunscanf.U
38104 ! dist-3.0at70b/mcon/U/voidflags.U
38105____________________________________________________________________________
38106[ 17889] By: merijn on 2002/09/10 09:58:06
38107 Log: Metaconfig documentation update (part 1)
38108 Fri 06 Sep 2002 20:26, Andy Dougherty
38109 plus some tweaks
38110 Branch: metaconfig
38111 ! README
38112____________________________________________________________________________
38113[ 17888] By: merijn on 2002/09/10 09:20:52
38114 Log: New low-price HP servers
38115 Branch: perl
38116 ! README.hpux
38117____________________________________________________________________________
38118[ 17887] By: rgs on 2002/09/09 21:00:08
38119 Log: Subject: Re: [PATCH] Quieten warnings in Deparse.pm
38120 From: Paul Johnson <paul@pjcj.net>
38121 Date: Mon, 9 Sep 2002 23:37:33 +0200
38122 Message-ID: <20020909213733.GD879@pjcj.net>
38123 Branch: perl
38124 ! ext/B/B/Deparse.pm
38125____________________________________________________________________________
38126[ 17886] By: rgs on 2002/09/09 20:38:01
38127 Log: Subject: [PATCH] Re: [PATCH] Attempt at speeding up Config.pm. Didn't work.
38128 From: Nicholas Clark <nick@unfortu.net>
38129 Date: Sun, 8 Sep 2002 23:05:54 +0100
38130 Message-ID: <20020908220553.GO286@Bagpuss.unfortu.net>
38131 Branch: perl
38132 ! configpm
38133____________________________________________________________________________
38134[ 17885] By: rgs on 2002/09/09 20:35:34
38135 Log: Subject: [PATCH] strict.pm pod at __END__
38136 From: Nicholas Clark <nick@unfortu.net>
38137 Date: Sun, 8 Sep 2002 22:36:09 +0100
38138 Message-ID: <20020908213608.GM286@Bagpuss.unfortu.net>
38139 Branch: perl
38140 ! lib/strict.pm
38141____________________________________________________________________________
38142[ 17884] By: rgs on 2002/09/09 19:33:11
38143 Log: Subject: [PATCH] File/Find/t/find.t tests 1 and 2 (was Re: [perl #17061] no strict 'garbage')
38144 From: Nicholas Clark <nick@unfortu.net>
38145 Date: Sun, 8 Sep 2002 19:45:52 +0100
38146 Message-ID: <20020908184551.GH286@Bagpuss.unfortu.net>
38147 Branch: perl
38148 ! lib/File/Find/t/find.t
38149____________________________________________________________________________
38150[ 17883] By: rgs on 2002/09/09 19:10:08
38151 Log: Subject: [PATCH] Quieten warnings in Deparse.pm
38152 From: Paul Johnson <paul@pjcj.net>
38153 Date: Sun, 8 Sep 2002 23:50:11 +0200
38154 Message-ID: <20020908215011.GA879@pjcj.net>
38155 Branch: perl
38156 ! ext/B/B/Deparse.pm
38157____________________________________________________________________________
38158[ 17882] By: hv on 2002/09/09 10:33:58
38159 Log: Update Changes
38160 Branch: perl
38161 ! Changes patchlevel.h
38162____________________________________________________________________________
2a488fe1
HS
38163[ 17881] By: hv on 2002/09/09 09:54:55
38164 Log: Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
38165 From: "Allen Smith" <easmith@beatrice.rutgers.edu>
38166 Date: Mon, 9 Sep 2002 01:48:08 -0400
38167 Message-Id: <10209090148.ZM1555835@puck2.rutgers.edu>
38168 Branch: perl
38169 ! perl.h sv.c
38170____________________________________________________________________________
38171[ 17880] By: hv on 2002/09/09 09:33:55
38172 Log: integrate Math::BigInt-1.63
38173 Subject: Re: [perl #16997] Math::BigFloat hang on bsqrt [ANNOUNCE v1.63
38174 From: Tels <perl_dummy@bloodgate.com>
38175 Date: Mon, 09 Sep 2002 00:23:01 +0200 (CEST)
38176 Message-Id: <200209082022.g88KMGY20194@crypt.org>
38177 Branch: perl
38178 ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
38179 ! lib/Math/BigInt/t/bare_mif.t lib/Math/BigInt/t/constant.t
38180 ! lib/Math/BigInt/t/mbimbf.inc lib/Math/BigInt/t/mbimbf.t
38181 ! lib/Math/BigInt/t/sub_mif.t
38182____________________________________________________________________________
38183[ 17879] By: hv on 2002/09/09 09:23:53
38184 Log: Subject: [PATCH] Configure locincpth vs Jaguar gcc 3
38185 From: Jarkko Hietaniemi <jhi@iki.fi>
38186 Date: Mon, 9 Sep 2002 00:07:46 +0300
38187 Message-ID: <20020908210746.GB4136@lyta.hut.fi>
38188 Branch: perl
38189 ! Configure
38190____________________________________________________________________________
38191[ 17878] By: hv on 2002/09/09 09:11:57
38192 Log: small grammar fix in Benchmark docs
38193 Branch: perl
38194 ! lib/Benchmark.pm
38195____________________________________________________________________________
38196[ 17877] By: hv on 2002/09/09 09:09:30
38197 Log: Subject: [PATCH] configpm
38198 From: Abe Timmerman <abe@ztreet.demon.nl>
38199 Date: Sun, 8 Sep 2002 17:21:19 +0200
38200 Message-Id: <200209081721.19233.abe@ztreet.demon.nl>
38201 Branch: perl
38202 ! configpm
38203____________________________________________________________________________
38204[ 17876] By: hv on 2002/09/09 08:48:35
38205 Log: Subject: Re: Smoke 17849 MSWin32 (w2k/GCC)
38206 From: Abe Timmerman <abe@ztreet.demon.nl>
38207 Date: Mon, 9 Sep 2002 01:32:19 +0200
38208 Message-Id: <200209090132.19891.abe@ztreet.demon.nl>
38209 Branch: perl
38210 ! makedef.pl
38211____________________________________________________________________________
38212[ 17875] By: rgs on 2002/09/08 18:55:01
38213 Log: Subject: [PATCH] cleanup temp files (was Re: Smoke 17805 irix 6.5 6.5.16m IP32 r5000 /usr/share/src/cpan-current-benedick)
38214 From: Nicholas Clark <nick@unfortu.net>
38215 Date: Sun, 8 Sep 2002 15:46:44 +0100
38216 Message-ID: <20020908144643.GC286@Bagpuss.unfortu.net>
38217
38218 Plus two other similar tweaks
38219 Branch: perl
38220 ! ext/SDBM_File/sdbm.t
38221____________________________________________________________________________
38222[ 17874] By: hv on 2002/09/08 17:10:38
38223 Log: Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
38224 From: "Allen Smith" <easmith@beatrice.rutgers.edu>
38225 Date: Sat, 7 Sep 2002 05:25:45 -0400
38226 Message-Id: <10209070525.ZM1584639@puck2.rutgers.edu>
38227 Branch: perl
38228 ! hints/irix_6.sh numeric.c perl.h sv.c t/base/num.t
38229 ! t/op/sprintf.t
38230____________________________________________________________________________
38231[ 17873] By: hv on 2002/09/08 16:48:54
38232 Log: Subject: [PATCH] COW for ithreads (was Re: what copies scalars in ithreads?)
38233 From: Nicholas Clark <nick@unfortu.net>
38234 Date: Sat, 7 Sep 2002 00:20:53 +0100
38235 Message-ID: <20020906232052.GB901@Bagpuss.unfortu.net>
38236 Branch: perl
38237 ! op.c sv.c
38238____________________________________________________________________________
38239[ 17872] By: hv on 2002/09/08 16:35:46
38240 Log: temporarily skip failing Storable tests caused by #17869
38241 Branch: perl
38242 ! ext/Storable/t/code.t
38243____________________________________________________________________________
38244[ 17871] By: hv on 2002/09/08 16:23:49
38245 Log: Subject: [PATCH] tiddly tidy up for util.c
38246 From: Nicholas Clark <nick@unfortu.net>
38247 Date: Fri, 6 Sep 2002 23:00:14 +0100
38248 Message-ID: <20020906220013.GD428@Bagpuss.unfortu.net>
38249 Branch: perl
38250 ! util.c
38251____________________________________________________________________________
38252[ 17870] By: hv on 2002/09/08 16:21:23
38253 Log: regularise whitespace and formatting in util.c
38254 Branch: perl
38255 ! util.c
38256____________________________________________________________________________
38257[ 17869] By: hv on 2002/09/08 15:46:08
38258 Log: Subject: [perl #17061] no strict 'garbage'
38259 From: Elizabeth Mattijsen (via RT) <perlbug@perl.org>
38260 Date: 6 Sep 2002 19:31:02 -0000
38261 Message-Id: <rt-17061-36808.6.19994322284541@bugs6.perl.org>
38262 Date: Sat, 07 Sep 2002 13:40:22 +0200
38263 Message-Id: <4.2.0.58.20020907133846.02476d40@mickey.dijkmat.nl>
38264 Branch: perl
38265 ! lib/strict.pm lib/strict.t
38266____________________________________________________________________________
38267[ 17868] By: hv on 2002/09/08 15:24:08
38268 Log: small fix to perl58delta for MIME::QuotedPrint, from Jarkko
38269 Branch: perl
38270 ! pod/perl58delta.pod
38271____________________________________________________________________________
38272[ 17867] By: hv on 2002/09/08 15:10:46
38273 Log: Subject: [PATCH] allow using hires time() in Benchmark
38274 From: Jarkko Hietaniemi <jhi@iki.fi>
38275 Date: Fri, 6 Sep 2002 00:38:11 +0300
38276 Message-ID: <20020905213811.GA23771@lyta.hut.fi>
38277 Branch: perl
38278 ! lib/Benchmark.pm
38279____________________________________________________________________________
38280[ 17866] By: hv on 2002/09/08 15:06:05
38281 Log: Subject: [PATCH] OS/400 PASE symbol scan tweak
38282 From: Jarkko Hietaniemi <jhi@kosh.hut.fi>
38283 Date: Thu, 5 Sep 2002 21:46:20 +0300 (EET DST)
38284 Message-Id: <200209051846.g85IkKOk013697@kosh.hut.fi>
38285 Branch: perl
38286 ! Configure
38287____________________________________________________________________________
38288[ 17865] By: hv on 2002/09/08 15:03:23
38289 Log: Subject: Unicode::Collate 0.23 Released
38290 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
38291 Date: Thu, 05 Sep 2002 23:28:32 +0900
38292 Message-Id: <20020905232316.8151.BQW10602@nifty.com>
38293 Branch: perl
38294 + lib/Unicode/Collate/t/index.t
38295 ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
38296 ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
38297____________________________________________________________________________
38298[ 17864] By: hv on 2002/09/08 14:55:31
38299 Log: Subject: sv_2pv_flags and ROK and UTF8 flags
38300 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
38301 Date: Wed, 04 Sep 2002 21:09:01 -0700
38302 Message-ID: <djtd9gzkgyLd092yn@efn.org>
38303 Date: Fri, 06 Sep 2002 09:23:03 -0700
38304 Message-ID: <nZNe9gzkgKdH092yn@efn.org>
38305 Branch: perl
38306 ! lib/overload.t sv.c sv.h t/op/pat.t
38307____________________________________________________________________________
38308[ 17863] By: hv on 2002/09/08 14:11:54
38309 Log: setting PERL_CORE as in #17861 violates assumptions made by taint tests
38310 Branch: perl
38311 ! t/op/taint.t
38312____________________________________________________________________________
38313[ 17862] By: hv on 2002/09/08 14:01:07
38314 Log: Subject: [PATCH t/TestInit.pm] Set env PERL_CORE
38315 From: Michael G Schwern <schwern@pobox.com>
38316 Date: Wed, 4 Sep 2002 11:38:01 -0700
38317 Message-ID: <20020904183801.GF8367@ool-18b93024.dyn.optonline.net>
38318 Branch: perl
38319 ! t/TestInit.pm
38320____________________________________________________________________________
38321[ 17861] By: hv on 2002/09/08 13:58:10
38322 Log: Subject: Re: [PATCH t/test.pl] Let is/isnt() handle undef without warnings
38323 From: Michael G Schwern <schwern@pobox.com>
38324 Date: Fri, 6 Sep 2002 14:03:16 -0700
38325 Message-ID: <20020906210315.GC808@ool-18b93024.dyn.optonline.net>
38326 Branch: perl
38327 ! t/test.pl
38328____________________________________________________________________________
38329[ 17860] By: hv on 2002/09/08 13:48:49
38330 Log: #17859 misuses s/// return values
38331 Branch: perl
38332 ! configpm
38333____________________________________________________________________________
38334[ 17859] By: hv on 2002/09/08 13:17:46
38335 Log: Subject: Re: [PATCH] Attempt at speeding up Config.pm. Didn't work.
38336 From: Nicholas Clark <nick@unfortu.net>
38337 Date: Mon, 2 Sep 2002 23:22:32 +0100
38338 Message-ID: <20020902222231.GG284@Bagpuss.unfortu.net>
38339 Branch: perl
38340 ! configpm
38341____________________________________________________________________________
38342[ 17858] By: pudge on 2002/09/08 04:47:02
38343 Log: Save script context in compiled script
38344 From Bart Lateur
38345 Branch: maint-5.6/macperl
38346 ! macos/lib/Mac/OSA/Simple.pm
38347____________________________________________________________________________
38348[ 17857] By: pudge on 2002/09/08 04:46:31
38349 Log: Add Mac OS X Note
38350 Branch: maint-5.6/macperl
38351 ! macos/lib/Mac/Glue.pm
38352____________________________________________________________________________
38353[ 17856] By: pudge on 2002/09/08 04:46:03
38354 Log: Remove workaround for fixed GUSI bug #553817
38355 Branch: maint-5.6/macperl
38356 ! macos/MacPerlTests.cmd
38357____________________________________________________________________________
38358[ 17855] By: pudge on 2002/09/08 04:36:08
38359 Log: Add ChooseFSObject/GetFolder
38360 From Thomas Wegner
38361 Branch: maint-5.6/macperl
38362 + macos/ext/Mac/StandardFile/ChooseFSObject.c
38363 + macos/ext/Mac/StandardFile/ChooseFSObject.h
38364 + macos/ext/Mac/StandardFile/t/ChooseFSObject.t
38365 ! macos/Perl.r macos/ext/Mac/StandardFile/Makefile.PL
38366 ! macos/ext/Mac/StandardFile/StandardFile.pm
38367 ! macos/ext/Mac/StandardFile/StandardFile.xs
38368 ! macos/macperl/MacPerl.r
38369____________________________________________________________________________
38370[ 17854] By: pudge on 2002/09/08 04:35:08
38371 Log: Fix URL encoding for MacPerl Help/Shuck
38372 Bug exposed in Mac OS X 10.2; MacPerl Bug #598449
38373 Branch: maint-5.6/macperl
38374 ! macos/macperl/MPHelp.c
38375____________________________________________________________________________
38376[ 17853] By: pudge on 2002/09/08 04:33:43
38377 Log: TextEdit example show text extraction
38378 Branch: maint-5.6/macperl
38379 ! macos/ext/Mac/TextEdit/t/SimpleText.t
38380____________________________________________________________________________
38381[ 17852] By: pudge on 2002/09/08 04:32:53
38382 Log: File::Copy should only warn if there's something to warn about
38383 Branch: maint-5.6/macperl
38384 ! lib/File/Copy.pm
38385____________________________________________________________________________
38386[ 17851] By: nick on 2002/09/07 10:18:20
38387 Log: Integrate mainline
38388 Branch: perlio
38389 +> README.os400 ext/threads/shared/t/disabled.t hints/os400.sh
38390 !> (integrate 69 files)
38391____________________________________________________________________________
38392[ 17850] By: ams on 2002/09/06 03:31:32
38393 Log: Subject: [PATCH] (mostly (Unicode)) pod nits
38394 From: Jarkko Hietaniemi <jhi@iki.fi>
38395 Date: Fri, 6 Sep 2002 06:01:57 +0300
38396 Message-Id: <20020906030157.GA28252@lyta.hut.fi>
38397 Branch: perl
38398 ! pod/perl.pod pod/perlunicode.pod pod/perluniintro.pod
38399____________________________________________________________________________
38400[ 17849] By: gsar on 2002/09/05 06:28:36
38401 Log: document setting the email address
38402 Branch: perl
38403 ! Porting/repository.pod
38404____________________________________________________________________________
38405[ 17848] By: hv on 2002/09/04 23:12:15
38406 Log: AUTHORS: preferred address for Allen Smith
38407 Branch: perl
38408 ! AUTHORS
38409____________________________________________________________________________
38410[ 17847] By: hv on 2002/09/04 23:10:37
38411 Log: copy on write: fixes and debugging
38412 Subject: what copies scalars in ithreads?
38413 From: Nicholas Clark <nick@unfortu.net>
38414 Date: Wed, 4 Sep 2002 21:52:47 +0100
38415 Message-ID: <20020904205247.GA280@Bagpuss.unfortu.net>
38416 Branch: perl
38417 ! sv.c
38418____________________________________________________________________________
38419[ 17846] By: hv on 2002/09/04 23:02:43
38420 Log: Subject: Re: [PATCH] A variety of README nitpicks.
38421 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
38422 Date: Wed, 04 Sep 2002 09:10:05 +0200
38423 Message-Id: <20020904090853.F13D.H.M.BRAND@hccnet.nl>
38424 Branch: perl
38425 ! README.hpux
38426____________________________________________________________________________
38427[ 17845] By: hv on 2002/09/04 15:06:33
38428 Log: Avoid 'unportable' warnings for lib/Math/BigInt/t/constant.t
38429 Branch: perl
38430 ! lib/Math/BigInt/t/constant.t
38431____________________________________________________________________________
38432[ 17844] By: hv on 2002/09/04 14:32:19
38433 Log: #17836 (DB_File-1.805) misses a couple of dTHX declarations
38434 Branch: perl
38435 ! ext/DB_File/DB_File.xs
38436____________________________________________________________________________
38437[ 17843] By: hv on 2002/09/04 14:09:13
38438 Log: #17842 was only half the story
38439 Subject: [PATCH deb.c] Re: HiRes failure is success?
38440 From: Dave Mitchell <davem@fdgroup.com>
38441 Date: Wed, 4 Sep 2002 16:11:15 +0100
38442 Message-ID: <20020904161115.E27603@fdgroup.com>
38443 Branch: perl
38444 ! deb.c
38445____________________________________________________________________________
38446[ 17842] By: hv on 2002/09/04 14:04:40
38447 Log: printf argument mismatch in Perl_deb_stack_all() from change #17718
38448 Branch: perl
38449 ! deb.c
38450____________________________________________________________________________
38451[ 17841] By: hv on 2002/09/04 13:57:27
38452 Log: Subject: [PATCH] op/getpid.t failure
38453 From: Michael G Schwern <schwern@pobox.com>
38454 Date: Tue, 3 Sep 2002 17:48:24 -0700
38455 Message-ID: <20020904004824.GG2701@ool-18b93024.dyn.optonline.net>
38456 Branch: perl
38457 ! t/op/getpid.t
38458____________________________________________________________________________
38459[ 17840] By: hv on 2002/09/04 13:55:20
38460 Log: Subject: [PATCH] File::Basename doesn't lazy load Carp right.
38461 and Subject: [PATCH] More modules that don't lazy load Carp right.
38462 From: Michael G Schwern <schwern@pobox.com>
38463 Date: Tue, 3 Sep 2002 17:21:57 -0700
38464 Message-ID: <20020904002157.GD2701@ool-18b93024.dyn.optonline.net>
38465 and Message-ID: <20020904003857.GE2701@ool-18b93024.dyn.optonline.net>
38466 Branch: perl
38467 ! ext/Encode/Unicode/Unicode.pm
38468 ! ext/Encode/lib/Encode/Encoding.pm ext/Sys/Hostname/Hostname.pm
38469 ! lib/File/Basename.pm
38470____________________________________________________________________________
38471[ 17839] By: hv on 2002/09/04 13:47:12
38472 Log: Subject: Re: [PATCH 5.8.0] add accessors for POSIX::SigAction
38473 From: "Brendan O'Dea" <bod@debian.org>
38474 Date: Wed, 4 Sep 2002 02:36:10 +1000
38475 Message-ID: <20020903163610.GA14595@londo.odea.dropbear.id.au>
38476 Branch: perl
38477 ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
38478____________________________________________________________________________
38479[ 17838] By: hv on 2002/09/04 13:41:27
38480 Log: Subject: [PATCHes] Still no working Berkeley DB in OS X 10.2
38481 From: =?ISO-8859-1?Q?Kay_R=F6pke?= <kay@dolphin-services.de>
38482 Date: Tue, 3 Sep 2002 13:46:18 +0200
38483 Message-Id: <C287A20E-BF32-11D6-A454-000393414688@dolphin-services.de>
38484 Branch: perl
38485 ! ext/DB_File/t/db-btree.t ext/DB_File/t/db-recno.t
38486____________________________________________________________________________
38487[ 17837] By: hv on 2002/09/04 13:38:27
38488 Log: Subject: [PATCH lib/Config.t] test grandfathered Config variables
38489 From: Michael G Schwern <schwern@pobox.com>
38490 Date: Mon, 2 Sep 2002 22:29:07 -0700
38491 Message-ID: <20020903052907.GR8061@ool-18b93024.dyn.optonline.net>
38492 Branch: perl
38493 ! lib/Config.t
38494____________________________________________________________________________
38495[ 17836] By: hv on 2002/09/04 13:35:36
38496 Log: Subject: [PATCH] DB_File 1.805
38497 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
38498 Date: Mon, 2 Sep 2002 23:56:40 +0100
38499 Message-ID: <AIEAJICLCBDNAAOLLOKLAEMCFFAA.Paul.Marquess@btinternet.com>
38500 Branch: perl
38501 ! ext/DB_File/Changes ext/DB_File/DB_File.pm
38502 ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
38503 ! ext/DB_File/t/db-btree.t ext/DB_File/t/db-hash.t
38504 ! ext/DB_File/t/db-recno.t ext/DB_File/typemap
38505____________________________________________________________________________
38506[ 17835] By: hv on 2002/09/04 13:23:17
38507 Log: fix coredump after 64k-deep recursion
38508 Subject: Re: debugging coredump with -DD
38509 From: hv@crypt.org
38510 Date: Tue, 03 Sep 2002 14:34:20 +0100
38511 Message-Id: <200209031334.g83DYLN09709@crypt.compulink.co.uk>
38512 Branch: perl
38513 ! cop.h t/op/recurse.t
38514____________________________________________________________________________
38515[ 17834] By: hv on 2002/09/04 13:08:36
38516 Log: perldoc: allow arguments for pager
38517 Subject: perldoc patch for better $Config{pager} support, mandir patch, fhs patch
38518 From: Chip Turner <cturner@redhat.com>
38519 Date: 02 Sep 2002 01:17:23 -0400
38520 Message-ID: <vzku1l9x95o.fsf@minbar.devel.redhat.com>
38521 Branch: perl
38522 ! utils/perldoc.PL
38523____________________________________________________________________________
38524[ 17833] By: hv on 2002/09/04 12:55:54
38525 Log: Subject: [PATCH] use sysconf(_SC_CLK_TCK) for times()
38526 From: Jarkko Hietaniemi <jhi@iki.fi>
38527 Date: Sun, 1 Sep 2002 19:23:55 +0300
38528 Message-ID: <20020901162355.GH12536@lyta.hut.fi>
38529 Branch: perl
38530 ! embedvar.h intrpvar.h perl.c perlapi.h pp_sys.c
38531____________________________________________________________________________
38532[ 17832] By: hv on 2002/09/04 12:39:42
38533 Log: Subject: Re: [PATCH] Correct/completes Overloading in XS mods
38534 From: John Peacock <jpeacock@rowman.com>
38535 Date: Sun, 01 Sep 2002 15:00:12 -0400
38536 Message-ID: <3D7263BC.9020608@rowman.com>
38537 Branch: perl
38538 ! lib/ExtUtils/xsubpp pod/perlxs.pod
38539____________________________________________________________________________
38540[ 17831] By: hv on 2002/09/04 11:47:10
38541 Log: #17827 misses some win32 tweaks
38542 Branch: perl
38543 ! win32/Makefile win32/makefile.mk
38544____________________________________________________________________________
38545[ 17830] By: hv on 2002/09/04 11:41:22
38546 Log: update email address for Paul Marquess
38547 Branch: perl
38548 ! AUTHORS
38549____________________________________________________________________________
38550[ 17829] By: hv on 2002/09/04 11:38:39
38551 Log: Subject: Correction for AUTHORS.html
38552 From: Sean Davis <dive@ender.com>
38553 Date: Fri, 30 Aug 2002 03:51:16 -0700
38554 Message-ID: <20020830035116.A18739@endersgame.net>
38555 Branch: perl
38556 ! AUTHORS
38557____________________________________________________________________________
38558[ 17828] By: hv on 2002/09/04 11:31:42
38559 Log: Subject: [PATCH] File::Spec->catfile not canonicalizing consistently
38560 From: Michael G Schwern <schwern@pobox.com>
38561 Date: Fri, 30 Aug 2002 03:40:45 -0700
38562 Message-ID: <20020830104044.GF859@ool-18b93024.dyn.optonline.net>
38563 Branch: perl
38564 ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
38565 ! lib/File/Spec/t/Spec.t
38566____________________________________________________________________________
38567[ 17827] By: hv on 2002/09/04 11:21:57
38568 Log: Subject: [PATCH] OS/400 PASE port
38569 From: Jarkko Hietaniemi <jhi@iki.fi>
38570 Date: Thu, 29 Aug 2002 22:22:51 +0300
38571 Message-ID: <20020829192251.GA27102@lyta.hut.fi>
38572 Branch: perl
38573 + README.os400 hints/os400.sh
38574 ! Configure MANIFEST hints/aix.sh lib/Cwd.pm pod/buildtoc.PL
38575 ! pod/perl.pod pod/perlebcdic.pod pod/perlport.pod
38576____________________________________________________________________________
38577[ 17826] By: hv on 2002/09/04 11:10:54
38578 Log: Subject: [PATCH 5.8.0] allow Sys::Syslog test to fail gracefully
38579 From: "Brendan O'Dea" <bod@debian.org>
38580 Date: Thu, 29 Aug 2002 22:42:39 +1000
38581 Message-ID: <20020829124239.GA31934@londo.odea.dropbear.id.au>
38582 Branch: perl
38583 ! ext/Sys/Syslog/syslog.t
38584____________________________________________________________________________
38585[ 17825] By: hv on 2002/09/04 10:53:59
38586 Log: Subject: Re: Possible bug in IPC/Semaphore.pm [PATCH]
38587 From: "John P. Linderman" <jpl@research.att.com>
38588 Date: Wed, 28 Aug 2002 08:04:29 -0400 (EDT)
38589 Message-Id: <200208271900.PAA98096@raptor.research.att.com>
38590 Branch: perl
38591 ! ext/IPC/SysV/Semaphore.pm
38592____________________________________________________________________________
38593[ 17824] By: rgs on 2002/09/03 20:02:36
38594 Log: Subject: [perl #16971] [PATCH] Fix a couple of URLs that changed recently.
38595 From: Richard Soderberg (via RT) <perlbug@perl.org>
38596 Date: 3 Sep 2002 18:48:54 -0000
38597 Message-ID: <rt-16971-36426.15.5276119194873@bugs6.perl.org>
38598
38599 Subject: [PATCH] A variety of README nitpicks.
38600 From: Richard Soderberg <rs@crystalflame.net>
38601 Date: Tue, 3 Sep 2002 11:54:39 -0700 (PDT)
38602 Message-ID: <Pine.LNX.4.33.0209031148280.32671-200000@oregonnet.com>
38603 Branch: perl
38604 ! README.amiga README.dgux README.dos README.epoc README.hpux
38605 ! README.mint README.netware README.vmesa
38606____________________________________________________________________________
38607[ 17823] By: rgs on 2002/09/03 19:47:05
38608 Log: Fix bug #16828.
38609 Add a few tests to ext/B/t/b.t, make it use Test::More.
38610 Branch: perl
38611 ! ext/B/B.xs ext/B/t/b.t
38612____________________________________________________________________________
38613[ 17822] By: rgs on 2002/09/02 19:29:52
38614 Log: Some simple tests for the POSIX::isXXX() functions.
38615 Branch: perl
38616 ! ext/POSIX/t/posix.t
38617____________________________________________________________________________
38618[ 17821] By: rgs on 2002/08/30 19:56:53
38619 Log: Advertise Linux::Pid.
38620 Branch: perl
38621 ! pod/perlfunc.pod pod/perlvar.pod
38622____________________________________________________________________________
38623[ 17820] By: gsar on 2002/08/30 19:55:21
38624 Log: integrate macperl changes#17657,17658,17663,17664
38625
38626 Neglected to include old bugfix from main branch
38627
38628 Count line numbers properly in MacPerl app
38629
38630 Portability fixes for blib
38631 (already in 5.8/5.9)
38632
38633 Minor test fixes
38634 Branch: maint-5.6/perl
38635 !> lib/blib.pm perl.c t/lib/filespec.t t/op/magic.t
38636____________________________________________________________________________
38637[ 17819] By: hv on 2002/08/30 13:42:02
38638 Log: Subject: [PATCH] Tweaks to Bleadperl Version Object Support
38639 From: John Peacock <jpeacock@rowman.com>
38640 Date: Wed, 28 Aug 2002 22:13:48 -0400
38641 Message-ID: <3D6D835C.50809@rowman.com>
38642 Branch: perl
38643 ! universal.c util.c
38644____________________________________________________________________________
38645[ 17818] By: hv on 2002/08/30 13:16:05
38646 Log: add test related to change #17799:
38647 Subject: Re: if.pm bug.
38648 From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
38649 Date: Thu, 29 Aug 2002 19:39:58 +0200
38650 Message-ID: <20020829173358.34731.qmail@onion.perl.org>
38651 Branch: perl
38652 ! lib/if.t
38653____________________________________________________________________________
38654[ 17817] By: hv on 2002/08/30 13:12:20
38655 Log: Subject: [PATCH] AUTHORS
38656 From: "Brendan O'Dea" <bod@debian.org>
38657 Date: Thu, 29 Aug 2002 22:49:34 +1000
38658 Message-ID: <20020829124934.GA1984@londo.odea.dropbear.id.au>
38659 Branch: perl
38660 ! AUTHORS
38661____________________________________________________________________________
38662[ 17816] By: hv on 2002/08/30 13:10:45
38663 Log: Subject: [PATCH 5.8.0] Term::Cap allow # comments in infcocmp output
38664 From: "Brendan O'Dea" <bod@debian.org>
38665 Date: Thu, 29 Aug 2002 22:46:47 +1000
38666 Message-ID: <20020829124647.GA1498@londo.odea.dropbear.id.au>
38667 Branch: perl
38668 ! lib/Term/Cap.pm
38669____________________________________________________________________________
38670[ 17815] By: hv on 2002/08/30 13:02:41
38671 Log: formatting cleanup and:
38672 Subject: Re: perl-5.8.0 on HP porting center
38673 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
38674 Date: Thu, 29 Aug 2002 12:23:31 +0200
38675 Message-Id: <20020829122221.0CA3.H.M.BRAND@hccnet.nl>
38676 Branch: perl
38677 ! installperl
38678____________________________________________________________________________
38679[ 17814] By: hv on 2002/08/30 12:23:33
38680 Log: Subject: [PATCH] perlmod.pod nit
38681 From: Autrijus Tang <autrijus@autrijus.org>
38682 Date: Thu, 29 Aug 2002 03:49:34 +0800
38683 Message-ID: <20020828194934.GA12244@not.autrijus.org>
38684 Branch: perl
38685 ! pod/perlmod.pod
38686____________________________________________________________________________
38687[ 17813] By: hv on 2002/08/30 12:19:15
38688 Log: Subject: [PATCH] Re: glob names and Regexp type introspection
38689 From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
38690 Date: Thu, 29 Aug 2002 17:31:31 -0700
38691 Message-ID: <jzrb9gzkgO7W092yn@efn.org>
38692 Branch: perl
38693 ! sv.c t/op/pat.t
38694____________________________________________________________________________
38695[ 17812] By: hv on 2002/08/30 12:06:20
38696 Log: Subject: [PATCH] typos in Hash::Util documentation
38697 From: Slaven Rezic <slaven.rezic@berlin.de>
38698 Date: Wed, 28 Aug 2002 17:08:50 +0200 (CEST)
38699 Message-Id: <200208281508.g7SF8o9Z015197@vran.herceg.de>
38700 Branch: perl
38701 ! lib/Hash/Util.pm
38702____________________________________________________________________________
38703[ 17811] By: hv on 2002/08/30 12:02:59
38704 Log: Subject: Re: Recent changes on the HP porting center
38705 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
38706 Date: Wed, 28 Aug 2002 17:39:27 +0200
38707 Message-Id: <20020828173024.3E95.H.M.BRAND@hccnet.nl>
38708 Branch: perl
38709 ! README.hpux
38710____________________________________________________________________________
38711[ 17810] By: hv on 2002/08/30 11:58:18
38712 Log: Subject: [PATCH] Fixes to threads::shared when disabled
38713 From: Michael G Schwern <schwern@pobox.com>
38714 Date: Wed, 28 Aug 2002 06:04:18 -0700
38715 Message-ID: <20020828130418.GG773@ool-18b93024.dyn.optonline.net>
38716 Branch: perl
38717 + ext/threads/shared/t/disabled.t
38718 ! MANIFEST ext/threads/shared/shared.pm
38719 ! ext/threads/shared/t/hv_refs.t
38720____________________________________________________________________________
38721[ 17809] By: nick on 2002/08/30 08:06:56
38722 Log: Integrate mainline
38723 Branch: perlio
38724 +> t/op/getpid.t
38725 !> (integrate 28 files)
38726____________________________________________________________________________
38727[ 17808] By: ams on 2002/08/30 02:59:31
38728 Log: Subject: [PATCH] Tru64 vs Berkeley DB
38729 From: Jarkko Hietaniemi <jhi@iki.fi>
38730 Date: Fri, 30 Aug 2002 06:56:38 +0300
38731 Message-Id: <20020830035638.GB874@lyta.hut.fi>
38732 Branch: perl
38733 ! README.tru64 hints/dec_osf.sh
38734____________________________________________________________________________
38735[ 17807] By: ams on 2002/08/30 02:32:30
38736 Log: Subject: [PATCH] IRIX + INSTALL
38737 From: Jarkko Hietaniemi <jhi@iki.fi>
38738 Date: Fri, 30 Aug 2002 06:31:48 +0300
38739 Message-Id: <20020830033148.GA874@lyta.hut.fi>
38740 Branch: perl
38741 ! INSTALL hints/irix_6.sh
38742____________________________________________________________________________
38743[ 17806] By: hv on 2002/08/29 22:56:45
38744 Log: #17449 failed to apply the actual patch. This is it.
38745 Branch: perl
38746 ! lib/Exporter.pm lib/Exporter/Heavy.pm
38747____________________________________________________________________________
38748[ 17805] By: hv on 2002/08/29 13:49:04
38749 Log: Fix based on:
38750 Subject: [perl #16799] Perl 5.8.0 breaks POSIX::isprint() (and other POSIX::xxx)
38751 From: "esm@pobox.com (via RT)" <perlbug@perl.org>
38752 Date: 27 Aug 2002 22:10:16 -0000
38753 Message-Id: <rt-16799-35846.14.4842888832041@bugs6.perl.org>
38754 Branch: perl
38755 ! ext/POSIX/POSIX.xs
38756____________________________________________________________________________
38757[ 17804] By: hv on 2002/08/29 13:29:43
38758 Log: Subject: [PATCH] B::check_av() ; B::Deparse for CHECK blocks
38759 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
38760 Date: Tue, 27 Aug 2002 23:36:53 +0200
38761 Message-Id: <20020827233653.535bc211.rgarciasuarez@free.fr>
38762 Branch: perl
38763 ! embedvar.h ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm intrpvar.h
38764 ! perl.c perlapi.h sv.c
38765____________________________________________________________________________
38766[ 17803] By: ams on 2002/08/29 13:09:47
38767 Log: Subject: [PATCH] AIX compiler setup sanity checking
38768 From: Jarkko Hietaniemi <jhi@iki.fi>
38769 Date: Thu, 29 Aug 2002 16:43:51 +0300
38770 Message-Id: <20020829134351.GG5219@lyta.hut.fi>
38771 Branch: perl
38772 ! hints/aix.sh
38773____________________________________________________________________________
38774[ 17802] By: hv on 2002/08/29 12:32:51
38775 Log: Subject: [perl #16769] Documention bug
38776 From: "dformosa@dformosa.zeta.org.au (via RT)" <perlbug@perl.org>
38777 Date: 26 Aug 2002 10:01:04 -0000
38778 Message-Id: <rt-16769-35720.17.1057454913803@bugs6.perl.org>
38779 Branch: perl
38780 ! pod/perl58delta.pod
38781____________________________________________________________________________
38782[ 17801] By: hv on 2002/08/29 12:19:30
38783 Log: Subject: [PATCH] ExtUtils::Constant 0.14
38784 From: Nicholas Clark <nick@unfortu.net>
38785 Date: Sun, 25 Aug 2002 18:06:00 +0100
38786 Message-ID: <20020825170600.GE322@Bagpuss.unfortu.net>
38787 Branch: perl
38788 ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
38789____________________________________________________________________________
38790[ 17800] By: hv on 2002/08/29 12:08:59
38791 Log: Subject: Patch: Put local($^I, @ARGV) = ... trick back into perlfaq5
38792 From: Mark-Jason Dominus <mjd@plover.com>
38793 Date: Sun, 25 Aug 2002 12:09:53 -0400
38794 Message-ID: <20020825160953.15987.qmail@plover.com>
38795 Branch: perl
38796 ! pod/perlfaq5.pod
38797____________________________________________________________________________
38798[ 17799] By: hv on 2002/08/29 11:48:39
38799 Log: Subject: Re: if.pm bug.
38800 From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
38801 Date: Sun, 25 Aug 2002 00:27:59 +0200
38802 Message-ID: <20020824222210.16387.qmail@onion.perl.org>
38803 Branch: perl
38804 ! lib/if.pm
38805____________________________________________________________________________
38806[ 17798] By: hv on 2002/08/29 11:44:00
38807 Log: Subject: [PATCH] posixify getppid on linux-multithread
38808 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
38809 Date: Tue, 6 Aug 2002 21:56:46 +0200
38810 Message-Id: <20020806215646.3f6852bb.rgarciasuarez@free.fr>
38811 Branch: perl
38812 + t/op/getpid.t
38813 ! MANIFEST embedvar.h hints/linux.sh perl.c perlapi.h perlvars.h
38814 ! pod/perlfunc.pod pod/perlvar.pod pp_sys.c util.c
38815____________________________________________________________________________
38816[ 17797] By: hv on 2002/08/29 10:55:41
38817 Log: Subject: Re: [perl #16677] B::SV::FLAGS dumps core
38818 From: Mark-Jason Dominus <mjd@plover.com>
38819 Date: Sun, 25 Aug 2002 22:31:54 -0400
38820 Message-ID: <20020826023154.22986.qmail@plover.com>
38821 Branch: perl
38822 ! ext/B/B.pm
38823____________________________________________________________________________
38824[ 17796] By: nick on 2002/08/27 18:46:22
38825 Log: Twiddle with my mail -> Change script
38826 Branch: perlio
38827 ! Porting/apply
38828____________________________________________________________________________
38829[ 17795] By: nick on 2002/08/27 18:42:41
38830 Log: Subject: Re: PerlIO::via silent failure
38831 From: Richard Clamp <richardc@unixbeard.net>
38832 Date: Sun, 11 Aug 2002 15:52:24 +0100
38833 Message-Id: <20020811145224.GA23897@mirth.demon.co.uk>
38834 Branch: perlio
38835 ! ext/PerlIO/t/via.t ext/PerlIO/via/via.xs
38836____________________________________________________________________________
38837[ 17792] By: nick on 2002/08/27 18:09:29
38838 Log: Integrate mainline
38839 Branch: perlio
38840 +> ext/Storable/t/code.t lib/Math/BigInt/Scalar.pm
38841 +> lib/Math/BigInt/t/bigints.t lib/Math/BigRat/t/big_ap.t
38842 +> lib/Pod/t/text-options.t lib/Test/Simple/t/details.t
38843 +> lib/Test/Simple/t/fork.t lib/Test/Simple/t/has_plan.t
38844 +> lib/Test/Simple/t/has_plan2.t lib/Test/Simple/t/ok_obj.t
38845 +> lib/bignum/t/biinfnan.t lib/bignum/t/bn_lite.t
38846 +> lib/bignum/t/bninfnan.t lib/bignum/t/br_lite.t
38847 +> lib/bignum/t/brinfnan.t lib/bignum/t/infnan.inc
38848 +> t/lib/Test/Simple/sample_tests/pre_plan_death.plx
38849 !> (integrate 135 files)
38850____________________________________________________________________________
38851[ 17791] By: hv on 2002/08/27 11:28:32
38852 Log: Missing MANIFEST files for #17783.
38853 Branch: perl
38854 ! MANIFEST
38855____________________________________________________________________________
38856[ 17790] By: hv on 2002/08/27 11:22:36
38857 Log: #17783 introduced an outdated test module, causing failure in
38858 lib/ExtUtils/t/problems.t. This grabs a more recent copy from
38859 ExtUtils::MakeMaker.
38860 Branch: perl
38861 ! t/lib/TieOut.pm
38862____________________________________________________________________________
38863[ 17789] By: ams on 2002/08/27 04:04:48
38864 Log: Subject: Patch perlvar.pod
38865 From: mjd@plover.com
38866 Date: 27 Aug 2002 03:03:01 -0000
38867 Message-Id: <20020827030301.32481.qmail@plover.com>
38868 Branch: perl
38869 ! pod/perlvar.pod
38870____________________________________________________________________________
38871[ 17788] By: hv on 2002/08/26 23:59:47
38872 Log: Update Changes
38873 Branch: perl
38874 ! Changes patchlevel.h
38875____________________________________________________________________________
3255d14b
HS
38876[ 17787] By: hv on 2002/08/26 19:22:27
38877 Log: fix for:
38878 Subject: [perl #16773] "abc" =~ /(ab)()(c)??/ broken
38879 From: (Randal L. Schwartz) (via RT) <perlbug@perl.org>
38880 Date: 26 Aug 2002 15:01:36 -0000
38881 Message-Id: <rt-16773-35748.5.13188490159294@bugs6.perl.org>
38882 Branch: perl
38883 ! regexec.c t/op/re_tests
38884____________________________________________________________________________
38885[ 17786] By: hv on 2002/08/26 15:34:25
38886 Log: Subject: CPAN Upload: S/SB/SBURKE/Test-1.21.tar.gz
38887 From: "Sean M. Burke" <sburke@cpan.org>
38888 Date: Mon, 26 Aug 2002 04:38:19 -0600
38889 Message-Id: <5.1.0.14.1.20020826043702.022ca320@mail.spinn.net>
38890 Branch: perl
38891 ! lib/Test.pm lib/Test/t/fail.t lib/Test/t/mix.t
38892 ! lib/Test/t/todo.t
38893____________________________________________________________________________
38894[ 17785] By: hv on 2002/08/26 15:18:41
38895 Log: fix non-ANSI C++-style comment
38896 Subject: [ PATCH ] Smoke 17780 /pro/3gl/CPAN/perl-current
38897 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
38898 Date: Mon, 26 Aug 2002 09:15:18 +0200
38899 Message-Id: <20020826090145.6975.H.M.BRAND@hccnet.nl>
38900 Branch: perl
38901 ! ext/Storable/Storable.xs
38902____________________________________________________________________________
38903[ 17784] By: hv on 2002/08/26 15:15:19
38904 Log: #17780 relies on unixy paths to locate own directory for bignum tests.
38905 Branch: perl
38906 ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
38907 ! lib/bignum/t/brinfnan.t
38908____________________________________________________________________________
38909[ 17783] By: hv on 2002/08/26 15:07:21
38910 Log: Subject: [ANNOUNCE] Test::Simple 0.47
38911 From: Michael G Schwern <schwern@pobox.com>
38912 Date: Mon, 26 Aug 2002 04:13:03 -0700
38913 Message-ID: <20020826111303.GJ758@ool-18b93024.dyn.optonline.net>
38914 Branch: perl
38915 + lib/Test/Simple/t/details.t lib/Test/Simple/t/fork.t
38916 + lib/Test/Simple/t/has_plan.t lib/Test/Simple/t/has_plan2.t
38917 + lib/Test/Simple/t/ok_obj.t
38918 + t/lib/Test/Simple/sample_tests/pre_plan_death.plx
38919 ! lib/Test/Builder.pm lib/Test/More.pm lib/Test/Simple.pm
38920 ! lib/Test/Simple/Changes lib/Test/Simple/t/exit.t
38921 ! lib/Test/Simple/t/plan.t lib/Test/Simple/t/threads.t
38922 ! lib/Test/Tutorial.pod t/lib/TieOut.pm
38923____________________________________________________________________________
38924[ 17782] By: hv on 2002/08/26 15:00:55
38925 Log: new test for change #17773
38926 Subject: lib/Pod/t/htmlview.t and lib/Pod/t/htmlview.pod patch (to account for the Pod::Html patch)
38927 From: DH <crazyinsomniac@yahoo.com>
38928 Date: Mon, 26 Aug 2002 01:36:27 -0700 (PDT)
38929 Message-ID: <20020826083627.46199.qmail@web40207.mail.yahoo.com>
38930 Branch: perl
38931 ! lib/Pod/t/htmlview.pod lib/Pod/t/htmlview.t
38932____________________________________________________________________________
38933[ 17781] By: hv on 2002/08/26 14:48:35
38934 Log: #17775 changed reentr.c instead of reentr.pl, which generates it
38935 Branch: perl
38936 ! reentr.pl
38937____________________________________________________________________________
38938[ 17780] By: hv on 2002/08/25 19:03:50
38939 Log: fix bignum test failures
38940 Branch: perl
38941 ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
38942 ! lib/bignum/t/brinfnan.t
38943____________________________________________________________________________
38944[ 17779] By: hv on 2002/08/25 18:56:29
38945 Log: upgrade bignum to v0.13: fix test failures and update docs
38946 Branch: perl
38947 ! lib/bignum.pm lib/bignum/t/bignum.t lib/bignum/t/bninfnan.t
38948____________________________________________________________________________
38949[ 17778] By: hv on 2002/08/25 18:43:06
38950 Log: Subject: Encode 1.76 Released
38951 From: Dan Kogai <dankogai@dan.co.jp>
38952 Date: su elo 25, 2002 11:27:07 US/Eastern
38953 Message-Id: <1DE68466-B83F-11D6-8805-0003939A104C@dan.co.jp>
38954 Branch: perl
38955 ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/bin/piconv
38956 ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
38957 ! ext/Encode/lib/Encode/MIME/Header.pm
38958 ! ext/Encode/t/big5-eten.utf ext/Encode/ucm/big5-eten.ucm
38959____________________________________________________________________________
38960[ 17777] By: rgs on 2002/08/25 18:42:46
38961 Log: Fix parsing problems with the // operator.
38962 Make // able to follow various unary operators used without
38963 arguments or parens (shift, pop, getc, pos, readline,
38964 readlink, undef, umask, and the filetest operators), as
38965 well as the <FH> operator.
38966 Branch: perl
38967 ! perl.h t/op/dor.t toke.c
38968____________________________________________________________________________
38969[ 17776] By: hv on 2002/08/25 15:56:37
38970 Log: Subject: [PATCH] ExtUtils::Constant 0.13
38971 From: Nicholas Clark <nick@unfortu.net>
38972 Date: Fri, 23 Aug 2002 19:21:12 +0100
38973 Message-ID: <20020823182111.GA281@Bagpuss.unfortu.net>
38974 Branch: perl
38975 ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
38976____________________________________________________________________________
38977[ 17775] By: hv on 2002/08/25 15:46:28
38978 Log: Subject: [perl #16729] crypt() doesn't work in multithreaded perl
38979 From: "mls@suse.de (via RT)" <perlbug@perl.org>
38980 Date: 23 Aug 2002 15:24:39 -0000
38981 Message-Id: <rt-16729-35555.9.25145891475907@bugs6.perl.org>
38982 Branch: perl
38983 ! reentr.c
38984____________________________________________________________________________
38985[ 17774] By: hv on 2002/08/25 15:29:42
38986 Log: Subject: [PATCH lib/Benchmark.(pm|t)] Make cmpthese work as documented.
38987 From: Abigail <abigail@foad.org>
38988 Date: Thu, 22 Aug 2002 04:10:39 -0700
38989 Message-ID: <20020822041039.A2089@ucan.foad.org>
38990 Branch: perl
38991 ! lib/Benchmark.pm lib/Benchmark.t
38992____________________________________________________________________________
38993[ 17773] By: hv on 2002/08/25 15:17:16
38994 Log: Subject: Re: a bugfix for Pod::Html (in diff -u format)
38995 From: DH <crazyinsomniac@yahoo.com>
38996 Date: Thu, 22 Aug 2002 02:32:50 -0700 (PDT)
38997 Message-ID: <20020822093250.30523.qmail@web40205.mail.yahoo.com>
38998 Branch: perl
38999 ! lib/Pod/Html.pm
39000____________________________________________________________________________
39001[ 17772] By: hv on 2002/08/25 14:49:37
39002 Log: Subject: Re: p5p patches
39003 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39004 Date: Fri, 23 Aug 2002 15:27:48 +0200
39005 Message-Id: <20020823152535.D3EA.H.M.BRAND@hccnet.nl>
39006 Branch: perl
39007 ! Porting/patching.pod
39008____________________________________________________________________________
39009[ 17771] By: hv on 2002/08/25 14:45:46
39010 Log: Subject: Newdated info for HP-UX
39011 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39012 Date: Wed, 21 Aug 2002 20:20:17 +0200
39013 Message-Id: <20020821201737.697B.H.M.BRAND@hccnet.nl>
39014 Branch: perl
39015 ! README.hpux
39016____________________________________________________________________________
39017[ 17770] By: hv on 2002/08/25 14:26:36
39018 Log: Subject: [PATCH] let perlfaq1.pod mention 5.8 as the current stable release
39019 From: "Jos I. Boumans" <kane@cpan.org>
39020 Date: Wed, 21 Aug 2002 14:55:51 +0200
39021 Message-ID: <20020821124817.34761.qmail@onion.perl.org>
39022 Branch: perl
39023 ! pod/perlfaq1.pod
39024____________________________________________________________________________
39025[ 17769] By: hv on 2002/08/25 14:16:50
39026 Log: Subject: bit more for WinCE
39027 From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
39028 Date: Wed, 21 Aug 2002 01:31:52 +0400
39029 Message-ID: <000f01c24891$045c4990$2b5ec3d9@vad>
39030 Branch: perl
39031 ! wince/Makefile.ce wince/compile.bat wince/win32io.c
39032 ! wince/wince.c
39033____________________________________________________________________________
39034[ 17768] By: hv on 2002/08/25 14:02:47
39035 Log: Subject: [PATCH] fix lib.pm's import() to accept readonly parameters
39036 From: Anton Berezin <tobez@tobez.org>
39037 Date: Tue, 20 Aug 2002 23:44:25 +0200
39038 Message-ID: <20020820214425.GG16178@heechee.tobez.org>
39039 Branch: perl
39040 ! lib/lib.t lib/lib_pm.PL
39041____________________________________________________________________________
39042[ 17767] By: hv on 2002/08/25 13:52:08
39043 Log: Subject: [perl #16281] patch to enable perldoc -n for MSWin32 (perl-5.8.0)
39044 From: "Randy W. Sims" (via RT) <perlbug@perl.org>
39045 Date: 18 Aug 2002 13:27:12 -0000
39046 Message-Id: <rt-16281-34264.3.49471192322156@bugs6.perl.org>
39047 Branch: perl
39048 ! utils/perldoc.PL
39049____________________________________________________________________________
39050[ 17766] By: rgs on 2002/08/24 20:33:05
39051 Log: Subject: [perl #16737] [PATCH] Perl5.8.0 two simple typos in perlxstut
39052 From: Peter BARABAS (via RT) <perlbug@perl.org>
39053 Date: 24 Aug 2002 08:16:19 -0000
39054 Message-ID: <rt-16737-35573.3.51579548306248@bugs6.perl.org>
39055 Branch: perl
39056 ! pod/perlxstut.pod
39057____________________________________________________________________________
39058[ 17765] By: rgs on 2002/08/24 19:03:52
39059 Log: Subject: [PATCH] remove 2 unit warnings from lib/Net/t/hostname.t
39060 From: Nicholas Clark <nick@unfortu.net>
39061 Date: Sat, 24 Aug 2002 17:01:08 +0100
39062 Message-ID: <20020824160107.GI280@Bagpuss.unfortu.net>
39063 (plus a typo fix)
39064 Branch: perl
39065 ! lib/Net/t/hostname.t
39066____________________________________________________________________________
39067[ 17764] By: rgs on 2002/08/24 12:29:27
39068 Log: a2p wasn't installed with -Dversiononly
39069 Branch: perl
39070 ! installperl
39071____________________________________________________________________________
39072[ 17763] By: hv on 2002/08/23 12:23:31
39073 Log: #17747 caused bad free()s with PERL_DESTRUCT by calling newXS()
39074 with a NULL subaddr. Fix that, and stop it happening again.
39075 Branch: perl
39076 ! op.c universal.c
39077____________________________________________________________________________
39078[ 17762] By: hv on 2002/08/23 11:02:35
39079 Log: fixup threaded build for vstring changes
39080 Branch: perl
39081 ! universal.c util.c
39082____________________________________________________________________________
39083[ 17761] By: ams on 2002/08/23 02:54:09
39084 Log: Incorporate fix from JHI at:
39085 http://rt.perl.org/rt2/Ticket/Display.html?id=16708
39086 Branch: perl
39087 ! ext/NDBM_File/NDBM_File.xs ext/ODBM_File/ODBM_File.xs
39088____________________________________________________________________________
39089[ 17760] By: ams on 2002/08/23 01:30:46
39090 Log: Subject: [PATCH] PPPort IVSIZE and SvPV_nolen
39091 From: Jarkko Hietaniemi <jhi@iki.fi>
39092 Date: Fri, 23 Aug 2002 05:29:09 +0300
39093 Message-Id: <20020823022909.GC9135@lyta.hut.fi>
39094 Branch: perl
39095 ! ext/Devel/PPPort/PPPort.pm
39096____________________________________________________________________________
39097[ 17759] By: ams on 2002/08/23 01:27:23
39098 Log: Subject: [PATCH] x2p/str.c signedness nits
39099 From: Jarkko Hietaniemi <jhi@iki.fi>
39100 Date: Fri, 23 Aug 2002 02:43:30 +0300
39101 Message-Id: <20020822234330.GC31624@lyta.hut.fi>
39102 Branch: perl
39103 ! x2p/str.c
39104____________________________________________________________________________
39105[ 17758] By: hv on 2002/08/22 22:29:45
39106 Log: bignum-0.12 updates from:
39107 Subject: [ANNOUCNE] Big Math::Big* update
39108 From: Tels <perl_dummy@bloodgate.com>
39109 Date: Tue, 13 Aug 2002 22:02:09 +0200 (CEST)
39110 Message-Id: <200208132121.g7DLLRV21408@crypt.org>
39111 Branch: perl
39112 + lib/bignum/t/biinfnan.t lib/bignum/t/bn_lite.t
39113 + lib/bignum/t/bninfnan.t lib/bignum/t/br_lite.t
39114 + lib/bignum/t/brinfnan.t lib/bignum/t/infnan.inc
39115 ! MANIFEST lib/bigint.pm lib/bignum.pm lib/bignum/t/bignum.t
39116 ! lib/bigrat.pm
39117____________________________________________________________________________
39118[ 17757] By: hv on 2002/08/22 22:19:42
39119 Log: new file for #17756
39120 Branch: perl
39121 ! MANIFEST
39122____________________________________________________________________________
39123[ 17756] By: hv on 2002/08/22 22:16:41
39124 Log: Subject: ANNOUCNE: Math::BigRat v0.09
39125 From: Tels <perl_dummy@bloodgate.com>
39126 Date: Wed, 14 Aug 2002 20:12:03 +0200 (CEST)
39127 Message-Id: <200208141812.g7EICrV23771@crypt.org>
39128 Branch: perl
39129 + lib/Math/BigRat/t/big_ap.t
39130 ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
39131 ! lib/Math/BigRat/t/bigratpm.inc
39132____________________________________________________________________________
39133[ 17755] By: hv on 2002/08/22 19:44:03
39134 Log: new files from #17754
39135 Branch: perl
39136 + lib/Math/BigInt/Scalar.pm lib/Math/BigInt/t/bigints.t
39137____________________________________________________________________________
39138[ 17754] By: hv on 2002/08/22 19:42:58
39139 Log: Subject: ANNOUNCE: Math-BigInt v1.62
39140 From: Tels <perl_dummy@bloodgate.com>
39141 Date: Wed, 21 Aug 2002 19:12:59 +0200 (CEST)
39142 Message-Id: <200208211513.g7LFDUs02512@crypt.org>
39143 Branch: perl
39144 ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
39145 ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
39146 ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bare_mif.t
39147 ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
39148 ! lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
39149 ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/calling.t
39150 ! lib/Math/BigInt/t/constant.t lib/Math/BigInt/t/mbimbf.inc
39151 ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigInt/t/sub_mbf.t
39152 ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/sub_mif.t
39153 ! lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
39154 ! lib/Math/BigInt/t/with_sub.t t/lib/Math/BigFloat/Subclass.pm
39155____________________________________________________________________________
39156[ 17753] By: hv on 2002/08/22 12:05:57
39157 Log: Subject: podlators 1.24 released
39158 From: Russ Allbery <rra@stanford.edu>
39159 Date: Sat, 03 Aug 2002 20:56:42 -0700
39160 Message-ID: <ylbs8jff9h.fsf@windlord.stanford.edu>
39161 Branch: perl
39162 + lib/Pod/t/text-options.t
39163 ! MANIFEST lib/Pod/Text.pm lib/Pod/Text/Overstrike.pm
39164 ! lib/Pod/t/basic.t pod/pod2text.PL
39165____________________________________________________________________________
39166[ 17752] By: hv on 2002/08/22 11:13:17
39167 Log: Subject: [Announce] Unicode::Collate 0.20 -> UCA version 9
39168 From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
39169 Date: Fri, 26 Jul 2002 02:59:12 +0900
39170 Message-Id: <20020726025828.B5E9.BQW10602@nifty.com>
39171 Branch: perl
39172 ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
39173 ! lib/Unicode/Collate/README lib/Unicode/Collate/keys.txt
39174 ! lib/Unicode/Collate/t/test.t
39175____________________________________________________________________________
39176[ 17751] By: hv on 2002/08/22 11:08:35
39177 Log: fix test failure from #17747
39178 Branch: perl
39179 ! ext/B/t/stash.t
39180____________________________________________________________________________
39181[ 17750] By: hv on 2002/08/22 10:46:19
39182 Log: Subject: [PATCH] Fix DBM filters
39183 From: "Paul Marquess" <Paul.Marquess@btinternet.com>
39184 Date: Wed, 21 Aug 2002 11:40:49 +0100
39185 Message-ID: <AIEAJICLCBDNAAOLLOKLAEHCFEAA.Paul.Marquess@btinternet.com>
39186 Branch: perl
39187 ! XSUB.h ext/DB_File/DB_File.xs ext/DB_File/typemap
39188 ! ext/GDBM_File/GDBM_File.xs ext/GDBM_File/gdbm.t
39189 ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.xs
39190 ! ext/NDBM_File/ndbm.t ext/NDBM_File/typemap
39191 ! ext/ODBM_File/ODBM_File.xs ext/ODBM_File/odbm.t
39192 ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.xs
39193 ! ext/SDBM_File/sdbm.t ext/SDBM_File/typemap
39194____________________________________________________________________________
39195[ 17749] By: hv on 2002/08/22 01:04:32
39196 Log: avoid use of %caller::EXPORT
39197 Subject: [PATCH] Re: question about Exporter::import
39198 From: Nicholas Clark <nick@unfortu.net>
39199 Date: Wed, 14 Aug 2002 21:33:12 +0100
39200 Message-id: <20020814203311.GD278@Bagpuss.unfortu.net>
39201 Branch: perl
39202 ! lib/Exporter.pm lib/Exporter/Heavy.pm
39203____________________________________________________________________________
39204[ 17748] By: hv on 2002/08/22 00:54:03
39205 Log: todo test for linux $0 modification
39206 Subject: Re: [perl #16206] $0 in 5.8
39207 From: Slaven Rezic <slaven.rezic@berlin.de>
39208 Date: 17 Aug 2002 21:32:37 +0200
39209 Message-id: <87elcx2sdm.fsf@vran.herceg.de>
39210 Branch: perl
39211 ! t/op/magic.t
39212____________________________________________________________________________
39213[ 17747] By: hv on 2002/08/22 00:11:34
39214 Log: Subject: Re: [PATCH] Version object patch #1
39215 From: John Peacock <jpeacock@rowman.com>
39216 Date: Tue, 20 Aug 2002 22:51:46 -0400 (Wed 03:51 BST)
39217 Message-id: <3D630042.6020407@rowman.com>
39218
39219 Subject: Re: [REVISED PATCH] Magic v-strings
39220 From: John Peacock <jpeacock@rowman.com>
39221 Date: Wed, 21 Aug 2002 15:08:34 -0400 (20:08 BST)
39222 Message-id: <3D63E532.7020305@rowman.com>
39223 Branch: perl
39224 ! sv.c t/op/ver.t universal.c util.c
39225____________________________________________________________________________
39226[ 17746] By: hv on 2002/08/20 16:48:05
39227 Log: Subject: [PATCH] Version object patch #1
39228 From: John Peacock <jpeacock@rowman.com>
39229 Date: Thu, 15 Aug 2002 10:06:21 -0400 (15:06 BST)
39230 Message-id: <3D5BB55D.6090603@rowman.com>
39231 and Message-id: <3D627D1A.4050607@rowman.com>
39232 and t/lib/warnings/universal tweak to skip
39233 Branch: perl
39234 ! embed.fnc embed.h global.sym pod/perlapi.pod proto.h sv.h
39235 ! t/lib/warnings/universal toke.c util.c
39236____________________________________________________________________________
39237[ 17745] By: hv on 2002/08/20 16:27:01
39238 Log: perldelta for #17727
39239 Branch: perl
39240 ! pod/perldelta.pod
39241____________________________________________________________________________
39242[ 17744] By: hv on 2002/08/20 15:34:36
39243 Log: Subject: typo in perfunc.pod
39244 From: "John P. Linderman" <jpl@research.att.com>
39245 Date: Mon, 19 Aug 2002 08:45:31 -0400 (EDT) (13:45 BST)
39246 Message-id: <200208191245.IAA20072@raptor.research.att.com>
39247 Branch: perl
39248 ! pod/perlfunc.pod
39249____________________________________________________________________________
39250[ 17743] By: hv on 2002/08/20 15:31:40
39251 Log: Subject: Re: [PATCH] fix typos in perlpacktut
39252 From: "Mr. Nobody" <mrnobo1024@yahoo.com>
39253 Date: Fri, 16 Aug 2002 20:40:58 -0700 (PDT) (Sat 04:40 BST)
39254 Message-id: <20020817034058.45633.qmail@web20802.mail.yahoo.com>
39255 Branch: perl
39256 ! pod/perlpacktut.pod
39257____________________________________________________________________________
39258[ 17742] By: hv on 2002/08/20 14:51:16
39259 Log: Subject: [REVISED PATCH] Magic v-strings
39260 From: John Peacock <jpeacock@rowman.com>
39261 Date: Sat, 10 Aug 2002 15:56:22 -0400 (20:56 BST)
39262 Message-id: <3D556FE6.6000404@rowman.com>
39263 plus a bit of cleanup
39264 Branch: perl
39265 ! dump.c perl.h pod/perlguts.pod sv.c sv.h util.c
39266____________________________________________________________________________
39267[ 17741] By: hv on 2002/08/20 14:20:16
39268 Log: Subject: Re: [PATCH] Storable and CODE references
39269 From: Slaven Rezic <slaven.rezic@berlin.de>
39270 Date: 17 Aug 2002 21:58:03 +0200
39271 Message-id: <87bs812r78.fsf@vran.herceg.de>
39272 Branch: perl
39273 + ext/Storable/t/code.t
39274 ! MANIFEST ext/Storable/Storable.xs ext/Storable/t/forgive.t
39275 ! ext/Storable/t/malice.t
39276____________________________________________________________________________
39277[ 17740] By: hv on 2002/08/20 14:07:56
39278 Log: Clean up copy-on-write macros and debug facilities (new flag 'C').
39279 Handle CoW in hashes:
39280 Subject: Re: why would tr/// be performing hash copies?
39281 From: Nicholas Clark <nick@unfortu.net>
39282 Date: Sun, 18 Aug 2002 23:17:01 +0100
39283 Message-id: <20020818221700.GD294@Bagpuss.unfortu.net>
39284 Branch: perl
39285 ! hv.c perl.c perl.h pod/perlrun.pod sv.c sv.h
39286____________________________________________________________________________
39287[ 17739] By: hv on 2002/08/20 13:52:18
39288 Log: Subject: Re: [perl #15326] Not OK: perl v5.8.0 on i686-linux-64int-ld 2.4.5
39289 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39290 Date: Tue, 23 Jul 2002 09:21:10 +0200
39291 Message-id: <20020723092051.184C.H.M.BRAND@hccnet.nl>
39292 Branch: perl
39293 ! Configure
39294____________________________________________________________________________
39295[ 17738] By: nick on 2002/08/20 07:13:52
39296 Log: Integrate mainline
39297 Branch: perlio
39298 - vos/Makefile vos/build.cm vos/compile_perl.cm
39299 - vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
39300 - vos/config.ga.h vos/config.pl vos/configure_perl.cm
39301 - vos/install_perl.cm vos/perl.bind vos/test_vos_dummies.c
39302 - vos/vos_dummies.c
39303 !> (integrate 57 files)
39304____________________________________________________________________________
39305[ 17737] By: ams on 2002/08/19 07:48:39
39306 Log: Effect a speedy recovery from POD affected by (ahem, Australian)
39307 negligence.
39308 Branch: perl
39309 ! pod/perlrun.pod
39310____________________________________________________________________________
39311[ 17736] By: hv on 2002/08/18 18:27:28
39312 Log: Subject: [PATCH] Re: 5.8.0 sprintf (?) problem with floats?
39313 From: Dave Mitchell <davem@fdgroup.com>
39314 Date: Fri, 16 Aug 2002 23:31:07 +0100
39315 Message-id: <20020816233107.E9388@fdgroup.com>
39316 Branch: perl
39317 ! numeric.c t/base/num.t
39318____________________________________________________________________________
39319[ 17735] By: hv on 2002/08/18 02:22:21
39320 Log: Subject: Re: [perl #16198] pod tpyo in hostent.pm
39321 From: Mark-Jason Dominus <mjd@plover.com>
39322 Date: Tue, 13 Aug 2002 21:19:08 -0400 (Wed 02:19 BST)
39323 Message-id: <20020814011909.22744.qmail@plover.com>
39324 Branch: perl
39325 ! lib/Net/hostent.pm
39326____________________________________________________________________________
39327[ 17734] By: hv on 2002/08/18 02:20:05
39328 Log: Subject: [PATCH] Re: Pod::Functions tpyo
39329 From: Abe Timmerman <abe@ztreet.demon.nl>
39330 Date: Tue, 13 Aug 2002 23:47:00 +0200
39331 Message-id: <200208132347.00782.abe@ztreet.demon.nl>
39332 Branch: perl
39333 ! lib/Pod/Functions.pm
39334____________________________________________________________________________
39335[ 17733] By: hv on 2002/08/18 02:17:18
39336 Log: Subject: Server rename revisited
39337 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39338 Date: Tue, 13 Aug 2002 19:19:03 +0200
39339 Message-id: <20020813191821.DC98.H.M.BRAND@hccnet.nl>
39340 Branch: perl
39341 ! README.hpux
39342____________________________________________________________________________
39343[ 17732] By: hv on 2002/08/18 02:11:49
39344 Log: Subject: [PATCH] Remove old VOS build methods
39345 From: Paul_GreenVOS@vos.stratus.com
39346 Date: Tue, 13 Aug 02 10:25 edt (15:25 BST)
39347 Message-id: <200208131426.KAA01012@mailhub1.stratus.com>
39348 Branch: perl
39349 - vos/Makefile vos/build.cm vos/compile_perl.cm
39350 - vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
39351 - vos/config.ga.h vos/config.pl vos/configure_perl.cm
39352 - vos/install_perl.cm vos/perl.bind vos/test_vos_dummies.c
39353 - vos/vos_dummies.c
39354 ! MANIFEST README.vos pod/perlport.pod vos/Changes
39355____________________________________________________________________________
39356[ 17731] By: hv on 2002/08/18 01:57:12
39357 Log: Subject: [PATCH] Configure missing d_modflproto=''
39358 From: "Gerrit P. Haase" <gp@familiehaase.de>
39359 Date: Tue, 13 Aug 2002 15:11:05 +0200
39360 Message-id: <11417599086.20020813151105@familiehaase.de>
39361 Branch: perl
39362 ! Configure
39363____________________________________________________________________________
39364[ 17730] By: hv on 2002/08/18 01:41:33
39365 Log: missing chunk from #17725 causes lib/constant.t test failures
39366 Branch: perl
39367 ! lib/constant.t
39368____________________________________________________________________________
39369[ 17729] By: hv on 2002/08/17 02:33:15
39370 Log: Subject: [PATCH] Safe.pm documentation
39371 From: Slaven Rezic <slaven.rezic@berlin.de>
39372 Date: Sat, 10 Aug 2002 19:30:38 +0200 (CEST)
39373 Message-id: <200208101730.g7AHUc9p001668@vran.herceg.de>
39374 Branch: perl
39375 ! ext/Opcode/Safe.pm pod/perlre.pod
39376____________________________________________________________________________
39377[ 17728] By: hv on 2002/08/17 02:07:24
39378 Log: Subject: Copy On Write
39379 From: Nicholas Clark <nick@ccl4.org>
39380 Date: Thu, 15 Aug 2002 00:10:35 +0100
39381 Message-id: <20020815001035.A69079@plum.flirble.org>
39382 specify "-Accflags='-DPERL_COPY_ON_WRITE'" to use
39383 Branch: perl
39384 ! doop.c dump.c embed.fnc embed.h mg.c pod/perlapi.pod pp.c
39385 ! pp_hot.c proto.h sv.c sv.h
39386____________________________________________________________________________
39387[ 17727] By: hv on 2002/08/17 01:20:05
39388 Log: Subject: [PATCH 5.7.3] Negative subscripts optionally passed to tied array methods
39389 From: Mark-Jason Dominus <mjd@plover.com>
39390 Date: Sun, 14 Apr 2002 23:38:55 -0400 (Mon 04:38 BST)
39391 Message-id: <20020415033855.6343.qmail@plover.com>
39392 Branch: perl
39393 ! av.c av.h pod/perltie.pod t/op/tiearray.t
39394____________________________________________________________________________
39395[ 17726] By: hv on 2002/08/17 01:17:09
39396 Log: pp.c warns that sv may be used uninitialised in pp_delete()
39397 Branch: perl
39398 ! pp.c
39399____________________________________________________________________________
39400[ 17725] By: hv on 2002/08/17 00:51:19
39401 Log: Subject: [PATCH] Remove pseudo-hashes (complete)
39402 From: Michael G Schwern <schwern@pobox.com>
39403 Date: Tue, 6 Aug 2002 13:05:10 -0700 (21:05 BST)
39404 Message-id: <20020806200510.GC31473@ool-18b93024.dyn.optonline.net>
39405 Branch: perl
39406 ! av.c doop.c dump.c embed.fnc embed.h ext/B/B/Concise.pm
39407 ! global.sym lib/fields.pm lib/fields.t lib/overload.pm mg.c
39408 ! op.c op.h pod/perldiag.pod pod/perlfunc.pod pod/perlref.pod
39409 ! pp.c pp_hot.c proto.h t/op/avhv.t t/op/hashwarn.t
39410____________________________________________________________________________
39411[ 17724] By: hv on 2002/08/17 00:27:33
39412 Log: ext/B/defsubs.h also depends on the program that builds it
39413 Branch: perl
39414 ! ext/B/Makefile.PL
39415____________________________________________________________________________
39416[ 17723] By: hv on 2002/08/17 00:10:24
39417 Log: Subject: Re: deb.c compile time error (patchlevel 17721)
39418 From: Dave Mitchell <davem@fdgroup.com>
39419 Date: Tue, 13 Aug 2002 14:42:15 +0100
39420 Message-ID: <20020813144215.G11939@fdgroup.com>
39421 Branch: perl
39422 ! embed.fnc embed.h global.sym proto.h
39423____________________________________________________________________________
39424[ 17722] By: ams on 2002/08/16 05:20:22
39425 Log: Subject: Minor perlrun.pod patch
39426 From: Iain Truskett <spoon@cpan.org>
39427 Date: Fri, 16 Aug 2002 16:20:27 +1000
39428 Message-Id: <20020816162027.D17196@eh.org>
39429 Branch: perl
39430 ! pod/perlrun.pod
39431____________________________________________________________________________
39432[ 17721] By: hv on 2002/08/12 12:17:19
39433 Log: #17717 needed tests fixing up
39434 Branch: perl
39435 ! t/op/chop.t
39436____________________________________________________________________________
39437[ 17720] By: hv on 2002/08/12 12:10:07
39438 Log: Subject: Re: [PATCH] Re: taint news
39439 From: Rick Delaney <rick.delaney@rogers.com>
39440 Date: 04 Aug 2002 00:28:58 EDT
39441 Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
39442 missed patch fragment from Change #17676
39443 Branch: perl
39444 ! pod/perlsec.pod
39445____________________________________________________________________________
39446[ 17719] By: hv on 2002/08/12 12:03:53
39447 Log: Subject: [perl #15987] Tests fail when sources are under CVS control
39448 From: Warren Jones (via RT) <perlbug@perl.org>
39449 Date: 5 Aug 2002 19:08:50 -0000 (Mon 20:08 BST)
39450 Message-id: <rt-15987-32864.15.6255441902154@bugs6.perl.org>
39451 Branch: perl
39452 ! lib/strict.t lib/warnings.t
39453____________________________________________________________________________
39454[ 17718] By: hv on 2002/08/12 11:57:17
39455 Log: Subject: [PATCH] add verbose stack display option, -Dvs
39456 From: Dave Mitchell <davem@fdgroup.com>
39457 Date: Mon, 5 Aug 2002 00:55:33 +0100
39458 Message-id: <20020805005533.B26111@fdgroup.com>
39459 Branch: perl
39460 ! deb.c dump.c embed.fnc embed.h perl.c perl.h pod/perlapi.pod
39461 ! pod/perlrun.pod proto.h
39462____________________________________________________________________________
39463[ 17717] By: hv on 2002/08/12 11:44:06
39464 Log: Subject: Re: [PATCH@8545] [ID 20000808.005] OP_REFGEN as an lvalue
39465 From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
39466 Date: Sat, 27 Jan 2001 19:31:29 -0800 (PST)
39467 Message-ID: <14963.32943.102669.67625@soda.csua.berkeley.edu>
39468 Branch: perl
39469 ! op.c t/op/chop.t t/op/ref.t
39470____________________________________________________________________________
39471[ 17716] By: hv on 2002/08/12 11:29:53
39472 Log: Subject: Re: [ID 20020713.001] chomp($data=<tied_fh>) strangeness.
39473 From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
39474 Date: Sat, 13 Jul 2002 17:44:02 +0100
39475 Message-id: <200207131644.g6DGi2214456@crypt.compulink.co.uk>
39476 Branch: perl
39477 ! pp_hot.c t/op/tiehandle.t
39478____________________________________________________________________________
39479[ 17715] By: hv on 2002/08/12 11:28:26
39480 Log: Subject: [PATCH] better modfl detection
39481 From: Nicholas Clark <nick@unfortu.net>
39482 Date: Sun, 11 Aug 2002 20:05:49 +0100
39483 Message-id: <20020811190548.GK300@Bagpuss.unfortu.net>
39484 Branch: perl
39485 ! Configure config_h.SH perl.h
39486____________________________________________________________________________
39487[ 17714] By: hv on 2002/08/12 11:26:23
39488 Log: Subject: [PATCH] perltodo.pod
39489 From: Richard.Foley@t-online.de
39490 Date: Sun, 11 Aug 2002 18:26:10 +0200
39491 Message-id: <17dwY1-0spbdoC@fwd06.sul.t-online.com>
39492 perlbug credits
39493 Branch: perl
39494 ! pod/perltodo.pod
39495____________________________________________________________________________
39496[ 17713] By: hv on 2002/08/12 11:24:44
39497 Log: Subject: [PATCH] gv_fullname3 as call to gv_fullname4
39498 From: Nicholas Clark <nick@unfortu.net>
39499 Date: Sun, 11 Aug 2002 16:59:16 +0100
39500 Message-id: <20020811155914.GE300@Bagpuss.unfortu.net>
39501 Branch: perl
39502 ! gv.c
39503____________________________________________________________________________
39504[ 17712] By: hv on 2002/08/12 11:23:06
39505 Log: Subject: Re: Smoke 17703 /pro/3gl/CPAN/perl-current
39506 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39507 Date: Mon, 12 Aug 2002 10:25:20 +0200
39508 Message-id: <20020812102347.AFB6.H.M.BRAND@hccnet.nl>
39509 gcc bug test needs -lm
39510 Branch: perl
39511 ! hints/hpux.sh
39512____________________________________________________________________________
39513[ 17711] By: hv on 2002/08/12 11:20:49
39514 Log: Subject: [PATCH s2p] Small typo correction
39515 From: "Newton, Philip" <Philip.Newton@datenrevision.de>
39516 Date: Wed, 7 Aug 2002 11:50:51 +0200
39517 Message-id: <C9A98F2128EDD411B0920008C7B337A13DCE2B@hamsem01.de.gedas.vwg>
39518 Branch: perl
39519 ! x2p/s2p.PL
39520____________________________________________________________________________
39521[ 17710] By: hv on 2002/08/12 11:17:21
39522 Log: Subject: [PATCH] pod/perlfaq4.pod
39523 From: Abigail <abigail@foad.org>
39524 Date: Tue, 30 Jul 2002 09:52:02 -0700 (17:52 BST)
39525 Message-id: <20020730095202.A6462@ucan.foad.org>
39526 Add references to Regexp::Common.
39527 Branch: perl
39528 ! pod/perlfaq4.pod
39529____________________________________________________________________________
39530[ 17709] By: nick on 2002/08/11 10:25:15
39531 Log: Fix for [perl #15986] tell/seek misbehave for :crlf
39532 Test from "Vadim Konovalov" <vkonovalov@peterstar.ru>
39533 fix by Nick I-S based on study of problem based
39534 on Vadim's analysis.
39535 Branch: perlio
39536 ! perlio.c t/io/crlf.t
39537____________________________________________________________________________
39538[ 17708] By: nick on 2002/08/11 10:22:36
39539 Log: Integrate mainline.
39540 Branch: perlio
39541 +> pod/perl58delta.pod t/op/dor.t t/op/stash.t
39542 !> (integrate 73 files)
39543____________________________________________________________________________
39544[ 17707] By: rgs on 2002/08/09 21:23:20
39545 Log: Subject: New HP-UX itanium servers
39546 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39547 Date: Wed, 07 Aug 2002 13:25:57 +0200
39548 Message-ID: <20020807132518.FCBF.H.M.BRAND@hccnet.nl>
39549 Branch: perl
39550 ! README.hpux
39551____________________________________________________________________________
39552[ 17706] By: rgs on 2002/08/09 21:00:41
39553 Log: Subject: Re: missing lower range in {} regex
39554 From: "John P. Linderman" <jpl@research.att.com>
39555 Date: Fri, 09 Aug 2002 12:48:55 -0400
39556 Message-ID: <200208091648.MAA77577@raptor.research.att.com>
39557 Branch: perl
39558 ! pod/perlre.pod
39559____________________________________________________________________________
39560[ 17705] By: rgs on 2002/08/08 20:57:59
39561 Log: More tests for the attribute syntax, from the
39562 attributes manpage.
39563 Branch: perl
39564 ! t/op/attrs.t
39565____________________________________________________________________________
39566[ 17704] By: rgs on 2002/08/08 19:47:44
39567 Log: Fix bug #16080 : an attribute list should end at '}'
39568 Branch: perl
39569 ! t/op/attrs.t toke.c
39570____________________________________________________________________________
39571[ 17703] By: hv on 2002/08/08 15:30:12
39572 Log: Update Changes
39573 Branch: perl
39574 ! Changes patchlevel.h
39575____________________________________________________________________________
8dd4f5d2
HS
39576[ 17702] By: hv on 2002/08/08 15:08:57
39577 Log: Subject: Re: README.aix
39578 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39579 Date: Tue, 30 Jul 2002 13:30:29 +0200
39580 Message-id: <20020730130812.48B9.H.M.BRAND@hccnet.nl>
39581 Branch: perl
39582 ! README.aix
39583____________________________________________________________________________
39584[ 17701] By: hv on 2002/08/08 15:06:01
39585 Log: Subject: [PATCH] Re: pp_sys.c compile failed..
39586 From: Andy Dougherty <doughera@lafayette.edu>
39587 Date: Tue, 6 Aug 2002 10:42:07 -0400 (EDT) (15:42 BST)
39588 Message-id: <Pine.SOL.4.10.10208061024250.5315-100000@maxwell.phys.lafayette.edu>
39589 Branch: perl
39590 ! hints/aix.sh
39591____________________________________________________________________________
39592[ 17700] By: hv on 2002/08/08 15:02:57
39593 Log: Subject: [DOC PATCH] perlipc.pod
39594 From: Arjen Laarhoven <arjen@nl.demon.net>
39595 Date: Tue, 6 Aug 2002 14:16:01 +0200
39596 Message-id: <20020806121601.GK40785@aragorn.noc.nl.demon.net>
39597 Branch: perl
39598 ! pod/perlipc.pod
39599____________________________________________________________________________
39600[ 17699] By: hv on 2002/08/08 14:56:56
39601 Log: Subject: [PATCH] Re: [perl #15898] coredump with variable our
39602 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
39603 Date: Fri, 2 Aug 2002 23:44:21 +0200
39604 Message-id: <20020802234421.11c62fe6.rgarciasuarez@free.fr>
39605 Branch: perl
39606 ! op.c t/op/attrs.t
39607____________________________________________________________________________
39608[ 17698] By: hv on 2002/08/08 14:52:45
39609 Log: Subject: [perl #16000] Configure -Dstatic_ext=foo builds foo as both static and dynamic
39610 From: Yitzchak Scott-Thoennes (via RT) <perlbug@perl.org>
39611 Date: 6 Aug 2002 04:28:15 -0000 (Tue 05:28 BST)
39612 Message-id: <rt-16000-32913.8.41582281961522@bugs6.perl.org>
39613 Branch: perl
39614 ! Configure
39615____________________________________________________________________________
39616[ 17697] By: hv on 2002/08/08 14:49:00
39617 Log: Subject: Doc patch for Class::Struct under 5.8.0
39618 From: Damian Conway <damian@conway.org>
39619 Date: Tue, 30 Jul 2002 23:03:14 +1000
39620 Message-id: <3D471FCF.1C7C6E6B@conway.org>
39621 Branch: perl
39622 ! lib/Class/Struct.pm
39623____________________________________________________________________________
39624[ 17696] By: hv on 2002/08/08 14:44:21
39625 Log: Subject: Re: [perl #15523] Memory Leak in split with trailing empty elements
39626 From: Slaven Rezic <slaven.rezic@berlin.de>
39627 Date: 31 Jul 2002 09:50:06 +0200
39628 Message-id: <87ado85ob5.fsf@vran.herceg.de>
39629 Branch: perl
39630 ! pp.c
39631____________________________________________________________________________
39632[ 17695] By: hv on 2002/08/08 14:40:41
39633 Log: Subject: [PATCH] Re: [perl #15479] perl 5.8.0 segfault
39634 From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
39635 Date: Fri, 2 Aug 2002 00:13:10 +0200
39636 Message-id: <20020802001310.7e1dc694.rgarciasuarez@free.fr>
39637 Branch: perl
39638 + t/op/stash.t
39639 ! MANIFEST perl.h
39640____________________________________________________________________________
39641[ 17694] By: hv on 2002/08/08 14:31:55
39642 Log: Subject: Re: [RE-PATCH] Not OK: perl v5.8.0 on PA-RISC2.0 11.00
39643 From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
39644 Date: Wed, 31 Jul 2002 16:04:02 +0200
39645 Message-id: <20020731155005.4915.H.M.BRAND@hccnet.nl>
39646 Branch: perl
39647 ! hints/hpux.sh
39648____________________________________________________________________________
39649[ 17693] By: hv on 2002/08/08 14:25:16
39650 Log: Subject: [PATCH: lib/ExtUtils/MM_Unix.pm] Be less strict about what's POD.
39651 From: Abigail <abigail@foad.org>
39652 Date: Thu, 25 Jul 2002 08:52:52 -0700 (16:52 BST)
39653 Message-id: <20020725085252.A2703@ucan.foad.org>
39654 Branch: perl
39655 ! lib/ExtUtils/MM_Unix.pm
39656____________________________________________________________________________
39657[ 17692] By: hv on 2002/08/08 14:20:05
39658 Log: Subject: [PATCH] README.jp and README.cn
39659 From: Autrijus Tang <autrijus@autrijus.org>
39660 Date: Thu, 25 Jul 2002 07:05:11 +0800
39661 Message-id: <20020724230511.GA1327@not.autrijus.org>
39662 Branch: perl
39663 ! README.cn README.jp
39664____________________________________________________________________________
39665[ 17691] By: hv on 2002/08/08 14:01:50
39666 Log: Subject: [perl #15398] Usage::pod2usage looks for perldoc in $Config{bin} and not in $Config{scriptdir}
39667 From: Henrik Tougaard (via RT) <perlbug@perl.org>
39668 Date: 23 Jul 2002 13:45:49 -0000 (Tue 14:45 BST)
39669 Message-id: <rt-15398-31095.6.30466042998663@perl>
39670 Branch: perl
39671 ! lib/Pod/Usage.pm
39672____________________________________________________________________________
39673[ 17690] By: rgs on 2002/08/07 19:56:42
39674 Log: Doc fix : the symbol for COPs wasn't documented.
39675 Branch: perl
39676 ! opcode.pl
39677____________________________________________________________________________
39678[ 17689] By: rgs on 2002/08/06 20:45:30
39679 Log: Subject: Re: no warnings 'io';
39680 From: Nicholas Clark <nick@unfortu.net>
39681 Date: Sat, 27 Jul 2002 21:49:55 +0100
39682 Message-ID: <20020727204954.GB5117@Bagpuss.unfortu.net>
39683
39684 Plus a little bit of regression tests.
39685 Branch: perl
39686 ! t/lib/warnings/pp_hot util.c
39687____________________________________________________________________________
39688[ 17688] By: rgs on 2002/08/06 20:04:19
39689 Log: Subject: [PATCH] XS build fix for VMS
39690 From: "Craig A. Berry" <craigberry@mac.com>
39691 Date: Sun, 4 Aug 2002 12:13:06 -0500
39692 Message-ID: <a05111b07b97256e1c335@[172.16.52.1]>
39693 Branch: perl
39694 ! vms/descrip_mms.template
39695____________________________________________________________________________
39696[ 17687] By: rgs on 2002/08/06 19:50:12
39697 Log: PerlIO::scalar wasn't able to read from non-string
39698 scalar ; now stringifies its argument.
39699 Branch: perl
39700 ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
39701____________________________________________________________________________
39702[ 17686] By: rgs on 2002/08/06 19:10:51
39703 Log: More regression tests for $^H and %^H.
39704 Add a TODO test for eval "" preserving %^H.
39705 Branch: perl
39706 ! t/comp/hints.t
39707____________________________________________________________________________
39708[ 17685] By: hv on 2002/08/05 22:42:09
39709 Log: Subject: Re: mention of "use sort" botched in perlfunc? + PATCH
39710 From: "John P. Linderman" <jpl@research.att.com>
39711 Date: Sun, 21 Jul 2002 12:13:32 -0400 (17:13 BST)
39712 Message-id: <200207211613.MAA69505@raptor.research.att.com>
39713 Branch: perl
39714 ! lib/sort.pm lib/sort.t
39715____________________________________________________________________________
39716[ 17684] By: hv on 2002/08/05 22:35:22
39717 Log: Integrate from perlio: change #17653 fixes bug RT15283
39718 Branch: perl
39719 !> ext/PerlIO/via/via.xs
39720____________________________________________________________________________
39721[ 17683] By: hv on 2002/08/05 22:26:45
39722 Log: Integrate from maint-5.6/macperl via macperl
39723 Changes 17660, 17661, 17662, 17663, 17664
39724 Branch: perl
39725 !> perl.c
39726____________________________________________________________________________
39727[ 17682] By: hv on 2002/08/05 15:04:54
39728 Log: Subject: Defined-or patch (cleaned up)
39729 From: "Brent Dax" <brentdax@cpan.org>
39730 Date: Fri, 26 Jul 2002 05:41:52 -0700 (13:41 BST)
39731 Message-id: <000001c234a1$d1ca72c0$6501a8c0@deepblue>
39732 Branch: perl
39733 + t/op/dor.t
39734 ! MANIFEST embed.h ext/B/B/Deparse.pm ext/Opcode/Opcode.pm
39735 ! keywords.h keywords.pl op.c opcode.h opcode.pl opnames.h
39736 ! perly.c perly.h perly.y perly_c.diff pod/perlop.pod pp.sym
39737 ! pp_ctl.c pp_hot.c pp_proto.h toke.c vms/perly_c.vms
39738 ! vms/perly_h.vms
39739____________________________________________________________________________
39740[ 17681] By: hv on 2002/08/05 14:41:23
39741 Log: typo
39742 Branch: perl
39743 ! keywords.h keywords.pl
39744____________________________________________________________________________
39745[ 17680] By: hv on 2002/08/05 14:33:39
39746 Log: warn that keywords.h is generated
39747 Branch: perl
39748 ! keywords.h keywords.pl
39749____________________________________________________________________________
39750[ 17679] By: hv on 2002/08/04 23:40:22
39751 Log: again: #17678 caused test failures in pod2html,
39752 in which $1 could leak from previous regexp
39753 Branch: perl
39754 ! mg.c
39755____________________________________________________________________________
39756[ 17678] By: hv on 2002/08/04 15:34:19
39757 Log: Subject: Re: [ID 20020704.001] my $foo = $1 won't taint $foo (with use re 'taint')
39758 From: hv@crypt.org
39759 Date: Sun, 04 Aug 2002 17:40:30 +0100
39760 Message-id: <200208041640.g74GeUU25061@crypt.compulink.co.uk>
39761 Branch: perl
39762 ! mg.c t/op/taint.t
39763____________________________________________________________________________
39764[ 17677] By: hv on 2002/08/04 15:25:25
39765 Log: Main branch no longer needs op/taint.t version check.
39766 Branch: perl
39767 ! t/op/taint.t
39768____________________________________________________________________________
39769[ 17676] By: hv on 2002/08/04 15:14:09
39770 Log: Subject: Re: [PATCH] Re: taint news
39771 From: Rick Delaney <rick.delaney@rogers.com>
39772 Date: 04 Aug 2002 00:28:58 EDT
39773 Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
39774 Ref: 20020208.005
39775 Branch: perl
39776 ! pp_sys.c
39777____________________________________________________________________________
39778[ 17675] By: hv on 2002/08/04 01:48:36
39779 Log: Fix email address for Kragen Sitaker <kragen@pobox.com>.
39780 Branch: perl
39781 ! AUTHORS
39782____________________________________________________________________________
39783[ 17674] By: hv on 2002/08/04 01:30:11
39784 Log: Subject: [PATCH] AUTHORS
39785 From: Colin Watson <colinw@zeus.com>
39786 Date: Thu, 25 Jul 2002 15:54:37 +0100
39787 Message-id: <20020725145437.GC4921@zeus.com>
39788 Branch: perl
39789 ! AUTHORS
39790____________________________________________________________________________
39791[ 17673] By: hv on 2002/08/04 01:27:36
39792 Log: Subject: [PATCH] AUTHORS
39793 From: Walt Mankowski <waltman@pobox.com>
39794 Date: Sat, 20 Jul 2002 22:56:12 -0400 (Sun 03:56 BST)
39795 Message-id: <20020721025612.GB15958@pobox.com>
39796 Branch: perl
39797 ! AUTHORS
39798____________________________________________________________________________
39799[ 17672] By: hv on 2002/08/04 01:25:14
39800 Log: Subject: Re: mention of "use sort" botched in perlfunc?
39801 From: Michael G Schwern <schwern@pobox.com>
39802 Date: Sat, 20 Jul 2002 13:49:58 -0400 (18:49 BST)
39803 Message-id: <20020720174958.GL362@ool-18b93024.dyn.optonline.net>
39804 Branch: perl
39805 ! pod/perlfunc.pod
39806____________________________________________________________________________
39807[ 17671] By: hv on 2002/08/04 01:11:32
39808 Log: Change version from 5.8.0 to 5.9.0.
39809 Branch: perl
39810 ! Configure NetWare/Makefile NetWare/config_H.wc
39811 ! Porting/config.sh Porting/config_H README.win32 config_h.SH
39812 ! cygwin/perlld.in epoc/config.sh epoc/createpkg.pl
39813 ! hints/dgux.sh installperl lib/ExtUtils/MM_NW5.pm makedef.pl
39814 ! patchlevel.h win32/Makefile win32/makefile.mk
39815 ! wince/Makefile.ce
39816____________________________________________________________________________
39817[ 17670] By: pudge on 2002/07/30 03:19:03
39818 Log: Silent warnings in MM_MacOS
39819 Branch: maint-5.8/macperl
39820 ! lib/ExtUtils/MM_MacOS.pm
39821____________________________________________________________________________
39822[ 17669] By: pudge on 2002/07/30 03:18:47
39823 Log: Silent warnings in MM_MacOS
39824 Branch: macperl
39825 ! lib/ExtUtils/MM_MacOS.pm
39826____________________________________________________________________________
39827[ 17668] By: pudge on 2002/07/30 03:16:52
39828 Log: Help fixes from Thomas Wegner
39829 Branch: macperl
39830 ! macos/macperl/BuildHelpIndex macos/macperl/MacPerl.podhelp
39831 Branch: maint-5.6/macperl
39832 ! macos/macperl/BuildHelpIndex macos/macperl/MacPerl.podhelp
39833 Branch: maint-5.8/macperl
39834 ! macos/macperl/BuildHelpIndex macos/macperl/MacPerl.podhelp
39835____________________________________________________________________________
39836[ 17667] By: pudge on 2002/07/29 20:42:43
39837 Log: Integrate perl
39838 Branch: macperl
39839 +> Changes5.8 pod/perl58delta.pod
39840 !> (integrate 36 files)
39841____________________________________________________________________________
39842[ 17666] By: pudge on 2002/07/29 20:04:54
39843 Log: Integrate from maint-5.6/macperl
39844
39845 Changes 17660, 17661, 17662, 17663, 17664
39846 Branch: macperl
39847 ! macos/ext/Mac/Dialogs/Dialogs.pm macos/lib/Mac/AETE/App.pm
39848 ! macos/lib/Mac/AETE/Format/Glue.pm macos/lib/Mac/OSA/Simple.pm
39849 ! macos/macperl/Droplets/gluemac.plx perl.c
39850____________________________________________________________________________
39851[ 17665] By: pudge on 2002/07/29 19:39:58
39852 Log: Integrate from maint-5.6/macperl
39853
39854 Changes 17660, 17661, 17662, 17663, 17664
39855 Branch: maint-5.8/macperl
39856 ! macos/ext/Mac/Dialogs/Dialogs.pm macos/lib/Mac/AETE/App.pm
39857 ! macos/lib/Mac/AETE/Format/Glue.pm macos/lib/Mac/OSA/Simple.pm
39858 ! macos/macperl/Droplets/gluemac.plx perl.c
39859____________________________________________________________________________
39860[ 17664] By: pudge on 2002/07/29 19:20:51
39861 Log: Neglected to include old bugfix from main branch
39862 Branch: maint-5.6/macperl
39863 ! perl.c
39864____________________________________________________________________________
39865[ 17663] By: pudge on 2002/07/29 18:25:57
39866 Log: Count line numbers properly in MacPerl app
39867 Branch: maint-5.6/macperl
39868 ! perl.c
39869____________________________________________________________________________
39870[ 17662] By: pudge on 2002/07/29 18:21:16
39871 Log: Make Mac::Glue work to glue Mac OS X apps under Classic
39872 Branch: maint-5.6/macperl
39873 ! macos/lib/Mac/AETE/App.pm macos/lib/Mac/AETE/Format/Glue.pm
39874____________________________________________________________________________
39875[ 17661] By: pudge on 2002/07/29 18:20:46
39876 Log: gluemac failed with some paths
39877 Branch: maint-5.6/macperl
39878 ! macos/macperl/Droplets/gluemac.plx
39879____________________________________________________________________________
39880[ 17660] By: pudge on 2002/07/29 18:20:12
39881 Log: Fix long-standing bug with popup menus not working in dialogs
39882 Branch: maint-5.6/macperl
39883 ! macos/ext/Mac/Dialogs/Dialogs.pm
39884____________________________________________________________________________
39885[ 17659] By: pudge on 2002/07/29 18:19:00
39886 Log: Update test script
39887 Branch: maint-5.6/macperl
39888 ! macos/MacPerlTests.cmd
39889____________________________________________________________________________
39890[ 17658] By: pudge on 2002/07/29 18:18:35
39891 Log: Portability fixes for blib
39892 (already in 5.8/5.9)
39893 Branch: maint-5.6/macperl
39894 ! lib/blib.pm
39895____________________________________________________________________________
39896[ 17657] By: pudge on 2002/07/29 18:17:54
39897 Log: Minor test fixes
39898 Branch: maint-5.6/macperl
39899 ! t/lib/filespec.t t/op/magic.t
39900____________________________________________________________________________
39901[ 17656] By: ams on 2002/07/28 06:12:33
39902 Log: Subject: [PATCH] Typo in regcomp.c
39903 From: Chris Ball <chris@cpan.org>
39904 Date: 26 Jul 2002 17:49:35 +0100
39905 Message-Id: <868z3yzb6o.fsf@void.printf.net>
39906 (With additional tweak to s_reginclasslen.)
39907 Branch: perl
39908 ! regcomp.c
39909____________________________________________________________________________
39910[ 17655] By: jhi on 2002/07/25 20:37:16
39911 Log: Upgrade to Unicode::Collate 0.20.
39912 Branch: perl
39913 ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
39914 ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
39915____________________________________________________________________________
39916[ 17654] By: jhi on 2002/07/23 16:33:52
39917 Log: Commas, schcommas.
39918 Branch: perl
39919 ! patchlevel.h
39920____________________________________________________________________________
39921[ 17653] By: nick on 2002/07/23 07:56:25
39922 Log: Fix #15283 - binmode() was not passing mode
39923 to PUSHED method called from PerlIO::via.
39924 Branch: perlio
39925 ! ext/PerlIO/via/via.xs
39926____________________________________________________________________________
39927[ 17652] By: nick on 2002/07/23 07:55:03
39928 Log: Integrate mainline to just past perl5.8.0
39929 Branch: perlio
39930 +> Changes5.8
39931 !> Changes MANIFEST
39932____________________________________________________________________________
39933[ 17651] By: pudge on 2002/07/23 03:24:35
39934 Log: Integrate maint-5.6/perl
39935 Branch: maint-5.6/macperl
39936 +> t/win32/longpath.t
39937 !> (integrate 35 files)
39938____________________________________________________________________________
39939[ 17650] By: gsar on 2002/07/22 15:27:48
39940 Log: create macperl-5.8 branch
39941 Branch: maint-5.8/macperl
39942 +> (branch 3480 files)
39943____________________________________________________________________________
39944[ 17649] By: jhi on 2002/07/21 08:44:34
39945 Log: Because of #17429.
39946 Branch: maint-5.8/perl
39947 ! pod/perldelta.pod
39948____________________________________________________________________________
39949[ 17648] By: chip on 2002/07/19 22:51:19
39950 Log: Update Changes. (Including incorrect change #.)
39951 Branch: maint-5.005/perl
39952 ! Changes
39953____________________________________________________________________________
39954[ 17647] By: chip on 2002/07/19 22:47:57
39955 Log: ensure that hashes never attempt to malloc with a negative size
39956 From: Hugo <hv@crypt.compulink.co.uk>
39957 Subject: Re: [ID 20000421.002] Math::BigInt out of memory?
39958 Branch: maint-5.005/perl
39959 ! hv.c
39960____________________________________________________________________________
39961[ 17646] By: chip on 2002/07/19 20:15:23
39962 Log: Update Changes in preparation for 5.005_04.
39963 Branch: maint-5.005/perl
39964 ! Changes
39965____________________________________________________________________________
39966[ 17645] By: gsar on 2002/07/19 19:29:57
39967 Log: create maint-5.8 branch from perl/...@17638
39968 Branch: maint-5.8/perl
39969 +> (branch 2829 files)
39970____________________________________________________________________________
39971[ 17644] By: jhi on 2002/07/19 18:55:18
39972 Log: Copy perldelta as perl58delta, purge the perldelta.
39973 Branch: perl
39974 + pod/perl58delta.pod
39975 ! MANIFEST pod/perldelta.pod
39976____________________________________________________________________________
39977[ 17642] By: jhi on 2002/07/19 16:37:39
39978 Log: Update Changes; mainly to get the DEVELNNNNN stamp back in business.
39979 Branch: perl
39980 ! Changes patchlevel.h
39981____________________________________________________________________________
805e355f
JH
39982[ 17641] By: jhi on 2002/07/19 16:31:08
39983 Log: Integrate perlio (no changes, but that's fine).
39984 Branch: perl
39985 !> embed.fnc perl.h
39986____________________________________________________________________________
39987[ 17640] By: nick on 2002/07/19 07:09:37
39988 Log: Integrate mainline@17638, apply couple
39989 of whitespace edits so matches perl5.8.0 exactly.
39990 Branch: perlio
39991 ! embed.fnc perl.h
39992 !> AUTHORS Changes Configure INSTALL NetWare/Makefile
39993 !> NetWare/t/NWScripts.pl Porting/config.sh Porting/config_H
39994 !> lib/File/stat.pm patchlevel.h pod/perldelta.pod
39995 !> pod/perlfunc.pod pod/perlhist.pod pod/perlthrtut.pod
39996 !> pod/perltoc.pod pod/perlvar.pod util.c
39997____________________________________________________________________________
39998[ 17639] By: jhi on 2002/07/19 00:47:18
39999 Log: It's all yours, Hugo.
40000 Branch: perl
40001 + Changes5.8
40002 ! Changes MANIFEST