Benchmark notes (from Barrie Slaymaker <barries@slaysys.com>)
[p5sagit/p5-mst-13.2.git] / Changes
1 Please note: This file provides a summary of significant changes
2 between versions and sub-versions of Perl, not necessarily a complete
3 list of each modification.  If you'd like more detailed information,
4 please consult the comments in the patches on which the relevant
5 release of Perl is based.  (Patches can be found on any CPAN
6 site, in the .../src/5.0 directory for full version releases,
7 or in the .../src/5/0/unsupported directory for sub-version
8 releases.)
9
10
11                            ---------------
12                             CAST AND CREW
13                            ---------------
14
15 To give due honor to those who have made Perl what is is today,
16 here are some of the more common names in the Changes file, and their
17 current addresses (as of July 1998):
18
19     Gisle Aas           <gisle@aas.no>
20     Abigail             <abigail@fnx.com>
21     Kenneth Albanowski  <kjahds@kjahds.com>
22     Russ Allbery        <rra@stanford.edu>
23     Spider Boardman     <spider@orb.nashua.nh.us>
24     Tom Christiansen    <tchrist@perl.com>
25     Jan Dubois          <jan.dubois@ibm.net>
26     Hallvard B Furuseth <h.b.furuseth@usit.uio.no>
27     M. J. T. Guy        <mjtg@cus.cam.ac.uk>
28     Jarkko Hietaniemi   <jhi@iki.fi>
29     Nick Ing-Simmons    <nik@tiuk.ti.com>
30     Andreas Koenig      <a.koenig@mind.de>
31     Doug MacEachern     <dougm@opengroup.org>
32     Paul Marquess       <pmarquess@bfsec.bt.co.uk>
33     Stephen McCamant    <alias@mcs.com>
34     Laszlo Molnar       <laszlo.molnar@eth.ericsson.se>
35     Hans Mulder         <hansmu@xs4all.nl>
36     Matthias Neeracher  <neeri@iis.ee.ethz.ch>
37     Jeff Okamoto        <okamoto@hpcc123.corp.hp.com>
38     Ulrich Pfeifer      <pfeifer@charly.informatik.uni-dortmund.de>
39     Tom Phoenix         <rootbeer@teleport.com>
40     Joshua Pritikin     <joshua.pritikin@db.com>
41     Norbert Pueschel    <pueschel@imsdd.meb.uni-bonn.de>
42     Dean Roehrich       <roehrich@cray.com>
43     Hugo van der Sanden <hv@crypt0.demon.co.uk>
44     Roderick Schertler  <roderick@argon.org>
45     Kurt D. Starsinic   <kstar@isinet.com>
46     Dan Sugalski        <sugalskd@osshe.edu>
47     Larry W. Virden     <lvirden@cas.org>
48     Ilya Zakharevich    <ilya@math.ohio-state.edu>
49
50 And the Keepers of the Patch Pumpkin:
51
52     Charles Bailey      <bailey@newman.upenn.edu>
53     Graham Barr         <gbarr@ti.com>
54     Malcolm Beattie     <mbeattie@sable.ox.ac.uk>
55     Tim Bunce           <Tim.Bunce@ig.co.uk>
56     Andy Dougherty      <doughera@lafcol.lafayette.edu>
57     Gurusamy Sarathy    <gsar@umich.edu>
58     Chip Salzenberg     <chip@perl.com>
59
60 And, of course, the Author of Perl:
61
62     Larry Wall          <larry@wall.org>
63
64
65 NOTE: Each change entry shows the change number; who checked it into the
66 repository; when; description of the change; which branch the change
67 happened in; and the affected files.  The file lists have a short symbolic
68 indicator:
69
70             !       modified
71             +       added
72             -       deleted
73             +>      branched (from elsewhere)
74             !>      merged changes (from elsewhere)
75
76
77 ----------------
78 Version 5.005_62        Development release working toward 5.006
79 ----------------
80
81 ____________________________________________________________________________
82 [  4356] By: gsar                                  on 1999/10/12  16:53:31
83         Log: add File::BSDGlob as File::Glob and load it at compile-time
84              if perl was built with -DPERL_INTERNAL_GLOB
85              
86              TODO: we currently get a compile-time failure if File/Glob.pm
87              can't be found; such failure needs to be made to emit a warning
88              and use the csh implementation instead
89      Branch: perl
90            + ext/File/Glob/Changes ext/File/Glob/Glob.pm
91            + ext/File/Glob/Glob.xs ext/File/Glob/Makefile.PL
92            + ext/File/Glob/TODO ext/File/Glob/bsd_glob.c
93            + ext/File/Glob/bsd_glob.h t/lib/glob-basic.t
94            + t/lib/glob-global.t t/lib/glob-taint.t
95            ! MANIFEST op.c t/op/glob.t t/op/readdir.t t/op/taint.t
96            ! t/pragma/overload.t
97 ____________________________________________________________________________
98 [  4355] By: jhi                                   on 1999/10/12  15:30:05
99         Log: Revert the parts of #3926 that outlawed character ranges
100              that have character classes such as \w as either endpoint.
101              This change re-establishes the old behavior which meant that
102              such ranges weren't really ranges, the "-" was literal.
103              Moreover, this change also fixes the old behavior to be
104              more consistent: [\w-.] and [\s-\w] worked, but [.-\w] didn't.
105              Now they all do work as described above.  The #3926 outlawed
106              all of those.
107      Branch: cfgperl
108            ! pod/perldiag.pod pod/perlre.pod regcomp.c t/op/re_tests
109 ____________________________________________________________________________
110 [  4354] By: jhi                                   on 1999/10/12  09:58:59
111         Log: Integrate with Sarathy.
112      Branch: cfgperl
113           !> (integrate 33 files)
114 ____________________________________________________________________________
115 [  4353] By: gsar                                  on 1999/10/12  05:53:40
116         Log: apply parts of LynxOS patches from Alan Johnson
117              <johnson@alonn.gemse.fr>
118      Branch: perl
119            ! Changes hints/lynxos.sh pod/perldelta.pod t/lib/safe2.t
120            ! t/op/groups.t
121 ____________________________________________________________________________
122 [  4352] By: gsar                                  on 1999/10/12  05:24:39
123         Log: allow any unpack specifier to take a count via '/'
124              (from Ilya Zakharevich)
125      Branch: perl
126            ! pp.c t/op/pack.t
127 ____________________________________________________________________________
128 [  4351] By: gsar                                  on 1999/10/12  05:02:35
129         Log: avoid warnings
130      Branch: perl
131            ! malloc.c
132 ____________________________________________________________________________
133 [  4350] By: gsar                                  on 1999/10/12  04:50:52
134         Log: various cleanups
135      Branch: perl
136            ! ext/Devel/DProf/DProf.xs op.c perl.c perly.c perly.y
137            ! perly_c.diff pp_hot.c toke.c vms/perly_c.vms win32/config.bc
138            ! win32/config.gc win32/config.vc win32/config_H.bc
139            ! win32/config_H.gc win32/config_H.vc win32/config_sh.PL
140 ____________________________________________________________________________
141 [  4349] By: gsar                                  on 1999/10/12  00:23:11
142         Log: update Changes, patchlevel etc.
143      Branch: perl
144            ! Changes Porting/findvars patchlevel.h win32/Makefile
145            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
146            ! win32/makefile.mk
147 ____________________________________________________________________________
148 [  4348] By: gsar                                  on 1999/10/11  23:11:57
149         Log: add vec() example from Chaim Frenkel <chaimf@pobox.com>
150      Branch: perl
151            ! pod/perlfunc.pod
152 ____________________________________________________________________________
153 [  4347] By: jhi                                   on 1999/10/11  21:25:03
154         Log: Sparc Linux -Duseshrplib fix.
155              
156              From: Brian Jepson <bjepson@home.com>
157              To: Nick Ing-Simmons <nick@ing-simmons.net>
158              cc: perl5-porters@perl.org
159              Subject: Re: [ID 19990813.002] Can't build Perl 5.005_60 on SPARC/Linux with -Duseshrplib
160              Date: Fri, 20 Aug 1999 11:25:17 -0500 (EST)
161              Message-ID: <Pine.LNX.4.10.9908201123570.5116-100000@cx384756-a.sking1.ri.home.com>
162      Branch: cfgperl
163            ! hints/linux.sh
164 ____________________________________________________________________________
165 [  4346] By: gsar                                  on 1999/10/11  20:28:32
166         Log: more pack/unpack documentation (from Ilya Zakharevich); changed
167              the behavior of 'Z*' and 'Z3' to always pack a trailing
168              null byte; changed documentation to suit; added test
169      Branch: perl
170            ! pod/perlfunc.pod pp.c t/op/pack.t
171 ____________________________________________________________________________
172 [  4345] By: gsar                                  on 1999/10/11  19:15:46
173         Log: writing to perllocal.pod fails if it was never created;
174              tweak pseudo-hash example (both suggested by Michael G Schwern
175              <schwern@pobox.com>)
176      Branch: perl
177            ! lib/ExtUtils/MM_Unix.pm pod/perlref.pod
178 ____________________________________________________________________________
179 [  4344] By: gsar                                  on 1999/10/11  17:57:31
180         Log: slightly edited variant of suggested patch
181              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
182              Date: Thu, 9 Sep 1999 18:35:37 -0400
183              Message-ID: <19990909183537.A28682@monk.mps.ohio-state.edu>
184              Subject: [PATCH 5.005_58] How RExen match?
185      Branch: perl
186            ! pod/perlre.pod
187 ____________________________________________________________________________
188 [  4343] By: gsar                                  on 1999/10/11  16:55:48
189         Log: change#4327 was inefficient
190      Branch: perl
191            ! lib/lib.pm
192 ____________________________________________________________________________
193 [  4342] By: jhi                                   on 1999/10/11  07:01:46
194         Log: Integrate with Sarathy.
195      Branch: cfgperl
196           +> pod/perlhack.pod
197           !> (integrate 28 files)
198 ____________________________________________________________________________
199 [  4341] By: jhi                                   on 1999/10/11  06:37:47
200         Log: The 2.5th cut at the AIX C++ extension problems.
201      Branch: cfgperl
202            ! hints/aix.sh
203 ____________________________________________________________________________
204 [  4340] By: gsar                                  on 1999/10/10  23:48:07
205         Log: add perlhack.pod from Nathan Torkington <gnat@frii.com>
206      Branch: perl
207            + pod/perlhack.pod
208            ! MANIFEST pod/Makefile pod/perl.pod pod/roffitall
209 ____________________________________________________________________________
210 [  4339] By: gsar                                  on 1999/10/10  20:42:40
211         Log: revert SAVEDESTRUCTOR() to accepting void(*)(void*) for source
212              compatibility; introduce SAVEDESTRUCTOR_X() that accepts
213              void(*)(pTHX_ void*)
214      Branch: perl
215            ! embed.h embed.pl ext/Devel/DProf/DProf.xs global.sym mg.c
216            ! objXSUB.h perl.h perlapi.c perly.c perly.y perly_c.diff
217            ! pod/perlguts.pod pod/perltoc.pod pp.c pp_hot.c proto.h
218            ! regcomp.h regexec.c scope.c scope.h toke.c vms/perly_c.vms
219 ____________________________________________________________________________
220 [  4338] By: gsar                                  on 1999/10/10  20:38:59
221         Log: add missing new diagnostics to perldelta
222      Branch: perl
223            ! pod/perldelta.pod
224 ____________________________________________________________________________
225 [  4337] By: gsar                                  on 1999/10/10  17:40:13
226         Log: update perldelta for change#3406
227      Branch: perl
228            ! embed.pl pod/perldata.pod pod/perldelta.pod
229 ____________________________________________________________________________
230 [  4336] By: gsar                                  on 1999/10/10  16:33:14
231         Log: integrate cfgperl contents into mainline
232      Branch: perl
233           +> ext/DynaLoader/hints/aix.pl
234           !> MANIFEST ext/DynaLoader/dl_aix.xs hints/aix.sh hints/irix_6.sh
235           !> makedef.pl perl.h pod/perldelta.pod
236 ____________________________________________________________________________
237 [  4335] By: jhi                                   on 1999/10/10  11:09:48
238         Log: Update perldelta.
239      Branch: cfgperl
240            ! pod/perldelta.pod
241 ____________________________________________________________________________
242 [  4334] By: jhi                                   on 1999/10/10  10:31:46
243         Log: Integrate with Sarathy.
244      Branch: cfgperl
245           +> win32/genmk95.pl
246           !> Changes MANIFEST README.win32 cop.h ext/Thread/Thread.pm
247           !> ext/Thread/Thread.xs ext/Thread/Thread/Queue.pm
248           !> ext/Thread/Thread/Semaphore.pm ext/Thread/Thread/Specific.pm
249           !> ext/Thread/sync.t ext/Thread/sync2.t installperl
250           !> lib/Exporter.pm lib/ExtUtils/MM_Unix.pm
251           !> lib/ExtUtils/MM_Win32.pm lib/diagnostics.pm lib/lib.pm perl.c
252           !> pod/perldelta.pod pod/perlfunc.pod pp_ctl.c pp_hot.c pp_sys.c
253           !> utils/perldoc.PL win32/makefile.mk
254 ____________________________________________________________________________
255 [  4333] By: gsar                                  on 1999/10/10  06:33:15
256         Log: install pods to 'pods' rather than 'pod' on cygwin (modified
257              a patch suggested by cwilson@cc865179-c.chmbl1.ga.home.com)
258      Branch: perl
259            ! installperl lib/diagnostics.pm utils/perldoc.PL
260 ____________________________________________________________________________
261 [  4332] By: gsar                                  on 1999/10/10  05:15:26
262         Log: add $VERSION
263      Branch: perl
264            ! lib/Exporter.pm
265 ____________________________________________________________________________
266 [  4331] By: gsar                                  on 1999/10/10  05:10:22
267         Log: describe what can go in an export list (from Anno Siegel
268              <anno4000@lublin.zrz.tu-berlin.de>)
269      Branch: perl
270            ! lib/Exporter.pm
271 ____________________________________________________________________________
272 [  4330] By: gsar                                  on 1999/10/10  04:50:43
273         Log: more basic support for building modules under Windows 95/98
274              (applied relevant parts from a patch suggested by
275              Jochen Wiedmann <joe@ispsoft.de>)
276      Branch: perl
277            ! lib/ExtUtils/MM_Unix.pm
278 ____________________________________________________________________________
279 [  4329] By: gsar                                  on 1999/10/10  04:28:38
280         Log: rudimentary support for building under Windows 95/98 (from
281              Benjamin Stuhl <sho_pi@hotmail.com>)
282      Branch: perl
283            + win32/genmk95.pl
284            ! MANIFEST README.win32 lib/ExtUtils/MM_Win32.pm
285            ! win32/makefile.mk
286 ____________________________________________________________________________
287 [  4328] By: gsar                                  on 1999/10/10  03:37:21
288         Log: fix two leaks in Thread.xs (from Eugene Alterman
289              <Eugene.Alterman@bremer-inc.com>); convert places with
290              'use attrs' to new attributes syntax
291      Branch: perl
292            ! ext/Thread/Thread.pm ext/Thread/Thread.xs
293            ! ext/Thread/Thread/Queue.pm ext/Thread/Thread/Semaphore.pm
294            ! ext/Thread/Thread/Specific.pm ext/Thread/sync.t
295            ! ext/Thread/sync2.t
296 ____________________________________________________________________________
297 [  4327] By: gsar                                  on 1999/10/10  02:23:52
298         Log: avoid duplicates in @INC, they cause leaks in mod_perl etc
299              (suggested by Tod Irwin <irwin@stockmaster.com>)
300      Branch: perl
301            ! lib/lib.pm
302 ____________________________________________________________________________
303 [  4326] By: gsar                                  on 1999/10/10  00:51:48
304         Log: better documentation for recv() (from Anton Berezin
305              <tobez@plab.ku.dk>)
306      Branch: perl
307            ! pod/perlfunc.pod
308 ____________________________________________________________________________
309 [  4325] By: gsar                                  on 1999/10/09  22:46:23
310         Log: perldelta updates (see TODO markers)
311      Branch: perl
312            ! Changes pod/perldelta.pod pp_sys.c
313 ____________________________________________________________________________
314 [  4324] By: gsar                                  on 1999/10/09  19:43:10
315         Log: fix Exporter::export_to_level() documentation
316      Branch: perl
317            ! lib/Exporter.pm
318 ____________________________________________________________________________
319 [  4323] By: gsar                                  on 1999/10/09  18:48:31
320         Log: don't run END blocks when running under -c switch (older,
321              rarely useful behavior may still be obtained by putting
322              BEGIN { $^C = 0; exit; } at the end of the script)
323      Branch: perl
324            ! perl.c
325 ____________________________________________________________________________
326 [  4322] By: jhi                                   on 1999/10/09  05:31:26
327         Log: While awaiting a good test program to detect the broken gcc.
328              From: Thomas Conté <tom@fr.uu.net>
329              To: <jhi@iki.fi>
330              Cc: <perl5-porters@perl.org>
331              Subject: Re: [ID 19990825.007] test t/lib/ipc_sysv.t failing under irix 6.4
332              Date: Wed, 6 Oct 1999 19:56:29 +0200
333              Message-ID: <000a01bf1024$1d938f20$252ad0d4@eng.iway.fr>
334      Branch: cfgperl
335            ! hints/irix_6.sh perl.h
336 ____________________________________________________________________________
337 [  4321] By: gsar                                  on 1999/10/09  00:41:02
338         Log: POPSUB() gave up the refcount to the CV before LEAVE had a chance to
339              clear entries in the CV's pad, leading to coredumps when CV had no
340              other references to it; this is a slightly edited version of the
341              patch suggested by Russel O'Connor <roconnor@world.std.com>
342      Branch: perl
343            ! cop.h pp_ctl.c pp_hot.c
344 ____________________________________________________________________________
345 [  4320] By: gsar                                  on 1999/10/08  22:50:51
346         Log: revert POP{SUB,LOOP}{1,2} logic to the simpler pre-5.003_24
347              situation (assumptions about cx invalidation are not valid
348              anymore)
349      Branch: perl
350            ! cop.h pp_ctl.c pp_hot.c
351 ____________________________________________________________________________
352 [  4319] By: jhi                                   on 1999/10/08  14:33:31
353         Log: Integrate with Sarathy.
354      Branch: cfgperl
355           !> cop.h ext/Thread/Thread.xs op.c opcode.h perl.c perl.h perly.c
356           !> perly.y pod/perldiag.pod pod/perlfunc.pod pp_ctl.c pp_sys.c
357           !> t/comp/bproto.t thrdvar.h toke.c util.c
358 ____________________________________________________________________________
359 [  4318] By: jhi                                   on 1999/10/08  13:51:34
360         Log: The second cut at AIX C++ extension troubles.
361      Branch: cfgperl
362            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl
363            ! hints/aix.sh
364 ____________________________________________________________________________
365 [  4317] By: jhi                                   on 1999/10/08  10:44:13
366         Log: The first cut at fixing Perl extensions written in C++ in AIX,
367              statics don't get initialized right.  This patch at least
368              doesn't seem to break the build in my AIX, but unfortunately
369              I don't have the IBM C++ to do further testing.
370              
371              Problem reported by Stephanie Beals in
372              From: bealzy@us.ibm.com
373              To: perl5-porters@perl.org
374              Subject: [ID 19991007.005] DynaLoader/dl_aix.xs problem using load and unload on AIX
375              Date: Thu, 7 Oct 1999 15:05:54 -0400
376              Message-Id: <85256803.0068E70D.00@D51MTA03.pok.ibm.com>
377      Branch: cfgperl
378            + ext/DynaLoader/hints/aix.pl
379            ! MANIFEST ext/DynaLoader/dl_aix.xs hints/aix.sh
380 ____________________________________________________________________________
381 [  4316] By: gsar                                  on 1999/10/08  10:26:15
382         Log: remove kludgey duplicate background error avoidance (caused
383              "leaks"; %@ wasn't even user-visible under -Dusethreads);
384              only repeats of most recent error are now avoided
385      Branch: perl
386            ! ext/Thread/Thread.xs perl.c perl.h pp_ctl.c thrdvar.h util.c
387 ____________________________________________________________________________
388 [  4315] By: jhi                                   on 1999/10/08  09:48:59
389         Log: Fix omission.
390      Branch: cfgperl
391            ! makedef.pl
392 ____________________________________________________________________________
393 [  4314] By: gsar                                  on 1999/10/08  07:17:01
394         Log: extend change#2299 to C<use> (fixes scoping problems in
395              C<if (...) { use foo; ... }>)
396      Branch: perl
397            ! op.c
398 ____________________________________________________________________________
399 [  4313] By: gsar                                  on 1999/10/08  04:52:19
400         Log: small tweak for change#4309
401      Branch: perl
402            ! op.c
403 ____________________________________________________________________________
404 [  4312] By: gsar                                  on 1999/10/08  02:31:13
405         Log: add suggested patch =~ s/NOTOP/OP_NOT/ with tests
406              From: Larry Wall <larry@wall.org>
407              Date: Wed, 6 Oct 1999 09:55:57 -0700 (PDT)
408              Message-Id: <199910061655.JAA11333@kiev.wall.org>
409              Subject: Re: [ID 19991001.004] apparent parsing error with not(arg)
410      Branch: perl
411            ! opcode.h t/comp/bproto.t toke.c
412 ____________________________________________________________________________
413 [  4311] By: gsar                                  on 1999/10/08  00:58:19
414         Log: typo
415      Branch: perl
416            ! pp_sys.c
417 ____________________________________________________________________________
418 [  4310] By: gsar                                  on 1999/10/07  23:51:38
419         Log: fix setpgrp vs getpgrp and POSIX vs BSD confusion (spotted by
420              Brian Mitchell <brian@chele.cais.net>)
421      Branch: perl
422            ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c
423 ____________________________________________________________________________
424 [  4309] By: gsar                                  on 1999/10/07  22:57:52
425         Log: change#3728 was flawed (loop contexts saw the wrong statement
426              info, causing loop control constructs to not find the label);
427              disable OP_SETSTATE entirely and add a fix that is specifically
428              targetted at disabling the OP_LINESEQ optimization in else BLOCK,
429              which was what the original patch was supposed to fix
430              
431              TODO: remove the remainder of the setstate logic if it can't
432              be used anywhere else (it isn't used anywhere now)
433      Branch: perl
434            ! cop.h op.c perly.c perly.y
435 ____________________________________________________________________________
436 [  4308] By: jhi                                   on 1999/10/07  19:21:27
437         Log: Integrate with Sarathy.
438      Branch: cfgperl
439           !> lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL
440 ____________________________________________________________________________
441 [  4307] By: gsar                                  on 1999/10/07  15:12:24
442         Log: update to podlators-0.08 from Russ Allbery
443      Branch: perl
444            ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL
445 ____________________________________________________________________________
446 [  4306] By: jhi                                   on 1999/10/06  17:20:34
447         Log: Integrate with Sarathy.
448      Branch: cfgperl
449           !> (integrate 45 files)
450 ____________________________________________________________________________
451 [  4305] By: gsar                                  on 1999/10/06  16:55:45
452         Log: some versions of mingw32 have __int64, define iff it isn't
453      Branch: perl
454            ! win32/win32.h
455 ____________________________________________________________________________
456 [  4304] By: gsar                                  on 1999/10/06  03:45:44
457         Log: fix typos in change#4288
458      Branch: perl
459            ! Changes dump.c sv.c
460 ____________________________________________________________________________
461 [  4303] By: gsar                                  on 1999/10/06  03:22:46
462         Log: integrate cfgperl contents into mainline
463      Branch: perl
464           +> eg/cgi/dna_small_gif.uu eg/cgi/wilogo_gif.uu
465            - eg/cgi/dna.small.gif.uu eg/cgi/wilogo.gif.uu
466           !> (integrate 31 files)
467 ____________________________________________________________________________
468 [  4302] By: gsar                                  on 1999/10/06  02:36:53
469         Log: make die/warn and other diagnostics go to wherever STDERR happens
470              to point at; change places that meant Perl_debug_log rather than
471              PerlIO_stderr()
472      Branch: perl
473            ! cop.h doio.c embedvar.h ext/Devel/Peek/Peek.xs
474            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs
475            ! ext/DynaLoader/dl_cygwin.xs ext/DynaLoader/dl_dld.xs
476            ! ext/DynaLoader/dl_dlopen.xs ext/DynaLoader/dl_hpux.xs
477            ! ext/DynaLoader/dl_mpeix.xs ext/DynaLoader/dl_next.xs
478            ! ext/DynaLoader/dl_rhapsody.xs ext/DynaLoader/dl_vmesa.xs
479            ! ext/DynaLoader/dl_vms.xs ext/DynaLoader/dlutils.c
480            ! ext/Thread/Thread.xs ext/Thread/typemap intrpvar.h malloc.c
481            ! mg.c objXSUB.h op.c perl.c perl.h perlio.c pp.c pp_ctl.c
482            ! pp_hot.c regexec.c scope.c scope.h sv.c thread.h toke.c util.c
483            ! win32/dl_win32.xs win32/win32.c win32/win32thread.c
484 ____________________________________________________________________________
485 [  4301] By: jhi                                   on 1999/10/05  23:03:46
486         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
487              To: François Désarménien <desar@club-internet.fr>
488              Cc: "perl5-porters@perl.org" <perl5-porters@perl.org>
489              Subject: Re: Strange RE engine breakage in 5_61
490              Date: Mon, 4 Oct 1999 19:58:03 -0400
491              Message-ID: <19991004195803.A21760@monk.mps.ohio-state.edu>
492              
493              (had to apply pat.t part manually because there
494              already were more tests than there was in _61)
495      Branch: cfgperl
496            ! regcomp.c regexec.c t/op/pat.t t/op/re_tests
497 ____________________________________________________________________________
498 [  4300] By: jhi                                   on 1999/10/04  17:03:18
499         Log: From: Andy Dougherty <doughera@lafayette.edu>
500              To: Jarkko Hietaniemi <jhi@iki.fi>
501              cc: Perl Porters <perl5-porters@perl.org>, jhi@cc.hut.fi
502              Subject: Re: [ID 19991001.005] [_61] [PATCH] tarball fine on win32, zip isn't
503              Date: Mon, 4 Oct 1999 13:05:08 -0400 (EDT)
504              Message-ID: <Pine.SOL.4.10.9910041302550.6502-100000@maxwell.phys.lafayette.edu>
505      Branch: cfgperl
506            + eg/cgi/dna_small_gif.uu eg/cgi/wilogo_gif.uu
507            - eg/cgi/dna.small.gif.uu eg/cgi/wilogo.gif.uu
508            ! MANIFEST ext/B/defsubs_h.PL
509 ____________________________________________________________________________
510 [  4299] By: jhi                                   on 1999/10/04  07:15:16
511         Log: From: Michael G Schwern <schwern@pobox.com>
512              To: perl5-porters@perl.org
513              Subject: Re: [PATCH av.c, op.c, perldiag.pod] "array field" -> "pseudo-hash field"
514              Date: Sun, 3 Oct 1999 17:34:17 -0400
515              Message-ID: <19991003173417.A4351@blackrider>
516      Branch: cfgperl
517            ! t/lib/fields.t t/pragma/constant.t
518 ____________________________________________________________________________
519 [  4298] By: gsar                                  on 1999/10/04  04:57:53
520         Log: some compatibility macros were busted
521      Branch: perl
522            ! embed.h embed.pl toke.c
523 ____________________________________________________________________________
524 [  4297] By: jhi                                   on 1999/10/03  17:50:59
525         Log: A better version of #4296.
526              
527              From: Michael G Schwern <schwern@pobox.com>
528              To: perl5-porters@perl.org
529              Subject: [PATCH av.c, op.c, perldiag.pod] "array field" -> "pseudo-hash field"
530              Date: Sun, 3 Oct 1999 13:54:23 -0400
531              Message-ID: <19991003135423.A3050@blackrider>
532      Branch: cfgperl
533            ! av.c op.c pod/perldiag.pod
534 ____________________________________________________________________________
535 [  4296] By: jhi                                   on 1999/10/03  17:21:01
536         Log: (Replaced by #4297.)
537              
538              From: Michael G Schwern <schwern@pobox.com>
539              To: perl5-porters@perl.org
540              Subject: [PATCH av.c, perldiag.pod] Added field name to "No such array field"
541              Date: Sun, 3 Oct 1999 13:16:47 -0400
542              Message-ID: <19991003131647.A2816@blackrider>
543              
544              plus changed the error message to say "No such pseudo-hash field"
545              as discussed in the above mail message.
546      Branch: cfgperl
547            ! av.c pod/perldiag.pod
548 ____________________________________________________________________________
549 [  4295] By: gsar                                  on 1999/10/03  16:09:36
550         Log: avoid doing irrelevant things on 'make perl'
551      Branch: perl
552            ! Makefile.SH
553 ____________________________________________________________________________
554 [  4294] By: jhi                                   on 1999/10/03  14:16:24
555         Log: Fix a typo in #4293 spotted by Graham Barr.
556      Branch: cfgperl
557            ! pod/perlref.pod
558 ____________________________________________________________________________
559 [  4293] By: jhi                                   on 1999/10/03  11:31:22
560         Log: From: Michael G Schwern <schwern@blackrider.aocn.com>
561              To: perl5-porters@perl.org
562              Subject: Re: Should keys in pseudo-hashes -always- exist? [DOC PATCH]
563              Date: Sun, 3 Oct 1999 02:34:01 -0400
564              Message-ID: <19991003023401.A1520@blackrider>
565      Branch: cfgperl
566            ! pod/perlfunc.pod pod/perlref.pod
567 ____________________________________________________________________________
568 [  4292] By: jhi                                   on 1999/10/03  09:23:16
569         Log: From: Barrie Slaymaker <barries@slaysys.com>
570              To: perl5-porters@perl.org
571              Subject: [PATCH 5.005_61] Benchmark.pm bugfix, tweaks
572              Date: Sun, 3 Oct 1999 00:09:51 -0400
573              Message-Id: <199910030409.AAA18228@jester.slaysys.com>
574      Branch: cfgperl
575            ! lib/Benchmark.pm
576 ____________________________________________________________________________
577 [  4291] By: jhi                                   on 1999/10/02  23:43:53
578         Log: Be understanding about large file systems.
579      Branch: cfgperl
580            ! t/lib/syslfs.t t/op/lfs.t
581 ____________________________________________________________________________
582 [  4290] By: jhi                                   on 1999/10/02  23:39:16
583         Log: Configure fixfest continues.
584      Branch: cfgperl
585            ! Configure config_h.SH
586      Branch: metaconfig
587            ! U/modified/d_longdbl.U U/modified/d_longlong.U
588            ! U/threads/d_pthreadj.U U/typedefs/gidsign.U
589            ! U/typedefs/gidsize.U U/typedefs/pidsign.U U/typedefs/pidsize.U
590            ! U/typedefs/uidsign.U U/typedefs/uidsize.U
591      Branch: metaconfig/U/perl
592            ! i_inttypes.U io64.U
593 ____________________________________________________________________________
594 [  4289] By: jhi                                   on 1999/10/02  23:12:54
595         Log: Regen Porting stuff.
596      Branch: cfgperl
597            ! Porting/Glossary Porting/config.sh Porting/config_H
598 ____________________________________________________________________________
599 [  4288] By: jhi                                   on 1999/10/02  23:05:50
600         Log: Untangle the IV_IS_QUAD jungle by introduding
601              macros to be used when doing formatted printing:
602              IVdf, UVuf, UVxf, UVof.  Also introduce Uid_t_SIGN.
603      Branch: cfgperl
604            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
605            ! config_h.SH doio.c dump.c op.c perl.h pp_hot.c pp_sys.c
606            ! regcomp.c sv.c taint.c toke.c util.c
607 ____________________________________________________________________________
608 [  4287] By: jhi                                   on 1999/10/02  22:54:18
609         Log: metaconfig maintenance.
610      Branch: metaconfig
611            ! U/ebcdic/ebcdic.U U/typedefs/gidsign.U U/typedefs/gidsize.U
612            ! U/typedefs/pidsign.U U/typedefs/pidsize.U U/typedefs/uidsign.U
613            ! U/typedefs/uidsize.U
614 ____________________________________________________________________________
615 [  4286] By: nick                                  on 1999/10/02  11:11:44
616         Log: Incremental merge of mainline
617      Branch: utfperl
618           +> README.Y2K hints/svr5.sh lib/Pod/Man.pm
619           +> lib/unicode/Unicode.html t/op/args.t t/pod/multiline_items.t
620           +> t/pod/multiline_items.xr t/pod/pod2usage.t t/pod/pod2usage.xr
621           +> t/pod/podselect.t t/pod/podselect.xr
622            - lib/Pod/PlainText.pm
623           !> (integrate 148 files)
624 ____________________________________________________________________________
625 [  4285] By: jhi                                   on 1999/10/02  10:16:15
626         Log: Battle namespace pollution.
627      Branch: cfgperl
628            ! lib/Benchmark.pm
629 ____________________________________________________________________________
630 [  4284] By: jhi                                   on 1999/10/02  10:11:20
631         Log: Regen Configure, all of xs_apiversion didn't take.
632      Branch: cfgperl
633            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
634            ! config_h.SH patchlevel.h
635 ____________________________________________________________________________
636 [  4283] By: jhi                                   on 1999/10/02  09:48:17
637         Log: Integrate with Sarathy.
638      Branch: cfgperl
639           +> lib/Pod/Man.pm t/pod/multiline_items.t
640           +> t/pod/multiline_items.xr t/pod/pod2usage.t t/pod/pod2usage.xr
641           +> t/pod/podselect.t t/pod/podselect.xr
642            - lib/Pod/PlainText.pm
643           !> (integrate 50 files)
644 ____________________________________________________________________________
645 [  4282] By: gsar                                  on 1999/10/02  06:39:14
646         Log: update pod2man, pod2text and related Pod:: modules with the
647              ones in podlators-0.07 from Russ Allbery
648      Branch: perl
649            + lib/Pod/Man.pm
650            ! lib/Pod/Text.pm lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm
651            ! pod/pod2man.PL pod/pod2text.PL
652 ____________________________________________________________________________
653 [  4281] By: gsar                                  on 1999/10/02  06:14:44
654         Log: fix PodParser testsuite; Pod::Text subsumes Pod::PlainText
655      Branch: perl
656            - lib/Pod/PlainText.pm
657            ! MANIFEST lib/Pod/Text.pm lib/Pod/Usage.pm pod/pod2usage.PL
658            ! pod/podchecker.PL pod/podselect.PL t/pod/emptycmd.t
659            ! t/pod/for.t t/pod/headings.t t/pod/include.t t/pod/included.t
660            ! t/pod/lref.t t/pod/multiline_items.t t/pod/nested_items.t
661            ! t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t
662            ! t/pod/poderrs.t t/pod/poderrs.xr t/pod/podselect.t
663            ! t/pod/special_seqs.t t/pod/testp2pt.pl t/pod/testpchk.pl
664 ____________________________________________________________________________
665 [  4280] By: gsar                                  on 1999/10/02  04:39:38
666         Log: upgrade to PodParser-1.085 from Brad Appleton <bradapp@enteract.com>
667      Branch: perl
668            + t/pod/multiline_items.t t/pod/multiline_items.xr
669            + t/pod/pod2usage.t t/pod/pod2usage.xr t/pod/podselect.t
670            + t/pod/podselect.xr
671            ! MANIFEST lib/Pod/Checker.pm lib/Pod/InputObjects.pm
672            ! lib/Pod/Parser.pm lib/Pod/PlainText.pm lib/Pod/Select.pm
673            ! lib/Pod/Usage.pm t/pod/for.xr t/pod/headings.xr
674            ! t/pod/include.xr t/pod/included.xr t/pod/lref.xr
675            ! t/pod/nested_items.xr t/pod/nested_seqs.xr
676            ! t/pod/oneline_cmds.xr t/pod/poderrs.xr t/pod/special_seqs.xr
677            ! t/pod/testp2pt.pl
678 ____________________________________________________________________________
679 [  4279] By: gsar                                  on 1999/10/02  03:36:41
680         Log: make exists() work better on pseudo-hashes (reworked a patch suggested
681              by Michael G Schwern <schwern@pobox.com>)
682      Branch: perl
683            ! av.c t/op/avhv.t
684 ____________________________________________________________________________
685 [  4278] By: gsar                                  on 1999/10/02  02:36:55
686         Log: deprecate C<use attrs>
687      Branch: perl
688            ! ext/attrs/attrs.pm ext/attrs/attrs.xs t/lib/attrs.t
689            ! t/lib/thread.t t/pragma/sub_lval.t
690 ____________________________________________________________________________
691 [  4277] By: gsar                                  on 1999/10/02  01:43:25
692         Log: add notes about effect of loop control statements inside
693              LABEL BLOCK continue BLOCK
694      Branch: perl
695            ! pod/perlfunc.pod
696 ____________________________________________________________________________
697 [  4276] By: gsar                                  on 1999/10/02  01:23:02
698         Log: indent nested =items properly (suggested by Bill Fenner
699              <fenner@research.att.com>)
700      Branch: perl
701            ! pod/pod2man.PL
702 ____________________________________________________________________________
703 [  4275] By: gsar                                  on 1999/10/02  01:09:16
704         Log: updated ptags generator from Ilya Zakharevich
705      Branch: perl
706            ! emacs/ptags
707 ____________________________________________________________________________
708 [  4274] By: gsar                                  on 1999/10/01  23:08:52
709         Log: update Changes
710      Branch: perl
711            ! Changes
712 ____________________________________________________________________________
713 [  4273] By: gsar                                  on 1999/10/01  22:58:55
714         Log: typo, whitespace adjustments
715      Branch: perl
716            ! utils/h2xs.PL
717 ____________________________________________________________________________
718 [  4272] By: gsar                                  on 1999/10/01  22:46:06
719         Log: remove dup hunks
720      Branch: perl
721            ! configure.com vms/vms.c
722 ____________________________________________________________________________
723 [  4271] By: gsar                                  on 1999/10/01  22:33:02
724         Log: integrate cfgperl contents into mainline; resolve h2xs.PL conflict
725              by declaring new globals "our" (XXX this means h2xs generated code
726              won't run on earlier versions; a switch to generate compatible
727              source is needed)
728      Branch: perl
729           !> (integrate 35 files)
730 ____________________________________________________________________________
731 [  4270] By: jhi                                   on 1999/10/01  12:05:56
732         Log: Integrate with Sarathy.
733      Branch: cfgperl
734           !> ext/B/B/C.pm lib/ExtUtils/typemap lib/ExtUtils/xsubpp
735           !> pod/perldiag.pod util.c
736 ____________________________________________________________________________
737 [  4269] By: jhi                                   on 1999/10/01  10:26:19
738         Log: From: Piotr Klaban <makler@oryl.man.torun.pl>
739              To: perl5-porters@perl.org
740              Subject: [ID 19991001.001] perlguts man page error
741              Date: Fri, 1 Oct 1999 10:23:49 +0200 (MET DST)
742              Message-Id: <199910010823.KAA05796@oryl.man.torun.pl>
743      Branch: cfgperl
744            ! pod/perlguts.pod
745 ____________________________________________________________________________
746 [  4268] By: jhi                                   on 1999/10/01  07:32:33
747         Log: There *is* a month called October.
748      Branch: cfgperl
749            ! t/op/time.t
750 ____________________________________________________________________________
751 [  4267] By: jhi                                   on 1999/10/01  06:58:10
752         Log: Temp file cleanliness.
753      Branch: cfgperl
754            ! t/lib/filecopy.t
755 ____________________________________________________________________________
756 [  4266] By: jhi                                   on 1999/10/01  06:46:56
757         Log: From: Barrie Slaymaker <barries@slaysys.com>
758              To: perl5-porters@perl.org
759              Subject: [PATCH 5.005_61] Benchmark.pm: Export countit(), cmpthese() by default
760              Date: Thu, 30 Sep 1999 22:16:26 -0400
761              Message-Id: <199910010216.WAA08309@jester.slaysys.com>
762      Branch: cfgperl
763            ! lib/Benchmark.pm
764 ____________________________________________________________________________
765 [  4265] By: jhi                                   on 1999/09/30  20:25:35
766         Log: From: Barrie Slaymaker <barries@slaysys.com>
767              To: perl5-porters@perl.org
768              Subject: [PATCH 5.005_61] Benchmark tweaks, fixes, cmpthese()
769              Date: Thu, 30 Sep 1999 15:44:00 -0400
770              Message-Id: <199909301944.PAA07166@jester.slaysys.com>
771              (Replaces #4175.)
772      Branch: cfgperl
773            ! lib/Benchmark.pm
774 ____________________________________________________________________________
775 [  4264] By: gsar                                  on 1999/09/30  17:59:26
776         Log: re-add missing "Out of memory!" entry
777      Branch: perl
778            ! pod/perldiag.pod
779 ____________________________________________________________________________
780 [  4263] By: jhi                                   on 1999/09/30  17:05:43
781         Log: Regenerate Configure.
782      Branch: cfgperl
783            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
784            ! config_h.SH
785 ____________________________________________________________________________
786 [  4261] By: jhi                                   on 1999/09/30  16:15:05
787         Log: From: Andy Dougherty <doughera@lafayette.edu>
788              To: Perl Porters <perl5-porters@perl.org>
789              Subject: [PATCH 5.005_61] rand() advisory for perldelta.pod
790              Date: Thu, 30 Sep 1999 12:24:00 -0400 (EDT)
791              Message-ID: <Pine.SOL.4.10.9909301218390.3343-100000@maxwell.phys.lafayette.edu>
792      Branch: cfgperl
793            ! pod/perldelta.pod
794 ____________________________________________________________________________
795 [  4260] By: jhi                                   on 1999/09/30  15:48:56
796         Log: From: Andy Dougherty <doughera@lafayette.edu>
797              To: Jarkko Hietaniemi <jhi@iki.fi>, Gurusamy Sarathy <gsar@activestate.com>
798              Subject: Re: Possible skeletal structure for searching multiple versions
799              Date: Thu, 30 Sep 1999 11:52:00 -0400 (EDT)
800              Message-ID: <Pine.SOL.4.10.9909301149090.3343-100000@maxwell.phys.lafayette.edu>
801      Branch: metaconfig
802            ! U/mkglossary
803      Branch: metaconfig/U/perl
804            + xs_apiversion.U
805            ! patchlevel.U
806 ____________________________________________________________________________
807 [  4259] By: jhi                                   on 1999/09/30  15:07:16
808         Log: Further ?idsize.U fixing.
809      Branch: metaconfig
810            ! U/typedefs/gidsize.U U/typedefs/pidsize.U U/typedefs/uidsize.U
811 ____________________________________________________________________________
812 [  4258] By: jhi                                   on 1999/09/30  15:00:14
813         Log: Fix the ?idsi{gn,ze} units, from Andy Dougherty.
814      Branch: metaconfig
815            ! U/typedefs/gidsign.U U/typedefs/gidsize.U U/typedefs/pidsign.U
816            ! U/typedefs/pidsize.U U/typedefs/uidsign.U U/typedefs/uidsize.U
817 ____________________________________________________________________________
818 [  4257] By: jhi                                   on 1999/09/30  09:48:33
819         Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
820              To: Gurusamy Sarathy <gsar@ActiveState.com>
821              Cc: tchrist@perl.com, Larry Wall <larry@wall.org>,
822              The Perl Porters Mailing List <perl5-porters@perl.org>
823              Subject: [PATCH] (Was: deprecating SIGDIE)
824              Date: Wed, 29 Sep 1999 15:16:50 -0400
825              Message-ID: <19990929151650.E26675@O2.chapin.edu>
826      Branch: cfgperl
827            ! Porting/findvars embedvar.h intrpvar.h mg.c objXSUB.h perl.c
828 ____________________________________________________________________________
829 [  4256] By: jhi                                   on 1999/09/30  09:45:22
830         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
831              To: Gurusamy Sarathy <gsar@activestate.com>
832              Cc: Barrie Slaymaker <barries@slaysys.com>, perl5-porters@perl.org
833              Subject: Re: _58, _61 Argument "" is not numeric in sprintf
834              Date: Wed, 29 Sep 1999 18:58:23 -0400
835              Message-ID: <19990929185823.A22099@monk.mps.ohio-state.edu>
836      Branch: cfgperl
837            ! Makefile.SH opcode.pl
838 ____________________________________________________________________________
839 [  4255] By: gsar                                  on 1999/09/30  09:03:48
840         Log: remove prehistoric XFree() gunk
841      Branch: perl
842            ! lib/ExtUtils/typemap lib/ExtUtils/xsubpp
843 ____________________________________________________________________________
844 [  4254] By: gsar                                  on 1999/09/30  08:40:14
845         Log: From: Vishal Bhatia <vishal@gol.com>
846              Date: Wed, 29 Sep 1999 23:27:28 +0900 (JST)
847              Message-ID: <Pine.LNX.4.10.9909292326280.5599-100000@localhost.localdomain>
848              Subject: [patch _61] Minor corrections in C.pm
849      Branch: perl
850            ! ext/B/B/C.pm
851 ____________________________________________________________________________
852 [  4253] By: gsar                                  on 1999/09/30  08:36:27
853         Log: off-by-one in fbm_compile() (spotted by John Bley
854              <jbley@cs.cmu.edu>); whitespace adjustments
855      Branch: perl
856            ! util.c
857 ____________________________________________________________________________
858 [  4251] By: jhi                                   on 1999/09/30  08:09:13
859         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
860              To: perl5-porters@perl.org (Mailing list Perl5)
861              Subject: [PATCH 5.00561+]  Followup h2xs patch
862              Date: Thu, 30 Sep 1999 04:15:52 -0400 (EDT)
863              Message-Id: <199909300815.EAA25425@monk.mps.ohio-state.edu>
864      Branch: cfgperl
865            ! utils/h2xs.PL
866 ____________________________________________________________________________
867 [  4250] By: jhi                                   on 1999/09/29  19:11:32
868         Log: Integrate with Sarathy.
869      Branch: cfgperl
870           !> djgpp/configure.bat embed.h embed.pl lib/Exporter/Heavy.pm
871           !> lib/ExtUtils/MM_Unix.pm lib/Time/Local.pm proto.h
872           !> t/pragma/locale/latin1 win32/Makefile win32/makefile.mk
873 ____________________________________________________________________________
874 [  4249] By: bailey                                on 1999/09/29  02:21:31
875         Log: resync with mainline
876      Branch: vmsperl
877           +> (branch 32 files)
878            - ext/B/defsubs.h.PL lib/unicode/arabshp.txt
879            - lib/unicode/blocks.txt lib/unicode/index2.txt
880            - lib/unicode/jamo2.txt lib/unicode/names2.txt
881            - lib/unicode/props2.txt lib/unicode/readme.txt
882            - t/lib/bigfloatpm.t
883           !> (integrate 240 files)
884 ____________________________________________________________________________
885 [  4248] By: jhi                                   on 1999/09/28  18:14:39
886         Log: From: Andy Dougherty <doughera@lafayette.edu>
887              To: Perl Porters <perl5-porters@perl.org>
888              Subject: [PATCH 5.005_xx] Re: [Config 5.005_03] -DDEBUGGING
889              Date: Tue, 28 Sep 1999 12:20:50 -0400 (EDT)
890              Message-ID: <Pine.SOL.4.10.9909281019360.1890-100000@maxwell.phys.lafayette.edu>
891              
892              From: Andy Dougherty <doughera@lafayette.edu>
893              To: Perl Porters <perl5-porters@perl.org>
894              Subject: [ANOTHER PATCH 5.005_61] Re: [Config 5.005_03] -DDEBUGGING
895              Date: Tue, 28 Sep 1999 13:39:49 -0400 (EDT)
896              Message-ID: <Pine.SOL.4.10.9909281338180.2012-100000@maxwell.phys.lafayette.edu>
897      Branch: cfgperl
898            ! hints/README.hints hints/amigaos.sh hints/cygwin.sh
899            ! hints/dynixptx.sh hints/epix.sh hints/esix4.sh hints/mint.sh
900            ! hints/mpeix.sh hints/next_3.sh hints/next_3_0.sh
901            ! hints/next_4.sh
902 ____________________________________________________________________________
903 [  4247] By: gsar                                  on 1999/09/28  17:36:59
904         Log: revert change#4115 (breaks libwww's base/date.t); could be 
905              reworked to enable it conditional on $Time::Local::nocroak
906              or some such
907      Branch: perl
908            ! lib/Time/Local.pm
909 ____________________________________________________________________________
910 [  4246] By: gsar                                  on 1999/09/28  17:33:14
911         Log: tweak for win32 build
912      Branch: perl
913            ! win32/Makefile win32/makefile.mk
914 ____________________________________________________________________________
915 [  4245] By: gsar                                  on 1999/09/28  17:31:34
916         Log: change#4236 fallout
917      Branch: perl
918            ! lib/ExtUtils/MM_Unix.pm
919 ____________________________________________________________________________
920 [  4244] By: gsar                                  on 1999/09/28  17:29:31
921         Log: remove doubled new_xpv
922      Branch: perl
923            ! embed.h embed.pl proto.h
924 ____________________________________________________________________________
925 [  4243] By: jhi                                   on 1999/09/27  19:13:20
926         Log: Artistic fine-tuning.
927      Branch: cfgperl
928            ! ext/B/defsubs_h.PL
929 ____________________________________________________________________________
930 [  4242] By: gsar                                  on 1999/09/27  17:05:22
931         Log: avoid implicit split to @_ in change#4181; binary -> text file
932              types in p4
933      Branch: perl
934            ! djgpp/configure.bat lib/Exporter/Heavy.pm
935            ! t/pragma/locale/latin1
936 ____________________________________________________________________________
937 [  4241] By: jhi                                   on 1999/09/27  07:48:19
938         Log: Integrate with Sarathy.
939      Branch: cfgperl
940           !> INSTALL embed.h embed.pl malloc.c pod/perldiag.pod pp.c
941           !> pp_ctl.c pp_hot.c pp_sys.c win32/Makefile win32/makefile.mk
942 ____________________________________________________________________________
943 [  4240] By: jhi                                   on 1999/09/27  07:47:11
944         Log: Finalize change #4232.
945              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
946              To: Jarkko Hietaniemi <jhi@iki.fi>
947              Cc: gsar@activestate.com, Mailing list Perl5 <perl5-porters@perl.org>
948              Subject: Re: xsubpp change breaks B, DB_File, POSIX builds
949              Date: Sun, 26 Sep 1999 16:52:31 -0400
950              Message-ID: <19990926165230.A26933@monk.mps.ohio-state.edu>
951      Branch: cfgperl
952            ! lib/ExtUtils/xsubpp
953 ____________________________________________________________________________
954 [  4239] By: gsar                                  on 1999/09/27  02:48:42
955         Log: add notes in INSTALL about Configure -Accflags=-DFOO
956      Branch: perl
957            ! INSTALL
958 ____________________________________________________________________________
959 [  4238] By: gsar                                  on 1999/09/27  02:03:48
960         Log: PERL_POLLUTE isn't required for bincompat, so don't enable
961              it automatically
962      Branch: perl
963            ! embed.h embed.pl
964 ____________________________________________________________________________
965 [  4237] By: gsar                                  on 1999/09/27  01:52:47
966         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
967              Date: Fri, 24 Sep 1999 23:25:36 -0400
968              Message-ID: <19990924232536.A16257@monk.mps.ohio-state.edu>
969              Subject: [PATCH 5.005_61] Malloc fixes and docs
970      Branch: perl
971            ! malloc.c pod/perldiag.pod
972 ____________________________________________________________________________
973 [  4236] By: gsar                                  on 1999/09/27  01:31:32
974         Log: avoid .exe in $Config{cc} (spotted by Vadim Konovalov
975              <vkonovalov@lucent.com>)
976      Branch: perl
977            ! win32/Makefile win32/makefile.mk
978 ____________________________________________________________________________
979 [  4235] By: gsar                                  on 1999/09/26  17:02:03
980         Log: fix buggy popping of subroutine contexts in the lvalue
981              subroutines implementation (change#4081); correct the
982              plethora of cases where DIE() was more appropriate than
983              croak()
984      Branch: perl
985            ! pp.c pp_ctl.c pp_hot.c pp_sys.c
986 ____________________________________________________________________________
987 [  4234] By: jhi                                   on 1999/09/26  12:06:28
988         Log: Fix #endif.
989      Branch: cfgperl
990            ! XSUB.h
991 ____________________________________________________________________________
992 [  4233] By: jhi                                   on 1999/09/26  11:59:18
993         Log: Integrate with Sarathy. h2xs.PL had to be manually resolved,
994              I kept my (Ilya's) version.
995      Branch: cfgperl
996           !> gv.c gv.h intrpvar.h keywords.h keywords.pl lib/Shell.pm op.c
997           !> pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod
998           !> pod/perlfaq7.pod pod/perlfunc.pod pod/perlmod.pod
999           !> pod/perlmodlib.pod pod/perlsub.pod pod/perltoot.pod
1000           !> pod/perlxstut.pod sv.h t/pragma/strict-vars toke.c
1001           !> utils/h2xs.PL win32/Makefile win32/makefile.mk
1002 ____________________________________________________________________________
1003 [  4232] By: jhi                                   on 1999/09/26  09:53:43
1004         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1005              To: Mailing list Perl5 <perl5-porters@perl.org>
1006              Subject: [PATCH 5.005_61] teach xsubpp function pointers
1007              Date: Sun, 26 Sep 1999 01:36:09 -0400
1008              Message-ID: <19990926013609.A21148@monk.mps.ohio-state.edu>
1009              
1010              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1011              To: Mailing list Perl5 <perl5-porters@perl.org>
1012              Subject: [PATCH 5.005_61] Make h2xs -x almost bullet-proof
1013              Date: Sun, 26 Sep 1999 03:00:50 -0400
1014              Message-ID: <19990926030050.A21498@monk.mps.ohio-state.edu>
1015      Branch: cfgperl
1016            ! lib/ExtUtils/xsubpp utils/h2xs.PL
1017 ____________________________________________________________________________
1018 [  4231] By: jhi                                   on 1999/09/26  09:48:49
1019         Log: From: "Konovalov, Vadim" <vkonovalov@lucent.com>
1020              To: perl5-porters@perl.org
1021              Subject: misprint in perlguts
1022              Date: Sun, 26 Sep 1999 12:48:36 +0400
1023              Message-ID: <402099F49BEED211999700805FC7359F20D7A5@ru0028exch01.spb.lucent.com>
1024      Branch: cfgperl
1025            ! pod/perlguts.pod
1026 ____________________________________________________________________________
1027 [  4230] By: gsar                                  on 1999/09/26  00:50:08
1028         Log: add $installarchlib/CORE to default linker search path on windows
1029      Branch: perl
1030            ! win32/Makefile win32/makefile.mk
1031 ____________________________________________________________________________
1032 [  4229] By: gsar                                  on 1999/09/25  20:05:03
1033         Log: support C<use Shell> on Windows (reworked a patch suggested
1034              by Jenda Krynicky <Jenda@McCann.cz>)
1035      Branch: perl
1036            ! lib/Shell.pm
1037 ____________________________________________________________________________
1038 [  4228] By: gsar                                  on 1999/09/25  07:03:34
1039         Log: integrate cfgperl contents into mainline
1040      Branch: perl
1041           +> hints/svr5.sh
1042           !> Configure MANIFEST Makefile.SH config_h.SH hints/sco.sh
1043           !> lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode
1044           !> lib/unicode/mktables.PL pod/perldelta.pod pod/perlfaq9.pod
1045           !> regcomp.c regexec.c t/lib/syslfs.t t/op/lfs.t
1046 ____________________________________________________________________________
1047 [  4227] By: gsar                                  on 1999/09/25  06:44:47
1048         Log: From: Larry Wall <larry@wall.org>
1049              Date: Fri, 24 Sep 1999 21:59:37 PDT
1050              Message-Id: <199909250459.VAA27506@kiev.wall.org>
1051              Subject: Re: [PATCH 5.005_61] "our" declarations
1052      Branch: perl
1053            ! gv.c gv.h intrpvar.h keywords.h keywords.pl op.c
1054            ! pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod
1055            ! pod/perlfaq7.pod pod/perlfunc.pod pod/perlmod.pod
1056            ! pod/perlmodlib.pod pod/perlsub.pod pod/perltoot.pod
1057            ! pod/perlxstut.pod sv.h t/pragma/strict-vars toke.c
1058            ! utils/h2xs.PL
1059 ____________________________________________________________________________
1060 [  4226] By: jhi                                   on 1999/09/24  23:10:52
1061         Log: Integrate with Sarathy.
1062      Branch: cfgperl
1063           !> XSUB.h ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
1064           !> ext/POSIX/hints/linux.pl pod/perldiag.pod pod/perlfunc.pod
1065           !> pp.c t/lib/posix.t t/op/pack.t toke.c utils/perlcc.PL
1066 ____________________________________________________________________________
1067 [  4225] By: gsar                                  on 1999/09/24  18:19:54
1068         Log: avoid infinite recursive exec()s of perl.exe when shebang
1069              contains "Perl" rather than "perl" on DOSISH platforms
1070      Branch: perl
1071            ! toke.c
1072 ____________________________________________________________________________
1073 [  4224] By: gsar                                  on 1999/09/24  16:09:23
1074         Log: support cygwin and other platforms that link to import libraries
1075              rather than directly with shared libraries (from a suggestion
1076              by Lucian Cionca <Lucian.Cionca@algoritma.ro>)
1077      Branch: perl
1078            ! utils/perlcc.PL
1079 ____________________________________________________________________________
1080 [  4223] By: gsar                                  on 1999/09/24  05:05:06
1081         Log: normalize time for strftime() (without the isdst effects of
1082              mktime()) using a custom mini_mktime()
1083              From: spider-perl@Orb.Nashua.NH.US
1084              Date: Thu, 23 Sep 1999 17:54:53 -0400
1085              Message-Id: <199909232154.RAA25151@leggy.zk3.dec.com>
1086              Subject: Re: [ID 19990913.003] Possible bug using POSIX::strftime Digital UNIX Perl 5.005_03 
1087      Branch: perl
1088            ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
1089            ! ext/POSIX/hints/linux.pl t/lib/posix.t
1090 ____________________________________________________________________________
1091 [  4222] By: gsar                                  on 1999/09/23  06:44:42
1092         Log: change "#" to a comment starter in pack templates; "/" now
1093              used for specifying counted types
1094              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1095              Date: Wed, 22 Sep 1999 19:41:30 -0400
1096              Message-ID: <19990922194130.A864@monk.mps.ohio-state.edu>
1097              Subject: [PATCH 5.005_61] Enable comments in pack()/unpack() templates
1098      Branch: perl
1099            ! pod/perldiag.pod pod/perlfunc.pod pp.c t/op/pack.t
1100 ____________________________________________________________________________
1101 [  4221] By: gsar                                  on 1999/09/23  06:26:54
1102         Log: From: Vishal Bhatia <vishal@gol.com>
1103              Date: Thu, 23 Sep 1999 12:45:19 +0900 (JST)
1104              Message-ID: <Pine.LNX.4.10.9909231218360.3428-100000@localhost.localdomain>
1105              Subject: [patch _61] perlcc changes
1106      Branch: perl
1107            ! utils/perlcc.PL
1108 ____________________________________________________________________________
1109 [  4220] By: gsar                                  on 1999/09/23  01:12:24
1110         Log: add include guard
1111      Branch: perl
1112            ! XSUB.h
1113 ____________________________________________________________________________
1114 [  4219] By: jhi                                   on 1999/09/22  20:38:15
1115         Log: Cleanup cleanup.
1116      Branch: cfgperl
1117            ! Makefile.SH t/lib/syslfs.t t/op/lfs.t
1118 ____________________________________________________________________________
1119 [  4218] By: jhi                                   on 1999/09/22  19:26:58
1120         Log: Tweak the equivalence tables once again.
1121      Branch: cfgperl
1122            ! lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode
1123            ! lib/unicode/mktables.PL
1124 ____________________________________________________________________________
1125 [  4215] By: jhi                                   on 1999/09/22  06:47:03
1126         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1127              To: Mailing list Perl5 <perl5-porters@perl.org>
1128              Subject: [PATCH 5.005_61] regfree could segfault with -Mre=debug
1129              Date: Tue, 21 Sep 1999 19:50:00 -0400
1130              Message-ID: <19990921195000.A23938@monk.mps.ohio-state.edu>
1131              
1132              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1133              To: Mailing list Perl5 <perl5-porters@perl.org>
1134              Subject: [PATCH 5.005_61] More verbose -Mre=debug
1135              Date: Tue, 21 Sep 1999 22:29:55 -0400
1136              Message-ID: <19990921222955.A25094@monk.mps.ohio-state.edu>
1137      Branch: cfgperl
1138            ! regcomp.c regexec.c
1139 ____________________________________________________________________________
1140 [  4214] By: jhi                                   on 1999/09/21  21:08:43
1141         Log: From: 0000-Admin (0000) <root@devsys0.zenez.com>
1142              Reply-To: gerberb@zenez.com
1143              To: perl5-porters@perl.org
1144              Subject: [ID 19990921.004] Changes for SCO OpenServer and UnixWare 7
1145              Date: Tue, 21 Sep 1999 11:07:46 -0600 (MDT)
1146              Message-Id: <199909211707.LAA23611@devsys0.zenez.com>
1147              
1148              (Snipped away the last lines of svr5.sh a la change #3725)
1149      Branch: cfgperl
1150            + hints/svr5.sh
1151            ! Configure MANIFEST config_h.SH hints/sco.sh
1152      Branch: metaconfig
1153            ! U/modified/Cppsym.U U/modified/Oldconfig.U
1154 ____________________________________________________________________________
1155 [  4213] By: jhi                                   on 1999/09/21  20:48:01
1156         Log: From: Kragen Sitaker <kragen@dnaco.net>
1157              To: perl5-porters@perl.org
1158              Subject: [ID 19990921.013] accidental list context in perlfaq9
1159              Date: Tue, 21 Sep 1999 16:27:53 -0400 (EDT)
1160              Reply-To: kragen@pobox.com
1161              Message-Id: <199909212027.QAA03450@kirk.dnaco.net>
1162      Branch: cfgperl
1163            ! pod/perlfaq9.pod
1164 ____________________________________________________________________________
1165 [  4212] By: jhi                                   on 1999/09/20  19:55:42
1166         Log: Integrate with Sarathy.
1167      Branch: cfgperl
1168           +> README.Y2K
1169           !> Changes MANIFEST
1170 ____________________________________________________________________________
1171 [  4211] By: jhi                                   on 1999/09/20  19:44:44
1172         Log: Rename -Duselfs to -Duselargefiles.  We don't need no stnkngbbrvtns.
1173      Branch: cfgperl
1174            ! Configure config_h.SH pod/perldelta.pod
1175      Branch: metaconfig/U/perl
1176            ! use64bits.U uselfs.U uselongdbl.U
1177 ____________________________________________________________________________
1178 [  4210] By: jhi                                   on 1999/09/20  19:38:26
1179         Log: Configure -A change: -Afoo=bar is equal to -Aappend:foo=" bar".
1180      Branch: cfgperl
1181            ! Configure config_h.SH
1182      Branch: metaconfig
1183            ! U/modified/Options.U
1184 ____________________________________________________________________________
1185 [  4209] By: gsar                                  on 1999/09/20  19:35:39
1186         Log: integrate cfgperl changes into mainline
1187      Branch: perl
1188           +> lib/unicode/Unicode.html
1189            ! Changes
1190           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
1191           !> config_h.SH doio.c perl.h pod/perldelta.pod pod/perlfunc.pod
1192 ____________________________________________________________________________
1193 [  4208] By: gsar                                  on 1999/09/20  18:28:44
1194         Log: add README.Y2K (from Dominic Dunlop <domo@vo.lu>)
1195      Branch: perl
1196            + README.Y2K
1197            ! MANIFEST
1198 ____________________________________________________________________________
1199 [  4207] By: jhi                                   on 1999/09/20  11:06:13
1200         Log: Document -Duselfs, -Duselongdouble, and -Dusemorebits.
1201      Branch: cfgperl
1202            ! pod/perldelta.pod
1203 ____________________________________________________________________________
1204 [  4206] By: jhi                                   on 1999/09/20  09:53:15
1205         Log: Do not test for gccish things in non-gccish platforms.
1206      Branch: cfgperl
1207            ! Configure config_h.SH
1208      Branch: metaconfig
1209            ! U/compline/ccflags.U
1210 ____________________________________________________________________________
1211 [  4205] By: jhi                                   on 1999/09/20  09:41:22
1212         Log: Prompt for uselfs.
1213      Branch: cfgperl
1214            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1215            ! config_h.SH
1216      Branch: metaconfig
1217            ! U/mksample
1218      Branch: metaconfig/U/perl
1219            ! use64bits.U uselfs.U
1220 ____________________________________________________________________________
1221 [  4204] By: jhi                                   on 1999/09/20  09:09:29
1222         Log: Add usemorebits and uselfs.
1223      Branch: cfgperl
1224            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1225            ! config_h.SH doio.c perl.h
1226      Branch: metaconfig/U/perl
1227            + uselfs.U usemorebits.U
1228            ! use64bits.U uselongdbl.U
1229 ____________________________________________________________________________
1230 [  4203] By: jhi                                   on 1999/09/20  07:48:48
1231         Log: Dethinko.
1232      Branch: cfgperl
1233            ! pod/perlfunc.pod
1234 ____________________________________________________________________________
1235 [  4202] By: jhi                                   on 1999/09/20  07:33:32
1236         Log: Fix a bug in the description of endianness.  Reported in
1237              From: "Konovalov, Vadim" <vkonovalov@lucent.com>
1238              To: perl5-porters@perl.org
1239              Subject: BUG: perldoc -f pack
1240              Date: Mon, 20 Sep 1999 09:43:49 +0400
1241              Message-ID: <402099F49BEED211999700805FC7359F20D3F5@ru0028exch01.spb.lucent.com>
1242      Branch: cfgperl
1243            ! pod/perlfunc.pod
1244 ____________________________________________________________________________
1245 [  4201] By: jhi                                   on 1999/09/20  07:01:26
1246         Log: Integrate with Sarathy.
1247      Branch: cfgperl
1248           +> t/op/args.t
1249           !> (integrate 31 files)
1250 ____________________________________________________________________________
1251 [  4200] By: gsar                                  on 1999/09/20  03:45:06
1252         Log: From: Russ Allbery <rra@stanford.edu>
1253              Date: 19 Aug 1999 04:35:44 -0700
1254              Message-Id: <yl7lms9f5b.fsf@windlord.stanford.edu>
1255              Subject: [ID 19990819.002] File::Find error when pruning top-level directories
1256      Branch: perl
1257            ! lib/File/Find.pm
1258 ____________________________________________________________________________
1259 [  4199] By: gsar                                  on 1999/09/20  03:27:49
1260         Log: suppress warning (from John Tobey <jtobey@epsilondev.com>)
1261      Branch: perl
1262            ! ext/B/B/Terse.pm
1263 ____________________________________________________________________________
1264 [  4198] By: gsar                                  on 1999/09/20  03:25:25
1265         Log: add arenas for managing allocations of remaining xpv*v structures
1266              From: Vishal Bhatia <vishal@gol.com>
1267              Date: Wed, 25 Aug 1999 00:31:33 +0900 (JST)
1268              Message-ID: <Pine.LNX.4.10.9908250031000.11727-100000@localhost.localdomain>
1269              Subject: [PATCH 5.005_60] removing extra ref count (compiler) 
1270      Branch: perl
1271            ! embed.h embed.pl embedvar.h ext/B/B/C.pm intrpvar.h objXSUB.h
1272            ! proto.h sv.c
1273 ____________________________________________________________________________
1274 [  4197] By: gsar                                  on 1999/09/20  03:06:10
1275         Log: queue errors due to strictures rather than printing them as
1276              warnings; symbols that violate strictures do *not* end up in
1277              the symbol table anyway, making multiple evals of the same piece
1278              of code produce the same errors; errors indicate all locations
1279              of a global symbol rather than just the first one; these
1280              changes make compile-time failures within evals reliably
1281              visible via the return value or contents of $@, and trappable
1282              using __DIE__ hooks
1283      Branch: perl
1284            ! embed.h embed.pl embedvar.h ext/DynaLoader/dlutils.c
1285            ! ext/Thread/Thread.xs global.sym gv.c objXSUB.h op.c perl.c
1286            ! perlapi.c pp_ctl.c proto.h regcomp.c t/pragma/strict-refs
1287            ! t/pragma/strict-vars thrdvar.h toke.c util.c
1288 ____________________________________________________________________________
1289 [  4196] By: gsar                                  on 1999/09/19  22:14:29
1290         Log: control change#1914 via hints (causes problems on some platforms)
1291      Branch: perl
1292            ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
1293            ! ext/POSIX/hints/linux.pl
1294 ____________________________________________________________________________
1295 [  4195] By: gsar                                  on 1999/09/19  21:30:18
1296         Log: avoid clearing @_ at all for faster subroutine calls; fix bugs
1297              in passing around references to @_, eg C<sub foo { \@_ }>; add
1298              tests for the same
1299      Branch: perl
1300            + t/op/args.t
1301            ! MANIFEST cop.h pp.c pp_ctl.c pp_hot.c
1302 ____________________________________________________________________________
1303 [  4194] By: jhi                                   on 1999/09/18  18:57:45
1304         Log: Integrate with Sarathy.
1305      Branch: cfgperl
1306           !> opcode.h opcode.pl
1307 ____________________________________________________________________________
1308 [  4193] By: nick                                  on 1999/09/18  15:24:56
1309         Log: Re-integrate mainline
1310              Basic SvUTF8 stuff in headers, no functional changes yet.
1311      Branch: utfperl
1312            + lib/byte.pm lib/byte_heavy.pl
1313           +> ext/B/defsubs_h.PL ext/DB_File/version.c jpl/JNI/Closer.java
1314           +> jpl/JNI/JNIConfig jpl/JNI/JNIConfig.Win32
1315           +> jpl/JNI/JNIConfig.kaffe jpl/JNI/JNIConfig.noembed
1316           +> jpl/JNI/JNIConfig.standard jpl/JNI/typemap.gcc
1317           +> jpl/JNI/typemap.win32 jpl/SETVARS.PL lib/unicode/ArabShap.txt
1318           +> lib/unicode/Blocks.txt lib/unicode/CompExcl.txt
1319           +> lib/unicode/EAWidth.txt lib/unicode/Index.txt
1320           +> lib/unicode/Jamo-2.txt lib/unicode/LineBrk.txt
1321           +> lib/unicode/Names.txt lib/unicode/Props.txt
1322           +> lib/unicode/ReadMe.txt lib/unicode/SpecCase.txt
1323           +> t/lib/bigfltpm.t
1324            - ext/B/defsubs.h.PL lib/unicode/arabshp.txt
1325            - lib/unicode/blocks.txt lib/unicode/index2.txt
1326            - lib/unicode/jamo2.txt lib/unicode/names2.txt
1327            - lib/unicode/props2.txt lib/unicode/readme.txt
1328            - t/lib/bigfloatpm.t
1329            ! doop.c embed.h embed.pl gv.c mg.c objXSUB.h op.c op.h perl.h
1330            ! perlapi.c pp.c pp_ctl.c pp_hot.c proto.h regcomp.c regcomp.h
1331            ! regexec.c regexp.h regnodes.h sv.c sv.h toke.c utf8.c utf8.h
1332            ! warnings.h
1333           !> (integrate 142 files)
1334 ____________________________________________________________________________
1335 [  4192] By: gsar                                  on 1999/09/18  15:11:47
1336         Log: more op description tweaks
1337      Branch: perl
1338            ! opcode.h opcode.pl
1339 ____________________________________________________________________________
1340 [  4191] By: jhi                                   on 1999/09/18  07:47:16
1341         Log: Integrate with Sarathy.
1342      Branch: cfgperl
1343           !> Changes opcode.h opcode.pl t/io/open.t t/op/misc.t
1344           !> t/pragma/warn/op
1345 ____________________________________________________________________________
1346 [  4190] By: jhi                                   on 1999/09/18  07:35:45
1347         Log: Add description of the Unicode database files.
1348      Branch: cfgperl
1349            + lib/unicode/Unicode.html
1350 ____________________________________________________________________________
1351 [  4189] By: gsar                                  on 1999/09/18  03:14:58
1352         Log: tweak some op names in change#4177 (will any of this break code that
1353              gropes $@ ?)
1354      Branch: perl
1355            ! Changes opcode.h opcode.pl t/io/open.t t/op/misc.t
1356            ! t/pragma/warn/op
1357 ____________________________________________________________________________
1358 [  4188] By: jhi                                   on 1999/09/17  21:30:08
1359         Log: Pick up the typo fix.
1360      Branch: cfgperl
1361           !> t/io/open.t
1362 ____________________________________________________________________________
1363 [  4187] By: gsar                                  on 1999/09/17  21:13:55
1364         Log: fix typo
1365      Branch: perl
1366            ! t/io/open.t
1367 ____________________________________________________________________________
1368 [  4186] By: gsar                                  on 1999/09/17  20:57:29
1369         Log: integrate cfgperl change
1370      Branch: perl
1371           !> vms/subconfigure.com
1372 ____________________________________________________________________________
1373 [  4185] By: jhi                                   on 1999/09/17  20:46:41
1374         Log: Re-apply applicable parts of #3993, #3994, and #3995.
1375      Branch: cfgperl
1376            ! vms/subconfigure.com
1377 ____________________________________________________________________________
1378 [  4184] By: gsar                                  on 1999/09/17  20:26:02
1379         Log: integrate cfgperl contents into mainline
1380      Branch: perl
1381           +> lib/unicode/ArabShap.txt lib/unicode/Blocks.txt
1382           +> lib/unicode/CompExcl.txt lib/unicode/EAWidth.txt
1383           +> lib/unicode/Index.txt lib/unicode/Jamo-2.txt
1384           +> lib/unicode/LineBrk.txt lib/unicode/Names.txt
1385           +> lib/unicode/Props.txt lib/unicode/ReadMe.txt
1386           +> lib/unicode/SpecCase.txt
1387            - lib/unicode/arabshp.txt lib/unicode/blocks.txt
1388            - lib/unicode/index2.txt lib/unicode/jamo2.txt
1389            - lib/unicode/names2.txt lib/unicode/props2.txt
1390            - lib/unicode/readme.txt
1391           !> (integrate 73 files)
1392 ____________________________________________________________________________
1393 [  4183] By: jhi                                   on 1999/09/17  20:25:51
1394         Log: Integrate with Sarathy.
1395      Branch: cfgperl
1396           !> configure.com ext/ByteLoader/byterun.h
1397           !> ext/DynaLoader/DynaLoader_pm.PL lib/ExtUtils/MM_VMS.pm
1398           !> lib/File/Spec/VMS.pm pod/perlhist.pod t/io/open.t
1399           !> vms/descrip_mms.template vms/gen_shrfls.pl vms/perly_c.vms
1400           !> vms/perly_h.vms vms/subconfigure.com vms/vms.c vms/vmsish.h
1401 ____________________________________________________________________________
1402 [  4182] By: gsar                                  on 1999/09/17  20:16:28
1403         Log: integrate vmsperl contents into mainline (where VMS files conflicted,
1404              vmsperl contents have prevailed)
1405      Branch: perl
1406           !> configure.com ext/ByteLoader/byterun.h
1407           !> ext/DynaLoader/DynaLoader_pm.PL lib/ExtUtils/MM_VMS.pm
1408           !> lib/File/Spec/VMS.pm t/io/open.t vms/descrip_mms.template
1409           !> vms/gen_shrfls.pl vms/perly_c.vms vms/perly_h.vms
1410           !> vms/subconfigure.com vms/vms.c vms/vmsish.h
1411 ____________________________________________________________________________
1412 [  4181] By: jhi                                   on 1999/09/17  20:12:37
1413         Log: From: Michael G Schwern <schwern@pobox.com>
1414              To: perl5-porters@perl.org
1415              Subject: [PATCH 5.005_60 lib/Exporter/Heavy.pm] export_to_level()
1416              Date: Thu, 19 Aug 1999 21:30:01 -0400
1417              Message-ID: <19990819213001.A22512@athens.aocn.com>
1418      Branch: cfgperl
1419            ! lib/Exporter/Heavy.pm
1420 ____________________________________________________________________________
1421 [  4180] By: gsar                                  on 1999/09/17  20:11:00
1422         Log: perlhist additions
1423      Branch: perl
1424            ! pod/perlhist.pod
1425 ____________________________________________________________________________
1426 [  4179] By: jhi                                   on 1999/09/17  20:08:00
1427         Log: The change #4176 should've undone only the test, not the code patch.
1428      Branch: cfgperl
1429            ! doio.c
1430 ____________________________________________________________________________
1431 [  4178] By: jhi                                   on 1999/09/17  20:06:08
1432         Log: From: Ian Phillipps <ian@dial.pipex.com>
1433              To: Hans GINZEL <hgin2088@mail.kolej.mff.cuni.cz>, perl5-porters@perl.org
1434              Subject: [PATCH 5.005_59] Re: [ID 19990820.007] Small typo in perlsyn.pod
1435              Date: Sat, 21 Aug 1999 12:36:12 +0100
1436              Message-ID: <19990821123612.A9955@homer.diplex.co.uk>
1437      Branch: cfgperl
1438            ! pod/perlsyn.pod
1439 ____________________________________________________________________________
1440 [  4177] By: jhi                                   on 1999/09/17  20:00:19
1441         Log: More descriptive names for operators.
1442              
1443              From: Michael G Schwern <schwern@pobox.com>
1444              To: Ilya Zakharevich <ilya@math.ohio-state.edu>
1445              Cc: perl5-porters@perl.org
1446              Subject: Re: [ID 19990817.009] [BUG 5.005_60 & 5.005_03] == reported as eq in
1447              Date: Tue, 17 Aug 1999 18:35:45 -0400
1448              Message-ID: <19990817183545.A23073@toldyouso.com>
1449              
1450              From: Michael G Schwern <schwern@pobox.com>
1451              To: perl5-porters@perl.org
1452              Subject: [PATCH 5.005_60 opcode.pl and friends] Improved opcode descriptions
1453              Date: Wed, 18 Aug 1999 03:53:38 -0400
1454              Message-ID: <19990818035337.A31505@athens.aocn.com>
1455      Branch: cfgperl
1456            ! opcode.h opcode.pl pp.sym pp_proto.h sv.c t/op/misc.t
1457            ! t/pragma/warn/op t/pragma/warn/sv
1458 ____________________________________________________________________________
1459 [  4176] By: jhi                                   on 1999/09/17  18:19:18
1460         Log: Take away the infamous io/dup.t #7.
1461              It seems there simply is no way to portably
1462              "flush" an input file handle.
1463      Branch: cfgperl
1464            ! doio.c t/io/dup.t
1465 ____________________________________________________________________________
1466 [  4175] By: jhi                                   on 1999/09/17  14:45:08
1467         Log: From: Barrie Slaymaker <barries@slaysys.com>
1468              To: perl5-porters@perl.org
1469              Subject: [PATCH 5.005_61] Benchmark: screwed patch format, try this instead
1470              Date: Fri, 17 Sep 1999 11:16:48 -0400
1471              Message-Id: <199909171516.LAA30887@jester.slaysys.com>
1472      Branch: cfgperl
1473            ! lib/Benchmark.pm
1474 ____________________________________________________________________________
1475 [  4174] By: jhi                                   on 1999/09/17  14:07:16
1476         Log: UNICOS does support large files but doesn't support sparse files
1477              so we cannot easily test for large file support.
1478      Branch: cfgperl
1479            ! t/lib/syslfs.t t/op/lfs.t
1480 ____________________________________________________________________________
1481 [  4173] By: jhi                                   on 1999/09/17  14:03:44
1482         Log: UNICOS has sloppy division/modulo for floating point numbers.
1483      Branch: cfgperl
1484            ! t/op/arith.t
1485 ____________________________________________________________________________
1486 [  4172] By: jhi                                   on 1999/09/17  13:47:49
1487         Log: Portable blocksize (replaces #4171).
1488      Branch: cfgperl
1489            ! t/lib/syslfs.t t/op/lfs.t
1490 ____________________________________________________________________________
1491 [  4171] By: jhi                                   on 1999/09/17  13:08:54
1492         Log: (replaced by #4172)
1493      Branch: cfgperl
1494            ! t/lib/syslfs.t t/op/lfs.t
1495 ____________________________________________________________________________
1496 [  4170] By: jhi                                   on 1999/09/17  12:59:11
1497         Log: Detypo #4169.
1498      Branch: cfgperl
1499            ! t/lib/syslfs.t t/op/lfs.t
1500 ____________________________________________________________________________
1501 [  4169] By: jhi                                   on 1999/09/17  12:16:34
1502         Log: Diagnose possible quota limits.
1503      Branch: cfgperl
1504            ! t/lib/syslfs.t t/op/lfs.t
1505 ____________________________________________________________________________
1506 [  4168] By: jhi                                   on 1999/09/17  12:10:43
1507         Log: UNICOS doesn't have getpgid().  Or, at least 9.0.1ai
1508              doesn't have one that wouldn't cause SIGSYS.  UNICOS
1509              does have getpgrp(void) so Perl getpgrp() is happy.
1510      Branch: cfgperl
1511            ! hints/unicos.sh
1512 ____________________________________________________________________________
1513 [  4167] By: jhi                                   on 1999/09/17  11:49:30
1514         Log: Filesystem quotas may stop you from using large files.
1515      Branch: cfgperl
1516            ! pod/perldelta.pod t/lib/syslfs.t t/op/lfs.t
1517 ____________________________________________________________________________
1518 [  4166] By: jhi                                   on 1999/09/17  11:36:01
1519         Log: Too strict pattern for parsing group lists.
1520      Branch: cfgperl
1521            ! t/op/groups.t
1522 ____________________________________________________________________________
1523 [  4165] By: jhi                                   on 1999/09/17  09:06:18
1524         Log: Configure maintenance. It's sigaction.sa_flags
1525              and the Glossary regen'ed.
1526      Branch: cfgperl
1527            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
1528            ! config_h.SH
1529      Branch: metaconfig
1530            ! U/compline/d_sigaction.U
1531 ____________________________________________________________________________
1532 [  4164] By: jhi                                   on 1999/09/15  06:57:51
1533         Log: Integrate with Sarathy.
1534      Branch: cfgperl
1535           +> jpl/JNI/Closer.java jpl/JNI/JNIConfig jpl/JNI/JNIConfig.Win32
1536           +> jpl/JNI/JNIConfig.kaffe jpl/JNI/JNIConfig.noembed
1537           +> jpl/JNI/JNIConfig.standard jpl/JNI/typemap.gcc
1538           +> jpl/JNI/typemap.win32 jpl/SETVARS.PL
1539           !> Changes MANIFEST embed.h embed.pl jpl/JNI/JNI.pm
1540           !> jpl/JNI/JNI.xs jpl/JNI/Makefile.PL jpl/JNI/test.pl
1541           !> jpl/JNI/typemap jpl/JPL/Makefile.PL
1542           !> jpl/PerlInterpreter/Makefile.PL
1543           !> jpl/PerlInterpreter/PerlInterpreter.c
1544           !> jpl/PerlInterpreter/PerlInterpreter.h jpl/README
1545           !> jpl/Sample/Makefile.PL jpl/install-jpl
1546           !> lib/File/Spec/Functions.pm pod/perlhist.pod regexec.c
1547           !> t/op/pat.t
1548 ____________________________________________________________________________
1549 [  4163] By: gsar                                  on 1999/09/15  05:17:27
1550         Log: add :ALL export tag (from Chris Nandor <pudge@pobox.com>)
1551      Branch: perl
1552            ! lib/File/Spec/Functions.pm
1553 ____________________________________________________________________________
1554 [  4162] By: gsar                                  on 1999/09/15  05:09:14
1555         Log: addendum to change#4136 (from Robin Barker <rmb1@cise.npl.co.uk>)
1556      Branch: perl
1557            ! Changes embed.h embed.pl
1558 ____________________________________________________________________________
1559 [  4161] By: gsar                                  on 1999/09/15  04:08:25
1560         Log: missing perlhist dates from Jeff Okamoto
1561      Branch: perl
1562            ! pod/perlhist.pod
1563 ____________________________________________________________________________
1564 [  4160] By: gsar                                  on 1999/09/15  03:13:08
1565         Log: jpl tweak
1566      Branch: perl
1567            ! MANIFEST jpl/JNI/Makefile.PL
1568 ____________________________________________________________________________
1569 [  4159] By: gsar                                  on 1999/09/15  02:57:08
1570         Log: update to JPL snapshot v09141999, with minor tweaks (from Brian
1571              Jepson <bjepson@home.com>)
1572      Branch: perl
1573            + jpl/JNI/Closer.java jpl/JNI/JNIConfig jpl/JNI/JNIConfig.Win32
1574            + jpl/JNI/JNIConfig.kaffe jpl/JNI/JNIConfig.noembed
1575            + jpl/JNI/JNIConfig.standard jpl/JNI/typemap.gcc
1576            + jpl/JNI/typemap.win32 jpl/SETVARS.PL
1577            ! jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/Makefile.PL
1578            ! jpl/JNI/test.pl jpl/JNI/typemap jpl/JPL/Makefile.PL
1579            ! jpl/PerlInterpreter/Makefile.PL
1580            ! jpl/PerlInterpreter/PerlInterpreter.c
1581            ! jpl/PerlInterpreter/PerlInterpreter.h jpl/README
1582            ! jpl/Sample/Makefile.PL jpl/install-jpl
1583 ____________________________________________________________________________
1584 [  4158] By: gsar                                  on 1999/09/15  01:27:14
1585         Log: From:    Ilya Zakharevich <ilya@math.ohio-state.edu>
1586              Date:    Tue, 14 Sep 1999 21:26:15 EDT
1587              Message-Id: <199909150126.VAA24720@monk.mps.ohio-state.edu>
1588              Subject: [PATCH 5.005_58+] Re: [ID 19990914.001] Perl_re_intuit_start() hangs in a loop
1589      Branch: perl
1590            ! regexec.c t/op/pat.t
1591 ____________________________________________________________________________
1592 [  4157] By: jhi                                   on 1999/09/14  21:18:09
1593         Log: config.h will define USE_64_BITS if need be.
1594      Branch: cfgperl
1595            ! hints/irix_6.sh
1596 ____________________________________________________________________________
1597 [  4156] By: jhi                                   on 1999/09/14  20:30:00
1598         Log: Change #4149 necessitates also a small code change.
1599      Branch: cfgperl
1600            ! ext/B/defsubs_h.PL
1601 ____________________________________________________________________________
1602 [  4155] By: jhi                                   on 1999/09/14  20:15:53
1603         Log: Update EPOC libdir names.
1604      Branch: cfgperl
1605            ! epoc/config.h
1606 ____________________________________________________________________________
1607 [  4154] By: jhi                                   on 1999/09/14  20:13:41
1608         Log: Obsolete epoc/config.h caused #4153 to re-introduce already
1609              deceased HAS.*DBM.*64 mumblings.
1610      Branch: cfgperl
1611            ! Configure config_h.SH epoc/config.h
1612 ____________________________________________________________________________
1613 [  4153] By: jhi                                   on 1999/09/14  20:04:53
1614         Log: Configure nits.
1615      Branch: cfgperl
1616            ! Configure config_h.SH
1617      Branch: metaconfig
1618            ! U/compline/d_sigaction.U U/threads/i_pthread.U
1619 ____________________________________________________________________________
1620 [  4152] By: jhi                                   on 1999/09/14  19:30:22
1621         Log: Integrate with Sarathy.
1622      Branch: cfgperl
1623           +> ext/B/defsubs_h.PL t/lib/bigfltpm.t
1624            - ext/B/defsubs.h.PL t/lib/bigfloatpm.t
1625           !> INSTALL MANIFEST ext/B/Makefile.PL pod/perldiag.pod
1626           !> win32/config_sh.PL
1627 ____________________________________________________________________________
1628 [  4151] By: jhi                                   on 1999/09/14  10:25:01
1629         Log: Update Unicode database and recompute the tables.
1630              Rename the .txt files to be more Unicode 3.0-like.
1631              Unihan-3.0.txt not included because it is 16 MB.
1632              syllables.txt is manually maintained.
1633              See ReadMe.txt for description of the .txt files.
1634              (not all of them are used yet)
1635      Branch: cfgperl
1636            + lib/unicode/ArabShap.txt lib/unicode/Blocks.txt
1637            + lib/unicode/CompExcl.txt lib/unicode/EAWidth.txt
1638            + lib/unicode/Index.txt lib/unicode/Jamo-2.txt
1639            + lib/unicode/LineBrk.txt lib/unicode/Names.txt
1640            + lib/unicode/Props.txt lib/unicode/ReadMe.txt
1641            + lib/unicode/SpecCase.txt
1642            - lib/unicode/arabshp.txt lib/unicode/blocks.txt
1643            - lib/unicode/index2.txt lib/unicode/jamo2.txt
1644            - lib/unicode/names2.txt lib/unicode/props2.txt
1645            - lib/unicode/readme.txt
1646            ! MANIFEST lib/unicode/ArabLink.pl lib/unicode/ArabLnkGrp.pl
1647            ! lib/unicode/Bidirectional.pl lib/unicode/Block.pl
1648            ! lib/unicode/Category.pl lib/unicode/CombiningClass.pl
1649            ! lib/unicode/Decomposition.pl
1650            ! lib/unicode/In/ArabicPresentationForms-B.pl
1651            ! lib/unicode/In/Specials.pl lib/unicode/In/Tibetan.pl
1652            ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
1653            ! lib/unicode/Is/BidiCS.pl lib/unicode/Is/BidiL.pl
1654            ! lib/unicode/Is/BidiON.pl lib/unicode/Is/BidiWS.pl
1655            ! lib/unicode/Is/DCcompat.pl lib/unicode/Is/DecoCanon.pl
1656            ! lib/unicode/Is/DecoCompat.pl lib/unicode/Is/L.pl
1657            ! lib/unicode/Is/Ll.pl lib/unicode/Is/Lo.pl
1658            ! lib/unicode/Is/Lower.pl lib/unicode/Is/Lu.pl
1659            ! lib/unicode/Is/Pd.pl lib/unicode/Is/Po.pl lib/unicode/Is/S.pl
1660            ! lib/unicode/Is/Sm.pl lib/unicode/Is/So.pl
1661            ! lib/unicode/Is/Upper.pl lib/unicode/Is/Word.pl
1662            ! lib/unicode/JamoShort.pl lib/unicode/UnicodeData-Latest.txt
1663            ! lib/unicode/mktables.PL
1664 ____________________________________________________________________________
1665 [  4150] By: gsar                                  on 1999/09/14  09:31:57
1666         Log: INSTALL tweak
1667      Branch: perl
1668            ! INSTALL
1669 ____________________________________________________________________________
1670 [  4149] By: gsar                                  on 1999/09/14  09:00:45
1671         Log: change some filenames to be 8.3-friendly
1672      Branch: perl
1673           +> ext/B/defsubs_h.PL t/lib/bigfltpm.t
1674            - ext/B/defsubs.h.PL t/lib/bigfloatpm.t
1675            ! MANIFEST ext/B/Makefile.PL pod/perldiag.pod
1676 ____________________________________________________________________________
1677 [  4148] By: gsar                                  on 1999/09/14  08:35:00
1678         Log: win32 config tweak (suggested by Greg Chapman <glc@well.com>)
1679      Branch: perl
1680            ! win32/config_sh.PL
1681 ____________________________________________________________________________
1682 [  4147] By: jhi                                   on 1999/09/14  08:07:49
1683         Log: Not that UVSIZE normally differs that much from IVSIZE...
1684      Branch: cfgperl
1685            ! perl.h
1686 ____________________________________________________________________________
1687 [  4146] By: jhi                                   on 1999/09/14  08:04:40
1688         Log: Integrate with Sarathy.
1689      Branch: cfgperl
1690           !> Changes ext/DB_File/DB_File.xs
1691 ____________________________________________________________________________
1692 [  4145] By: jhi                                   on 1999/09/14  07:10:02
1693         Log: I_PTHREAD was PTHREADEAD.
1694      Branch: cfgperl
1695            ! Configure config_h.SH
1696      Branch: metaconfig
1697            ! U/threads/i_pthread.U
1698 ____________________________________________________________________________
1699 [  4144] By: gsar                                  on 1999/09/14  06:46:47
1700         Log: change#4113 was missing DB_File.xs changes
1701      Branch: perl
1702            ! ext/DB_File/DB_File.xs
1703 ____________________________________________________________________________
1704 [  4143] By: jhi                                   on 1999/09/13  20:16:20
1705         Log: Small doc and whitespace edits.
1706      Branch: cfgperl
1707            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs
1708            ! ext/DynaLoader/dl_cygwin.xs ext/DynaLoader/dl_dld.xs
1709            ! ext/DynaLoader/dl_hpux.xs ext/DynaLoader/dl_mpeix.xs
1710            ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_rhapsody.xs
1711            ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs
1712            ! pod/perldelta.pod
1713 ____________________________________________________________________________
1714 [  4142] By: gsar                                  on 1999/09/13  19:32:31
1715         Log: integrate cfgperl contents into mainline, update Changes
1716      Branch: perl
1717           +> ext/DB_File/version.c
1718            ! Changes
1719           !> (integrate 44 files)
1720 ____________________________________________________________________________
1721 [  4141] By: jhi                                   on 1999/09/13  16:16:56
1722         Log: Scan for <pthread.h> always.
1723      Branch: cfgperl
1724            ! Configure config_h.SH perl.h
1725      Branch: metaconfig
1726            ! U/threads/i_pthread.U
1727 ____________________________________________________________________________
1728 [  4140] By: jhi                                   on 1999/09/13  16:00:08
1729         Log: Integrate with Sarathy.
1730      Branch: cfgperl
1731           !> (integrate 27 files)
1732 ____________________________________________________________________________
1733 [  4139] By: jhi                                   on 1999/09/13  15:35:18
1734         Log: Add -A option to Configure to diddle with variables
1735              after the hints file has been applied.
1736      Branch: cfgperl
1737            ! Configure config_h.SH
1738      Branch: metaconfig
1739            ! U/modified/Oldconfig.U U/modified/Options.U
1740 ____________________________________________________________________________
1741 [  4138] By: jhi                                   on 1999/09/13  13:42:56
1742         Log: Change #4136 edited DynaLoader.xs which is kind of fruitless.
1743      Branch: cfgperl
1744            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs
1745            ! ext/DynaLoader/dl_cygwin.xs ext/DynaLoader/dl_dld.xs
1746            ! ext/DynaLoader/dl_hpux.xs ext/DynaLoader/dl_mpeix.xs
1747            ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_rhapsody.xs
1748            ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs
1749 ____________________________________________________________________________
1750 [  4137] By: jhi                                   on 1999/09/13  13:25:31
1751         Log: Applying change #4136 manually introduced patch residue.
1752      Branch: cfgperl
1753            ! perl.h
1754 ____________________________________________________________________________
1755 [  4136] By: jhi                                   on 1999/09/13  13:23:04
1756         Log: Replace change #4100 with
1757              From: Robin Barker <rmb1@cise.npl.co.uk>
1758              To: gsar@activestate.com
1759              Cc: perl5-porters@perl.org
1760              Subject: Re: [ID 19990907.004] [PATCH perl5.005_61] compiler warnings with -Duse64bits
1761              Date: Mon, 13 Sep 1999 14:15:11 +0100 (BST)
1762              Message-Id: <199909131315.OAA24012@tempest.npl.co.uk>
1763      Branch: cfgperl
1764            ! doio.c dump.c ext/B/B.xs ext/B/typemap
1765            ! ext/ByteLoader/bytecode.h ext/Devel/DProf/DProf.xs
1766            ! ext/DynaLoader/dl_dlopen.xs ext/ODBM_File/ODBM_File.xs
1767            ! ext/POSIX/POSIX.xs lib/ExtUtils/typemap malloc.c perl.h pp.c
1768            ! pp_ctl.c pp_hot.c pp_sys.c sv.c
1769 ____________________________________________________________________________
1770 [  4135] By: jhi                                   on 1999/09/13  10:22:31
1771         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1772              To: perl5-porters@perl.org (Mailing list Perl5)
1773              Subject: [PATCH 5.005_61] MakeMaker supports uninstalled Perls
1774              Date: Sat, 11 Sep 1999 05:31:03 -0400 (EDT)
1775              Message-Id: <199909110931.FAA11036@monk.mps.ohio-state.edu>
1776              
1777              From: andreas.koenig@anima.de (Andreas J. Koenig)
1778              To: Ilya Zakharevich <ilya@math.ohio-state.edu>
1779              Cc: perl5-porters@perl.org (Mailing list Perl5)
1780              Subject: Re: [PATCH 5.005_61] MakeMaker supports uninstalled Perls
1781              Date: 11 Sep 1999 15:36:26 +0200
1782              Message-ID: <sfc906dr2n9.fsf@hohenstaufen.in-berlin.de>
1783      Branch: cfgperl
1784            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
1785 ____________________________________________________________________________
1786 [  4134] By: jhi                                   on 1999/09/13  10:20:14
1787         Log: From: Tom Phoenix <rootbeer@redcat.com>
1788              To: Perl Porters Mailing List <perl5-porters@perl.org>
1789              Subject: [DOCPATCH] Server errors and perldiag
1790              Date: Fri, 10 Sep 1999 16:45:02 -0700 (PDT)
1791              Message-ID: <Pine.GSO.4.10.9909101639490.16999-100000@user2.teleport.com>
1792      Branch: cfgperl
1793            ! pod/perldiag.pod
1794 ____________________________________________________________________________
1795 [  4133] By: gsar                                  on 1999/09/13  03:25:43
1796         Log: avoid assertion failure on C<@a'>
1797      Branch: perl
1798            ! toke.c
1799 ____________________________________________________________________________
1800 [  4132] By: gsar                                  on 1999/09/13  03:03:57
1801         Log: add -DPERL_Y2KWARN build option that will generate additional
1802              warnings on "19$yy" etc (reworked a patch suggested by
1803              Ulrich Pfeifer <upf@de.uu.net>)
1804      Branch: perl
1805            ! pod/perldelta.pod pod/perldiag.pod pod/perllexwarn.pod
1806            ! pp_hot.c sv.c t/pragma/warn/pp_hot t/pragma/warn/sv
1807 ____________________________________________________________________________
1808 [  4131] By: gsar                                  on 1999/09/12  22:06:25
1809         Log: fix DATA leaks; reword documentation about the DATA filehandle
1810      Branch: perl
1811            ! ext/Opcode/Safe.pm lib/Pod/Functions.pm pod/perldata.pod
1812 ____________________________________________________________________________
1813 [  4130] By: gsar                                  on 1999/09/12  20:08:56
1814         Log: make sprintf("%g",...) threadsafe; only taint its result iff the
1815              formatted result looks nonstandard
1816      Branch: perl
1817            ! embed.pl embedvar.h intrpvar.h objXSUB.h perl.c perlapi.c
1818            ! pod/perlfunc.pod pod/perlguts.pod proto.h sv.c
1819            ! t/pragma/locale.t thrdvar.h
1820 ____________________________________________________________________________
1821 [  4129] By: gsar                                  on 1999/09/12  17:04:11
1822         Log: From: Doug MacEachern <dougm@cp.net>
1823              Date: Sun, 25 Jul 1999 15:49:00 -0700 (PDT)
1824              Message-ID: <Pine.LNX.4.10.9907251538380.373-100000@mojo.eng.cp.net>
1825              Subject: [PATCH 5.005_57] B::clearsym
1826      Branch: perl
1827            ! ext/B/B.pm ext/B/B/Bblock.pm ext/B/B/Debug.pm ext/B/B/Terse.pm
1828 ____________________________________________________________________________
1829 [  4128] By: gsar                                  on 1999/09/12  16:59:12
1830         Log: better debugger help output (from Ilya Zakharevich)
1831      Branch: perl
1832            ! lib/perl5db.pl
1833 ____________________________________________________________________________
1834 [  4127] By: jhi                                   on 1999/09/11  20:50:37
1835         Log: Integrate with Sarathy.
1836      Branch: cfgperl
1837           +> pod/perlcompile.pod t/lib/gol-basic.t t/lib/gol-compat.t
1838           +> t/lib/gol-linkage.t
1839           !> (integrate 43 files)
1840 ____________________________________________________________________________
1841 [  4126] By: nick                                  on 1999/09/10  20:44:22
1842         Log: Get resolve -at mainline
1843      Branch: utfperl
1844           +> (branch 297 files)
1845            - README.cygwin32 XSlock.h bytecode.h byterun.c byterun.h
1846            - cygwin32/cw32imp.h cygwin32/gcc2 cygwin32/ld2 cygwin32/perlgcc
1847            - cygwin32/perlld ext/B/byteperl.c ext/DynaLoader/dl_cygwin32.xs
1848            - hints/cygwin32.sh interp.sym myconfig objpp.h perl_exp.SH
1849            - t/pragma/warn-1global t/pragma/warning.t thread.sym
1850            - win32/GenCAPI.pl win32/TEST win32/autosplit.pl
1851            - win32/bin/network.pl win32/bin/webget.pl win32/bin/www.pl
1852            - win32/genxsdef.pl win32/makedef.pl win32/makemain.pl
1853            - win32/makeperldef.pl win32/perlhost.h
1854           !> (integrate 847 files)
1855 ____________________________________________________________________________
1856 [  4125] By: gsar                                  on 1999/09/10  19:22:14
1857         Log: s/dXS_TARGET/dXSTARG/ in change#4044 (to match dARGS vs dXSARGS
1858              etc.)
1859      Branch: perl
1860            ! XSUB.h pp.h
1861 ____________________________________________________________________________
1862 [  4124] By: gsar                                  on 1999/09/10  19:14:35
1863         Log: rewrote substantive parts of patch
1864              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1865              Date: Fri, 27 Aug 1999 19:02:18 -0400
1866              Message-ID: <19990827190218.A19561@monk.mps.ohio-state.edu>
1867              Subject: [PATCH 5.005_58] REx documentation
1868      Branch: perl
1869            ! pod/perlre.pod
1870 ____________________________________________________________________________
1871 [  4123] By: gsar                                  on 1999/09/10  18:21:53
1872         Log: note about AVf_*
1873      Branch: perl
1874            ! av.h
1875 ____________________________________________________________________________
1876 [  4122] By: gsar                                  on 1999/09/10  17:55:42
1877         Log: allow 'text' in L<text|A::B/"C"> (from Martin Lichtin
1878              <lichtin@bivio.com>)
1879      Branch: perl
1880            ! lib/Pod/Html.pm
1881 ____________________________________________________________________________
1882 [  4121] By: gsar                                  on 1999/09/10  17:49:35
1883         Log: dos-djgpp update (from Laszlo Molnar <laszlo.molnar@eth.ericsson.se>)
1884      Branch: perl
1885            ! AUTHORS Changes README.dos djgpp/config.over
1886            ! djgpp/configure.bat djgpp/djgpp.c djgpp/djgppsed.sh dosish.h
1887            ! lib/ExtUtils/MM_Unix.pm pod/pod2usage.PL pod/podchecker.PL
1888            ! pod/podselect.PL sv.h t/io/openpid.t util.c
1889 ____________________________________________________________________________
1890 [  4120] By: gsar                                  on 1999/09/10  12:25:01
1891         Log: add perlcompile.pod (edited content from Nathan Torkington
1892              <gnat@frii.com> and others)
1893      Branch: perl
1894            + pod/perlcompile.pod
1895            ! MANIFEST pod/Makefile pod/buildtoc pod/perl.pod pod/roffitall
1896 ____________________________________________________________________________
1897 [  4119] By: gsar                                  on 1999/09/10  11:05:13
1898         Log: avoid leaking static local_patches unless patchlevel.h is
1899              explicitly included
1900      Branch: perl
1901            ! patchlevel.h perl.c
1902 ____________________________________________________________________________
1903 [  4118] By: gsar                                  on 1999/09/10  10:44:54
1904         Log: upgrade to Getopt::Long v2.20 (from Johan Vromans
1905              <jvromans@squirrel.nl>)
1906      Branch: perl
1907            + t/lib/gol-basic.t t/lib/gol-compat.t t/lib/gol-linkage.t
1908            ! Changes MANIFEST lib/Getopt/Long.pm
1909 ____________________________________________________________________________
1910 [  4116] By: jhi                                   on 1999/09/09  15:56:52
1911         Log: perldeltify change #4115.
1912      Branch: cfgperl
1913            ! pod/perldelta.pod
1914 ____________________________________________________________________________
1915 [  4115] By: jhi                                   on 1999/09/09  15:48:56
1916         Log: From: "John L. Allen" <allen@grumman.com> 
1917              To: perl5-porters@perl.org 
1918              Subject: [ID 19990901.003] Time::Local should not croak on "out-of-range" days
1919              Date: Wed, 1 Sep 1999 13:33:39 -0400 (EDT) 
1920              Message-Id: <199909011733.NAA17356@gateway.grumman.com> 
1921      Branch: cfgperl
1922            ! lib/Time/Local.pm
1923 ____________________________________________________________________________
1924 [  4114] By: jhi                                   on 1999/09/09  15:42:30
1925         Log: From: "Daniel S. Lewart" <lewart@www.cvm.uiuc.edu>
1926              To: perl5-porters@perl.org
1927              Subject: [ID 19990909.003] MAXINT redefined warning on HP-UX 10.20
1928              Date: Thu, 9 Sep 1999 10:33:37 -0500 (CDT)
1929              Message-Id: <199909091533.KAA01242@www.cvm.uiuc.edu>
1930      Branch: cfgperl
1931            ! pp_sys.c
1932 ____________________________________________________________________________
1933 [  4113] By: jhi                                   on 1999/09/09  10:17:45
1934         Log: From: paul.marquess@bt.com
1935              To: gsar@ActiveState.com
1936              Cc: perl5-porters@perl.org
1937              Subject: [PATCH 5.005_61] DB_File 1.71
1938              Date: Thu, 9 Sep 1999 11:20:13 +0100
1939              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49BBE@mbtlipnt02.btlabs.bt.co.uk>
1940      Branch: cfgperl
1941            + ext/DB_File/version.c
1942            ! MANIFEST ext/DB_File/Changes ext/DB_File/DB_File.pm
1943            ! ext/DB_File/Makefile.PL ext/DB_File/dbinfo ext/DB_File/typemap
1944            ! t/lib/db-btree.t
1945 ____________________________________________________________________________
1946 [  4112] By: jhi                                   on 1999/09/09  09:05:32
1947         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1948              To: perl5-porters@perl.org (Mailing list Perl5)
1949              Subject: [PATCH 5.005_58] Fix interaction of (?p{}) and (?>)
1950              Date: Thu, 9 Sep 1999 04:40:11 -0400 (EDT)
1951              Message-Id: <199909090840.EAA26471@monk.mps.ohio-state.edu>
1952      Branch: cfgperl
1953            ! regexec.c t/op/pat.t
1954 ____________________________________________________________________________
1955 [  4110] By: jhi                                   on 1999/09/09  07:29:17
1956         Log: Tidy up 64-bit situation in perldelta.
1957      Branch: cfgperl
1958            ! pod/perldelta.pod
1959 ____________________________________________________________________________
1960 [  4109] By: jhi                                   on 1999/09/09  07:26:53
1961         Log: Clear up PL_regcc issues.
1962              
1963              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1964              To: perl5-porters@perl.org (Mailing list Perl5)
1965              Subject: [PATCH 5.005_60] Another regexec.c unobfuscation
1966              Date: Thu, 9 Sep 1999 02:49:49 -0400 (EDT)
1967              Message-Id: <199909090649.CAA26119@monk.mps.ohio-state.edu>
1968      Branch: cfgperl
1969            ! regexec.c
1970 ____________________________________________________________________________
1971 [  4108] By: gsar                                  on 1999/09/08  20:52:51
1972         Log: avoid ass_u_ming uppercase types are not user objects (spotted
1973              by Kurt Starsinic)
1974      Branch: perl
1975            ! ext/Data/Dumper/Dumper.pm
1976 ____________________________________________________________________________
1977 [  4107] By: gsar                                  on 1999/09/08  20:35:18
1978         Log: From: akim@epita.fr (DEMAILLE Akim)
1979              Date: Wed, 8 Sep 1999 18:18:44 +0200 (CEST)
1980              Message-Id: <m11OkQm-003A4IC@beyrouth.lrde.epita.fr>
1981              Subject: [ID 19990908.014] s2p does not quote @
1982      Branch: perl
1983            ! x2p/s2p.PL
1984 ____________________________________________________________________________
1985 [  4106] By: gsar                                  on 1999/09/08  20:25:12
1986         Log: integrate cfgperl contents into mainline
1987      Branch: perl
1988           !> (integrate 30 files)
1989 ____________________________________________________________________________
1990 [  4105] By: jhi                                   on 1999/09/08  09:02:37
1991         Log: Minor touches at the [:class:] description.
1992      Branch: cfgperl
1993            ! pod/perlre.pod
1994 ____________________________________________________________________________
1995 [  4104] By: jhi                                   on 1999/09/08  08:57:58
1996         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1997              To: Mailing list Perl5 <perl5-porters@perl.org>
1998              Subject: [PATCH 5.005_58] Fix debugging output for REx
1999              Date: Wed, 8 Sep 1999 05:02:02 -0400
2000              Message-ID: <19990908050201.A17682@monk.mps.ohio-state.edu>
2001      Branch: cfgperl
2002            ! regcomp.c
2003 ____________________________________________________________________________
2004 [  4103] By: gsar                                  on 1999/09/08  00:53:50
2005         Log: fix memory leak in C<sub f { split ' ', "a b" } f() while 1>
2006      Branch: perl
2007            ! pp.c
2008 ____________________________________________________________________________
2009 [  4102] By: gsar                                  on 1999/09/08  00:52:50
2010         Log: fix memory leak in C<sub f { @_ = 1 } f() while 1>
2011      Branch: perl
2012            ! cop.h pp_hot.c
2013 ____________________________________________________________________________
2014 [  4101] By: gsar                                  on 1999/09/07  17:25:07
2015         Log: various fixups for windows
2016      Branch: perl
2017            ! embed.h embed.pl objXSUB.h op.c perlapi.c proto.h
2018            ! win32/Makefile win32/makefile.mk xsutils.c
2019 ____________________________________________________________________________
2020 [  4100] By: jhi                                   on 1999/09/07  12:49:15
2021         Log: Fix pointer casts.
2022              
2023              From: Robin Barker <rmb1@cise.npl.co.uk>
2024              To: perl5-porters@perl.org
2025              Subject: [ID 19990907.004] [PATCH perl5.005_61] compiler warnings with
2026              -Duse64bits
2027              Date: Tue, 7 Sep 1999 12:30:18 +0100 (BST)
2028              Message-Id: <199909071130.MAA11435@tempest.npl.co.uk>
2029      Branch: cfgperl
2030            ! doio.c dump.c ext/B/B.xs ext/B/typemap
2031            ! ext/ByteLoader/bytecode.h ext/Devel/DProf/DProf.xs
2032            ! ext/DynaLoader/dl_dlopen.xs ext/ODBM_File/ODBM_File.xs
2033            ! ext/POSIX/POSIX.xs lib/ExtUtils/typemap malloc.c perl.h pp.c
2034            ! pp_ctl.c pp_hot.c pp_sys.c sv.c
2035 ____________________________________________________________________________
2036 [  4099] By: jhi                                   on 1999/09/07  10:29:04
2037         Log: Add sig/pid/uid size and sign probes.
2038      Branch: metaconfig
2039            + U/typedefs/gidsign.U U/typedefs/gidsize.U U/typedefs/pidsign.U
2040            + U/typedefs/pidsize.U U/typedefs/uidsign.U U/typedefs/uidsize.U
2041 ____________________________________________________________________________
2042 [  4098] By: jhi                                   on 1999/09/07  10:27:06
2043         Log: Band-aid until we've got %{Uid_t} or something similar
2044              for sv_catpvfn().
2045      Branch: cfgperl
2046            ! taint.c
2047 ____________________________________________________________________________
2048 [  4097] By: jhi                                   on 1999/09/07  09:41:23
2049         Log: Fix a printf thinko: now quads must have the ll L q prefix.
2050              (in other words, a bare %d is an int/unsigned)
2051      Branch: cfgperl
2052            ! pp_sys.c sv.c t/op/64bit.t
2053 ____________________________________________________________________________
2054 [  4096] By: jhi                                   on 1999/09/07  07:36:17
2055         Log: HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
2056              
2057              From: "Daniel S. Lewart" <lewart@www.cvm.uiuc.edu>
2058              To: perl5-porters@perl.org
2059              Subject: [ID 19990906.007] Not OK: perl 5.00561 on PA-RISC1.1 10.20
2060              Date: Mon, 6 Sep 1999 21:18:12 -0500 (CDT)
2061              Message-Id: <199909070218.VAA29232@www.cvm.uiuc.edu>
2062      Branch: cfgperl
2063            ! hints/hpux.sh perl.h
2064 ____________________________________________________________________________
2065 [  4095] By: gsar                                  on 1999/09/06  20:47:02
2066         Log: applied suggested patch with suitable test to detect MSVC
2067              From: "Vishal Bhatia" <vishalb@my-deja.com>
2068              Date: Wed, 11 Aug 1999 01:43:28 -0700
2069              Message-ID: <GFCJELIOGEENAAAA@my-deja.com>
2070              Subject: compiler on  win32
2071      Branch: perl
2072            ! ext/B/B/C.pm
2073 ____________________________________________________________________________
2074 [  4094] By: jhi                                   on 1999/09/06  20:34:44
2075         Log: Integrate with Sarathy.
2076      Branch: cfgperl
2077           !> ext/B/B/Bytecode.pm lib/Test/Harness.pm t/TEST t/UTEST
2078           !> t/harness t/pragma/sub_lval.t utils/Makefile utils/perlcc.PL
2079 ____________________________________________________________________________
2080 [  4093] By: jhi                                   on 1999/09/06  20:33:43
2081         Log: Fix UV_SIZEOF to UVSIZE; change the overflow tests
2082              so that they overflow also on 64-bit platforms.
2083      Branch: cfgperl
2084            ! t/pragma/warn/toke t/pragma/warn/util toke.c util.c
2085 ____________________________________________________________________________
2086 [  4092] By: gsar                                  on 1999/09/06  20:16:58
2087         Log: support bytecode and C backends in perlcc (patch suggested
2088              by Tom Hughes <tom@compton.au>); s/-opt/-noopt/ and make the
2089              C backend the default; describe new switches in pod; introduce
2090              PERLCC_OPTS and s/COMPILE_TIMEOUT/PERLCC_TIMEOUT/;
2091              s/COMPILE_TEST/HARNESS_COMPILE_TEST/; document these %ENV
2092              entries
2093      Branch: perl
2094            ! ext/B/B/Bytecode.pm lib/Test/Harness.pm t/TEST t/UTEST
2095            ! t/harness utils/Makefile utils/perlcc.PL
2096 ____________________________________________________________________________
2097 [  4091] By: jhi                                   on 1999/09/06  19:10:41
2098         Log: Integrate with Sarathy.
2099      Branch: cfgperl
2100           +> t/pragma/sub_lval.t
2101           !> (integrate 52 files)
2102 ____________________________________________________________________________
2103 [  4090] By: gsar                                  on 1999/09/06  19:09:06
2104         Log: propagate changed error text
2105      Branch: perl
2106            ! t/pragma/sub_lval.t
2107 ____________________________________________________________________________
2108 [  4089] By: gsar                                  on 1999/09/06  18:54:43
2109         Log: sprintf doc tweak (from Ian Phillipps <ian@dial.pipex.com>)
2110      Branch: perl
2111            ! pod/perlfunc.pod
2112 ____________________________________________________________________________
2113 [  4088] By: gsar                                  on 1999/09/06  18:52:10
2114         Log: From: paul.marquess@bt.com
2115              Date: Sun, 5 Sep 1999 15:11:08 +0100 
2116              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49BAB@mbtlipnt02.btlabs.bt.co.uk>
2117              Subject: [PATCH 5.005_61] Another patch for Lexical Warnings
2118      Branch: perl
2119            ! pp_sys.c t/pragma/warn/doio t/pragma/warn/op
2120            ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys
2121            ! t/pragma/warn/regcomp t/pragma/warn/sv t/pragma/warn/toke
2122            ! t/pragma/warn/universal t/pragma/warn/utf8 t/pragma/warn/util
2123            ! toke.c
2124 ____________________________________________________________________________
2125 [  4087] By: gsar                                  on 1999/09/06  18:06:06
2126         Log: change#3612 is buggy when quotemeta argument matches target
2127              (hope this is the last of the optimized-OP_SASSIGN bugs)
2128              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2129              Date: Sun, 5 Sep 1999 06:07:42 -0400 (EDT)
2130              Message-Id: <199909051007.GAA06423@monk.mps.ohio-state.edu>
2131              Subject: Re: [BUG: quotemeta]
2132      Branch: perl
2133            ! Changes op.c t/op/lex_assign.t
2134 ____________________________________________________________________________
2135 [  4086] By: gsar                                  on 1999/09/06  17:57:52
2136         Log: misc tweaks
2137      Branch: perl
2138            ! bytecode.pl ext/ByteLoader/byterun.h pod/perlsyn.pod toke.c
2139 ____________________________________________________________________________
2140 [  4085] By: gsar                                  on 1999/09/06  03:54:23
2141         Log: applied patch suggested by Hans Mulder to fix problems on
2142              OPENSTEP-Mach; be more careful about PERL_POLLUTE_MALLOC
2143              when they ask for bincompat (platforms that used to default
2144              to EMBEDMYMALLOC continue to do so); disable warnings.t#192
2145              (appears unsalvageable on some platforms)
2146      Branch: perl
2147            ! embed.h embed.pl handy.h perl.h pp_sys.c t/pragma/warn/pp_hot
2148 ____________________________________________________________________________
2149 [  4084] By: bailey                                on 1999/09/06  02:39:11
2150         Log: Integrate mainline 5.05_61
2151      Branch: vmsperl
2152           +> (branch 32 files)
2153            - lib/unicode/EthiopicSyllables.txt
2154            - lib/unicode/MakeEthiopicSyllables.PL t/pragma/warning.t
2155            - warning.pl
2156            ! vms/descrip_mms.template vms/gen_shrfls.pl vms/perly_c.vms
2157            ! vms/perly_h.vms vms/vms.c
2158           !> (integrate 346 files)
2159 ____________________________________________________________________________
2160 [  4083] By: gsar                                  on 1999/09/06  00:10:40
2161         Log: optional warning on join(/foo/...) (reworked suggested patch
2162              by Mark-Jason Dominus <mjd@plover.com>)
2163      Branch: perl
2164            ! embed.h objXSUB.h op.c opcode.h opcode.pl perlapi.c
2165            ! pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod pp.sym
2166            ! pp_proto.h t/pragma/warn/op
2167 ____________________________________________________________________________
2168 [  4082] By: gsar                                  on 1999/09/05  22:28:57
2169         Log: fix data loss when more than one block is read from SDBM
2170              *.dir file (suggested by Uwe Ohse <uwe@ohse.de>)
2171      Branch: perl
2172            ! ext/SDBM_File/sdbm/sdbm.c
2173 ____________________________________________________________________________
2174 [  4081] By: gsar                                  on 1999/09/05  22:07:18
2175         Log: initial implementation of lvalue subroutines (slightly fixed
2176              version of patch suggested by Ilya Zakharevich, which in turn
2177              is based on the one suggested by Tuomas J. Lukka <lukka@iki.fi>)
2178      Branch: perl
2179            + t/pragma/sub_lval.t
2180            ! MANIFEST cop.h cv.h dump.c embed.h ext/Opcode/Opcode.pm
2181            ! ext/attrs/attrs.pm ext/attrs/attrs.xs global.sym objXSUB.h
2182            ! op.c op.h opcode.h opcode.pl opnames.h perlapi.c
2183            ! pod/perldiag.pod pod/perlsub.pod pp.c pp.sym pp_hot.c
2184            ! pp_proto.h proto.h t/pragma/warn/pp_ctl
2185 ____________________________________________________________________________
2186 [  4080] By: jhi                                   on 1999/09/05  22:02:18
2187         Log: Undo #4055 (related to #4079).
2188      Branch: cfgperl
2189            ! pod/perlop.pod
2190 ____________________________________________________________________________
2191 [  4079] By: jhi                                   on 1999/09/05  21:30:54
2192         Log: Time is not yet ripe.
2193      Branch: cfgperl
2194            ! pod/perldelta.pod pod/perlop.pod pp.c t/op/64bit.t t/op/misc.t
2195 ____________________________________________________________________________
2196 [  4078] By: gsar                                  on 1999/09/05  18:17:32
2197         Log: modified suggested patch to handle cross-refs and qr// objects
2198              correctly; unfollowed refs are represented as simple string
2199              value, not just the bare type; $VERSION stays the same until
2200              it is ready for prime time (avoids CPAN confustication)
2201              From:    John Nolan <jpnolan@Op.Net>
2202              Date:    Wed, 04 Aug 1999 20:21:10 EDT
2203              Message-Id: <199908050021.UAA09693@monet.op.net>
2204              Subject: [ID 19990804.006] [PATCH]5.005_60 (Data::Dumper) - implements Maxdepth setting
2205      Branch: perl
2206            ! Changes ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm
2207            ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/Todo t/lib/dumper.t
2208 ____________________________________________________________________________
2209 [  4077] By: jhi                                   on 1999/09/04  21:54:42
2210         Log: timesum() wasn't @EXPORTed as promised by the documentation.
2211              Bug reported by Alex Efros <powerman@inart.kharkov.com>.
2212      Branch: cfgperl
2213            ! lib/Benchmark.pm
2214 ____________________________________________________________________________
2215 [  4076] By: gsar                                  on 1999/09/04  20:21:59
2216         Log: integrate cfgperl contents into mainline
2217      Branch: perl
2218           +> lib/attributes.pm lib/warnings.pm t/lib/attrs.t t/op/attrs.t
2219           +> t/pragma/warn/7fatal t/pragma/warn/8signal t/pragma/warnings.t
2220           +> warnings.h warnings.pl xsutils.c
2221            - lib/warning.pm t/pragma/warning.t warning.h warning.pl
2222           !> (integrate 109 files)
2223 ____________________________________________________________________________
2224 [  4075] By: jhi                                   on 1999/09/04  18:04:47
2225         Log: use integer on the problematic subtest.
2226      Branch: cfgperl
2227            ! t/op/misc.t
2228 ____________________________________________________________________________
2229 [  4074] By: jhi                                   on 1999/09/04  17:57:40
2230         Log: Warn about numconvert.t in case somebody
2231              wants to make sv_2pv more 64-bit aware.
2232      Branch: cfgperl
2233            ! sv.c
2234 ____________________________________________________________________________
2235 [  4073] By: jhi                                   on 1999/09/04  17:54:51
2236         Log: Comment upgrading: the quad situation isn't quite as
2237              bad as it used to be.
2238      Branch: cfgperl
2239            ! perl.h
2240 ____________________________________________________________________________
2241 [  4072] By: jhi                                   on 1999/09/04  15:35:37
2242         Log: Integrate with Sarathy.
2243      Branch: cfgperl
2244           !> win32/win32.c
2245 ____________________________________________________________________________
2246 [  4071] By: jhi                                   on 1999/09/04  15:28:11
2247         Log: Fix LFS with -Duseperlio in Solaris.  Reported in
2248              
2249              From: Robin Barker <rmb1@cise.npl.co.uk>
2250              To: perl5-porters@perl.org
2251              Subject: [ID 19990823.009] [PATCH perl5.005_61] typo in perl.h
2252              Date: Mon, 23 Aug 1999 16:41:11 +0100 (BST)
2253              Message-Id: <199908231541.QAA10043@tempest.npl.co.uk>
2254              
2255              and later (in private email) found to be dependent
2256              on useperlio.
2257              
2258              Mental note: the cpp magic done in perlsdio.h (and assumedly
2259              also in perlsfio.h) may cause trouble later with lfs because
2260              both the perlio scheme by Perl and the lfs support by vendors
2261              like to play cpp games to map the stdio namespace back and forth.
2262              The problem fixed here (fseek vs fseeko, ftell vs ftello) may be
2263              just the beginning.
2264      Branch: cfgperl
2265            ! perlio.c
2266 ____________________________________________________________________________
2267 [  4070] By: jhi                                   on 1999/09/04  13:12:14
2268         Log: Enable 64-bit clean bit ops.
2269              (Disables the t/op/misc.t substest 3 in 64-bit platforms.)
2270      Branch: cfgperl
2271            ! pod/perldelta.pod pod/perlop.pod pp.c pp_hot.c t/op/64bit.t
2272            ! t/op/misc.t
2273 ____________________________________________________________________________
2274 [  4069] By: jhi                                   on 1999/09/03  21:17:30
2275         Log: Turn on USE_64_BIT_OFFSETS implicitly.
2276      Branch: cfgperl
2277            ! perl.h
2278 ____________________________________________________________________________
2279 [  4068] By: jhi                                   on 1999/09/03  08:19:59
2280         Log: Fix from Spider for the sub attributes (there was an undocumented
2281              dependency between force_word() and skipspace()).
2282      Branch: cfgperl
2283            ! toke.c
2284 ____________________________________________________________________________
2285 [  4067] By: jhi                                   on 1999/09/01  23:17:06
2286         Log: From: John Tobey <spam@john-edwin-tobey.org>
2287              To: ilya@math.ohio-state.edu
2288              CC: perl5-porters@perl.org
2289              Subject: Re: [PATCH 5.005_60] distclean forgot two
2290              Date: Mon, 23 Aug 1999 02:10:11 -0400 (EDT)
2291              Message-Id: <m11InJ5-000FPCC@feynman.localnet>
2292      Branch: cfgperl
2293            ! t/lib/dprof.t
2294 ____________________________________________________________________________
2295 [  4066] By: jhi                                   on 1999/09/01  23:14:50
2296         Log: From: "Fifer, Eric" <EFifer@sanwaint.com>
2297              To: perl5-porters@perl.org
2298              Subject: [ID 19990821.001] [PATCH] perl5.005_60 cygwin port
2299              Date: Fri, 20 Aug 1999 15:37:27 +0100
2300              Message-Id: <8A160D637356D311BC4300600849EC8122E217@POST>
2301      Branch: cfgperl
2302            ! cygwin/Makefile.SHs ext/ByteLoader/byterun.h
2303            ! ext/SDBM_File/sdbm/sdbm.c hints/cygwin.sh perl.h pp_sys.c
2304            ! t/io/fs.t t/io/tell.t t/lib/anydbm.t t/op/stat.t
2305 ____________________________________________________________________________
2306 [  4065] By: jhi                                   on 1999/09/01  22:06:43
2307         Log: From: Dominic Dunlop <domo@vo.lu>
2308              To: perl5-porters@perl.org
2309              Subject: [ID 19990819.001] Not OK: perl 5.00560 on powerpc-machten 4.1.1
2310              (UNINSTALLED) [PATCH]
2311              Date: Thu, 19 Aug 1999 09:48:03 +0200
2312              Message-Id: <v03110709b3e165b51dda@[212.24.192.132]>
2313              
2314              The PERL_POLLUTE_MALLOC part had to be manually applied.
2315      Branch: cfgperl
2316            ! hints/machten.sh perl.h
2317 ____________________________________________________________________________
2318 [  4064] By: jhi                                   on 1999/09/01  13:56:14
2319         Log: From: Martin Lichtin <lichtin@bivio.com>
2320              To: jhi@iki.fi
2321              CC: perl5-porters@perl.org
2322              Subject: Re: [ID 19990829.001] ExtUtils::Install.pm, minor umask problem
2323              Date: Wed, 01 Sep 1999 15:50:04 +0200
2324              Message-ID: <37CD2F0C.944BFACE@bivio.com>
2325      Branch: cfgperl
2326            ! lib/ExtUtils/Install.pm
2327 ____________________________________________________________________________
2328 [  4063] By: jhi                                   on 1999/09/01  13:16:11
2329         Log: Enhance lfs tests: check every seek and sysseek
2330              and test also that -e and -f detect largefiles.
2331      Branch: cfgperl
2332            ! t/lib/syslfs.t t/op/lfs.t
2333 ____________________________________________________________________________
2334 [  4062] By: jhi                                   on 1999/09/01  12:08:04
2335         Log: From: Colin Kuskie <ckuskie@Cadence.COM>
2336              To: Ronald J Kimball <rjk@linguist.dartmouth.edu>
2337              cc: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>,
2338              The Perl Porters Mailing List <perl5-porters@perl.org>
2339              Subject: [REPATCH 5.005_61] Re: perldiag.pod omissions
2340              Date: Tue, 31 Aug 1999 11:24:31 -0700 (PDT)
2341              Message-ID: <Pine.GSO.4.10.9908311055460.11290-100000@pdxult10a.cadence.com>
2342      Branch: cfgperl
2343            ! pod/perldiag.pod
2344 ____________________________________________________________________________
2345 [  4061] By: jhi                                   on 1999/09/01  12:03:03
2346         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2347              To: ilya@math.ohio-state.edu (Ilya Zakharevich)
2348              Cc: perl5-porters@perl.org, cloos@adamsmith.ai
2349              Subject: Re: [ID 19990830.005] Assigning value of an op on an SV to said SV
2350              Date: Wed, 1 Sep 1999 02:56:06 -0400 (EDT)
2351              Message-Id: <199909010656.CAA04478@monk.mps.ohio-state.edu>
2352      Branch: cfgperl
2353            ! op.c t/op/join.t
2354 ____________________________________________________________________________
2355 [  4060] By: jhi                                   on 1999/09/01  07:59:42
2356         Log: IV_DIG and NV_DIG fixes.
2357      Branch: cfgperl
2358            ! perl.h
2359 ____________________________________________________________________________
2360 [  4059] By: jhi                                   on 1999/08/31  14:47:18
2361         Log: \C{} -> \N{} residue.
2362      Branch: cfgperl
2363            ! toke.c
2364 ____________________________________________________________________________
2365 [  4057] By: gsar                                  on 1999/08/30  22:08:19
2366         Log: avoid hiding child process window
2367      Branch: perl
2368            ! win32/win32.c
2369 ____________________________________________________________________________
2370 [  4055] By: jhi                                   on 1999/08/30  21:20:50
2371         Log: Document the undefinedness of overshifting.
2372      Branch: cfgperl
2373            ! pod/perlop.pod
2374 ____________________________________________________________________________
2375 [  4054] By: jhi                                   on 1999/08/30  20:18:18
2376         Log: History fixes and updates.
2377      Branch: cfgperl
2378            ! pod/perlhist.pod
2379 ____________________________________________________________________________
2380 [  4053] By: jhi                                   on 1999/08/30  19:34:02
2381         Log: Shell quoting thinko broke installdirs.
2382              From: JVromans@Squirrel.nl (Johan Vromans)
2383              To: perl5-porters@perl.org
2384              Subject: [ID 19990830.001] 5.005_61 Configure does not substitute
2385              installprefix
2386              Date: Mon, 30 Aug 1999 16:10:10 +0200 (MEST)
2387              Message-Id: <14282.37058.934928.805633@plume.nl.compuware.com>
2388      Branch: cfgperl
2389            ! Configure config_h.SH
2390      Branch: metaconfig
2391            ! U/installdirs/archlib.U U/installdirs/bin.U
2392            ! U/installdirs/html1dir.U U/installdirs/html3dir.U
2393            ! U/installdirs/installprefix.U U/installdirs/man1dir.U
2394            ! U/installdirs/man3dir.U U/installdirs/privlib.U
2395            ! U/installdirs/scriptdir.U U/installdirs/sitearch.U
2396            ! U/installdirs/sitebin.U U/installdirs/sitehtml1dir.U
2397            ! U/installdirs/sitehtml3dir.U U/installdirs/sitelib.U
2398            ! U/installdirs/siteman1dir.U U/installdirs/siteman3dir.U
2399            ! U/installdirs/sitescriptdir.U U/installdirs/vendorarch.U
2400            ! U/installdirs/vendorbin.U U/installdirs/vendorhtml1dir.U
2401            ! U/installdirs/vendorhtml3dir.U U/installdirs/vendorlib.U
2402            ! U/installdirs/vendorman1dir.U U/installdirs/vendorman3dir.U
2403            ! U/installdirs/vendorscriptdir.U
2404 ____________________________________________________________________________
2405 [  4052] By: jhi                                   on 1999/08/30  02:57:05
2406         Log: Use \N{named characters} instead of \C.
2407              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2408              To: jhi@iki.fi
2409              Cc: larry@wall.org (Larry Wall), Tim.Bunce@ig.co.uk (Tim Bunce),
2410              perl5-porters@perl.org (Mailing list Perl5)
2411              Subject: Re: [PATCH 5.005_58] Named characters in Perl
2412              Date: Sun, 29 Aug 1999 16:46:53 -0400 (EDT)
2413              Message-Id: <199908292046.QAA05510@monk.mps.ohio-state.edu>
2414      Branch: cfgperl
2415            ! lib/charnames.pm lib/utf8.pm pod/perldiag.pod pod/perlop.pod
2416            ! pod/perlre.pod regcomp.c t/lib/charnames.t toke.c
2417 ____________________________________________________________________________
2418 [  4051] By: jhi                                   on 1999/08/30  02:54:20
2419         Log: From: Spider Boardman <spider@Orb.Nashua.NH.US>
2420              To: perl5-porters@perl.org
2421              Subject: [ID 19990829.004] Autoloaded &VERSION and UNIVERSAL::VERSION
2422              don't mix
2423              Date: Sun, 29 Aug 1999 19:04:53 -0400
2424              Message-Id: <199908292304.TAA13738@Orb.Nashua.NH.US>
2425      Branch: cfgperl
2426            ! universal.c
2427 ____________________________________________________________________________
2428 [  4050] By: jhi                                   on 1999/08/29  16:38:58
2429         Log: Conditionally socksify the LIBS of Socket.
2430      Branch: cfgperl
2431            ! ext/Socket/Makefile.PL
2432 ____________________________________________________________________________
2433 [  4049] By: jhi                                   on 1999/08/29  15:33:30
2434         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2435              To: Mailing list Perl5 <perl5-porters@perl.org>
2436              Subject: Re: [PATCH 5.005_60] fix @DB::typeahead
2437              Date: Wed, 25 Aug 1999 16:19:58 -0400
2438              Message-ID: <19990825161958.A4658@monk.mps.ohio-state.edu>
2439      Branch: cfgperl
2440            ! lib/perl5db.pl
2441 ____________________________________________________________________________
2442 [  4048] By: jhi                                   on 1999/08/29  15:31:36
2443         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
2444              To: perl5-porters@perl.org
2445              Subject: [PATCH _61] Lost arguments to simplified sort
2446              Date: Wed, 25 Aug 1999 23:22:32 -0700 (PDT)
2447              Message-ID: <14276.56616.879390.562685@metonymy.hip.berkeley.edu>
2448      Branch: cfgperl
2449            ! op.c t/op/sort.t
2450 ____________________________________________________________________________
2451 [  4047] By: jhi                                   on 1999/08/29  15:29:29
2452         Log: From: Olaf Flebbe <olaf@science-computing.de>
2453              Sender: owner-perl5-porters@perl.org
2454              To: perl5-porters@perl.org
2455              Subject: [ID 19990827.003] [PATCH]5.005_60 Patch for EPOC Support
2456              Date: Fri, 27 Aug 1999 21:50:41 +0200 (MEST)
2457      Branch: cfgperl
2458            ! README.epoc epoc/config.h epoc/epoc.c epoc/epocish.h
2459            ! epoc/perl.mmp epoc/perl.pkg
2460 ____________________________________________________________________________
2461 [  4046] By: jhi                                   on 1999/08/29  15:21:18
2462         Log: From: pvhp@forte.com (Peter Prymmer)
2463              To: perl5-porters@perl.org
2464              Subject: [PATCH: 5.005_61] an EBCDIC friendly cgi-html.t test
2465              Date: Fri, 27 Aug 99 18:51:04 PDT
2466              Message-Id: <9908280151.AA05010@forte.com>
2467      Branch: cfgperl
2468            ! t/lib/cgi-html.t
2469 ____________________________________________________________________________
2470 [  4045] By: jhi                                   on 1999/08/29  15:18:38
2471         Log: Fix scalar gmtime (and localtime) in quad environments,
2472              bug reported by Robin Parker.
2473              
2474              From: Robin Barker <rmb1@cise.npl.co.uk>
2475              To: jhi@iki.fi
2476              Cc: perl5-porters@perl.org
2477              Subject: Re: [ID 19990823.009] [PATCH perl5.005_61] typo in perl.h
2478              Date: Tue, 24 Aug 1999 11:09:24 +0100 (BST)
2479              Message-Id: <199908241009.LAA24394@tempest.npl.co.uk>
2480      Branch: cfgperl
2481            ! pp_sys.c t/op/time.t
2482 ____________________________________________________________________________
2483 [  4044] By: jhi                                   on 1999/08/29  11:24:03
2484         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
2485              To: perl5-porters@perl.org (Mailing list Perl5)
2486              Subject: [PATCH 5.005_60] Speeding up XSUB calls up to 66%
2487              Date: Fri, 27 Aug 1999 03:33:01 -0400 (EDT)
2488              Message-Id: <199908270733.DAA16927@monk.mps.ohio-state.edu>
2489              
2490              Addendum: it's "only" 33% speedup.
2491      Branch: cfgperl
2492            ! dump.c op.c op.h pp.h
2493 ____________________________________________________________________________
2494 [  4043] By: jhi                                   on 1999/08/29  11:10:33
2495         Log: From: spider-perl@Orb.Nashua.NH.US
2496              To: Mailing list Perl5 <perl5-porters@perl.org>
2497              Subject: [PATCH 5.005_61 CORE] sub : attrlist
2498              Date: Sun, 29 Aug 1999 03:02:11 -0400
2499              Message-Id: <199908290702.DAA32191@Orb.Nashua.NH.US>
2500      Branch: cfgperl
2501            + lib/attributes.pm t/lib/attrs.t t/op/attrs.t xsutils.c
2502            ! MANIFEST Makefile.SH embed.h embed.pl embedvar.h global.sym
2503            ! gv.c lib/AutoSplit.pm lib/SelfLoader.pm objXSUB.h op.c perl.c
2504            ! perl.h perlapi.c perlapi.h perly.c perly.fixer perly.h perly.y
2505            ! perly_c.diff pod/perldelta.pod pod/perldiag.pod
2506            ! pod/perlfunc.pod pod/perlmodlib.pod pod/perlsub.pod proto.h
2507            ! toke.c vms/perly_c.vms vms/perly_h.vms warnings.h
2508 ____________________________________________________________________________
2509 [  4042] By: jhi                                   on 1999/08/29  11:08:50
2510         Log: Turn off gcc-2.95's strict-alias optimization.
2511              This, of course, should be only temporary.
2512              From Andy Dougherty.
2513      Branch: cfgperl
2514            ! Configure config_h.SH
2515      Branch: metaconfig
2516            ! U/compline/ccflags.U U/modified/cc.U
2517 ____________________________________________________________________________
2518 [  4041] By: jhi                                   on 1999/08/29  10:47:30
2519         Log: Fix a typo in #4036.
2520      Branch: cfgperl
2521            ! mg.c
2522 ____________________________________________________________________________
2523 [  4040] By: jhi                                   on 1999/08/29  10:34:58
2524         Log: Add a missing #endif forgotten by #4035.
2525      Branch: cfgperl
2526            ! doop.c
2527 ____________________________________________________________________________
2528 [  4039] By: jhi                                   on 1999/08/29  10:31:19
2529         Log: Remove an extra #endif introduced by #4036.
2530      Branch: cfgperl
2531            ! perl.h
2532 ____________________________________________________________________________
2533 [  4038] By: jhi                                   on 1999/08/29  10:18:59
2534         Log: Rename warning to warnings, from Paul Marquess.
2535      Branch: cfgperl
2536            + lib/warnings.pm t/pragma/warn/7fatal t/pragma/warn/8signal
2537            + t/pragma/warnings.t warnings.h warnings.pl
2538            - lib/warning.pm t/pragma/warning.t warning.h warning.pl
2539            ! MANIFEST Makefile.SH gv.c mg.c perl.h pod/perldelta.pod
2540            ! pod/perldiag.pod pod/perlfunc.pod pod/perllexwarn.pod
2541            ! pod/perlmodlib.pod pod/perlrun.pod pod/perltoc.pod
2542            ! pod/perlvar.pod t/op/64bit.t t/op/tie.t t/pragma/warn/2use
2543            ! t/pragma/warn/3both t/pragma/warn/4lint t/pragma/warn/5nolint
2544            ! t/pragma/warn/6default t/pragma/warn/doio t/pragma/warn/doop
2545            ! t/pragma/warn/gv t/pragma/warn/mg t/pragma/warn/op
2546            ! t/pragma/warn/perl t/pragma/warn/perly t/pragma/warn/pp
2547            ! t/pragma/warn/pp_ctl t/pragma/warn/pp_hot t/pragma/warn/pp_sys
2548            ! t/pragma/warn/regcomp t/pragma/warn/regexec t/pragma/warn/sv
2549            ! t/pragma/warn/taint t/pragma/warn/toke t/pragma/warn/universal
2550            ! t/pragma/warn/utf8 t/pragma/warn/util toke.c
2551 ____________________________________________________________________________
2552 [  4037] By: jhi                                   on 1999/08/29  10:08:47
2553         Log: Create the equivalence tables based on
2554              the real Unicode decomposition, not on
2555              the character name.
2556      Branch: cfgperl
2557            ! lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode
2558            ! lib/unicode/mktables.PL
2559 ____________________________________________________________________________
2560 [  4036] By: jhi                                   on 1999/08/29  09:29:08
2561         Log: Integrate with Sarathy.
2562      Branch: cfgperl
2563           +> lib/unicode/Is/SylA.pl lib/unicode/Is/SylC.pl
2564           +> lib/unicode/Is/SylE.pl lib/unicode/Is/SylI.pl
2565           +> lib/unicode/Is/SylO.pl lib/unicode/Is/SylU.pl
2566           +> lib/unicode/Is/SylV.pl lib/unicode/Is/SylWA.pl
2567           +> lib/unicode/Is/SylWC.pl lib/unicode/Is/SylWE.pl
2568           +> lib/unicode/Is/SylWI.pl lib/unicode/Is/SylWV.pl
2569           !> (integrate 190 files)
2570 ____________________________________________________________________________
2571 [  4035] By: jhi                                   on 1999/08/29  08:56:15
2572         Log: Implement 64-bit vec().
2573      Branch: cfgperl
2574            ! doop.c pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
2575            ! pp.h t/op/64bit.t
2576 ____________________________________________________________________________
2577 [  4034] By: gsar                                  on 1999/08/29  03:35:18
2578         Log: deadcode removal
2579      Branch: perl
2580            ! XSUB.h embed.h embed.pl global.sym mg.c op.c perl.h perlapi.h
2581            ! pp_ctl.c proto.h run.c sv.c
2582 ____________________________________________________________________________
2583 [  4033] By: jhi                                   on 1999/08/28  17:31:07
2584         Log: From: Robin Barker <rmb1@cise.npl.co.uk>
2585              To: perl5-porters@perl.org
2586              Subject: [ID 19990823.009] [PATCH perl5.005_61] typo in perl.h
2587              Date: Mon, 23 Aug 1999 16:41:11 +0100 (BST)
2588              Message-Id: <199908231541.QAA10043@tempest.npl.co.uk>
2589      Branch: cfgperl
2590            ! perl.h
2591 ____________________________________________________________________________
2592 [  4032] By: gsar                                  on 1999/08/26  23:53:33
2593         Log: new thread should set current interp in TLS
2594      Branch: perl
2595            ! ext/Thread/Thread.xs
2596 ____________________________________________________________________________
2597 [  4031] By: bailey                                on 1999/08/23  03:40:07
2598         Log: When extension doesn't have a "main" object file to anchor linker search, pull in all objct files
2599      Branch: vmsperl
2600            ! lib/ExtUtils/MM_VMS.pm
2601 ____________________________________________________________________________
2602 [  4030] By: bailey                                on 1999/08/23  03:37:43
2603         Log: Patch up holes in realclean target
2604      Branch: vmsperl
2605            ! vms/descrip_mms.template
2606 ____________________________________________________________________________
2607 [  4029] By: bailey                                on 1999/08/23  03:36:24
2608         Log: Fix handling of PERL_POLLUTE
2609      Branch: vmsperl
2610            ! lib/ExtUtils/MM_VMS.pm
2611 ____________________________________________________________________________
2612 [  4028] By: bailey                                on 1999/08/23  03:34:08
2613         Log: Update VMS version of perly.h
2614      Branch: vmsperl
2615            ! vms/perly_h.vms
2616 ____________________________________________________________________________
2617 [  4027] By: bailey                                on 1999/08/23  03:32:45
2618         Log: Update dependencies in Descrip.MMS
2619      Branch: vmsperl
2620            ! vms/descrip_mms.template
2621 ____________________________________________________________________________
2622 [  4026] By: bailey                                on 1999/08/23  03:30:01
2623         Log: Fix prototypes in perlapi.c (64-bit?)
2624              Clear prior definition of getenv_len before defining VMS-specific macro
2625      Branch: vmsperl
2626            ! perlapi.c vms/vmsish.h
2627 ____________________________________________________________________________
2628 [  4025] By: bailey                                on 1999/08/23  03:25:51
2629         Log: Add '-m' option to Configure.com which skips the MANIFEST check
2630      Branch: vmsperl
2631            ! configure.com
2632 ____________________________________________________________________________
2633 [  4024] By: bailey                                on 1999/08/23  03:23:34
2634         Log: Skip open() tests that rely on Unix fork semantics
2635      Branch: vmsperl
2636            ! t/io/open.t
2637 ____________________________________________________________________________
2638 [  4023] By: bailey                                on 1999/08/23  03:21:46
2639         Log: Loosen conditons for recognizing a function name in perl.h to accomodate revisions
2640      Branch: vmsperl
2641            ! vms/gen_shrfls.pl
2642 ____________________________________________________________________________
2643 [  4022] By: bailey                                on 1999/08/23  03:17:33
2644         Log: update MM_VMS to use new File::Spec routines
2645      Branch: vmsperl
2646            ! lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm
2647 ____________________________________________________________________________
2648 [  4021] By: bailey                                on 1999/08/23  03:13:40
2649         Log: byteperl is now part of the ByteLoader ext
2650      Branch: vmsperl
2651            ! ext/ByteLoader/byterun.h vms/descrip_mms.template
2652 ____________________________________________________________________________
2653 [  4020] By: bailey                                on 1999/08/23  03:10:41
2654         Log: Allow option to treat barewords at start of Unix paths as simple words rather than logicals
2655      Branch: vmsperl
2656            ! vms/vms.c
2657 ____________________________________________________________________________
2658 [  4019] By: bailey                                on 1999/08/23  03:07:28
2659         Log: Update calls for new thread context handling
2660      Branch: vmsperl
2661            ! ext/Devel/DProf/DProf.xs ext/DynaLoader/dl_vms.xs
2662            ! ext/POSIX/POSIX.xs vms/vms.c vms/vmsish.h vms/writemain.pl
2663 ____________________________________________________________________________
2664 [  4018] By: bailey                                on 1999/08/23  03:01:31
2665         Log: Allow for file versions in library when looking for .bs files
2666      Branch: vmsperl
2667            ! ext/DynaLoader/DynaLoader_pm.PL
2668 ____________________________________________________________________________
2669 [  4017] By: bailey                                on 1999/08/23  02:58:55
2670         Log: Update VMS configuration procedures for 5.005_60
2671      Branch: vmsperl
2672            ! configure.com vms/subconfigure.com
2673 ____________________________________________________________________________
2674 [  4016] By: gsar                                  on 1999/08/20  22:19:56
2675         Log: update Changes
2676      Branch: perl
2677            ! Changes
2678
2679 ----------------
2680 Version 5.005_61
2681 ----------------
2682
2683 ____________________________________________________________________________
2684 [  4015] By: gsar                                  on 1999/08/20  22:17:41
2685         Log: perl_free() should use PerlMem_free()
2686      Branch: perl
2687            ! perl.c
2688 ____________________________________________________________________________
2689 [  4014] By: gsar                                  on 1999/08/20  22:10:46
2690         Log: win32 tweaks
2691      Branch: perl
2692            ! XSUB.h mg.c perl.c win32/config.bc win32/config.gc
2693            ! win32/config.vc win32/config_H.bc win32/config_H.gc
2694            ! win32/config_H.vc
2695 ____________________________________________________________________________
2696 [  4013] By: gsar                                  on 1999/08/20  22:09:56
2697         Log: DEBUG_m() adjusted to internalize dTHX
2698      Branch: perl
2699            ! malloc.c perl.h util.c
2700 ____________________________________________________________________________
2701 [  4012] By: gsar                                  on 1999/08/20  17:51:06
2702         Log: make autogenerated files writable
2703      Branch: perl
2704            ! (edit 171 files)
2705 ____________________________________________________________________________
2706 [  4011] By: gsar                                  on 1999/08/20  17:43:47
2707         Log: update Changes
2708      Branch: perl
2709            ! Changes perl.h pod/perldelta.pod pod/perlguts.pod
2710 ____________________________________________________________________________
2711 [  4010] By: gsar                                  on 1999/08/20  17:21:53
2712         Log: up patchlevel &c
2713      Branch: perl
2714            ! Changes patchlevel.h win32/Makefile win32/config_H.bc
2715            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
2716 ____________________________________________________________________________
2717 [  4009] By: gsar                                  on 1999/08/20  16:46:26
2718         Log: add missing Is/Syl*.pl files
2719      Branch: perl
2720            + lib/unicode/Is/SylA.pl lib/unicode/Is/SylC.pl
2721            + lib/unicode/Is/SylE.pl lib/unicode/Is/SylI.pl
2722            + lib/unicode/Is/SylO.pl lib/unicode/Is/SylU.pl
2723            + lib/unicode/Is/SylV.pl lib/unicode/Is/SylWA.pl
2724            + lib/unicode/Is/SylWC.pl lib/unicode/Is/SylWE.pl
2725            + lib/unicode/Is/SylWI.pl lib/unicode/Is/SylWV.pl
2726 ____________________________________________________________________________
2727 [  4008] By: gsar                                  on 1999/08/20  16:31:02
2728         Log: integrate cfgperl contents into mainline
2729      Branch: perl
2730           +> ext/ByteLoader/hints/sunos.pl lib/charnames.pm
2731           +> lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode
2732           +> lib/unicode/syllables.txt t/lib/charnames.t t/lib/syslfs.t
2733           +> t/op/lfs.t
2734            - lib/unicode/EthiopicSyllables.txt
2735            - lib/unicode/MakeEthiopicSyllables.PL
2736           !> (integrate 261 files)
2737 ____________________________________________________________________________
2738 [  4007] By: gsar                                  on 1999/08/20  15:24:08
2739         Log: support USE_THREADS+MULTIPLICITY; source compat tweaks for
2740              USE_THREADS and MULTIPLICITY; minor pod adjustments
2741      Branch: perl
2742            ! Porting/patching.pod Todo Todo-5.005 XSUB.h embed.pl
2743            ! embedvar.h perl.c perl.h pod/perlguts.pod util.c
2744 ____________________________________________________________________________
2745 [  4006] By: jhi                                   on 1999/08/19  19:01:41
2746         Log: Tighten the vec() code so that naughty BITS cause an error.
2747      Branch: cfgperl
2748            ! doop.c
2749 ____________________________________________________________________________
2750 [  4005] By: jhi                                   on 1999/08/19  15:55:09
2751         Log: Don't document ill-defined vec() bits cases
2752              (for which the code doesn't work right in any case)
2753      Branch: cfgperl
2754            ! pod/perldiag.pod pod/perlfunc.pod
2755 ____________________________________________________________________________
2756 [  4004] By: jhi                                   on 1999/08/19  12:49:41
2757         Log: Removed duplicated code (in pp.c and mg.c) by introducing
2758              do_vecget().  NOTE: the calling convention of do_vecset()
2759              changes, too: the `offset' that is assigned to LvTARGOFF(TARG)
2760              in pp_vec() is no more multiplied by `size' in pp_vec(),
2761              the multiplication is now done in do_vecset().
2762              
2763              Also fix a cpp thinko in change #4002.
2764      Branch: cfgperl
2765            ! doop.c embed.h embed.pl embedvar.h global.sym mg.c objXSUB.h
2766            ! perl.h perlapi.c pod/perldiag.pod pod/perlfunc.pod pp.c
2767            ! proto.h
2768 ____________________________________________________________________________
2769 [  4003] By: jhi                                   on 1999/08/18  08:27:22
2770         Log: Warn about small spherical distances.
2771      Branch: cfgperl
2772            ! lib/Math/Trig.pm
2773 ____________________________________________________________________________
2774 [  4002] By: jhi                                   on 1999/08/17  09:11:51
2775         Log: Enhance IV_FITS_IN_IV (though it's still unused).
2776      Branch: cfgperl
2777            ! perl.h
2778 ____________________________________________________________________________
2779 [  4001] By: jhi                                   on 1999/08/17  08:13:34
2780         Log: From: andreas.koenig@anima.de (Andreas J. Koenig)
2781              Message-ID: <sfcogg7ylk7.fsf@hohenstaufen.in-berlin.de>
2782              To: The Perl5 Porters Mailing List <perl5-porters@perl.org>
2783              Subject: [PATCH] overload.pm str/num confu
2784              Date: 17 Aug 1999 08:21:12 +0200
2785      Branch: cfgperl
2786            ! lib/overload.pm
2787 ____________________________________________________________________________
2788 [  4000] By: jhi                                   on 1999/08/17  07:20:23
2789         Log: From: merlyn@stonehenge.com (Randal L. Schwartz)
2790              To: perl5-porters@perl.org
2791              Subject: [ID 19990816.006] small patch to perlobj.pod from 5.005_03
2792              Date: 16 Aug 1999 14:24:28 -0700
2793              Message-Id: <m1ogg7to4z.fsf@halfdome.holdit.com>
2794      Branch: cfgperl
2795            ! pod/perlobj.pod
2796 ____________________________________________________________________________
2797 [  3999] By: jhi                                   on 1999/08/16  19:49:09
2798         Log: Integrate with Nick.
2799      Branch: cfgperl
2800           !> cop.h op.c perl.c t/op/eval.t t/pragma/warn/op util.c
2801 ____________________________________________________________________________
2802 [  3998] By: jhi                                   on 1999/08/16  19:44:29
2803         Log: Fix most of the pod2man moanings reported in
2804              
2805              From: "Larry W. Virden" <lvirden@cas.org>
2806              To: perl5-porters@perl.org
2807              Subject: [ID 19990803.011] Not OK: perl 5.00560 on sun4-solaris 2.6
2808              (UNINSTALLED)
2809              Date: Tue, 3 Aug 1999 15:35:06 -0400 (EDT)
2810              Message-Id: <199908031935.PAA27692@cas.org>
2811              
2812              Configure regen'ed.
2813      Branch: cfgperl
2814            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
2815            ! config_h.SH ext/B/B/Stash.pm lib/Carp/Heavy.pm
2816            ! lib/Dumpvalue.pm lib/Exporter/Heavy.pm lib/filetest.pm
2817            ! lib/utf8.pm pod/perllexwarn.pod pod/perlxstut.pod
2818            ! utils/h2xs.PL utils/perlcc.PL
2819 ____________________________________________________________________________
2820 [  3997] By: jhi                                   on 1999/08/16  19:20:37
2821         Log: A fix of sorts for the flush-before-dup scenario.
2822      Branch: cfgperl
2823            ! doio.c
2824 ____________________________________________________________________________
2825 [  3996] By: jhi                                   on 1999/08/16  19:14:37
2826         Log: More paranoia.
2827      Branch: cfgperl
2828            ! sv.c
2829 ____________________________________________________________________________
2830 [  3995] By: jhi                                   on 1999/08/16  18:55:35
2831         Log: Batch of small 64-bit/long double/large file support tweaks:
2832              - scan for LDBL_DIG
2833              - from DBL_DIG and LDBL_DIG select NV_DIG
2834              - introduce IVSIZE, UVSIZE, NVSIZE
2835              - introduce IV_DIG
2836              - remove stdio64
2837              - AIX uses `oslevel` when others use `uname -r`
2838              - already AIX 4.2 goes 64-bit
2839              - in HP-UX require the 64-bit libc, just the directory isn't enough
2840              - group ids are not NVs
2841              - #undef USE_LONG_DOUBLE if long double is no better than double
2842              - introduce NV_WITHIN_*() and IV_FITS_IN_IV
2843              - mention large file support in perldelta
2844              - introduce quad TOPpin' and POPpin'
2845              - the svcat... buffer was tiny for printing quads in %b
2846              - fix the multiplication test in 64bit.t
2847              - try to make VMS to comply with all this removal and "introducal"
2848              of symbols
2849      Branch: cfgperl
2850            ! Configure config_h.SH dump.c hints/aix.sh hints/hpux.sh mg.c
2851            ! perl.h perlio.c pod/perldelta.pod pp.h sv.c t/lib/syslfs.t
2852            ! t/op/64bit.t t/op/lfs.t utf8.c vms/subconfigure.com
2853      Branch: metaconfig
2854            ! U/modified/d_longdbl.U
2855      Branch: metaconfig/U/perl
2856            + d_ldbl_dig.U
2857 ____________________________________________________________________________
2858 [  3994] By: jhi                                   on 1999/08/16  07:53:44
2859         Log: More Configure/subconfigure.com syncing.
2860      Branch: cfgperl
2861            ! vms/subconfigure.com
2862 ____________________________________________________________________________
2863 [  3993] By: jhi                                   on 1999/08/14  22:09:26
2864         Log: Remove from VMS what the change #3982 took away from Configure lands.
2865      Branch: cfgperl
2866            ! vms/subconfigure.com
2867 ____________________________________________________________________________
2868 [  3992] By: jhi                                   on 1999/08/14  13:29:13
2869         Log: Small test tweaks.
2870      Branch: cfgperl
2871            ! t/io/dup.t t/lib/dprof.t t/lib/odbm.t
2872 ____________________________________________________________________________
2873 [  3991] By: jhi                                   on 1999/08/14  13:08:41
2874         Log: Augment filesize limit note.
2875      Branch: cfgperl
2876            ! doio.c
2877 ____________________________________________________________________________
2878 [  3990] By: jhi                                   on 1999/08/14  13:06:12
2879         Log: Note about filesize limits.
2880      Branch: cfgperl
2881            ! doio.c pp_sys.c
2882 ____________________________________________________________________________
2883 [  3989] By: jhi                                   on 1999/08/14  11:31:58
2884         Log: Catch the case of filesize limits.
2885      Branch: cfgperl
2886            ! t/lib/syslfs.t t/op/lfs.t
2887 ____________________________________________________________________________
2888 [  3988] By: nick                                  on 1999/08/14  09:20:58
2889         Log: New lightweight Carp has a require. If Carp is used in a __DIE__ handler
2890              this causes a POPSTACK panic. The problem seems to be that although
2891              die_where() has unwound the tail of perl_vdie() top_env setjmp has been
2892              set to resume execution there. Avoiding setting CATCH_SET(TRUE) in 
2893              call_sv() avoids this. So invent a new G_NOCATCH flag to disable
2894              messing with CATCH_SET() in call_sv, use it in perl_vdie().
2895              Add test to op/eval.t which will fail (panic) if bug comes back.
2896              >>> I AM NOT CONVINCED THIS IS CORRECT LONG TERM FIX <<<
2897      Branch: perl
2898            ! cop.h perl.c t/op/eval.t util.c
2899 ____________________________________________________________________________
2900 [  3987] By: jhi                                   on 1999/08/13  23:57:52
2901         Log: From: "Craig A. Berry" <craig.berry@metamor.com>
2902              To: perl5-porters@perl.org, vmsperl@perl.org, sarathy@activestate.com
2903              Subject: [PATCH 5.005_60] fix MM_VMS.pm for space-delimited lists
2904              Date: Fri, 13 Aug 1999 17:42:47 -0500
2905              Message-Id: <v04210105b3da3ed9599d@[172.16.246.133]>
2906      Branch: cfgperl
2907            ! lib/ExtUtils/MM_VMS.pm
2908 ____________________________________________________________________________
2909 [  3986] By: jhi                                   on 1999/08/13  23:56:44
2910         Log: Don't quit before printing out the message.
2911      Branch: cfgperl
2912            ! t/lib/syslfs.t t/op/lfs.t
2913 ____________________________________________________________________________
2914 [  3985] By: jhi                                   on 1999/08/13  23:35:49
2915         Log: Remove more t/ trash on target "clean".
2916      Branch: cfgperl
2917            ! Makefile.SH
2918 ____________________________________________________________________________
2919 [  3984] By: jhi                                   on 1999/08/13  23:02:53
2920         Log: Avoid double long double. 
2921      Branch: cfgperl
2922            ! Configure config_h.SH
2923      Branch: metaconfig/U/perl
2924            ! uselongdbl.U
2925 ____________________________________________________________________________
2926 [  3983] By: jhi                                   on 1999/08/13  22:59:56
2927         Log: BYTEORDER fix.
2928      Branch: cfgperl
2929            ! Configure config_h.SH
2930      Branch: metaconfig
2931            ! U/compline/byteorder.U
2932 ____________________________________________________________________________
2933 [  3982] By: jhi                                   on 1999/08/13  22:48:40
2934         Log: Jumbo Configure and large file support update.
2935              Remove a lot of unneeded 64-bitness cruft;
2936              re-introduce BYTEORDER; update 64-bitness hints;
2937              lfs should now work in Solaris; long doubles in AIX.
2938      Branch: cfgperl
2939            ! Configure config_h.SH doio.c hints/aix.sh hints/hpux.sh
2940            ! hints/irix_6.sh hints/solaris_2.sh iperlsys.h perl.h perlio.c
2941            ! perlsdio.h pp.h pp_sys.c
2942      Branch: metaconfig
2943            ! U/compline/byteorder.U U/compline/ccflags.U
2944      Branch: metaconfig/U/perl
2945            ! d_dlsymun.U io64.U uselongdbl.U
2946 ____________________________________________________________________________
2947 [  3980] By: jhi                                   on 1999/08/13  15:09:11
2948         Log: Introduce HAS_LLSEEK.
2949      Branch: cfgperl
2950            ! Configure config_h.SH perl.h
2951 ____________________________________________________________________________
2952 [  3979] By: jhi                                   on 1999/08/13  14:29:47
2953         Log: From: <dan@sidhe.org>
2954              To: perl5-porters@perl.org, vmsperl@perl.org, bailey@newman.upenn.edu,
2955              sarathy@activestate.com
2956              Subject: [PATCH 5.005_60]fix up VMS->unix filename translation a bit
2957              Date: Fri, 13 Aug 1999 09:00:42 -0700 (PDT)
2958              Message-ID: <Pine.LNX.4.10.9908130849390.3950-100000@tuatha.sidhe.org>
2959      Branch: cfgperl
2960            ! vms/vms.c
2961 ____________________________________________________________________________
2962 [  3978] By: jhi                                   on 1999/08/13  09:56:46
2963         Log: Make the 64-bit tests more paranoid.
2964      Branch: cfgperl
2965            ! t/op/64bit.t
2966 ____________________________________________________________________________
2967 [  3976] By: jhi                                   on 1999/08/12  21:49:16
2968         Log: IRIX64 needs more -mabi=64 with gcc.
2969      Branch: cfgperl
2970            ! hints/irix_6.sh
2971 ____________________________________________________________________________
2972 [  3975] By: jhi                                   on 1999/08/12  21:02:03
2973         Log: Reincarnate change #3967, now in more modest form.
2974      Branch: cfgperl
2975            ! hints/irix_6.sh
2976 ____________________________________________________________________________
2977 [  3974] By: jhi                                   on 1999/08/12  20:49:36
2978         Log: Remove rt from libswanted (I added it many moons ago
2979              when I thought it would be useful in Digital UNIX,
2980              I was wrong); undo the recent IRIX hints changes,
2981              getting rid of one warning brought new ones.
2982      Branch: cfgperl
2983            ! Configure config_h.SH hints/irix_6.sh
2984      Branch: metaconfig
2985            ! U/modified/Myinit.U
2986 ____________________________________________________________________________
2987 [  3973] By: jhi                                   on 1999/08/12  19:42:53
2988         Log: st_blocks is in 512 byte blocks.
2989      Branch: cfgperl
2990            ! t/lib/syslfs.t t/op/lfs.t
2991 ____________________________________________________________________________
2992 [  3972] By: jhi                                   on 1999/08/12  19:27:31
2993         Log: Don't claim defeat too early.
2994      Branch: cfgperl
2995            ! Configure config_h.SH
2996      Branch: metaconfig/U/perl
2997            ! longdblfio.U
2998 ____________________________________________________________________________
2999 [  3971] By: jhi                                   on 1999/08/12  19:24:14
3000         Log: IRIX 64-bit hint tweak. 
3001      Branch: cfgperl
3002            ! hints/irix_6.sh
3003 ____________________________________________________________________________
3004 [  3970] By: nick                                  on 1999/08/12  19:17:20
3005         Log: Turn of deprecated warnings for defined(@Sompack::ISA) type
3006              tests i.e. RV2AV and RV2HV
3007      Branch: perl
3008            ! op.c t/pragma/warn/op
3009 ____________________________________________________________________________
3010 [  3969] By: jhi                                   on 1999/08/12  19:06:17
3011         Log: Add Configure -Duselongdouble and add a missing semicolon.
3012      Branch: cfgperl
3013            ! Configure config_h.SH sv.c
3014      Branch: metaconfig/U/perl
3015            + uselongdbl.U
3016 ____________________________________________________________________________
3017 [  3968] By: jhi                                   on 1999/08/12  18:46:00
3018         Log: Simply exit() early if lfs support seems unlikely.
3019      Branch: cfgperl
3020            ! t/lib/syslfs.t t/op/lfs.t
3021 ____________________________________________________________________________
3022 [  3967] By: jhi                                   on 1999/08/12  18:44:05
3023         Log: Suffer silently for unused libraries.
3024      Branch: cfgperl
3025            ! hints/irix_6.sh
3026 ____________________________________________________________________________
3027 [  3966] By: jhi                                   on 1999/08/12  13:18:44
3028         Log: Update MANIFEST to follow change #3965.
3029      Branch: cfgperl
3030            ! MANIFEST
3031 ____________________________________________________________________________
3032 [  3965] By: jhi                                   on 1999/08/12  13:15:38
3033         Log: Regenerate Unicode tables based on new syllable lists
3034              from Daniel Yacob.
3035      Branch: cfgperl
3036            ! (edit 159 files)
3037 ____________________________________________________________________________
3038 [  3964] By: jhi                                   on 1999/08/12  10:06:24
3039         Log: Remove more spurious casting.
3040      Branch: cfgperl
3041            ! pp_sys.c
3042 ____________________________________________________________________________
3043 [  3963] By: jhi                                   on 1999/08/12  08:18:53
3044         Log: Minor niggles on the lfs tests.
3045      Branch: cfgperl
3046            ! t/lib/syslfs.t t/op/lfs.t
3047 ____________________________________________________________________________
3048 [  3962] By: jhi                                   on 1999/08/11  22:48:25
3049         Log: Don't bother with lfs testing if off_t is too small.
3050      Branch: cfgperl
3051            ! t/lib/syslfs.t t/op/lfs.t
3052 ____________________________________________________________________________
3053 [  3961] By: jhi                                   on 1999/08/11  22:22:54
3054         Log: Long double patches from Dan Sugalski.
3055      Branch: cfgperl
3056            ! sv.c
3057 ____________________________________________________________________________
3058 [  3960] By: jhi                                   on 1999/08/11  22:17:55
3059         Log: Flush buffer before duplicating file descriptor.
3060              
3061              From: Mark-Jason Dominus <mjd@plover.com>
3062              To: Graham Barr <gbarr@pobox.com>
3063              cc: Vicki Brown <vlb@cfcl.com>, perl5-porters@perl.org, mjd@plover.com
3064              Subject: Re: [ID 19990811.002] can't dup DATA? (PATCH (5.005_57))
3065              Date: Wed, 11 Aug 1999 15:56:09 -0400
3066              Message-ID: <19990811195610.5933.qmail@plover.com>
3067              
3068              From: Mark-Jason Dominus <mjd@plover.com>
3069              To: perl5-porters@perl.org
3070              Subject: Re: [ID 19990811.002] can't dup DATA? (PATCH (5.005_57)) 
3071              Date: Wed, 11 Aug 1999 16:05:46 -0400
3072              Message-ID: <19990811200546.6165.qmail@plover.com>
3073      Branch: cfgperl
3074            ! doio.c pod/perldelta.pod
3075 ____________________________________________________________________________
3076 [  3959] By: jhi                                   on 1999/08/11  22:11:35
3077         Log: Bypass fsync(NULL) (crashes miniperl compiled with DEC C 5.2)
3078              
3079              From: "Craig A. Berry" <craig.berry@metamor.com>
3080              Sender: owner-perl5-porters@perl.org
3081              To: vmsperl@perl.org, perl5-porters@perl.org, sarathy@activestate.com,
3082              bailey@newman.upenn.edu
3083              Subject: [PATCH 5.005_60] vms.c my_flush patch to circumvent fileno
3084              problem
3085              Date: Wed, 11 Aug 1999 14:31:11 -0500
3086              Message-Id: <4.2.0.58.19990811141007.00b8f8a0@mmtnt11.metamor.com>
3087      Branch: cfgperl
3088            ! vms/vms.c
3089 ____________________________________________________________________________
3090 [  3958] By: jhi                                   on 1999/08/11  15:35:45
3091         Log: Add a hopefully comforting message if there seems to be no LFS. 
3092              This seems to be the case with e.g. ext2fs, a somewhat popular fs.
3093              The tests will fail on lfs tests only if quad is available,
3094              if ENOQUAD, the lfs tests will be skipped.
3095      Branch: cfgperl
3096            ! t/lib/syslfs.t t/op/lfs.t
3097 ____________________________________________________________________________
3098 [  3957] By: jhi                                   on 1999/08/11  12:25:59
3099         Log: Unapply an experimental patch that accidentally escaped
3100              from the lab by piggybacking with the change #3955.
3101      Branch: cfgperl
3102            ! pp.c pp.h pp_hot.c
3103 ____________________________________________________________________________
3104 [  3956] By: jhi                                   on 1999/08/11  08:19:23
3105         Log: Add sysio large file support testing.
3106      Branch: cfgperl
3107            + t/lib/syslfs.t
3108            ! MANIFEST pod/perlfunc.pod t/op/64bit.t t/op/lfs.t
3109 ____________________________________________________________________________
3110 [  3955] By: jhi                                   on 1999/08/10  22:39:11
3111         Log: From: <dan@sidhe.org>
3112              To: vmsperl@perl.org, perl5-porters@perl.org,
3113              sarathy@activestate.com, bailey@newman.upenn.edu
3114              Subject: [PATCH 5.005_60]Patches needed to get _60 building with
3115              threads on VMS
3116              Date: Tue, 10 Aug 1999 16:34:56 -0700 (PDT)
3117              Message-ID: <Pine.LNX.4.10.9908101631030.18266-100000@tuatha.sidhe.org>
3118      Branch: cfgperl
3119            ! ext/Devel/DProf/DProf.xs ext/DynaLoader/dl_vms.xs
3120            ! ext/POSIX/POSIX.xs pp.c pp.h pp_hot.c vms/vms.c vms/vmsish.h
3121            ! vms/writemain.pl
3122 ____________________________________________________________________________
3123 [  3954] By: jhi                                   on 1999/08/10  20:37:55
3124         Log: LFS testing robustness.
3125      Branch: cfgperl
3126            ! t/op/lfs.t
3127 ____________________________________________________________________________
3128 [  3953] By: jhi                                   on 1999/08/10  19:54:50
3129         Log: From: <dan@sidhe.org>
3130              To: vmsperl@perl.org, perp5-porters@perl.org, bailey@newman.upenn.edu,
3131              sarathy@activestate.com
3132              Subject: [PATCH 5.005_60]Pathces to get _60 building on VMS
3133              Date: Tue, 10 Aug 1999 13:28:18 -0700 (PDT)
3134              Message-ID: <Pine.LNX.4.10.9908101323130.18266-100000@tuatha.sidhe.org>
3135      Branch: cfgperl
3136            ! configure.com vms/descrip_mms.template vms/gen_shrfls.pl
3137            ! vms/subconfigure.com vms/vmsish.h
3138 ____________________________________________________________________________
3139 [  3952] By: jhi                                   on 1999/08/10  17:18:57
3140         Log: AIX is different, again.  Now in cc -E output.
3141      Branch: cfgperl
3142            ! Configure config_h.SH
3143      Branch: metaconfig
3144            ! U/modified/cppstdin.U
3145 ____________________________________________________________________________
3146 [  3951] By: jhi                                   on 1999/08/10  14:37:08
3147         Log: Use Pid_t on pgrp matters.
3148      Branch: cfgperl
3149            ! pp_sys.c
3150 ____________________________________________________________________________
3151 [  3950] By: jhi                                   on 1999/08/10  14:35:30
3152         Log: Use Pid_t.
3153      Branch: cfgperl
3154            ! doio.c embed.h embed.pl embedvar.h global.sym perlapi.c
3155            ! pp_sys.c proto.h util.c
3156 ____________________________________________________________________________
3157 [  3949] By: jhi                                   on 1999/08/10  14:11:15
3158         Log: Use Mode_t.
3159      Branch: cfgperl
3160            ! doio.c embed.h embed.pl embedvar.h global.sym perlapi.c
3161            ! perlapi.h pp_sys.c proto.h
3162 ____________________________________________________________________________
3163 [  3948] By: jhi                                   on 1999/08/10  13:53:19
3164         Log: Small perlbug doc tweaks from Jon Orwant.
3165      Branch: cfgperl
3166            ! utils/perlbug.PL
3167 ____________________________________________________________________________
3168 [  3947] By: jhi                                   on 1999/08/10  09:55:11
3169         Log: Large file support testing.
3170      Branch: cfgperl
3171            + t/op/lfs.t
3172            ! MANIFEST t/op/64bit.t
3173 ____________________________________________________________________________
3174 [  3946] By: jhi                                   on 1999/08/10  09:13:54
3175         Log: Remove I32 casting from time-related functions.
3176      Branch: cfgperl
3177            ! pp_sys.c
3178 ____________________________________________________________________________
3179 [  3945] By: jhi                                   on 1999/08/10  09:06:42
3180         Log: Gratuitous uid and gid casts to I32s and ints removed.
3181              There are still problem spots in printfing such ids:
3182              width (%d vs %ld) and signedness %d vs %u.
3183      Branch: cfgperl
3184            ! doio.c embed.h embed.pl embedvar.h global.sym intrpvar.h mg.c
3185            ! perl.c perlapi.c pp_hot.c proto.h
3186 ____________________________________________________________________________
3187 [  3944] By: jhi                                   on 1999/08/10  07:43:03
3188         Log: Remove I32 casts from pp_stat, these make stat()
3189              very broken e.g. on files larger than 2 gigabytes.
3190              Reported by
3191              From: Phil Lobbes <phil@finchcomputer.com>
3192              To: perl5-porters@perl.org
3193              Subject: [ID 19990810.001] Possible bug using stat w/large files Digital
3194              UNIX Perl 5.005_03
3195              Date: Mon, 09 Aug 1999 21:38:54 -0700
3196              Message-Id: <199908100438.VAA08292@ultra.finchcomputer.com>
3197              
3198              There are more of these I32 casts all over pp_sys.c,
3199              all of them should be checked.
3200      Branch: cfgperl
3201            ! pp_sys.c
3202 ____________________________________________________________________________
3203 [  3943] By: jhi                                   on 1999/08/10  07:38:30
3204         Log: Remove blathering.
3205      Branch: cfgperl
3206            ! lib/unicode/mktables.PL
3207 ____________________________________________________________________________
3208 [  3942] By: jhi                                   on 1999/08/09  20:35:13
3209         Log: lexwarn maintenance: new warning class unsafe
3210              subclasses 'overflow' and 'portable' created,
3211              used by the recent integer overflow warnings.
3212              Class syntax subclass 'octal' renamed to 'digit',
3213              binary and hexadecimal parsing errors also 'digit' warnings.
3214      Branch: cfgperl
3215            ! lib/warning.pm pod/perllexwarn.pod t/pragma/warn/util toke.c
3216            ! util.c warning.h warning.pl
3217 ____________________________________________________________________________
3218 [  3941] By: jhi                                   on 1999/08/09  10:40:47
3219         Log: Integrate with Nick.
3220      Branch: cfgperl
3221           +> opnames.h
3222           !> Changes MANIFEST embed.h embed.pl ext/B/B/C.pm ext/B/B/CC.pm
3223           !> global.sym opcode.h opcode.pl perl.h perlapi.c pp.c
3224 ____________________________________________________________________________
3225 [  3940] By: jhi                                   on 1999/08/09  10:32:43
3226         Log: Regenerate the Unicode tables after having updated the Unicode
3227              database (change #3939).
3228      Branch: cfgperl
3229            ! (edit 157 files)
3230 ____________________________________________________________________________
3231 [  3939] By: jhi                                   on 1999/08/09  10:27:22
3232         Log: Unicode data updated to be the latest beta of the Unicode 3.0.
3233      Branch: cfgperl
3234            ! lib/unicode/UnicodeData-Latest.txt
3235 ____________________________________________________________________________
3236 [  3938] By: jhi                                   on 1999/08/09  10:25:54
3237         Log: Ethiopic changes via private email from Daniel Yacob,
3238              <dmulholl@cs.indiana.edu>.  Ethiopic and Cherokee done,
3239              Canadian Syllabics and Yi under construction.
3240      Branch: cfgperl
3241            + lib/unicode/syllables.txt
3242            - lib/unicode/EthiopicSyllables.txt
3243            - lib/unicode/MakeEthiopicSyllables.PL
3244            ! MANIFEST lib/unicode/UnicodeData-Latest.txt
3245            ! lib/unicode/mktables.PL
3246 ____________________________________________________________________________
3247 [  3937] By: jhi                                   on 1999/08/09  10:21:51
3248         Log: Move the equivalence class creation last.
3249      Branch: cfgperl
3250            ! lib/unicode/mktables.PL
3251 ____________________________________________________________________________
3252 [  3936] By: jhi                                   on 1999/08/09  10:20:40
3253         Log: Compute equivalence classes (diacritics stripping) only
3254              for letters, not for ligatures.
3255      Branch: cfgperl
3256            ! lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode
3257            ! lib/unicode/mktables.PL
3258 ____________________________________________________________________________
3259 [  3935] By: nick                                  on 1999/08/08  13:53:57
3260         Log: Will now correctly re-call 
3261              bootstrap "Foo";
3262              if requested. This should allow build on Win32 and other
3263              platforms where you cannot link to loadables directly.
3264      Branch: perl
3265            ! ext/B/B/C.pm
3266 ____________________________________________________________________________
3267 [  3934] By: nick                                  on 1999/08/07  12:23:55
3268         Log: Vishal Bhatia <vishalb@my-deja.com>
3269              Subject: [PATCH 5.005_60] fix for some obscure bugs (compiler)
3270              Message-ID: <HLPEBPHPAKHKAAAA@my-deja.com>
3271      Branch: perl
3272            ! ext/B/B/CC.pm
3273 ____________________________________________________________________________
3274 [  3933] By: nick                                  on 1999/08/07  12:19:46
3275         Log: B::C changes to get simple Tk app. compiling again
3276      Branch: perl
3277            ! ext/B/B/C.pm
3278 ____________________________________________________________________________
3279 [  3932] By: jhi                                   on 1999/08/06  21:17:16
3280         Log: Regen Configure to include change #3915.
3281      Branch: cfgperl
3282            ! Configure config_h.SH
3283 ____________________________________________________________________________
3284 [  3931] By: jhi                                   on 1999/08/06  18:52:57
3285         Log: Todo update.
3286      Branch: cfgperl
3287            ! Todo Todo-5.005 lib/unicode/mktables.PL
3288 ____________________________________________________________________________
3289 [  3930] By: jhi                                   on 1999/08/06  13:13:05
3290         Log: Character class equivalence tables.
3291      Branch: cfgperl
3292            + lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode
3293            ! MANIFEST lib/unicode/mktables.PL
3294 ____________________________________________________________________________
3295 [  3929] By: jhi                                   on 1999/08/06  11:59:11
3296         Log: More Fcntl constants.  (This process really needs
3297              to be automated, at least partly, see the Errno extension.)
3298              Now also the SEEK_ constants are available via the Fcntl.
3299              Yes, this is redundant (IO::Seekable and POSIX supply them already),
3300              but now Fcntl is a one-stop shopping mall for all your
3301              file-related constants.    
3302      Branch: cfgperl
3303            ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs pod/perlfunc.pod
3304 ____________________________________________________________________________
3305 [  3928] By: jhi                                   on 1999/08/06  08:08:03
3306         Log: Protect against pack/unpack repeat count overflows,
3307              based on:
3308              
3309              From: Nathan Torkington <gnat@frii.com>
3310              To: Brian Keefer <mgomes@cwix.com>
3311              Cc: perl5-porters@perl.org
3312              Subject: Re: [ID 19990806.001] Core dump with obfuscated code
3313              Date: Thu, 5 Aug 1999 23:01:51 -0600 (MDT)
3314              Message-ID: <14250.27711.769942.100675@localhost.frii.com>
3315      Branch: cfgperl
3316            ! pod/perldiag.pod pp.c
3317 ____________________________________________________________________________
3318 [  3927] By: jhi                                   on 1999/08/06  07:32:20
3319         Log: Fix for Nathan's fix (#3920) from Guy Decoux.
3320              
3321              From: Nathan Torkington <gnat@frii.com>
3322              To: perl5-porters@perl.org
3323              Subject: Bugfix for my bugfix
3324              Date: Thu, 5 Aug 1999 21:25:47 -0600 (MDT)
3325              Message-ID: <14250.21947.765134.940583@localhost.frii.com>
3326      Branch: cfgperl
3327            ! ext/B/B/Assembler.pm
3328 ____________________________________________________________________________
3329 [  3926] By: jhi                                   on 1999/08/05  17:25:19
3330         Log: Fix regex charclass parsing so that bogus ranges
3331              like [0-\d] and [[:word:]-z] are no more allowed.
3332              The anomaly was noticed by Guy Decoux.
3333      Branch: cfgperl
3334            ! pod/perldiag.pod pod/perlre.pod regcomp.c t/op/re_tests
3335 ____________________________________________________________________________
3336 [  3925] By: jhi                                   on 1999/08/05  10:31:47
3337         Log: split /^/ deprecation warning should not be on by default.
3338      Branch: cfgperl
3339            ! pp.c
3340 ____________________________________________________________________________
3341 [  3923] By: jhi                                   on 1999/08/05  09:16:57
3342         Log: From: paul.marquess@bt.com
3343              To: jhi@iki.fi, paul.marquess@bt.com
3344              Cc: gsar@ActiveState.com, perl5-porters@perl.org
3345              Subject: RE: [PATCH 5.005_60] anydbm.t + DB_File + Berkeley DB >= 2.4.10
3346              Date: Thu, 5 Aug 1999 09:33:14 +0100
3347              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49B26@mbtlipnt02.btlabs.bt.co.uk>
3348      Branch: cfgperl
3349            ! t/lib/anydbm.t
3350 ____________________________________________________________________________
3351 [  3921] By: jhi                                   on 1999/08/05  08:05:13
3352         Log: From: paul.marquess@bt.com
3353              To: perl5-porters@perl.org
3354              Cc: gsar@activestate.com, nik@tiuk.ti.com, jhi@iki.fi,
3355              randy@theoryx5.uwinnipeg.ca
3356              Subject:  [PATCH 5.005_60] DB_File 1.70
3357              Date: Wed, 4 Aug 1999 23:22:22 +0100
3358              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49B21@mbtlipnt02.btlabs.bt.co.uk>
3359              
3360              (Replaces change #3917)
3361      Branch: cfgperl
3362            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
3363            ! ext/DB_File/DB_File.xs t/lib/db-btree.t t/lib/db-hash.t
3364 ____________________________________________________________________________
3365 [  3920] By: jhi                                   on 1999/08/04  19:02:58
3366         Log: From: Nathan Torkington <gnat@frii.com>
3367              To: perl5-porters@perl.org
3368              Subject: [5.005_60 PATCH] Make B::Bytecode work
3369              Date: Wed, 4 Aug 1999 11:24:56 -0600 (MDT)
3370              Message-ID: <14248.30568.769427.216092@localhost.frii.com>
3371      Branch: cfgperl
3372            ! ext/B/B/Assembler.pm
3373 ____________________________________________________________________________
3374 [  3919] By: jhi                                   on 1999/08/04  10:56:26
3375         Log: Update history records.
3376      Branch: cfgperl
3377            ! pod/perlhist.pod
3378 ____________________________________________________________________________
3379 [  3918] By: jhi                                   on 1999/08/04  09:36:13
3380         Log: Minor fixes to linux -Dusethreads -Duseperlio.
3381      Branch: cfgperl
3382            ! perlio.c
3383 ____________________________________________________________________________
3384 [  3917] By: jhi                                   on 1999/08/04  08:13:20
3385         Log: (Replaced by change #3921)
3386              From: paul.marquess@bt.com
3387              To: gsar@activestate.com
3388              Cc: perl5-porters@perl.org
3389              Subject: [PATCH 5.005_60] DB_File 1.69
3390              Date: Tue, 3 Aug 1999 22:55:00 +0100
3391              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6D04@mbtlipnt02.btlabs.bt.co.uk>
3392      Branch: cfgperl
3393            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
3394            ! ext/DB_File/DB_File.xs t/lib/db-btree.t t/lib/db-hash.t
3395 ____________________________________________________________________________
3396 [  3916] By: jhi                                   on 1999/08/04  07:59:05
3397         Log: Introduce the charnames pragma.
3398              
3399              Subject: [PATCH 5.005_58] Free \C (for named chars), move to \O
3400              From: Ilya Zakharevich <[9]ilya@math.ohio-state.edu>
3401              To: Chip Salzenberg <[11]chip@perlsupport.com>
3402              Cc: Mailing list Perl5 <[12]perl5-porters@perl.org>
3403              Date: Sat, 31 Jul 1999 05:44:05 -0400
3404              Message-Id: <[13]199907311407.IAA25042@localhost.frii.com>
3405              
3406              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
3407              To: Mailing list Perl5 <perl5-porters@perl.org>
3408              Subject: [PATCH 5.005_58] Named characters in Perl
3409              Date: Mon, 2 Aug 1999 19:25:40 -0400
3410              Message-ID: <19990802192540.B24407@monk.mps.ohio-state.edu>
3411      Branch: cfgperl
3412            + lib/charnames.pm t/lib/charnames.t
3413            ! MAINTAIN MANIFEST lib/utf8.pm pod/perldiag.pod pod/perlop.pod
3414            ! pod/perlre.pod regcomp.c toke.c
3415 ____________________________________________________________________________
3416 [  3915] By: jhi                                   on 1999/08/03  21:18:49
3417         Log: Support Configure -Dmake=pmake.
3418              Via private email from Andy.
3419              NOTE: assumes "basename" command.
3420      Branch: metaconfig
3421            ! U/modified/Config_sh.U
3422 ____________________________________________________________________________
3423 [  3914] By: jhi                                   on 1999/08/03  21:11:11
3424         Log: The op/filetest.t failed subtest 7 if testing as root.
3425              
3426              From: =?iso-8859-1?Q?Fran=E7ois=20D=E9sarm=E9nien?= <desar@club-internet.fr>
3427              To: perl5-porters@perl.org
3428              Subject: [ID 19990727.039] Not OK: perl 5.00558 on i386-sco 3.2v5.0.4
3429              Date: Tue, 27 Jul 1999 22:54:05 +0200
3430              Message-Id: <379E1C6D.626DC765@club-internet.fr>
3431      Branch: cfgperl
3432            ! t/op/filetest.t
3433 ____________________________________________________________________________
3434 [  3911] By: jhi                                   on 1999/08/03  19:52:38
3435         Log: The "-Dusethreads -Duseperlio" combination failed.
3436              
3437              From: Spider Boardman <spider@leggy.zk3.dec.com>
3438              To: perl5-porters@perl.org
3439              Subject: [ID 19990803.007] Not OK: perl 5.00560 on alpha-dec_osf-thread
3440              4.0 (UNINSTALLED)
3441              Date: Tue, 3 Aug 1999 14:25:00 -0400
3442              Message-Id: <199908031825.OAA29254@leggy.zk3.dec.com>
3443              
3444              See also change #3912.
3445      Branch: cfgperl
3446            ! perlio.c
3447 ____________________________________________________________________________
3448 [  3910] By: jhi                                   on 1999/08/03  10:44:24
3449         Log: From: Chris Nandor <pudge@pobox.com>
3450              To: perl5-porters@perl.org
3451              Subject: [PATCH 5.005_58] perlbug.PL 1.27
3452              Date: Wed, 28 Jul 1999 23:42:49 -0400
3453              Message-Id: <v04210104b3c57ce9e3de@[152.167.11.247]>
3454      Branch: cfgperl
3455            ! utils/perlbug.PL
3456 ____________________________________________________________________________
3457 [  3909] By: jhi                                   on 1999/08/03  10:41:04
3458         Log: Hints for building ByteLoader in SunoS.  Based on
3459              From: Andy Dougherty <doughera@lafayette.edu>
3460              To: Gurusamy Sarathy <gsar@activestate.com>
3461              Cc: Perl Porters <perl5-porters@perl.org>
3462              Subject: Re: 5.005_58 Not OK SunOS 4.1.3
3463              Date: Mon, 2 Aug 1999 14:01:58 -0400 (EDT)
3464              Message-Id: <Pine.GSU.4.05.9908021357410.5873-100000@newton.phys>
3465      Branch: cfgperl
3466            + ext/ByteLoader/hints/sunos.pl
3467            ! MANIFEST ext/ByteLoader/ByteLoader.xs
3468 ____________________________________________________________________________
3469 [  3908] By: jhi                                   on 1999/08/03  09:29:22
3470         Log: Clarify RE engine code; inline a static function to a macro;
3471              make exact string nodes smaller.
3472              
3473              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
3474              To: perl5-porters@perl.org (Mailing list Perl5)
3475              Subject: [PATCH 5.005_60] Cosmetic change to REx engine
3476              Date: Mon, 2 Aug 1999 21:53:36 -0400 (EDT)
3477              Message-Id: <199908030153.VAA10542@monk.mps.ohio-state.edu>
3478      Branch: cfgperl
3479            ! Makefile.SH embed.pl global.sym keywords.h lib/warning.pm
3480            ! opcode.h pp.sym pp_proto.h regcomp.c regcomp.h regexec.c
3481            ! regnodes.h warning.h
3482 ____________________________________________________________________________
3483 [  3907] By: jhi                                   on 1999/08/03  08:11:49
3484         Log: 5_59 configured with -Dd_bincompat5005 can't be made
3485              binary compatible with a 5_03 which was built with -DEMBEDMYMALLOC.
3486              
3487              From: Spider Boardman <spider@leggy.zk3.dec.com>
3488              To: perl5-porters@perl.org
3489              Subject: [ID 19990802.016] Not OK: perl 5.00559
3490              Date: Mon, 2 Aug 1999 16:11:13 -0400
3491              Message-Id: <199908022011.QAA30224@leggy.zk3.dec.com>
3492      Branch: cfgperl
3493            ! embed.pl
3494 ____________________________________________________________________________
3495 [  3906] By: jhi                                   on 1999/08/03  07:48:59
3496         Log: Change #3790 redemption: with a little additional
3497              patch from Ilya it works okay.
3498      Branch: cfgperl
3499            ! ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm
3500            ! lib/ExtUtils/MakeMaker.pm os2/OS2/REXX/Makefile.PL perl.h
3501 ____________________________________________________________________________
3502 [  3905] By: gsar                                  on 1999/08/02  21:03:23
3503         Log: this will be 5.005_60
3504      Branch: perl
3505            ! Changes
3506
3507 ----------------
3508 Version 5.005_60
3509 ----------------
3510
3511 ____________________________________________________________________________
3512 [  3904] By: gsar                                  on 1999/08/02  20:30:23
3513         Log: don't enable PERL_POLLUTE_MALLOC when EMBEDMYMALLOC is
3514              in effect (from Spider Boardman <spider@leggy.zk3.dec.com>);
3515              regen headers
3516      Branch: perl
3517            ! embed.h embed.pl global.sym opcode.h perlapi.c
3518 ____________________________________________________________________________
3519 [  3903] By: gsar                                  on 1999/08/02  20:26:07
3520         Log: native int pack/unpack fixes (from Spider Boardman
3521              <spider@leggy.zk3.dec.com>)
3522      Branch: perl
3523            ! pp.c
3524 ____________________________________________________________________________
3525 [  3902] By: gsar                                  on 1999/08/02  20:24:41
3526         Log: fix broken -DDEBUGGING_OPS (from Spider Boardman
3527              <spider@leggy.zk3.dec.com>)
3528      Branch: perl
3529            + opnames.h
3530            ! Changes MANIFEST opcode.pl perl.h
3531 ____________________________________________________________________________
3532 [  3901] By: gsar                                  on 1999/08/02  18:51:18
3533         Log: integrate cfgperl contents
3534      Branch: perl
3535           !> INSTALL README pod/perldelta.pod
3536 ____________________________________________________________________________
3537 [  3900] By: jhi                                   on 1999/08/02  18:46:21
3538         Log: Update README and INSTALL; partly based on the message
3539              
3540              From: "John L. Allen" <allen@grumman.com>
3541              To: Jarkko Hietaniemi <jhi@iki.fi>
3542              cc: perl5-porters@perl.org
3543              Subject: Re: Perl Installation Problem
3544              Date: Thu, 29 Jul 1999 14:55:05 -0400 (EDT)
3545              Message-ID: <Pine.SOL.3.91.990729144440.1035A-100000@gateway.grumman.com>
3546              
3547              and private email from Andy Dougherty.
3548      Branch: cfgperl
3549            ! INSTALL README
3550 ____________________________________________________________________________
3551 [  3899] By: jhi                                   on 1999/08/02  18:36:35
3552         Log: Integrate with Sarathy.
3553      Branch: cfgperl
3554           !> op.c
3555 ____________________________________________________________________________
3556 [  3898] By: jhi                                   on 1999/08/02  18:34:49
3557         Log: Update PERL_BINCOMPAT_5005; update 64-bitness.
3558      Branch: cfgperl
3559            ! pod/perldelta.pod
3560 ____________________________________________________________________________
3561 [  3897] By: gsar                                  on 1999/08/02  18:18:37
3562         Log: optimizations could sometimes bypass bareword check
3563      Branch: perl
3564            ! op.c
3565 ____________________________________________________________________________
3566 [  3896] By: jhi                                   on 1999/08/02  18:18:34
3567         Log: Integrate with Sarathy.
3568      Branch: cfgperl
3569           !> Changes makedef.pl patchlevel.h win32/Makefile
3570           !> win32/config_H.bc win32/config_H.gc win32/config_H.vc
3571           !> win32/makefile.mk
3572 ____________________________________________________________________________
3573 [  3895] By: gsar                                  on 1999/08/02  17:22:40
3574         Log: up patchlevel etc.
3575      Branch: perl
3576            ! Changes patchlevel.h win32/Makefile win32/config_H.bc
3577            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
3578 ____________________________________________________________________________
3579 [  3894] By: gsar                                  on 1999/08/02  17:12:31
3580         Log: integrate change#3893, make it conditional on bincompat5005
3581      Branch: perl
3582            ! makedef.pl
3583 ____________________________________________________________________________
3584 [  3893] By: jhi                                   on 1999/08/02  16:49:08
3585         Log: PERL_BINCOMPAT_5005 symbol translation.
3586              (AIX wouldn't link neither perl nor extensions.)
3587      Branch: cfgperl
3588            ! makedef.pl
3589 ____________________________________________________________________________
3590 [  3892] By: gsar                                  on 1999/08/02  16:09:13
3591         Log: integrate cfgperl contents into mainline
3592      Branch: perl
3593           +> t/op/64bit.t
3594            ! Changes
3595           !> Configure MANIFEST config_h.SH doio.c dump.c hints/aix.sh op.c
3596           !> pod/perlfunc.pod pp_hot.c pp_sys.c regcomp.c sv.c t/io/open.t
3597           !> t/pragma/utf8.t t/pragma/warn/pp_hot toke.c util.c
3598 ____________________________________________________________________________
3599 [  3891] By: jhi                                   on 1999/08/02  14:52:40
3600         Log: AIX long long probing requires LL suffix for
3601              the ll constant.  The suffix doesn't seem
3602              to bother other ll platforms.
3603      Branch: cfgperl
3604            ! Configure config_h.SH hints/aix.sh
3605      Branch: metaconfig/U/perl
3606            ! quadfio.U
3607 ____________________________________________________________________________
3608 [  3890] By: jhi                                   on 1999/08/02  14:21:55
3609         Log: Exact path to perl for open -|.
3610      Branch: cfgperl
3611            ! t/io/open.t
3612 ____________________________________________________________________________
3613 [  3889] By: jhi                                   on 1999/08/02  14:18:03
3614         Log: Integrate with Sarathy.
3615      Branch: cfgperl
3616           !> Changes patchlevel.h pod/perlhist.pod pp_ctl.c util.c
3617           !> win32/Makefile win32/config_H.bc win32/config_H.gc
3618           !> win32/config_H.vc win32/makefile.mk win32/win32.c
3619 ____________________________________________________________________________
3620 [  3888] By: jhi                                   on 1999/08/02  14:14:29
3621         Log: AIX -Duse64bits: old AIXen do not have the getconf variables.
3622      Branch: cfgperl
3623            ! hints/aix.sh
3624 ____________________________________________________________________________
3625 [  3887] By: jhi                                   on 1999/08/02  12:53:10
3626         Log: Fix some of the {IV_IS_QUAD,UV_IS_QUAD} cases so that
3627              emacs code indentation doesn't get wrong ideas--
3628              in other words, introduce a couple of "redundant" if:s.
3629      Branch: cfgperl
3630            ! doio.c dump.c op.c pp_hot.c pp_sys.c regcomp.c sv.c toke.c
3631            ! util.c
3632 ____________________________________________________________________________
3633 [  3886] By: jhi                                   on 1999/08/02  12:43:16
3634         Log: Mention that also *BSD systems with glibc are known to stumble.
3635      Branch: cfgperl
3636            ! t/pragma/warn/pp_hot
3637 ____________________________________________________________________________
3638 [  3885] By: jhi                                   on 1999/08/02  12:34:15
3639         Log: Allow also non-long long but still quad platforms print quads.
3640      Branch: cfgperl
3641            ! Configure config_h.SH
3642      Branch: metaconfig/U/perl
3643            ! longdblfio.U quadfio.U
3644 ____________________________________________________________________________
3645 [  3884] By: jhi                                   on 1999/08/02  11:56:14
3646         Log: Fix regclass utf8 hex ranges for quads.
3647      Branch: cfgperl
3648            ! regcomp.c
3649 ____________________________________________________________________________
3650 [  3883] By: jhi                                   on 1999/08/02  11:42:14
3651         Log: Enhance the description of how to detect quad support.
3652      Branch: cfgperl
3653            ! pod/perlfunc.pod
3654 ____________________________________________________________________________
3655 [  3882] By: jhi                                   on 1999/08/02  11:22:19
3656         Log: Fix printf %D %U %O for quads.
3657      Branch: cfgperl
3658            ! sv.c t/op/64bit.t
3659 ____________________________________________________________________________
3660 [  3881] By: jhi                                   on 1999/08/02  11:16:12
3661         Log: Document quad printing.
3662      Branch: cfgperl
3663            ! pod/perlfunc.pod
3664 ____________________________________________________________________________
3665 [  3880] By: jhi                                   on 1999/08/02  10:32:01
3666         Log: More 64-bit fixing.  One known bug of that kind
3667              remains, 32-bit platforms using long long in
3668              the test t/pragma/utf8 subtests 1-3 fail.
3669              (Update: change    #3884 fixed that one.)
3670      Branch: cfgperl
3671            + t/op/64bit.t
3672            ! Configure MANIFEST config_h.SH regcomp.c sv.c t/pragma/utf8.t
3673
3674 ----------------
3675 Version 5.005_59
3676 ----------------
3677
3678 ____________________________________________________________________________
3679 [  3879] By: gsar                                  on 1999/08/02  08:18:58
3680         Log: integrate cfgperl changes into mainline
3681      Branch: perl
3682           !> Configure config_h.SH sv.c
3683 ____________________________________________________________________________
3684 [  3878] By: gsar                                  on 1999/08/02  08:13:16
3685         Log: change#3692 had an unintentional patch leak through!
3686              (this would explain the mysterious C<next LABEL> failures
3687              people have seen)
3688      Branch: perl
3689            ! pp_ctl.c
3690 ____________________________________________________________________________
3691 [  3877] By: gsar                                  on 1999/08/02  08:00:29
3692         Log: up patchlevel to 59
3693      Branch: perl
3694            ! Changes patchlevel.h pod/perlhist.pod win32/Makefile
3695            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
3696            ! win32/makefile.mk
3697 ____________________________________________________________________________
3698 [  3876] By: gsar                                  on 1999/08/02  07:51:18
3699         Log: fix coredump under usethreads+debug
3700      Branch: perl
3701            ! util.c
3702 ____________________________________________________________________________
3703 [  3875] By: jhi                                   on 1999/08/02  07:50:51
3704         Log: d_bincompat5005 could be left empty.
3705      Branch: cfgperl
3706            ! Configure config_h.SH
3707      Branch: metaconfig/U/perl
3708            ! bincompat5005.U
3709 ____________________________________________________________________________
3710 [  3874] By: jhi                                   on 1999/08/02  07:42:45
3711         Log: Fix printf %d when IV is quad.
3712      Branch: cfgperl
3713            ! sv.c
3714 ____________________________________________________________________________
3715 [  3873] By: gsar                                  on 1999/08/02  07:41:03
3716         Log: fix d_bincompat5005='' junking config.h
3717      Branch: perl
3718            ! Configure
3719 ____________________________________________________________________________
3720 [  3872] By: gsar                                  on 1999/08/02  07:38:48
3721         Log: C needs parameter list, not merely type
3722      Branch: perl
3723            ! win32/win32.c
3724 ____________________________________________________________________________
3725 [  3871] By: jhi                                   on 1999/08/02  07:20:51
3726         Log: Integrate with Sarathy.
3727      Branch: cfgperl
3728           !> Changes ext/B/B/C.pm ext/B/B/CC.pm regexec.c
3729 ____________________________________________________________________________
3730 [  3870] By: gsar                                  on 1999/08/02  07:12:18
3731         Log: integrate cfgperl changes into mainline
3732      Branch: perl
3733            ! Changes
3734           !> Configure Makefile.SH Porting/Glossary Porting/config.sh
3735           !> Porting/config_H config_h.SH doio.c dump.c mg.c op.c perl.h
3736           !> pp_ctl.c pp_hot.c pp_sys.c scope.c sv.c t/pragma/warn/sv
3737           !> toke.c util.c
3738 ____________________________________________________________________________
3739 [  3869] By: gsar                                  on 1999/08/02  06:59:09
3740         Log: From: "Vishal Bhatia" <vishalb@my-deja.com>
3741              Date: Sat, 31 Jul 1999 19:08:33 -0700
3742              Message-ID: <LAONLKLELDJAFAAA@my-deja.com>
3743              Subject: [PATCH 5.005_58] "use constant" in the compiler
3744      Branch: perl
3745            ! ext/B/B/C.pm ext/B/B/CC.pm
3746 ____________________________________________________________________________
3747 [  3868] By: gsar                                  on 1999/08/02  06:55:51
3748         Log: debug build tweak
3749      Branch: perl
3750            ! regexec.c
3751 ____________________________________________________________________________
3752 [  3867] By: gsar                                  on 1999/08/02  06:35:18
3753         Log: create vmsperl branch (to be owned and operated by: cbailey)
3754      Branch: vmsperl
3755           +> (branch 1476 files)
3756 ____________________________________________________________________________
3757 [  3866] By: jhi                                   on 1999/08/01  23:34:40
3758         Log: so_locations once is enough.
3759      Branch: cfgperl
3760            ! Makefile.SH
3761 ____________________________________________________________________________
3762 [  3865] By: jhi                                   on 1999/08/01  23:13:05
3763         Log: Simplicate duplicated code.
3764      Branch: cfgperl
3765            ! util.c
3766 ____________________________________________________________________________
3767 [  3864] By: jhi                                   on 1999/08/01  22:41:41
3768         Log: Integrate with Sarathy.  perl.h and util.c required manual resolving.
3769      Branch: cfgperl
3770           +> README.cygwin cygwin/Makefile.SHs cygwin/ld2.in
3771           +> cygwin/perlld.in ext/DynaLoader/dl_cygwin.xs hints/cygwin.sh
3772            - README.cygwin32 cygwin32/Makefile.SHs
3773            - cygwin32/build-instructions.READFIRST
3774            - cygwin32/build-instructions.charles-wilson
3775            - cygwin32/build-instructions.sebastien-barre
3776            - cygwin32/build-instructions.steven-morlock
3777            - cygwin32/build-instructions.steven-morlock2 cygwin32/ld2.in
3778            - cygwin32/perlld.in ext/DynaLoader/dl_cygwin32.xs
3779            - hints/cygwin32.sh
3780           !> (integrate 61 files)
3781 ____________________________________________________________________________
3782 [  3863] By: jhi                                   on 1999/08/01  22:36:02
3783         Log: Regen Configure and Glossary once again.
3784      Branch: cfgperl
3785            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3786            ! config_h.SH
3787 ____________________________________________________________________________
3788 [  3862] By: jhi                                   on 1999/08/01  22:26:09
3789         Log: Glossary update for #3861.
3790      Branch: cfgperl
3791            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3792            ! config_h.SH
3793 ____________________________________________________________________________
3794 [  3861] By: jhi                                   on 1999/08/01  22:22:51
3795         Log: 64-bit work.  Now 32-bit platforms get a 100% make test
3796              with -Duse64bits (using long long).
3797              Tested in Solaris 2.6 sparc  RH Linux 6.0 x86
3798              (and Digital IX 4.0D, to get a true 64-bit opinion).  Now e.g.
3799              'print unpack "q", pack "q", 12345678901'
3800              should work on such 32-bit platforms.
3801              Still a lot of printf()s behind -D which wrongly assume
3802              that %ld/%lx and (long) are a good combination.
3803              Introducing a slew of new macros intended to be used in printf()
3804              format strings: e. g. PERL_PRId64 is the string to be used
3805              when printing an IV, printf("%" PERL_PRId64 "\n", iv).
3806              The PRI... naming follows the C9X naming of <inttypes.h> macros.
3807      Branch: cfgperl
3808            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3809            ! config_h.SH doio.c dump.c mg.c op.c perl.h pp_ctl.c pp_hot.c
3810            ! pp_sys.c scope.c sv.c t/pragma/warn/sv toke.c util.c
3811      Branch: metaconfig/U/perl
3812            + atolf.U atoll.U longdblfio.U quadfio.U strtoull.U
3813 ____________________________________________________________________________
3814 [  3860] By: gsar                                  on 1999/08/01  21:23:18
3815         Log: integrate cfgperl contents into mainline
3816      Branch: perl
3817            ! toke.c
3818           !> (integrate 29 files)
3819 ____________________________________________________________________________
3820 [  3859] By: gsar                                  on 1999/08/01  21:13:09
3821         Log: From: Nathan Torkington <gnat@frii.com>
3822              Date: Sun, 1 Aug 1999 11:23:35 -0600 (MDT)
3823              Message-ID: <14244.33431.739419.806927@localhost.frii.com>
3824              Subject: [PATCH 5.005_58] ext/B/B/Disassembler.pm patch
3825      Branch: perl
3826            ! ext/B/B/Disassembler.pm
3827 ____________________________________________________________________________
3828 [  3858] By: gsar                                  on 1999/08/01  21:09:15
3829         Log: DB_File 1.68 update from Paul Marquess
3830      Branch: perl
3831            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
3832            ! ext/DB_File/DB_File.xs t/lib/db-btree.t t/lib/db-hash.t
3833            ! t/lib/db-recno.t
3834 ____________________________________________________________________________
3835 [  3857] By: gsar                                  on 1999/08/01  21:05:54
3836         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
3837              Date: Sat, 31 Jul 1999 05:13:38 -0400
3838              Message-Id: <199907311407.IAA25038@localhost.frii.com>
3839              Subject: [PATCH 5.005_58] More optimizations to REx engine
3840      Branch: perl
3841            ! embed.pl embedvar.h ext/Thread/Thread.xs objXSUB.h perl.c
3842            ! perl.h proto.h regcomp.c regexec.c t/op/re_tests thrdvar.h
3843 ____________________________________________________________________________
3844 [  3856] By: gsar                                  on 1999/08/01  20:59:59
3845         Log: slightly modified version of suggested patch
3846              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
3847              Date: Sat, 31 Jul 1999 04:45:12 -0400
3848              Message-Id: <199907311406.IAA25034@localhost.frii.com>
3849              Subject: [PATCH 5.005_58] Fix OS/2 build
3850      Branch: perl
3851            ! Makefile.SH lib/ExtUtils/MM_OS2.pm lib/ExtUtils/Mksymlists.pm
3852            ! makedef.pl os2/Makefile.SHs os2/diff.configure perl.h sv.h
3853 ____________________________________________________________________________
3854 [  3855] By: gsar                                  on 1999/08/01  20:49:06
3855         Log: cygwin update
3856              From: "Fifer, Eric" <EFifer@sanwaint.com>
3857              Date: Fri, 30 Jul 1999 18:31:48 +0100
3858              Message-Id: <71E287AB0D94D111BBD600600849EC8185EE06@POST>
3859              Subject: [ID 19990730.003] PATCH] perl5.005_58 cygwin port
3860      Branch: perl
3861            ! doio.c dosish.h lib/File/Spec/Unix.pm mg.c perl.h perlsdio.h
3862            ! pp_sys.c unixish.h util.c
3863 ____________________________________________________________________________
3864 [  3854] By: gsar                                  on 1999/08/01  20:41:53
3865         Log: fixes from Stephen McCamant that address bugs in change#3612
3866              (the optimization shouldn't be enabled in expressions where
3867              the variable is introduced), and fix Deparse to grok the
3868              optimization
3869              Date: Thu, 29 Jul 1999 21:21:49 -0500 (CDT)
3870              Message-ID: <14241.3133.979257.953396@alias-2.pr.mcs.net>
3871              Subject: [PATCH _58] Set OPpTARGET_MY more consistently
3872              --
3873              Date: Thu, 29 Jul 1999 22:31:16 -0500 (CDT)
3874              Message-ID: <14241.7300.181386.763503@alias-2.pr.mcs.net>
3875              Subject: [PATCH _58] Disable TARGET_MY-ization on variable introduction
3876              --
3877              Date: Fri, 30 Jul 1999 22:25:27 -0500 (CDT)
3878              Message-Id: <199907310326.VAA24376@localhost.frii.com>
3879              Subject: [PATCH _58, long] B::Deparse (was Re: New warning 'Useless use of...')
3880      Branch: perl
3881            ! ext/B/B/Deparse.pm op.c
3882 ____________________________________________________________________________
3883 [  3853] By: gsar                                  on 1999/08/01  20:31:32
3884         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
3885              Date: Thu, 29 Jul 1999 14:08:50 -0500 (CDT)
3886              Message-ID: <14240.42690.292893.605292@alias-2.pr.mcs.net>
3887              Subject: [PATCH _58] Two one-liner LOGOP tweaks
3888      Branch: perl
3889            ! op.c opcode.h opcode.pl
3890 ____________________________________________________________________________
3891 [  3852] By: gsar                                  on 1999/08/01  20:29:17
3892         Log: rename cygwin32 to cygwin (from Eric Fifer <EFifer@sanwaint.com>)
3893      Branch: perl
3894            ! AUTHORS EXTERN.h INSTALL MAINTAIN Makefile.SH Porting/patchls
3895            ! README.cygwin README.win32 XSUB.h cygwin/Makefile.SHs
3896            ! ext/DynaLoader/dl_cygwin.xs ext/POSIX/POSIX.xs
3897            ! ext/SDBM_File/sdbm/pair.c hints/cygwin.sh
3898            ! lib/ExtUtils/MM_Cygwin.pm makedepend.SH perl.h pod/perl.pod
3899            ! pod/perlport.pod pp_sys.c util.c
3900 ____________________________________________________________________________
3901 [  3851] By: gsar                                  on 1999/08/01  20:20:05
3902         Log: move files around for s/cygwin32/cygwin/ renaming
3903      Branch: perl
3904           +> README.cygwin cygwin/Makefile.SHs cygwin/ld2.in
3905           +> cygwin/perlld.in ext/DynaLoader/dl_cygwin.xs hints/cygwin.sh
3906            - README.cygwin32 cygwin32/Makefile.SHs
3907            - cygwin32/build-instructions.READFIRST
3908            - cygwin32/build-instructions.charles-wilson
3909            - cygwin32/build-instructions.sebastien-barre
3910            - cygwin32/build-instructions.steven-morlock
3911            - cygwin32/build-instructions.steven-morlock2 cygwin32/ld2.in
3912            - cygwin32/perlld.in ext/DynaLoader/dl_cygwin32.xs
3913            - hints/cygwin32.sh
3914            ! MANIFEST
3915 ____________________________________________________________________________
3916 [  3850] By: gsar                                  on 1999/08/01  20:05:14
3917         Log: posix-bc hints tweak (via private mail from Thomas Dorner
3918              <Thomas.Dorner@start.de>)
3919      Branch: perl
3920            ! Changes hints/posix-bc.sh
3921 ____________________________________________________________________________
3922 [  3849] By: gsar                                  on 1999/08/01  19:50:20
3923         Log: notes on PERL_IMPLICIT_CONTEXT (from a version by Nathan Torkington
3924              <gnat@frii.com>)
3925      Branch: perl
3926            ! perl.h pod/perldelta.pod pod/perlguts.pod
3927 ____________________________________________________________________________
3928 [  3848] By: gsar                                  on 1999/08/01  18:34:41
3929         Log: fix defined(@foo) encarpments
3930      Branch: perl
3931            ! ext/B/B/C.pm lib/CGI.pm lib/Dumpvalue.pm lib/dumpvar.pl
3932            ! pod/perltrap.pod
3933 ____________________________________________________________________________
3934 [  3847] By: jhi                                   on 1999/08/01  17:17:07
3935         Log: Undo #3790 and the patches that attempted to fix it
3936              (#3837, #3838, #3845).  The #3790 caused linkage failures
3937              and/or core dumps in Solaris 2.6, Digital UNIX 4.0D, and
3938              IRIX 6.5.
3939      Branch: cfgperl
3940            - ext/SDBM_File/hints/dec_osf.pl ext/SDBM_File/hints/solaris.pl
3941            ! MANIFEST ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm
3942            ! lib/ExtUtils/MakeMaker.pm os2/OS2/REXX/Makefile.PL perl.h
3943 ____________________________________________________________________________
3944 [  3846] By: jhi                                   on 1999/08/01  11:41:52
3945         Log: Reading 64-bit decimal numbers was broken because
3946              the NV was cast to an I32, not an IV.
3947      Branch: cfgperl
3948            ! toke.c
3949 ____________________________________________________________________________
3950 [  3845] By: jhi                                   on 1999/08/01  11:00:24
3951         Log: Solaris doesn't like PERL_MALLOC_OK in SDBM_File.
3952      Branch: cfgperl
3953            + ext/SDBM_File/hints/solaris.pl
3954 ____________________________________________________________________________
3955 [  3844] By: jhi                                   on 1999/08/01  10:55:44
3956         Log: Enable Solaris largefiles support only if -Duse64bits is used.
3957              (Effectively removes #3311).
3958      Branch: cfgperl
3959            ! hints/solaris_2.sh
3960 ____________________________________________________________________________
3961 [  3843] By: jhi                                   on 1999/07/31  22:44:56
3962         Log: Integer overflow iteration.
3963      Branch: cfgperl
3964            ! t/op/oct.t toke.c util.c
3965 ____________________________________________________________________________
3966 [  3842] By: jhi                                   on 1999/07/31  22:11:03
3967         Log: Remove a lot of unused regnode codes.
3968              Noticed by Ilya.
3969      Branch: cfgperl
3970            ! regcomp.c regcomp.sym regexec.c regnodes.h
3971 ____________________________________________________________________________
3972 [  3841] By: jhi                                   on 1999/07/31  21:53:54
3973         Log: Make the use64bits and usethreads friendlier/braver;
3974              they no more wimp out if the platform is unknown.
3975              On use64bits if gcc used -DUSE_LONG_LONG is added
3976              to the ccflags (this dependency on gcc caused a slightly weird
3977              reordering of Configure, but things still seem to work.)
3978      Branch: cfgperl
3979            ! Configure README.threads config_h.SH
3980      Branch: metaconfig
3981            ! U/threads/usethreads.U
3982      Branch: metaconfig/U/perl
3983            ! use64bits.U
3984 ____________________________________________________________________________
3985 [  3840] By: jhi                                   on 1999/07/31  20:26:22
3986         Log: Hack the "integer overflow" code some more.
3987      Branch: cfgperl
3988            ! perl.h toke.c util.c
3989 ____________________________________________________________________________
3990 [  3839] By: jhi                                   on 1999/07/31  20:22:00
3991         Log: Test oct() at the 2^32-1 limit.
3992      Branch: cfgperl
3993            ! t/op/oct.t
3994 ____________________________________________________________________________
3995 [  3838] By: jhi                                   on 1999/07/31  20:08:43
3996         Log: Update MANIFEST for #3837.
3997      Branch: cfgperl
3998            ! MANIFEST
3999 ____________________________________________________________________________
4000 [  3837] By: jhi                                   on 1999/07/31  20:02:40
4001         Log: Digital UNIX 4.0D doesn't like perl malloc on sdbm
4002              (a core dump with a corrput stack ensues).
4003      Branch: cfgperl
4004            + ext/SDBM_File/hints/dec_osf.pl
4005 ____________________________________________________________________________
4006 [  3836] By: jhi                                   on 1999/07/29  21:09:01
4007         Log: Allow for Configure -Ubincompat5005 override.
4008      Branch: cfgperl
4009            ! Configure config_h.SH
4010      Branch: metaconfig/U/perl
4011            ! bincompat5005.U
4012 ____________________________________________________________________________
4013 [  3835] By: jhi                                   on 1999/07/29  21:04:02
4014         Log: Make Configure support PERL_BINCOMPAT_5005.
4015      Branch: cfgperl
4016            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4017            ! config_h.SH
4018      Branch: metaconfig/U/perl
4019            + bincompat5005.U
4020 ____________________________________________________________________________
4021 [  3834] By: jhi                                   on 1999/07/29  19:25:35
4022         Log: AIX tweak, need reported by David R. Fravor <dfavor@austin.ibm.com> 
4023      Branch: cfgperl
4024            ! Makefile.SH
4025 ____________________________________________________________________________
4026 [  3833] By: jhi                                   on 1999/07/29  14:07:09
4027         Log: Integrate with Sarathy.  I overruled on perldelta
4028              and perldiag.
4029      Branch: cfgperl
4030           !> README.win32 emacs/cperl-mode.el globals.c installperl
4031           !> iperlsys.h makedef.pl perl.h pod/perldelta.pod
4032           !> pod/perldiag.pod pod/perllexwarn.pod toke.c utils/perldoc.PL
4033           !> win32/Makefile win32/bin/pl2bat.pl win32/makefile.mk
4034           !> win32/perllib.c win32/win32.c
4035 ____________________________________________________________________________
4036 [  3832] By: jhi                                   on 1999/07/29  14:02:50
4037         Log: Repent and make overly large integerish
4038              constants non-fatal.  They are now promoted
4039              to NVs, accompanied by an overflow warning that
4040              is by default on.
4041      Branch: cfgperl
4042            ! embed.pl global.sym pod/perldelta.pod pod/perldiag.pod pp.c
4043            ! proto.h t/op/oct.t t/pragma/warn/6default t/pragma/warn/util
4044            ! toke.c util.c
4045 ____________________________________________________________________________
4046 [  3831] By: jhi                                   on 1999/07/29  11:40:04
4047         Log: AIX exhibits different error on failed system().
4048              Slightly modified patch via private email from
4049              David R. Favor <dfavor@austin.ibm.com>
4050      Branch: cfgperl
4051            ! t/op/exec.t
4052 ____________________________________________________________________________
4053 [  3830] By: gsar                                  on 1999/07/29  07:46:11
4054         Log: cperl-mode.el v4.19
4055      Branch: perl
4056            ! emacs/cperl-mode.el
4057 ____________________________________________________________________________
4058 [  3829] By: gsar                                  on 1999/07/29  07:30:35
4059         Log: From: jan.dubois@ibm.net (Jan Dubois)
4060              Date: Wed, 28 Jul 1999 22:01:42 +0200
4061              Message-ID: <37aa5f9b.12941448@smtp1.ibm.net>
4062              Subject: [PATCH 5.005_58] win32/bin/pl2bat.pl doesn't work correctly
4063      Branch: perl
4064            ! win32/bin/pl2bat.pl
4065 ____________________________________________________________________________
4066 [  3828] By: gsar                                  on 1999/07/29  07:19:27
4067         Log: tweak previous change for multiple hits
4068      Branch: perl
4069            ! utils/perldoc.PL
4070 ____________________________________________________________________________
4071 [  3827] By: gsar                                  on 1999/07/29  07:10:00
4072         Log: band-aid for perldoc -t broken-ness (the new Pod::Text
4073              really needs a pod2text() compatibility function)
4074      Branch: perl
4075            ! utils/perldoc.PL
4076 ____________________________________________________________________________
4077 [  3826] By: gsar                                  on 1999/07/29  01:33:46
4078         Log: minor tweaks to pods and toke.c comments
4079      Branch: perl
4080            ! pod/perldelta.pod pod/perldiag.pod pod/perllexwarn.pod toke.c
4081 ____________________________________________________________________________
4082 [  3825] By: gsar                                  on 1999/07/29  00:12:52
4083         Log: integrate cfgperl changes into mainline
4084      Branch: perl
4085           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
4086           !> README.threads config_h.SH ext/IO/lib/IO/Handle.pm
4087           !> ext/IO/lib/IO/Socket.pm ext/IO/lib/IO/Socket/INET.pm
4088           !> ext/POSIX/POSIX.xs lib/ExtUtils/Install.pm perl.h
4089           !> pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
4090           !> pod/perllexwarn.pod pod/perlre.pod pp.c pp_sys.c
4091           !> t/lib/io_unix.t t/op/oct.t t/pragma/warn/6default
4092           !> t/pragma/warn/util toke.c util.c
4093 ____________________________________________________________________________
4094 [  3824] By: jhi                                   on 1999/07/28  21:15:04
4095         Log: Tiny patch to go over #3820 (via private mail from Lincoln).
4096      Branch: cfgperl
4097            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm
4098            ! ext/IO/lib/IO/Socket/INET.pm
4099 ____________________________________________________________________________
4100 [  3823] By: jhi                                   on 1999/07/28  20:29:17
4101         Log: Continue pack() doc honing.
4102      Branch: cfgperl
4103            ! pod/perlfunc.pod
4104 ____________________________________________________________________________
4105 [  3822] By: jhi                                   on 1999/07/28  20:17:37
4106         Log: Enhance pack() doc.
4107      Branch: cfgperl
4108            ! pod/perlfunc.pod
4109 ____________________________________________________________________________
4110 [  3821] By: jhi                                   on 1999/07/28  18:34:50
4111         Log: UNIX Domain Sockets are not implemented under QNX.
4112              
4113              From: Norton Allen <allen@huarp.harvard.edu>
4114              To: perl5-porters@perl.org
4115              Subject: [ID 19990728.010] Patch:t/lib/io_unix.t _58 QNX
4116              Date: Wed, 28 Jul 1999 14:07:16 -0400 (edt)
4117              Message-Id: <199907281807.OAA13167@bottesini.harvard.edu>
4118      Branch: cfgperl
4119            ! t/lib/io_unix.t
4120 ____________________________________________________________________________
4121 [  3820] By: jhi                                   on 1999/07/28  18:13:37
4122         Log: IO::* enhancements.
4123              
4124              1) write() and syswrite() will now accept a single-argument
4125              form of the call, for consistency with Perl's syswrite().
4126              2) You can create a TCP-based IO::Socket::INET without forcing
4127              a connect attempt.  This allows you to configure its options
4128              (like making it non-blocking) and then call connect() manually.
4129              3) Fixed a bug that prevented the IO::Socket::protocol() accessor
4130              from ever returning the correct value.
4131              
4132              From: Lincoln Stein <lstein@formaggio.cshl.org>
4133              To: Graham Barr <gbarr@pobox.com>
4134              Cc: Lincoln Stein <lstein@cshl.org>, perl5-porters@perl.org
4135              Subject: Re: patch for IO::*
4136              Date: Wed, 28 Jul 1999 13:55:05 -0400 (EDT)
4137              Message-ID: <14239.17401.330408.145295@formaggio.cshl.org>
4138      Branch: cfgperl
4139            ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm
4140            ! ext/IO/lib/IO/Socket/INET.pm
4141 ____________________________________________________________________________
4142 [  3819] By: gsar                                  on 1999/07/28  18:08:06
4143         Log: misc PERL_OBJECT tweaks; perlcore.dll is now perl56.dll
4144      Branch: perl
4145            ! README.win32 globals.c installperl iperlsys.h makedef.pl
4146            ! perl.h win32/Makefile win32/makefile.mk win32/perllib.c
4147            ! win32/win32.c
4148 ____________________________________________________________________________
4149 [  3818] By: jhi                                   on 1999/07/28  17:48:16
4150         Log: Need to add QNX to the list for DONT_DECLARE_STD.
4151              (The elimination of use of the _() macro apparently triggered
4152              an incompatability with a #define of atof)
4153              
4154              From: Norton Allen <allen@huarp.harvard.edu>
4155              To: perl5-porters@perl.org
4156              Subject: [ID 19990728.008] Patch:perl.h _58 QNX
4157              Date: Wed, 28 Jul 1999 13:06:23 -0400 (edt)
4158              Message-Id: <199907281706.NAA07617@bottesini.harvard.edu>
4159      Branch: cfgperl
4160            ! perl.h
4161 ____________________________________________________________________________
4162 [  3817] By: jhi                                   on 1999/07/28  17:46:30
4163         Log: Need to add some more conditions to deal with the case
4164              defined(HAS_GETSPNAM) && ! defined(HAS_GETSPENT)
4165              which is true for QNX4.
4166              From: Norton Allen <allen@huarp.harvard.edu>
4167              To: perl5-porters@perl.org
4168              Subject: [ID 19990728.009] Patch:pp_sys.c _58 QNX
4169              Date: Wed, 28 Jul 1999 13:08:42 -0400 (edt)
4170              Message-Id: <199907281708.NAA07947@bottesini.harvard.edu>
4171      Branch: cfgperl
4172            ! pp_sys.c
4173 ____________________________________________________________________________
4174 [  3816] By: jhi                                   on 1999/07/28  17:43:40
4175         Log: The QNX shell needs a couple more semicolons.
4176              
4177              From: Norton Allen <allen@huarp.harvard.edu>
4178              To: perl5-porters@perl.org
4179              Subject: [ID 19990728.007] Patch:Configure _58 QNX
4180              Date: Wed, 28 Jul 1999 13:03:00 -0400 (edt)
4181              Message-Id: <199907281703.NAA07363@bottesini.harvard.edu>
4182              
4183              plus silence metalint moanings on vendorprefix.
4184      Branch: cfgperl
4185            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4186            ! config_h.SH
4187 ____________________________________________________________________________
4188 [  3815] By: jhi                                   on 1999/07/28  17:31:11
4189         Log: Silence metalint on vendorprefix.U.
4190      Branch: metaconfig
4191            ! U/installdirs/vendorprefix.U
4192 ____________________________________________________________________________
4193 [  3814] By: jhi                                   on 1999/07/28  17:13:29
4194         Log: QNX shell needs more semicolons.
4195      Branch: metaconfig/U/perl
4196            ! Extensions.U
4197 ____________________________________________________________________________
4198 [  3813] By: jhi                                   on 1999/07/28  17:05:08
4199         Log: Integrate with Sarathy.
4200      Branch: cfgperl
4201           !> lib/ExtUtils/MM_Unix.pm
4202 ____________________________________________________________________________
4203 [  3812] By: jhi                                   on 1999/07/28  16:20:17
4204         Log: Fix a typo, un-shout, and reformat the installation output.
4205      Branch: cfgperl
4206            ! lib/ExtUtils/Install.pm
4207 ____________________________________________________________________________
4208 [  3811] By: gsar                                  on 1999/07/28  15:41:11
4209         Log: fix typo that caused INSTALLPRIVLIB to have doubled 'perl5'
4210      Branch: perl
4211            ! lib/ExtUtils/MM_Unix.pm
4212 ____________________________________________________________________________
4213 [  3810] By: jhi                                   on 1999/07/28  13:55:57
4214         Log: Talk more about subsecond things in perlfunc.
4215              (Yes, redundant with perlfaq8.)
4216      Branch: cfgperl
4217            ! pod/perlfunc.pod
4218 ____________________________________________________________________________
4219 [  3809] By: jhi                                   on 1999/07/28  07:23:48
4220         Log: Integrate with Sarathy.
4221      Branch: cfgperl
4222           !> configpm hints/freebsd.sh lib/Pod/Html.pm perl.h t/op/grent.t
4223           !> t/op/pwent.t
4224 ____________________________________________________________________________
4225 [  3808] By: jhi                                   on 1999/07/28  07:23:03
4226         Log: Document toke.c.
4227              From: Nathan Torkington <gnat@frii.com>
4228              To: perl5-porters@perl.org
4229              Subject: Re: toke.c patch, work in progress
4230              Date: Tue, 27 Jul 1999 23:02:09 -0600 (MDT)
4231              Message-ID: <14238.36561.979473.667842@localhost.frii.com>
4232      Branch: cfgperl
4233            ! toke.c
4234 ____________________________________________________________________________
4235 [  3807] By: jhi                                   on 1999/07/28  07:10:56
4236         Log: perlre clarification.
4237              
4238              From: Ian Phillipps <ian@dial.pipex.com>
4239              To: Perl 5 Porters <perl5-porters@perl.org>
4240              Subject: [PATCH 5.00557] Add definite article to perlre.pod
4241              Date: Tue, 27 Jul 1999 10:46:29 +0100
4242              Message-ID: <19990727104629.A10074@homer.diplex.co.uk>
4243      Branch: cfgperl
4244            ! pod/perlre.pod
4245 ____________________________________________________________________________
4246 [  3806] By: gsar                                  on 1999/07/28  07:07:46
4247         Log: fix the perl -V breakage
4248              
4249              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4250              To: Jarkko Hietaniemi <jhi@iki.fi>
4251              Cc: "John L. Allen" <allen@grumman.com>, perl5-porters@perl.org,
4252              gsar@activestate.com
4253              Subject: Re: Follow up to: _58 on AIX 431
4254              Date: Tue, 27 Jul 1999 17:42:00 -0400
4255              Message-ID: <19990727174200.A12775@monk.mps.ohio-state.edu>
4256      Branch: perl
4257            ! configpm
4258 ____________________________________________________________________________
4259 [  3805] By: gsar                                  on 1999/07/28  07:03:34
4260         Log: avoid warning (from Doug MacEachern)
4261      Branch: perl
4262            ! perl.h
4263 ____________________________________________________________________________
4264 [  3804] By: gsar                                  on 1999/07/28  06:59:30
4265         Log: Pod::Html tweak
4266              
4267              From: jan.dubois@ibm.net (Jan Dubois)
4268              To: perl5-porters@perl.org
4269              Subject: [PATCH 5.005_58] pod2html: Missing chunk for VMS filenames
4270              Date: Tue, 27 Jul 1999 22:14:12 +0200
4271              Message-ID: <37a50af0.46171380@smtp1.ibm.net>
4272      Branch: perl
4273            ! lib/Pod/Html.pm
4274 ____________________________________________________________________________
4275 [  3803] By: gsar                                  on 1999/07/28  06:56:38
4276         Log: freebsd hints update
4277              
4278              From: Anton Berezin <tobez@plab.ku.dk>
4279              To: perl5-porters@perl.org
4280              Subject: [ID 19990727.034] Not OK: perl 5.00558 on i386-freebsd-thread4.0-current (UNINSTALLED)
4281              Date: Tue, 27 Jul 1999 20:29:39 +0200 (CEST)
4282              Message-Id: <199907271829.UAA62861@lion.plab.ku.dk>
4283      Branch: perl
4284            ! hints/freebsd.sh
4285 ____________________________________________________________________________
4286 [  3802] By: gsar                                  on 1999/07/28  06:51:32
4287         Log: cosmetic testsuite patch
4288              
4289              From: Graham Barr <gbarr@ti.com>
4290              To: Perl5 Porters <perl5-porters@perl.org>
4291              Subject: 5.005_58 build
4292              Date: Tue, 27 Jul 1999 08:09:25 -0500
4293              Message-ID: <19990727080925.F4683@dal.asp.ti.com>
4294      Branch: perl
4295            ! t/op/grent.t t/op/pwent.t
4296 ____________________________________________________________________________
4297 [  3801] By: jhi                                   on 1999/07/27  13:49:39
4298         Log: Minuscule cleanup of the integer overflow patch.
4299      Branch: cfgperl
4300            ! util.c
4301 ____________________________________________________________________________
4302 [  3800] By: jhi                                   on 1999/07/27  13:37:23
4303         Log: Test hex('x...').
4304      Branch: cfgperl
4305            ! t/op/oct.t
4306 ____________________________________________________________________________
4307 [  3799] By: jhi                                   on 1999/07/27  12:45:45
4308         Log: Integrate with Sarathy (5.005_58).
4309      Branch: cfgperl
4310            - ext/B/byteperl.c
4311           !> Changes MANIFEST Porting/makerel configpm embed.h embed.pl
4312           !> ext/Devel/DProf/DProf.xs ext/POSIX/POSIX.pm
4313           !> ext/SDBM_File/Makefile.PL lib/AutoLoader.pm
4314           !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
4315           !> lib/Pod/Parser.pm lib/SelfLoader.pm os2/OS2/REXX/Makefile.PL
4316           !> perl.h pod/perldelta.pod pod/perlfaq9.pod pod/perlhist.pod
4317           !> win32/bin/pl2bat.pl win32/config_H.bc win32/config_H.gc
4318           !> win32/config_H.vc
4319 ____________________________________________________________________________
4320 [  3798] By: jhi                                   on 1999/07/27  12:42:43
4321         Log: Integer constants (0x, 0[0-7], 0b) now overflow fatally,
4322              they used to be just optional lexical warnings.
4323              Also, with warnings turned on, constants > 2**32-1
4324              trigger a non-portability warning.
4325      Branch: cfgperl
4326            ! pod/perldelta.pod pod/perldiag.pod pod/perllexwarn.pod pp.c
4327            ! t/op/oct.t t/pragma/warn/6default t/pragma/warn/util toke.c
4328            ! util.c
4329 ____________________________________________________________________________
4330 [  3797] By: gsar                                  on 1999/07/27  10:48:27
4331         Log: here lies 5.005_58
4332      Branch: perl
4333            - ext/B/byteperl.c
4334            ! Changes MANIFEST Porting/makerel pod/perldelta.pod
4335            ! pod/perlfaq9.pod pod/perlhist.pod
4336
4337 ----------------
4338 Version 5.005_58
4339 ----------------
4340
4341 ____________________________________________________________________________
4342 [  3796] By: gsar                                  on 1999/07/27  09:23:42
4343         Log: regenerate win32/config_H.?c
4344      Branch: perl
4345            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
4346 ____________________________________________________________________________
4347 [  3795] By: gsar                                  on 1999/07/27  09:02:31
4348         Log: From: Tye McQueen <tye@metronet.com>
4349              Date: Mon, 26 Jul 1999 19:19:22 -0500 (CDT)
4350              Message-Id: <199907270019.AA08223@metronet.com>
4351              Subject: Patch pl2bat.pl so batch file can fail
4352      Branch: perl
4353            ! win32/bin/pl2bat.pl
4354 ____________________________________________________________________________
4355 [  3794] By: gsar                                  on 1999/07/27  08:59:58
4356         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4357              Date: Mon, 26 Jul 1999 01:09:00 -0400 (EDT)
4358              Message-Id: <199907260509.BAA26303@monk.mps.ohio-state.edu>
4359              Subject: [PATCH 5.005_57] decrease memory footprint of standard modules
4360      Branch: perl
4361            ! configpm ext/POSIX/POSIX.pm lib/AutoLoader.pm
4362            ! lib/SelfLoader.pm
4363 ____________________________________________________________________________
4364 [  3793] By: gsar                                  on 1999/07/27  08:19:16
4365         Log: support -DPERL_BINCOMPAT_5005, still needs a Configure test
4366              (from Andy Dougherty)
4367      Branch: perl
4368            ! embed.h embed.pl
4369 ____________________________________________________________________________
4370 [  3792] By: gsar                                  on 1999/07/27  08:04:19
4371         Log: recognize more constructs such as C<$-> in pod (from Russ Allbery
4372              and Brad Appleton)
4373      Branch: perl
4374            ! lib/Pod/Parser.pm
4375 ____________________________________________________________________________
4376 [  3791] By: gsar                                  on 1999/07/27  07:50:54
4377         Log: cover case where CLK_TCK is a float, not integer (from
4378              alexander smishlajev <als@turnhere.com>)
4379      Branch: perl
4380            ! ext/Devel/DProf/DProf.xs
4381 ____________________________________________________________________________
4382 [  3790] By: gsar                                  on 1999/07/27  07:45:08
4383         Log: provide MakeMaker attribute PERL_MALLOC_OK that allows extensions
4384              to call Perl_malloc() as malloc() (from Ilya Zakharevich)
4385      Branch: perl
4386            ! ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm
4387            ! lib/ExtUtils/MakeMaker.pm os2/OS2/REXX/Makefile.PL perl.h
4388 ____________________________________________________________________________
4389 [  3789] By: jhi                                   on 1999/07/27  07:44:55
4390         Log: Integrate with Sarathy.
4391      Branch: cfgperl
4392           +> lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm
4393           !> MANIFEST doio.c embed.h embed.pl ext/B/B/CC.pm
4394           !> ext/SDBM_File/sdbm/sdbm.h global.sym lib/Pod/Html.pm
4395           !> lib/Pod/Text.pm objXSUB.h opcode.h opcode.pl perlapi.c
4396           !> pod/perldiag.pod pod/perlfunc.pod pod/pod2text.PL pp_sys.c
4397           !> proto.h t/comp/proto.t t/io/open.t
4398 ____________________________________________________________________________
4399 [  3788] By: gsar                                  on 1999/07/27  07:29:59
4400         Log: replace Pod::Text with Pod::SimpleText v0.01 (thanks
4401              to Russ Allbery <rra@stanford.edu>); s/Simple// and
4402              s/pod2txt/pod2text/ etc.
4403      Branch: perl
4404            + lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm
4405            ! MANIFEST lib/Pod/Text.pm pod/pod2text.PL
4406 ____________________________________________________________________________
4407 [  3787] By: gsar                                  on 1999/07/27  06:48:40
4408         Log: From: Andy Dougherty <doughera@lafayette.edu>
4409              Date: Wed, 16 Jun 1999 14:40:09 -0400 (EDT)
4410              Message-Id: <Pine.GSU.4.05.9906161435390.248-100000@newton.phys>
4411              Subject: Re: [ID 19990608.003] my_bcopy problem; Unixware 2.0.3
4412      Branch: perl
4413            ! ext/SDBM_File/sdbm/sdbm.h
4414 ____________________________________________________________________________
4415 [  3786] By: gsar                                  on 1999/07/27  06:30:09
4416         Log: applied suggested patch; added missing prototype changes to
4417              opcode.pl along with documentation typos (feature still needs
4418              to be described in perlopentut.pod and summarized in
4419              perldelta.pod)
4420              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4421              Date: Thu, 17 Jun 1999 00:39:34 -0400 (EDT)
4422              Message-Id: <199906170439.AAA18154@monk.mps.ohio-state.edu>
4423              Subject: [PATCH 5.00557] 3-arg open
4424      Branch: perl
4425            ! doio.c embed.h embed.pl global.sym objXSUB.h opcode.h
4426            ! opcode.pl perlapi.c pod/perldiag.pod pod/perlfunc.pod pp_sys.c
4427            ! proto.h t/comp/proto.t t/io/open.t
4428 ____________________________________________________________________________
4429 [  3785] By: gsar                                  on 1999/07/27  04:36:39
4430         Log: don't quit if =head* wasn't found (suggested by Roland Bauer
4431              <roland.bauer@fff.at>)
4432      Branch: perl
4433            ! lib/Pod/Html.pm
4434 ____________________________________________________________________________
4435 [  3784] By: gsar                                  on 1999/07/27  03:56:17
4436         Log: change#3762 wasn't needed
4437      Branch: perl
4438            ! ext/B/B/CC.pm
4439 ____________________________________________________________________________
4440 [  3783] By: jhi                                   on 1999/07/26  19:08:21
4441         Log: Integrate with Sarathy.
4442      Branch: cfgperl
4443           !> Changes makedef.pl patchlevel.h pod/perlfunc.pod pp_ctl.c
4444           !> toke.c utils/dprofpp.PL win32/Makefile win32/config_H.bc
4445           !> win32/config_H.gc win32/config_H.vc win32/makefile.mk
4446 ____________________________________________________________________________
4447 [  3782] By: gsar                                  on 1999/07/26  18:16:50
4448         Log: update Changes, patchlevel &c.
4449      Branch: perl
4450            ! Changes patchlevel.h win32/Makefile win32/config_H.bc
4451            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
4452 ____________________________________________________________________________
4453 [  3781] By: gsar                                  on 1999/07/26  17:54:47
4454         Log: a more correct fix for change#2744
4455              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
4456              Date: Sun, 25 Jul 1999 14:02:25 -0500 (CDT)
4457              Message-ID: <14235.24385.671437.246345@alias-2.pr.mcs.net>
4458              Subject: [PATCH _57] Re: toke.c questions 
4459      Branch: perl
4460            ! toke.c
4461 ____________________________________________________________________________
4462 [  3780] By: gsar                                  on 1999/07/26  17:37:04
4463         Log: utime() doc typo from Greg Bacon <gbacon@itsc.uah.edu>
4464      Branch: perl
4465            ! pod/perlfunc.pod
4466 ____________________________________________________________________________
4467 [  3779] By: jhi                                   on 1999/07/26  16:37:23
4468         Log: Dusting off.
4469      Branch: cfgperl
4470            ! README.threads
4471 ____________________________________________________________________________
4472 [  3778] By: gsar                                  on 1999/07/26  13:28:46
4473         Log: avoid DIVZERO
4474      Branch: perl
4475            ! utils/dprofpp.PL
4476 ____________________________________________________________________________
4477 [  3777] By: gsar                                  on 1999/07/26  13:18:53
4478         Log: warnings identified by Borland compiler
4479      Branch: perl
4480            ! makedef.pl pp_ctl.c
4481 ____________________________________________________________________________
4482 [  3776] By: jhi                                   on 1999/07/26  13:07:36
4483         Log: Integrate with Sarathy.
4484      Branch: cfgperl
4485           !> lib/Carp/Heavy.pm pp_ctl.c pp_hot.c
4486 ____________________________________________________________________________
4487 [  3775] By: gsar                                  on 1999/07/26  12:55:43
4488         Log: avoid infinite recursion when Thread.pm croaks during
4489              bootstrap
4490      Branch: perl
4491            ! lib/Carp/Heavy.pm
4492 ____________________________________________________________________________
4493 [  3774] By: gsar                                  on 1999/07/26  12:43:02
4494         Log: integrate cfgperl contents into mainline
4495      Branch: perl
4496           +> lib/Carp/Heavy.pm
4497           !> MANIFEST Makefile.SH cflags.SH configpm ext/util/make_ext
4498           !> lib/AutoSplit.pm lib/Carp.pm makedepend.SH pod/pod2html.PL
4499           !> pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL
4500           !> pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
4501           !> writemain.SH x2p/Makefile.SH x2p/cflags.SH
4502 ____________________________________________________________________________
4503 [  3773] By: jhi                                   on 1999/07/26  12:40:29
4504         Log: Use long doubles only if they are useful.
4505      Branch: cfgperl
4506            ! ext/POSIX/POSIX.xs
4507 ____________________________________________________________________________
4508 [  3772] By: gsar                                  on 1999/07/26  12:33:11
4509         Log: typo in change#3768
4510      Branch: perl
4511            ! pp_hot.c
4512 ____________________________________________________________________________
4513 [  3771] By: gsar                                  on 1999/07/26  12:08:27
4514         Log: alpha-stage support for user-hooks in @INC
4515              From: Ken Fox <kfox@ford.com>
4516              Date: Mon, 19 Jul 1999 22:12:29 -0400 (EDT)
4517              Message-Id: <199907200213.WAA02816@mailfw2.ford.com>
4518              Subject: Re: loading remote modules
4519      Branch: perl
4520            ! pp_ctl.c
4521 ____________________________________________________________________________
4522 [  3770] By: jhi                                   on 1999/07/26  11:38:36
4523         Log: Back out #3735.  Needs more work.
4524      Branch: cfgperl
4525            ! Makefile.SH cflags.SH configpm ext/util/make_ext
4526            ! lib/AutoSplit.pm makedepend.SH pod/pod2html.PL
4527            ! pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL
4528            ! pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
4529            ! writemain.SH x2p/Makefile.SH x2p/cflags.SH
4530 ____________________________________________________________________________
4531 [  3769] By: jhi                                   on 1999/07/26  11:24:45
4532         Log: Integrate with Sarathy.
4533      Branch: cfgperl
4534           !> (integrate 35 files)
4535 ____________________________________________________________________________
4536 [  3768] By: gsar                                  on 1999/07/26  11:03:07
4537         Log: optimize method name lookup
4538              From: Chip Salzenberg <chip@perlsupport.com>
4539              Date: Thu, 22 Jul 1999 13:43:36 -0400
4540              Message-ID: <19990722134336.Q391@perlsupport.com>
4541              Subject: [PATCH] OP_METHOD_NAMED
4542      Branch: perl
4543            ! dump.c embed.h embed.pl ext/Opcode/Opcode.pm objXSUB.h op.c
4544            ! opcode.h opcode.pl perlapi.c pp.sym pp_hot.c pp_proto.h
4545            ! proto.h
4546 ____________________________________________________________________________
4547 [  3767] By: gsar                                  on 1999/07/26  10:44:11
4548         Log: allow arrow omission in $foo[10]->('foo') etc. (but not in
4549              foo()->()); rework grammar to remove conflicts
4550              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
4551              Date: Fri, 23 Jul 1999 15:55:22 -0500 (CDT)
4552              Message-ID: <14232.54970.771570.548676@alias-2.pr.mcs.net>
4553              Subject: [PATCH _57, long] Re: optional arrow asymmetry
4554      Branch: perl
4555            ! Makefile.SH embed.h embed.pl global.sym objXSUB.h op.c
4556            ! perlapi.c perly.c perly.h perly.y perly_c.diff proto.h
4557            ! vms/perly_c.vms vms/perly_h.vms
4558 ____________________________________________________________________________
4559 [  3766] By: jhi                                   on 1999/07/26  10:18:56
4560         Log: Use $< instead of $*.c in *perlmain.o rules.
4561      Branch: cfgperl
4562            ! Makefile.SH
4563 ____________________________________________________________________________
4564 [  3765] By: gsar                                  on 1999/07/26  09:28:48
4565         Log: From: Ian Phillipps <ian@dial.pipex.com>
4566              Date: Fri, 23 Jul 1999 23:35:56 +0100
4567              Message-ID: <19990723233556.B2435@homer.diplex.co.uk>
4568              Subject: (Version 2) Extending unpack to deal with counted strings
4569      Branch: perl
4570            ! pod/perldiag.pod pod/perlfunc.pod pp.c t/op/pack.t
4571 ____________________________________________________________________________
4572 [  3764] By: jhi                                   on 1999/07/26  09:17:26
4573         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4574              To: perl5-porters@perl.org (Mailing list Perl5)
4575              Subject: [PATCH 5.005_57] Lean Carp.pm with Carp/Heavy.pm
4576              Date: Mon, 26 Jul 1999 04:05:27 -0400 (EDT)
4577              Message-Id: <199907260805.EAA26888@monk.mps.ohio-state.edu>
4578              
4579              The patch was based on 5_57 so had to re-apply lib/Carp.pm
4580              parts of changes #3498, #3696, and #3702 for the new
4581              lib/Carp/Heavy.pm.
4582      Branch: cfgperl
4583            + lib/Carp/Heavy.pm
4584            ! MANIFEST lib/Carp.pm
4585 ____________________________________________________________________________
4586 [  3763] By: gsar                                  on 1999/07/26  09:03:17
4587         Log: ~ isn't valid in VMS filenames
4588      Branch: perl
4589            ! lib/Pod/Html.pm
4590 ____________________________________________________________________________
4591 [  3762] By: gsar                                  on 1999/07/26  08:59:47
4592         Log: setstate stop-gap from Vishal Bhatia
4593      Branch: perl
4594            ! ext/B/B/CC.pm
4595 ____________________________________________________________________________
4596 [  3761] By: gsar                                  on 1999/07/26  08:06:39
4597         Log: patch for pp_foo -> Perl_pp_foo changes from Vishal Bhatia;
4598              add B::OP::name() method that returns just the op_name;
4599              convert Deparse et all to use that instead of B::OP::ppaddr();
4600              add support for OP_SETSTATE in Deparse
4601      Branch: perl
4602            ! ext/B/B.pm ext/B/B.xs ext/B/B/Bblock.pm ext/B/B/Bytecode.pm
4603            ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Deparse.pm ext/B/B/Lint.pm
4604            ! ext/B/B/Xref.pm opcode.h opcode.pl
4605 ____________________________________________________________________________
4606 [  3760] By: jhi                                   on 1999/07/26  07:14:43
4607         Log: Integrate with Sarathy.
4608      Branch: cfgperl
4609           !> (integrate 43 files)
4610 ____________________________________________________________________________
4611 [  3759] By: gsar                                  on 1999/07/26  05:12:24
4612         Log: add disclaimer about perl 4 libraries (modified version of
4613              patch suggested by Clinton Pierce <cpierce1@ford.com>)
4614      Branch: perl
4615            ! lib/abbrev.pl lib/bigfloat.pl lib/bigint.pl lib/bigrat.pl
4616            ! lib/cacheout.pl lib/chat2.pl lib/complete.pl lib/ctime.pl
4617            ! lib/dotsh.pl lib/exceptions.pl lib/fastcwd.pl lib/flush.pl
4618            ! lib/ftp.pl lib/getcwd.pl lib/getopt.pl lib/getopts.pl
4619            ! lib/hostname.pl lib/look.pl lib/pwd.pl lib/termcap.pl
4620 ____________________________________________________________________________
4621 [  3758] By: gsar                                  on 1999/07/26  04:48:35
4622         Log: make reset() behave with high-bit characters
4623              From: Ian Phillipps <ian@dial.pipex.com>
4624              Date: Thu, 22 Jul 1999 22:48:59 +0100
4625              Message-ID: <19990722224859.A27987@homer.diplex.co.uk>
4626              Subject: [PATCH 5.005_57] sv_reset can cause stack corruption
4627      Branch: perl
4628            ! sv.c
4629 ____________________________________________________________________________
4630 [  3757] By: gsar                                  on 1999/07/26  04:40:32
4631         Log: update to perlport-1.44 from Chris Nandor <pudge@pobox.com>
4632      Branch: perl
4633            ! pod/perlport.pod
4634 ____________________________________________________________________________
4635 [  3756] By: gsar                                  on 1999/07/26  04:20:37
4636         Log: dprofpp pod additions from Nathan Torkington <gnat@frii.com>
4637      Branch: perl
4638            ! utils/dprofpp.PL
4639 ____________________________________________________________________________
4640 [  3755] By: gsar                                  on 1999/07/26  04:18:00
4641         Log: disable VPATH for now (breaks x2p build)
4642      Branch: perl
4643            ! x2p/Makefile.SH
4644 ____________________________________________________________________________
4645 [  3754] By: gsar                                  on 1999/07/26  03:15:33
4646         Log: INSTALL =~ s/5.006/5.6/; delay loading Errno until needed
4647              (%! has the necessary magic); misc typos
4648      Branch: perl
4649            ! INSTALL ext/DB_File/DB_File.pm ext/Fcntl/Fcntl.pm
4650            ! ext/GDBM_File/GDBM_File.pm gv.c jpl/JNI/JNI.pm
4651            ! lib/AutoLoader.pm lib/CPAN.pm perl.c pod/perllocale.pod
4652            ! utils/h2xs.PL
4653 ____________________________________________________________________________
4654 [  3753] By: gsar                                  on 1999/07/26  02:38:28
4655         Log: integrate cfgperl contents into mainline
4656      Branch: perl
4657           +> t/pragma/locale/latin1 t/pragma/locale/utf8
4658           !> (integrate 53 files)
4659 ____________________________________________________________________________
4660 [  3752] By: gsar                                  on 1999/07/26  02:11:31
4661         Log: ensure implicitly closed handles don't set $? or $!
4662      Branch: perl
4663            ! doio.c embed.h embed.pl perlapi.c proto.h sv.c t/io/pipe.t
4664 ____________________________________________________________________________
4665 [  3751] By: gsar                                  on 1999/07/26  01:28:34
4666         Log: change#3534 didn't preserve undef return values from caller()
4667      Branch: perl
4668            ! Changes pp_ctl.c
4669 ____________________________________________________________________________
4670 [  3750] By: jhi                                   on 1999/07/25  20:59:29
4671         Log: Back up a tiny bit from #3735.
4672              This may break builds outside the source directory
4673              but then again, they do not work that ell yet anyway.
4674      Branch: cfgperl
4675            ! Makefile.SH
4676 ____________________________________________________________________________
4677 [  3750] By: jhi                                   on 1999/07/25  20:59:29
4678         Log: Back up a tiny bit from #3735.
4679              This may break builds outside the source directory
4680              but then again, they do not work that ell yet anyway.
4681      Branch: cfgperl
4682            ! Makefile.SH
4683 ____________________________________________________________________________
4684 [  3749] By: jhi                                   on 1999/07/25  19:15:55
4685         Log: Integrate with Sarathy.
4686      Branch: cfgperl
4687           !> lib/ExtUtils/MM_Unix.pm toke.c utils/h2xs.PL
4688 ____________________________________________________________________________
4689 [  3748] By: jhi                                   on 1999/07/25  19:06:59
4690         Log: Recode locale.t so that the change in #3730
4691              is not needed and locale.t works both without
4692              and with the utf8 pragma.
4693      Branch: cfgperl
4694            + t/pragma/locale/latin1 t/pragma/locale/utf8
4695            ! MANIFEST t/pragma/locale.t
4696 ____________________________________________________________________________
4697 [  3747] By: jhi                                   on 1999/07/25  19:01:46
4698         Log: Like #3743.
4699      Branch: cfgperl
4700            ! utils/perlbug.PL
4701 ____________________________________________________________________________
4702 [  3746] By: gsar                                  on 1999/07/25  18:08:58
4703         Log: add option to omit Changes file, from Abigail <abigail@delanet.com>;
4704              append a HISTORY section to POD if option is used
4705      Branch: perl
4706            ! utils/h2xs.PL
4707 ____________________________________________________________________________
4708 [  3745] By: gsar                                  on 1999/07/25  17:40:03
4709         Log: warn rather than die when parse_version() can't cut it (from
4710              Michael G Schwern <schwern@pobox.com>)
4711      Branch: perl
4712            ! lib/ExtUtils/MM_Unix.pm
4713 ____________________________________________________________________________
4714 [  3744] By: gsar                                  on 1999/07/25  16:32:48
4715         Log: make map behave like grep wrt indirect object slot when
4716              there are parentheses; revert an experimental mod by Larry
4717              in change#2038 that failed to parse %{{qw(a b c)}} properly
4718              (this means C<map {use Foo; ...} ...> still needs a proper
4719              fix)
4720      Branch: perl
4721            ! toke.c
4722 ____________________________________________________________________________
4723 [  3743] By: jhi                                   on 1999/07/25  16:24:55
4724         Log: Fix a typo in #3725.
4725      Branch: cfgperl
4726            ! utils/perlbug.PL
4727 ____________________________________________________________________________
4728 [  3742] By: jhi                                   on 1999/07/25  16:14:39
4729         Log: Integrate with Sarathy.
4730      Branch: cfgperl
4731           !> (integrate 26 files)
4732 ____________________________________________________________________________
4733 [  3741] By: jhi                                   on 1999/07/25  16:02:28
4734         Log: Cut-and-pasto in #3737.
4735      Branch: cfgperl
4736            ! perl.c
4737 ____________________________________________________________________________
4738 [  3740] By: gsar                                  on 1999/07/25  15:59:34
4739         Log: add note about glibc bug
4740      Branch: perl
4741            ! t/pragma/warn/pp_hot
4742 ____________________________________________________________________________
4743 [  3739] By: gsar                                  on 1999/07/25  15:48:40
4744         Log: fix bug in change#3728 that might free COPs prematurely;
4745              null(op) now does more thorough scrubbing of the op, which
4746              fixes a few compile-time memory "leaks"
4747      Branch: perl
4748            ! dump.c embed.h embed.pl op.c proto.h
4749 ____________________________________________________________________________
4750 [  3738] By: jhi                                   on 1999/07/25  14:15:26
4751         Log: In accordance with #3737.
4752      Branch: metaconfig
4753            ! U/installdirs/sitelib.U U/installdirs/vendorprefix.U
4754            ! U/modified/Oldconfig.U
4755      Branch: metaconfig/U/perl
4756            ! Extensions.U
4757 ____________________________________________________________________________
4758 [  3737] By: jhi                                   on 1999/07/25  14:12:34
4759         Log: Use vendorprefixlib.
4760      Branch: cfgperl
4761            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4762            ! config_h.SH perl.c
4763 ____________________________________________________________________________
4764 [  3736] By: jhi                                   on 1999/07/25  13:10:03
4765         Log: Populate metaconfig branch.
4766      Branch: metaconfig
4767            + (add 1468 files)
4768      Branch: metaconfig/U/perl
4769            + (add 101 files)
4770 ____________________________________________________________________________
4771 [  3735] By: jhi                                   on 1999/07/25  12:27:20
4772         Log: First steps of making builds outside the source
4773              directory possible.  These should get us as far
4774              as miniperl, then building DynaLoader falls into
4775              tiny twinkling pieces as MakeMaker knows nothing
4776              of VPATH mindset.
4777      Branch: cfgperl
4778            ! Configure Makefile.SH cflags.SH config_h.SH configpm
4779            ! ext/util/make_ext lib/AutoSplit.pm makedepend.SH
4780            ! pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL
4781            ! pod/pod2text.PL pod/pod2usage.PL pod/podchecker.PL
4782            ! pod/podselect.PL writemain.SH x2p/Makefile.SH x2p/cflags.SH
4783 ____________________________________________________________________________
4784 [  3734] By: jhi                                   on 1999/07/25  11:19:28
4785         Log: Poor Glossary--are we fixed yet?
4786      Branch: cfgperl
4787            ! Porting/Glossary
4788 ____________________________________________________________________________
4789 [  3733] By: jhi                                   on 1999/07/25  11:15:06
4790         Log: Change #3732 mistakenly clobbered Glossary.
4791      Branch: cfgperl
4792            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4793            ! config_h.SH
4794 ____________________________________________________________________________
4795 [  3732] By: jhi                                   on 1999/07/25  10:46:39
4796         Log: Andy's new installation scheme (note: a lot of this
4797              leaked in already with change #3731).  The vendor*
4798              stuff is not used anywhere (in *.SH, say), so it
4799              isn't in Configure, either.
4800      Branch: cfgperl
4801            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4802            ! config_h.SH
4803 ____________________________________________________________________________
4804 [  3731] By: jhi                                   on 1999/07/25  10:12:07
4805         Log: Circumcode a strange shell(?) bug in AIX found
4806              while trying to do -Duse64bits (which I couldn't do
4807              in the end because the CPU isn't 64-bit in that box,
4808              but at least now the probing doesn't crash.)
4809      Branch: cfgperl
4810            ! Configure config_h.SH hints/aix.sh
4811 ____________________________________________________________________________
4812 [  3730] By: gsar                                  on 1999/07/25  04:56:56
4813         Log: fix little utf8 nits in testsuite; add patch from Ilya that cures
4814              a utf8 bug in one of the new RE optimizations
4815      Branch: perl
4816            ! regcomp.c regexec.c t/harness t/lib/io_udp.t t/op/re_tests
4817            ! t/pragma/locale.t
4818 ____________________________________________________________________________
4819 [  3729] By: jhi                                   on 1999/07/23  19:56:27
4820         Log: From: Andy Dougherty <doughera@lafayette.edu>
4821              To: Perl Porters <perl5-porters@perl.org>
4822              Subject: [PATCH 5.005_57] INSTALL-1.58
4823              Date: Fri, 23 Jul 1999 10:50:13 -0400 (EDT)
4824              Message-Id: <Pine.GSU.4.05.9907231033190.3555-100000@newton.phys>
4825              
4826              plus
4827              
4828              From: "Kurt D. Starsinic" <kstar@chapin.edu>
4829              To: Andy Dougherty <doughera@lafayette.edu>
4830              Cc: Perl Porters <perl5-porters@perl.org>
4831              Subject: Re: [PATCH 5.005_57] INSTALL-1.58
4832              Date: Fri, 23 Jul 1999 13:38:25 -0400
4833              Message-ID: <19990723133825.A12033@O2.chapin.edu>
4834      Branch: cfgperl
4835            ! INSTALL
4836 ____________________________________________________________________________
4837 [  3728] By: gsar                                  on 1999/07/23  17:24:42
4838         Log: applied suggested patch for tracking line numbers correctly in
4839              optimized blocks with a single statement; changed setcop to
4840              setstate and added code for -Dx dumps
4841              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
4842              Date: Wed, 23 Jun 1999 17:27:42 +0100
4843              Message-Id: <199906231627.RAA24033@crypt.compulink.co.uk>
4844              Subject: [PATCH 5.005_57] Line number error in optimised else() 
4845      Branch: perl
4846            ! dump.c embed.h ext/Devel/DProf/DProf.xs ext/Opcode/Opcode.pm
4847            ! objXSUB.h op.c opcode.h opcode.pl perlapi.c pp.sym pp_hot.c
4848            ! pp_proto.h t/op/misc.t
4849 ____________________________________________________________________________
4850 [  3727] By: gsar                                  on 1999/07/23  15:56:04
4851         Log: avoid useless use of target for pp_each(); also fixes bugs due to
4852              refcount held by the target
4853      Branch: perl
4854            ! opcode.h opcode.pl pp.c t/op/each.t
4855 ____________________________________________________________________________
4856 [  3726] By: jhi                                   on 1999/07/23  12:08:30
4857         Log: Change #3725 aftershock.
4858      Branch: cfgperl
4859            ! INSTALL jpl/JNI/JNI.pm
4860 ____________________________________________________________________________
4861 [  3725] By: jhi                                   on 1999/07/23  11:58:49
4862         Log: Introduce $Config{ldlibpthname} which contains
4863              the name of the environment variable holding the
4864              dynamic library search path, often LD_LIBRARY_PATH.
4865              Use this new feature all over.
4866              Also removed remnants of admonition "add LD_LIBRARY_PATH
4867              before running make" because Makefile.SH does this for you. 
4868      Branch: cfgperl
4869            ! Configure Makefile.SH config_h.SH
4870            ! ext/DynaLoader/DynaLoader_pm.PL hints/README.hints
4871            ! hints/aix.sh hints/beos.sh hints/cygwin32.sh hints/dgux.sh
4872            ! hints/epix.sh hints/esix4.sh hints/hpux.sh hints/next_4.sh
4873            ! hints/os2.sh hints/rhapsody.sh hints/svr4.sh jpl/JNI/JNI.pm
4874            ! jpl/install-jpl utils/perlbug.PL
4875 ____________________________________________________________________________
4876 [  3724] By: jhi                                   on 1999/07/23  08:03:36
4877         Log: From: Spider Boardman <spider@orb.nashua.nh.us>
4878              To: perl5-porters@perl.org
4879              Subject: [PATCH] Re: [ID 19990715.003] [BUG] all perl5 versions: segfault on $# 
4880              Date: Thu, 22 Jul 1999 19:58:34 -0400
4881              Message-Id: <199907222358.TAA27354@Orb.Nashua.NH.US>
4882      Branch: cfgperl
4883            ! av.c
4884 ____________________________________________________________________________
4885 [  3723] By: gsar                                  on 1999/07/23  00:01:29
4886         Log: emit warning about function calls that were encountered too early
4887              to enforce their prototype
4888      Branch: perl
4889            ! op.c op.h pod/perldiag.pod
4890 ____________________________________________________________________________
4891 [  3722] By: jhi                                   on 1999/07/22  21:19:59
4892         Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
4893              To: perl5-porters@perl.org
4894              Cc: Chip Salzenberg <chip@perlsupport.com>, Gurusamy Sarathy <gsar@activestate.com>
4895              Subject: [PATCH] MakeMaker documentation
4896              Date: Wed, 21 Jul 1999 14:15:42 -0400
4897              Message-ID: <19990721141542.A1800@O2.chapin.edu>
4898      Branch: cfgperl
4899            ! lib/ExtUtils/MakeMaker.pm
4900 ____________________________________________________________________________
4901 [  3721] By: jhi                                   on 1999/07/22  21:05:19
4902         Log: From: pvhp@forte.com (Peter Prymmer)
4903              To: chip@perlsupport.com, gsar@activestate.com, perl-mvs@perl.org, perl5-porters@perl.org
4904              Subject: [PATCH: 5.005_03 && 5.005_57]os390 hints file appendix stops bad builds
4905              Date: Wed, 21 Jul 99 17:15:39 PDT
4906              Message-Id: <9907220015.AA11931@forte.com>
4907      Branch: cfgperl
4908            ! hints/os390.sh
4909 ____________________________________________________________________________
4910 [  3720] By: jhi                                   on 1999/07/22  20:51:17
4911         Log: AIX magic: ccdlflags needs to be different for
4912              Perl itself and for extra-core extensions
4913              (as used by ExtUtilss::embed::ldopts).
4914              Based on the problems described in
4915              
4916              From: Mike W Ellwood <mwe@rl.ac.uk>
4917              To: perl5-porters@perl.org
4918              Subject: [ID 19990722.002] Perl 5.00503 and AIX 4.1.5; perl.exp; build errors. Also Imagemagick...
4919              Date: Thu, 22 Jul 1999 14:28:19 +0100 (BST)
4920              Reply-To: m.w.ellwood@rl.ac.uk
4921              Message-Id: <Pine.A41.3.96.990722141209.72660V-100000@unixfe.rl.ac.uk>
4922      Branch: cfgperl
4923            ! Configure Makefile.SH config_h.SH hints/aix.sh
4924 ____________________________________________________________________________
4925 [  3719] By: jhi                                   on 1999/07/22  08:23:53
4926         Log: Update history records.
4927      Branch: cfgperl
4928            ! pod/perlhist.pod
4929 ____________________________________________________________________________
4930 [  3718] By: jhi                                   on 1999/07/21  13:54:42
4931         Log: Todododobedobedo.
4932      Branch: cfgperl
4933            ! Todo
4934 ____________________________________________________________________________
4935 [  3717] By: jhi                                   on 1999/07/21  12:10:48
4936         Log: Even more Todo.
4937      Branch: cfgperl
4938            ! Todo
4939 ____________________________________________________________________________
4940 [  3716] By: jhi                                   on 1999/07/21  11:40:39
4941         Log: Use Errno more extensively so that error
4942              messages are more portable (another way
4943              would be to muck around with LC_MESSAGES).
4944              Problem reported in
4945              
4946              From: oracle@pcr8.pcr.com
4947              To: perl5-porters@perl.org
4948              Subject: [ID 19990719.003] LC_MESSAGES breaks h2xs autoloaded constants on AIX 4.1.4
4949              Date: Mon, 19 Jul 1999 18:39:13 -0400
4950              Message-Id: <9907192239.AA44990@pcr8.pcr.com>
4951      Branch: cfgperl
4952            ! ext/DB_File/DB_File.pm ext/Fcntl/Fcntl.pm
4953            ! ext/GDBM_File/GDBM_File.pm jpl/JNI/JNI.pm lib/AutoLoader.pm
4954            ! lib/CPAN.pm pod/perllocale.pod utils/h2xs.PL
4955 ____________________________________________________________________________
4956 [  3715] By: jhi                                   on 1999/07/21  11:05:36
4957         Log: Slightly modified patch.
4958              From: Sean Sheedy <seans@ncube.com>
4959              To: perl5-porters@perl.org
4960              Subject: [ID 19990720.003] Perl 5.005_3 patch: Non-standard object extensions
4961              Date: Tue, 20 Jul 1999 09:52:06 -0700
4962              Message-Id: <3794A935.1C150E54@ncube.com>
4963      Branch: cfgperl
4964            ! cflags.SH x2p/cflags.SH
4965 ____________________________________________________________________________
4966 [  3714] By: jhi                                   on 1999/07/20  21:26:19
4967         Log: More Todo.
4968      Branch: cfgperl
4969            ! Todo
4970 ____________________________________________________________________________
4971 [  3713] By: jhi                                   on 1999/07/20  18:02:45
4972         Log: Integrate with Sarathy.
4973      Branch: cfgperl
4974           +> ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
4975           +> ext/Devel/DProf/DProf.xs ext/Devel/DProf/Makefile.PL
4976           +> ext/Devel/DProf/Todo t/lib/dprof.t t/lib/dprof/V.pm
4977           +> t/lib/dprof/test1_t t/lib/dprof/test1_v t/lib/dprof/test2_t
4978           +> t/lib/dprof/test2_v t/lib/dprof/test3_t t/lib/dprof/test3_v
4979           +> t/lib/dprof/test4_t t/lib/dprof/test4_v t/lib/dprof/test5_t
4980           +> t/lib/dprof/test5_v t/lib/dprof/test6_t t/lib/dprof/test6_v
4981           +> utils/dprofpp.PL
4982           !> INSTALL MAINTAIN MANIFEST configure.com
4983           !> ext/Devel/Peek/Makefile.PL installman installperl
4984           !> pod/roffitall utils/Makefile vms/descrip_mms.template
4985           !> win32/Makefile win32/makefile.mk win32/win32.h
4986 ____________________________________________________________________________
4987 [  3712] By: gsar                                  on 1999/07/20  15:29:01
4988         Log: DProf tweak
4989      Branch: perl
4990            ! ext/Devel/DProf/DProf.xs
4991 ____________________________________________________________________________
4992 [  3711] By: gsar                                  on 1999/07/20  07:56:19
4993         Log: another DProf build tweak
4994      Branch: perl
4995            ! utils/dprofpp.PL
4996 ____________________________________________________________________________
4997 [  3710] By: gsar                                  on 1999/07/20  07:36:36
4998         Log: move DProf things around to where they are supposed to be
4999      Branch: perl
5000            + t/lib/dprof.t t/lib/dprof/V.pm t/lib/dprof/test1_t
5001            + t/lib/dprof/test1_v t/lib/dprof/test2_t t/lib/dprof/test2_v
5002            + t/lib/dprof/test3_t t/lib/dprof/test3_v t/lib/dprof/test4_t
5003            + t/lib/dprof/test4_v t/lib/dprof/test5_t t/lib/dprof/test5_v
5004            + t/lib/dprof/test6_t t/lib/dprof/test6_v
5005           +> utils/dprofpp.PL
5006            - ext/Devel/DProf/dprofpp.PL ext/Devel/DProf/t/V.pm
5007            - ext/Devel/DProf/t/test1.pl ext/Devel/DProf/t/test1.t
5008            - ext/Devel/DProf/t/test1.v ext/Devel/DProf/t/test2.t
5009            - ext/Devel/DProf/t/test2.v ext/Devel/DProf/t/test3.t
5010            - ext/Devel/DProf/t/test3.v ext/Devel/DProf/t/test4.t
5011            - ext/Devel/DProf/t/test4.v ext/Devel/DProf/t/test5.t
5012            - ext/Devel/DProf/t/test5.v ext/Devel/DProf/t/test6.t
5013            - ext/Devel/DProf/t/test6.v ext/Devel/DProf/test.pl
5014            ! INSTALL MANIFEST ext/Devel/DProf/Makefile.PL installman
5015            ! installperl pod/roffitall utils/Makefile
5016            ! vms/descrip_mms.template win32/Makefile win32/makefile.mk
5017 ____________________________________________________________________________
5018 [  3709] By: gsar                                  on 1999/07/20  06:13:16
5019         Log: DProf fixups for PERL_IMPLICIT_CONTEXT
5020      Branch: perl
5021            ! ext/Devel/DProf/DProf.xs ext/Devel/DProf/Makefile.PL
5022            ! ext/Devel/Peek/Makefile.PL
5023 ____________________________________________________________________________
5024 [  3708] By: gsar                                  on 1999/07/20  06:01:22
5025         Log: move DProf to Devel/DProf
5026      Branch: perl
5027           +> ext/Devel/DProf/Changes ext/Devel/DProf/DProf.pm
5028           +> ext/Devel/DProf/DProf.xs ext/Devel/DProf/Makefile.PL
5029           +> ext/Devel/DProf/Todo ext/Devel/DProf/dprofpp.PL
5030           +> ext/Devel/DProf/t/V.pm ext/Devel/DProf/t/test1.pl
5031           +> ext/Devel/DProf/t/test1.t ext/Devel/DProf/t/test1.v
5032           +> ext/Devel/DProf/t/test2.t ext/Devel/DProf/t/test2.v
5033           +> ext/Devel/DProf/t/test3.t ext/Devel/DProf/t/test3.v
5034           +> ext/Devel/DProf/t/test4.t ext/Devel/DProf/t/test4.v
5035           +> ext/Devel/DProf/t/test5.t ext/Devel/DProf/t/test5.v
5036           +> ext/Devel/DProf/t/test6.t ext/Devel/DProf/t/test6.v
5037           +> ext/Devel/DProf/test.pl
5038            - ext/DProf/Changes ext/DProf/DProf.pm ext/DProf/DProf.xs
5039            - ext/DProf/Makefile.PL ext/DProf/Todo ext/DProf/dprofpp.PL
5040            - ext/DProf/t/V.pm ext/DProf/t/test1.pl ext/DProf/t/test1.t
5041            - ext/DProf/t/test1.v ext/DProf/t/test2.t ext/DProf/t/test2.v
5042            - ext/DProf/t/test3.t ext/DProf/t/test3.v ext/DProf/t/test4.t
5043            - ext/DProf/t/test4.v ext/DProf/t/test5.t ext/DProf/t/test5.v
5044            - ext/DProf/t/test6.t ext/DProf/t/test6.v ext/DProf/test.pl
5045            ! MAINTAIN MANIFEST configure.com win32/Makefile
5046            ! win32/makefile.mk
5047 ____________________________________________________________________________
5048 [  3707] By: gsar                                  on 1999/07/20  05:39:11
5049         Log: add Devel::DProf v19990108 from CPAN, as it was
5050      Branch: perl
5051            + ext/DProf/Changes ext/DProf/DProf.pm ext/DProf/DProf.xs
5052            + ext/DProf/Makefile.PL ext/DProf/Todo ext/DProf/dprofpp.PL
5053            + ext/DProf/t/V.pm ext/DProf/t/test1.pl ext/DProf/t/test1.t
5054            + ext/DProf/t/test1.v ext/DProf/t/test2.t ext/DProf/t/test2.v
5055            + ext/DProf/t/test3.t ext/DProf/t/test3.v ext/DProf/t/test4.t
5056            + ext/DProf/t/test4.v ext/DProf/t/test5.t ext/DProf/t/test5.v
5057            + ext/DProf/t/test6.t ext/DProf/t/test6.v ext/DProf/test.pl
5058            ! MANIFEST
5059 ____________________________________________________________________________
5060 [  3706] By: gsar                                  on 1999/07/20  04:52:25
5061         Log: C<union any> needs no PERL_OBJECT-treatment
5062      Branch: perl
5063            ! win32/win32.h
5064 ____________________________________________________________________________
5065 [  3705] By: gsar                                  on 1999/07/20  04:11:54
5066         Log: fix problem in default build
5067      Branch: perl
5068            ! win32/Makefile win32/makefile.mk
5069 ____________________________________________________________________________
5070 [  3704] By: jhi                                   on 1999/07/19  07:06:36
5071         Log: Integrate with Sarathy.
5072      Branch: cfgperl
5073           !> Changes lib/Carp.pm makedef.pl pod/perldiag.pod sv.h util.c
5074           !> win32/win32.c
5075 ____________________________________________________________________________
5076 [  3703] By: gsar                                  on 1999/07/19  05:55:57
5077         Log: win32 nits
5078      Branch: perl
5079            ! makedef.pl sv.h
5080 ____________________________________________________________________________
5081 [  3702] By: gsar                                  on 1999/07/19  04:29:34
5082         Log: don't display tid from main thread (or testsuite breaks)
5083      Branch: perl
5084            ! lib/Carp.pm util.c
5085 ____________________________________________________________________________
5086 [  3701] By: gsar                                  on 1999/07/19  00:47:52
5087         Log: remove several doubled (and tripled!) entries
5088      Branch: perl
5089            ! pod/perldiag.pod
5090 ____________________________________________________________________________
5091 [  3700] By: gsar                                  on 1999/07/19  00:42:34
5092         Log: integrate cfgperl contents into mainline
5093      Branch: perl
5094           +> makedef.pl
5095            - perl_exp.SH win32/makedef.pl
5096           !> MANIFEST Makefile.SH ext/DynaLoader/DynaLoader_pm.PL
5097           !> ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_vms.xs hints/aix.sh
5098           !> pod/perldiag.pod pp.c regexec.c t/pragma/warn/util toke.c
5099           !> utf8.c util.c win32/Makefile win32/makefile.mk
5100 ____________________________________________________________________________
5101 [  3699] By: gsar                                  on 1999/07/19  00:33:59
5102         Log: avoid bug in win32_str_os_error() (from Jan Dubois)
5103      Branch: perl
5104            ! Changes win32/win32.c
5105 ____________________________________________________________________________
5106 [  3698] By: jhi                                   on 1999/07/18  21:33:57
5107         Log: Integrate with Sarathy.
5108      Branch: cfgperl
5109           +> t/op/chars.t
5110           !> (integrate 57 files)
5111 ____________________________________________________________________________
5112 [  3697] By: gsar                                  on 1999/07/18  05:22:36
5113         Log: From: pvhp@forte.com (Peter Prymmer)
5114              Date: Thu, 1 Jul 99 19:31:24 PDT
5115              Message-Id: <9907020231.AA16942@forte.com>
5116              Subject: [ID 19990701.031] 4 ctl chars on EBCDIC not asciiish enough
5117      Branch: perl
5118            + t/op/chars.t
5119            ! MANIFEST ebcdic.c t/op/ord.t
5120 ____________________________________________________________________________
5121 [  3696] By: gsar                                  on 1999/07/18  05:11:02
5122         Log: display thread id in diagnostics (suggested by Dan Sugalski)
5123      Branch: perl
5124            ! lib/Carp.pm util.c
5125 ____________________________________________________________________________
5126 [  3695] By: gsar                                  on 1999/07/18  04:57:47
5127         Log: missing perldiag entry (from Dan Sugalski <sugalskd@osshe.edu>)
5128      Branch: perl
5129            ! pod/perldiag.pod
5130 ____________________________________________________________________________
5131 [  3694] By: gsar                                  on 1999/07/18  04:56:28
5132         Log: cache [NIUP]V conversions of defined READONLY values
5133              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5134              Date: Sun, 11 Jul 1999 04:39:44 -0400
5135              Message-ID: <19990711043944.A25944@monk.mps.ohio-state.edu>
5136              Subject: [PATCH 5.005_57] Allow caching of numeric/string conversion
5137      Branch: perl
5138            ! sv.c
5139 ____________________________________________________________________________
5140 [  3693] By: gsar                                  on 1999/07/18  03:53:38
5141         Log: From: jan.dubois@ibm.net (Jan Dubois)
5142              Date: Sat, 17 Jul 1999 10:58:29 +0200
5143              Message-ID: <379144ad.13616689@smtp1.ibm.net>
5144              Subject: [PATCH 5.005] Some lib/ExtUtils/Manifest.pm POD fixes
5145      Branch: perl
5146            ! lib/ExtUtils/Manifest.pm
5147 ____________________________________________________________________________
5148 [  3692] By: gsar                                  on 1999/07/18  03:51:03
5149         Log: remove spurious newSTATEOP() that causes goto to enter one too many
5150              contexts when jumping between if and elsif blocks
5151      Branch: perl
5152            ! perly.c perly.y pp_ctl.c t/op/goto.t
5153 ____________________________________________________________________________
5154 [  3691] By: gsar                                  on 1999/07/18  01:49:59
5155         Log: detypo, update Changes
5156      Branch: perl
5157            ! Changes doio.c
5158 ____________________________________________________________________________
5159 [  3690] By: gsar                                  on 1999/07/18  01:16:59
5160         Log: mention the -Minteger effect on modulus (from Nathan Torkington)
5161      Branch: perl
5162            ! lib/integer.pm
5163 ____________________________________________________________________________
5164 [  3689] By: gsar                                  on 1999/07/18  00:47:17
5165         Log: ensure __END__ appears on a line by itself in wrapped
5166              scripts (thanks to Steve Tolkin <tolkin@mediaone.net>);
5167              mention caveat about successfull kill()
5168      Branch: perl
5169            ! pod/perlfunc.pod win32/bin/pl2bat.pl
5170 ____________________________________________________________________________
5171 [  3688] By: gsar                                  on 1999/07/17  20:47:44
5172         Log: noecho noops (from Nicholas Clark <nick@flirble.org>)
5173      Branch: perl
5174            ! ext/SDBM_File/sdbm/Makefile.PL
5175 ____________________________________________________________________________
5176 [  3687] By: gsar                                  on 1999/07/17  20:43:27
5177         Log: make CC.pm use a distinct CCPP() macro rather than PP()
5178              (suggested by Vishal Bhatia <vishalb@my-deja.com>)
5179      Branch: perl
5180            ! cc_runtime.h ext/B/B/CC.pm
5181 ____________________________________________________________________________
5182 [  3686] By: gsar                                  on 1999/07/17  20:39:08
5183         Log: tiny bug in vars.pm (from John Dlugosz)
5184      Branch: perl
5185            ! lib/vars.pm
5186 ____________________________________________________________________________
5187 [  3685] By: gsar                                  on 1999/07/17  20:37:27
5188         Log: applied suggested patch, along with later tweak
5189              From: jan.dubois@ibm.net (Jan Dubois)
5190              Date: Wed, 14 Jul 1999 23:53:43 +0200
5191              Message-ID: <37a902e7.15977234@smtp1.ibm.net>
5192              Subject: Merge ActivePerl Stylesheet support etc into Pod::Html.pm
5193      Branch: perl
5194            ! lib/Pod/Html.pm
5195 ____________________________________________________________________________
5196 [  3684] By: gsar                                  on 1999/07/17  20:24:32
5197         Log: avoid #ifdef DEBUGGING in thrdvar.h (from Dominic Dunlop <domo@vo.lu>)
5198      Branch: perl
5199            ! thrdvar.h
5200 ____________________________________________________________________________
5201 [  3683] By: gsar                                  on 1999/07/17  20:21:01
5202         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5203              Date: Tue, 13 Jul 1999 05:44:28 -0400 (EDT)
5204              Message-Id: <199907130944.FAA04473@monk.mps.ohio-state.edu>
5205              Subject: [PATCH 5.005_57] Segfaults if $^P
5206      Branch: perl
5207            ! embed.h embed.pl global.sym mg.c objXSUB.h perl.c perlapi.c
5208            ! proto.h
5209 ____________________________________________________________________________
5210 [  3682] By: gsar                                  on 1999/07/17  20:04:17
5211         Log: use a better prefixify() heuristic than m/perl/ (prefix/lib/perl5
5212              and prefix/lib/perl5/man are ass_u_med only if those directories
5213              actually exist; else prefix/{lib,man} are used)
5214      Branch: perl
5215            ! lib/ExtUtils/MM_Unix.pm
5216 ____________________________________________________________________________
5217 [  3681] By: gsar                                  on 1999/07/17  19:12:33
5218         Log: allow $foo{$x} and $bar[$i] for (\$) prototype
5219      Branch: perl
5220            ! op.c t/comp/proto.t
5221 ____________________________________________________________________________
5222 [  3680] By: gsar                                  on 1999/07/17  18:23:55
5223         Log: fix vec() on magic values
5224              From: Ian Phillipps <ian@dial.pipex.com>
5225              Date: Mon, 12 Jul 1999 12:30:05 +0100
5226              Message-ID: <19990712123005.A11355@homer.diplex.co.uk>
5227              Subject: [PATCH 5.005_57] Re: do_vecset is broken.  Re: [ID 19990703.003].
5228      Branch: perl
5229            ! doop.c t/op/tie.t
5230 ____________________________________________________________________________
5231 [  3679] By: gsar                                  on 1999/07/17  18:10:44
5232         Log: make system() return -1 and set $! if exec of child failed
5233              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5234              Date: Fri, 9 Jul 1999 05:21:13 -0400
5235              Message-ID: <19990709052113.A6201@monk.mps.ohio-state.edu>
5236              Subject: [PATCH 5.005_57] system()==-1 and $! from failing fork/exec
5237      Branch: perl
5238            ! doio.c embed.h embed.pl global.sym objXSUB.h perlapi.c
5239            ! pod/perlfunc.pod pp_sys.c proto.h t/op/exec.t
5240 ____________________________________________________________________________
5241 [  3678] By: gsar                                  on 1999/07/17  17:54:01
5242         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5243              Date: Fri, 9 Jul 1999 04:27:51 -0400 (EDT)
5244              Message-Id: <199907090827.EAA03321@monk.mps.ohio-state.edu>
5245              Subject: [PATCH 5.005_57] File descriptor leak in do_exec3
5246      Branch: perl
5247            ! util.c
5248 ____________________________________________________________________________
5249 [  3677] By: gsar                                  on 1999/07/17  17:34:38
5250         Log: a modernized version of find2perl from Ken Pizzini <ken@halcyon.com>;
5251              converted Ken's documentation outline into pod
5252      Branch: perl
5253            ! x2p/find2perl.PL
5254 ____________________________________________________________________________
5255 [  3676] By: gsar                                  on 1999/07/17  16:34:09
5256         Log: pod fixes (with minor edits) from Abigail, Ronald Kimball, Jon
5257              Waddington, Tuomas Lukka, Steven Tolkin, Ian Phillipps, and
5258              Steve Lidie
5259      Branch: perl
5260            ! pod/Win32.pod pod/perldelta.pod pod/perlfaq.pod
5261            ! pod/perlfaq1.pod pod/perlfaq2.pod pod/perlfaq3.pod
5262            ! pod/perlfaq4.pod pod/perlfaq5.pod pod/perlfunc.pod
5263            ! pod/perlguts.pod pod/perlhist.pod pod/perlop.pod
5264            ! pod/perlport.pod pod/perltoc.pod pod/perltodo.pod
5265            ! pod/perltoot.pod pod/perltootc.pod pod/perlvar.pod
5266 ____________________________________________________________________________
5267 [  3675] By: gsar                                  on 1999/07/17  00:16:53
5268         Log: backout redundant change#3628
5269      Branch: perl
5270            ! Changes hints/bsdos.sh
5271 ____________________________________________________________________________
5272 [  3674] By: jhi                                   on 1999/07/15  14:26:03
5273         Log: Fix the bin/oct/hex constant overflow tests for
5274              long long platforms.
5275      Branch: cfgperl
5276            ! t/pragma/warn/util
5277 ____________________________________________________________________________
5278 [  3673] By: jhi                                   on 1999/07/14  21:59:11
5279         Log: Fixed AIX dynamic loading and AIX shared Perl library.
5280              Tested in: AIX 4.1.5 cc+useshrplib+usethreads, 4.1.5 cc,
5281              4.1.5 gcc+useshrplib+usethreads, 4.3.1 cc+useshrplib.
5282              Hijacked win32/makedef.pl for more general purpose export
5283              list building, now it is used (as toplevel makedef.pl)
5284              for win32 and AIX (perl_exp.SH made unnecessary).
5285              Because the export lists are now correct in AIX, no more linker
5286              warnings about "Exported symbol not defined" should appear.
5287      Branch: cfgperl
5288            + makedef.pl
5289            - perl_exp.SH win32/makedef.pl
5290            ! MANIFEST Makefile.SH ext/DynaLoader/DynaLoader_pm.PL
5291            ! ext/DynaLoader/dl_aix.xs hints/aix.sh win32/Makefile
5292            ! win32/makefile.mk
5293 ____________________________________________________________________________
5294 [  3672] By: gsar                                  on 1999/07/14  17:12:13
5295         Log: minor efficiency tweak
5296      Branch: perl
5297            ! pp_ctl.c
5298 ____________________________________________________________________________
5299 [  3671] By: jhi                                   on 1999/07/14  16:22:39
5300         Log: The regexec.c change of #3606 caused a core dump in fbm_instr()
5301              if its caller re_intuit_start() was entered with strend == strpos
5302              because end_shift ended up as -1.  The patch ain't necessarily
5303              correct but least the core dump is avoided.
5304      Branch: cfgperl
5305            ! regexec.c
5306 ____________________________________________________________________________
5307 [  3670] By: jhi                                   on 1999/07/13  07:59:09
5308         Log: Integrate with Sarathy.
5309      Branch: cfgperl
5310            - XSlock.h win32/GenCAPI.pl win32/TEST win32/autosplit.pl
5311            - win32/genxsdef.pl win32/makemain.pl win32/makeperldef.pl
5312           !> (integrate 67 files)
5313 ____________________________________________________________________________
5314 [  3669] By: gsar                                  on 1999/07/12  06:14:54
5315         Log: fixups for sundry warnings about function pointers
5316      Branch: perl
5317            ! ext/re/re.xs intrpvar.h op.c perl.c perl.h pp_ctl.c scope.h
5318            ! sv.c thrdvar.h util.c win32/Makefile win32/makefile.mk
5319            ! win32/win32.c win32/win32.h
5320 ____________________________________________________________________________
5321 [  3668] By: gsar                                  on 1999/07/12  04:11:58
5322         Log: tweaks for win32/borland
5323      Branch: perl
5324            ! t/pragma/locale.t win32/makedef.pl win32/makefile.mk
5325 ____________________________________________________________________________
5326 [  3667] By: gsar                                  on 1999/07/12  01:55:15
5327         Log: yet more cleanups of the PERL_OBJECT, MULTIPLICITY and USE_THREADS
5328              builds; passing the implicit context is unified among the three
5329              flavors; PERL_IMPLICIT_CONTEXT is auto-enabled under all three
5330              flavors (see the top of perl.h) for testing; all varargs functions
5331              foo() have a va_list-taking variant vfoo() for generating the
5332              context-free versions; the PERL_OBJECT build should now be
5333              hyper-compatible with CPAN extensions (C++ is totally out of
5334              the picture)
5335              
5336              result has only been tested on Windows
5337              
5338              TODO: write docs on the THX rationale and idiomatic usage of
5339              the Perl API
5340      Branch: perl
5341            - XSlock.h win32/GenCAPI.pl win32/TEST win32/autosplit.pl
5342            - win32/genxsdef.pl win32/makemain.pl win32/makeperldef.pl
5343            ! MANIFEST XSUB.h bytecode.pl deb.c dump.c embed.h embed.pl
5344            ! embedvar.h ext/B/B.xs ext/ByteLoader/ByteLoader.xs
5345            ! ext/ByteLoader/byterun.c ext/Data/Dumper/Dumper.xs
5346            ! ext/Devel/Peek/Peek.xs ext/Fcntl/Fcntl.xs ext/IO/IO.xs
5347            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
5348            ! ext/SDBM_File/SDBM_File.xs ext/Socket/Socket.xs
5349            ! ext/Thread/Thread.xs ext/attrs/attrs.xs ext/re/re.xs
5350            ! global.sym globals.c intrpvar.h iperlsys.h
5351            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
5352            ! lib/ExtUtils/MakeMaker.pm lib/ExtUtils/xsubpp lib/base.pm
5353            ! lib/warning.pm malloc.c objXSUB.h perl.c perl.h perlapi.c
5354            ! perlapi.h perlio.c pp_sys.c proto.h regcomp.c regexec.c
5355            ! scope.c sv.c thrdvar.h util.c win32/Makefile win32/config_H.bc
5356            ! win32/config_H.gc win32/config_H.vc win32/config_h.PL
5357            ! win32/dl_win32.xs win32/include/dirent.h
5358            ! win32/include/sys/socket.h win32/makedef.pl win32/makefile.mk
5359            ! win32/perllib.c win32/runperl.c win32/win32.c win32/win32.h
5360            ! win32/win32iop.h win32/win32sck.c
5361 ____________________________________________________________________________
5362 [  3666] By: jhi                                   on 1999/07/11  22:00:13
5363         Log: Integrate with Sarathy.
5364      Branch: cfgperl
5365           !> op.c t/op/lex_assign.t
5366 ____________________________________________________________________________
5367 [  3665] By: jhi                                   on 1999/07/11  21:59:01
5368         Log: More manual sync.
5369      Branch: cfgperl
5370            ! pod/perldelta.pod
5371 ____________________________________________________________________________
5372 [  3664] By: gsar                                  on 1999/07/11  19:11:07
5373         Log: change#3612 was buggy and failed to build Tk; applied Ilya's
5374              remedy and related tests via private mail
5375      Branch: perl
5376            ! op.c t/op/lex_assign.t
5377 ____________________________________________________________________________
5378 [  3663] By: jhi                                   on 1999/07/11  15:04:37
5379         Log: Manual synchronization with Sarathy (some files
5380              had drifted apart for no apparent reason), plus
5381              I had a typo in dl_vms.xs Sarathy had fixed.
5382      Branch: cfgperl
5383            ! ext/DynaLoader/dl_vms.xs pod/perldelta.pod pp.c pp_sys.c
5384 ____________________________________________________________________________
5385 [  3662] By: jhi                                   on 1999/07/10  12:23:21
5386         Log: Change t/pragma/warn oct()/hex() overflow tests to use %Config
5387              to adapt to the underlying platform (the binary, 0b1..., test
5388              was broken in 64-bit platforms).  Also change "hex" in the
5389              warning messages to "hexadecimal" to match "binary" and "octal".
5390      Branch: cfgperl
5391            ! pod/perldiag.pod t/pragma/warn/util util.c
5392 ____________________________________________________________________________
5393 [  3661] By: jhi                                   on 1999/07/08  21:54:55
5394         Log: Integrate with Sarathy.
5395      Branch: cfgperl
5396           +> perlapi.c perlapi.h
5397           !> (integrate 43 files)
5398 ____________________________________________________________________________
5399 [  3660] By: gsar                                  on 1999/07/08  18:47:35
5400         Log: more PERL_OBJECT cleanups (changes still untested on Unix!)
5401      Branch: perl
5402            + perlapi.c perlapi.h
5403            ! MANIFEST XSUB.h emacs/ptags embed.h embed.pl embedvar.h
5404            ! ext/Opcode/Opcode.xs global.sym globals.c intrpvar.h
5405            ! iperlsys.h mg.c miniperlmain.c objXSUB.h perl.c perl.h perly.c
5406            ! pp.c pp_ctl.c pp_hot.c proto.h regcomp.c regcomp.h regexec.c
5407            ! scope.c scope.h sv.c thrdvar.h toke.c util.c win32/GenCAPI.pl
5408            ! win32/Makefile win32/makedef.pl win32/perllib.c win32/win32.c
5409            ! win32/win32.h
5410 ____________________________________________________________________________
5411 [  3659] By: gsar                                  on 1999/07/08  18:41:45
5412         Log: sundry cleanups for clean build on windows
5413      Branch: perl
5414            ! doio.c regcomp.c regcomp.h t/io/openpid.t utf8.c
5415 ____________________________________________________________________________
5416 [  3658] By: gsar                                  on 1999/07/08  01:24:25
5417         Log: fixes for logical bugs in the lexwarn patch; other tweaks to avoid
5418              type mismatch problems
5419      Branch: perl
5420            ! doio.c gv.c op.c pp.c regcomp.c regexec.c run.c sv.c
5421            ! t/pragma/warn/op toke.c utf8.c util.c
5422 ____________________________________________________________________________
5423 [  3657] By: jhi                                   on 1999/07/07  23:01:16
5424         Log: Integrate with Sarathy.  perldiag.pod required manual editing.
5425      Branch: cfgperl
5426            ! pod/perldiag.pod
5427           !> Changes configure.com ext/B/B/Deparse.pm
5428           !> ext/ByteLoader/Makefile.PL ext/Fcntl/Fcntl.xs
5429           !> ext/IO/lib/IO/File.pm gv.c iperlsys.h lib/ExtUtils/MM_VMS.pm
5430           !> lib/File/Basename.pm lib/File/Spec/VMS.pm perlsfio.h
5431           !> t/base/rs.t t/lib/io_multihomed.t t/lib/textfill.t
5432           !> t/lib/textwrap.t t/op/filetest.t t/op/mkdir.t
5433           !> t/pragma/overload.t thread.h vms/vms.c
5434 ____________________________________________________________________________
5435 [  3656] By: gsar                                  on 1999/07/07  21:04:38
5436         Log: integrate cfgperl contents
5437      Branch: perl
5438           +> lib/unicode/Is/ASCII.pl lib/unicode/Is/Cntrl.pl
5439           +> lib/unicode/Is/Graph.pl lib/unicode/Is/Punct.pl
5440           +> lib/unicode/Is/Word.pl lib/unicode/Is/XDigit.pl
5441            ! Changes
5442           !> (integrate 45 files)
5443 ____________________________________________________________________________
5444 [  3655] By: gsar                                  on 1999/07/07  18:55:45
5445         Log: filetest.t and ByteLoader build tweaks from Peter Prymmer
5446              <pvhp@forte.com>
5447      Branch: perl
5448            ! ext/ByteLoader/Makefile.PL t/op/filetest.t
5449 ____________________________________________________________________________
5450 [  3654] By: gsar                                  on 1999/07/07  18:47:03
5451         Log: change#1889 mistakenly removed F_SETLK
5452      Branch: perl
5453            ! ext/Fcntl/Fcntl.xs
5454 ____________________________________________________________________________
5455 [  3653] By: gsar                                  on 1999/07/07  18:42:42
5456         Log: B::Deparse update
5457              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
5458              Date: Mon,  5 Jul 1999 17:57:03 -0500 (CDT)
5459              Message-ID: <14209.13729.738691.610723@alias-2.pr.mcs.net>
5460              Subject: [PATCH _57, long] B::Deparse 0.58
5461      Branch: perl
5462            ! ext/B/B/Deparse.pm
5463 ____________________________________________________________________________
5464 [  3652] By: gsar                                  on 1999/07/07  18:41:07
5465         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5466              Date: Mon, 5 Jul 1999 18:24:19 -0400 (EDT)
5467              Message-Id: <199907052224.SAA10454@monk.mps.ohio-state.edu>
5468              Subject: Re: [ID 19990705.001] Overloading boolean conversion
5469      Branch: perl
5470            ! gv.c t/pragma/overload.t
5471 ____________________________________________________________________________
5472 [  3651] By: gsar                                  on 1999/07/07  17:47:30
5473         Log: missing PerlIO_reopen() (suggested by sam@daemoninc.com)
5474      Branch: perl
5475            ! perlsfio.h
5476 ____________________________________________________________________________
5477 [  3650] By: gsar                                  on 1999/07/07  17:45:52
5478         Log: applied new parts of suggested patch
5479              From: Charles Bailey <BAILEY@newman.upenn.edu>
5480              Date: Fri, 02 Jul 1999 19:18:41 -0400 (EDT)
5481              Message-id: <01JD3M8W1VXS000S5G@mail.newman.upenn.edu>
5482              Subject: [PATCH 5.005_57] Consolidated VMS patch
5483      Branch: perl
5484            ! configure.com ext/IO/lib/IO/File.pm iperlsys.h
5485            ! lib/ExtUtils/MM_VMS.pm lib/File/Basename.pm
5486            ! lib/File/Spec/VMS.pm pod/perldiag.pod t/base/rs.t
5487            ! t/lib/io_multihomed.t t/lib/textfill.t t/lib/textwrap.t
5488            ! t/op/filetest.t t/op/mkdir.t thread.h vms/vms.c
5489 ____________________________________________________________________________
5490 [  3649] By: jhi                                   on 1999/07/07  13:38:02
5491         Log: Sync regcomp warn with reality.
5492      Branch: cfgperl
5493            ! t/pragma/warn/regcomp
5494 ____________________________________________________________________________
5495 [  3648] By: jhi                                   on 1999/07/07  13:04:55
5496         Log: Integrate with Sarathy; one conflict in t/pragma/warn/recgomp
5497              resolved manually.
5498      Branch: cfgperl
5499           +> pod/perllexwarn.pod t/pragma/warn/6default t/pragma/warn/av
5500           +> t/pragma/warn/doop t/pragma/warn/hv t/pragma/warn/malloc
5501           +> t/pragma/warn/perlio t/pragma/warn/run t/pragma/warn/utf8
5502            - README.lexwarn
5503           !> (integrate 79 files)
5504 ____________________________________________________________________________
5505 [  3647] By: gsar                                  on 1999/07/07  10:32:03
5506         Log: From: jan.dubois@ibm.net (Jan Dubois)
5507              Date: Thu, 01 Jul 1999 11:17:53 +0200
5508              Message-ID: <377b2ca4.14467042@smtp1.ibm.net>
5509              Subject: [PATCH 5.005_57] MakeMaker support for pod2html
5510      Branch: perl
5511            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
5512            ! lib/ExtUtils/MakeMaker.pm
5513 ____________________________________________________________________________
5514 [  3646] By: gsar                                  on 1999/07/07  10:27:55
5515         Log: fix undocumented IO::Handle functions as suggested
5516              by cj10@cam.ac.uk
5517      Branch: perl
5518            ! ext/IO/lib/IO/Handle.pm
5519 ____________________________________________________________________________
5520 [  3645] By: gsar                                  on 1999/07/07  10:18:55
5521         Log: prohibit thread join()ing itself (from Dan Sugalski)
5522      Branch: perl
5523            ! ext/Thread/Thread.xs
5524 ____________________________________________________________________________
5525 [  3644] By: gsar                                  on 1999/07/07  10:14:26
5526         Log: From: "Vishal Bhatia" <vishalb@my-deja.com>
5527              Date: Wed, 30 Jun 1999 14:02:42 -0700
5528              Message-ID: <LJHFKBDHMHHJDAAA@my-deja.com>
5529              Subject:  [PATCH 5.005_57] Compiler and XSUBS
5530      Branch: perl
5531            ! ext/B/B/C.pm
5532 ____________________________________________________________________________
5533 [  3643] By: gsar                                  on 1999/07/07  10:08:38
5534         Log: mention C<foreach VAR (LIST) BLOCK continue BLOCK> syntax
5535              (from François Désarménien <desar@club-internet.fr>)
5536      Branch: perl
5537            ! pod/perlsyn.pod
5538 ____________________________________________________________________________
5539 [  3642] By: gsar                                  on 1999/07/07  10:03:24
5540         Log: From: Doug MacEachern <dougm@cp.net>
5541              Date: Sun, 27 Jun 1999 22:43:25 -0700 (PDT)
5542              Message-ID: <Pine.LNX.4.10.9906272236430.389-100000@mojo.eng.cp.net>
5543              Subject: [PATCH 5.005_57] add B::PV::{LEN,CUR}
5544      Branch: perl
5545            ! ext/B/B.xs
5546 ____________________________________________________________________________
5547 [  3641] By: gsar                                  on 1999/07/07  10:00:57
5548         Log: slightly modified version of suggested patch
5549              From: Steven N. Hirsch <hirschs@stargate.btv.ibm.com>
5550              Date: Mon, 28 Jun 1999 14:23:59 -0400
5551              Message-Id: <199906281823.OAA24912@stargate.btv.ibm.com>
5552              Subject: [ID 19990628.007] POSIX::tmpnam() broken for threaded 5.00503
5553      Branch: perl
5554            ! ext/POSIX/POSIX.xs
5555 ____________________________________________________________________________
5556 [  3640] By: gsar                                  on 1999/07/07  09:45:43
5557         Log: lexical warnings update (warning.t fails one test
5558              due to leaked scalar, investigation pending)
5559              From: paul.marquess@bt.com
5560              Date: Sat, 26 Jun 1999 23:19:52 +0100
5561              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6C8E@mbtlipnt02.btlabs.bt.co.uk>
5562              Subject: [PATCH 5.005_57] Lexical Warnings - mandatory warning are now default warnings
5563      Branch: perl
5564            + pod/perllexwarn.pod t/pragma/warn/6default t/pragma/warn/av
5565            + t/pragma/warn/doop t/pragma/warn/hv t/pragma/warn/malloc
5566            + t/pragma/warn/perlio t/pragma/warn/run t/pragma/warn/utf8
5567            - README.lexwarn
5568            ! Changes MANIFEST av.c djgpp/djgpp.c doio.c doop.c
5569            ! ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
5570            ! ext/ByteLoader/byterun.h gv.c hv.c jpl/JNI/JNI.xs
5571            ! lib/warning.pm mg.c op.c os2/os2.c perl.c perlio.c
5572            ! pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
5573            ! pod/perlmodlib.pod pod/perlrun.pod pod/perlvar.pod pp.c
5574            ! pp_ctl.c run.c sv.c t/pragma/warn/3both t/pragma/warn/doio
5575            ! t/pragma/warn/gv t/pragma/warn/mg t/pragma/warn/op
5576            ! t/pragma/warn/perl t/pragma/warn/perly t/pragma/warn/pp
5577            ! t/pragma/warn/pp_ctl t/pragma/warn/pp_hot t/pragma/warn/pp_sys
5578            ! t/pragma/warn/regcomp t/pragma/warn/regexec t/pragma/warn/sv
5579            ! t/pragma/warn/taint t/pragma/warn/toke t/pragma/warn/universal
5580            ! t/pragma/warn/util t/pragma/warning.t toke.c utf8.c util.c
5581            ! warning.h warning.pl win32/win32.c
5582 ____________________________________________________________________________
5583 [  3639] By: gsar                                  on 1999/07/07  08:09:30
5584         Log: From: Brian Jepson <bjepson@home.com>
5585              Date: Sat, 26 Jun 1999 10:47:45 -0500 (EST)
5586              Message-ID: <Pine.LNX.4.10.9906261044180.659-100000@cx384756-a.sking1.ri.home.com>
5587              Subject: Patch to JPL example program
5588      Branch: perl
5589            ! jpl/JPL_Rolo/JPL_Rolo.jpl
5590 ____________________________________________________________________________
5591 [  3638] By: jhi                                   on 1999/07/07  08:07:58
5592         Log: Integrate with Sarathy.
5593      Branch: cfgperl
5594           !> (integrate 34 files)
5595 ____________________________________________________________________________
5596 [  3637] By: gsar                                  on 1999/07/07  08:07:49
5597         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
5598              Date: Fri, 25 Jun 1999 13:38:44 -0500 (CDT)
5599              Message-ID: <14193.25034.113373.245377@alias-2.pr.mcs.net>
5600              Subject: [PATCH _57, long] Eliminate CONDOPs
5601      Branch: perl
5602            ! bytecode.pl dump.c ext/B/B.pm ext/B/B.xs ext/B/B/Bblock.pm
5603            ! ext/B/B/Bytecode.pm ext/B/B/C.pm ext/B/B/CC.pm
5604            ! ext/B/B/Debug.pm ext/B/B/Xref.pm ext/B/ramblings/flip-flop
5605            ! ext/B/typemap op.c op.h opcode.h opcode.pl perl.h
5606            ! pod/perltoc.pod pp_ctl.c pp_hot.c
5607 ____________________________________________________________________________
5608 [  3636] By: gsar                                  on 1999/07/07  07:50:51
5609         Log: adapted suggested patch for IO-1.20x
5610              From: ian@dial.pipex.com
5611              Date:  Fri, 25 Jun 1999 10:39:42 +0100
5612              Message-Id:  <199906250939.KAA02152@homer.diplex.co.uk>
5613              Subject: [ID 19990625.001]  Minor fixes for IO::Socket.pm
5614      Branch: perl
5615            ! ext/IO/lib/IO/Socket.pm
5616 ____________________________________________________________________________
5617 [  3635] By: gsar                                  on 1999/07/07  07:26:05
5618         Log: PowerMAX hints update from Tom Horsley <Tom.Horsley@mail.ccur.com>
5619      Branch: perl
5620            ! hints/powerux.sh
5621 ____________________________________________________________________________
5622 [  3634] By: gsar                                  on 1999/07/07  07:20:02
5623         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
5624              Date: Wed, 23 Jun 1999 16:16:05 +0100
5625              Message-Id: <199906231516.QAA23851@crypt.compulink.co.uk>
5626              Subject: [PATCH 5.005_57] memleak in optimizer
5627      Branch: perl
5628            ! embed.h embed.pl objXSUB.h op.c proto.h
5629 ____________________________________________________________________________
5630 [  3633] By: gsar                                  on 1999/07/07  07:10:52
5631         Log: add do-not-edit caveats for files generated by opcode.pl
5632              (suggested by Hugo van der Sanden)
5633      Branch: perl
5634            ! opcode.h opcode.pl pp.sym pp_proto.h
5635 ____________________________________________________________________________
5636 [  3632] By: gsar                                  on 1999/07/07  06:41:13
5637         Log: better diagnostics on read operations from write-only
5638              filehandles
5639      Branch: perl
5640            ! doio.c perl.c pod/perldelta.pod pod/perldiag.pod pp_hot.c
5641            ! pp_sys.c t/pragma/warn/pp_hot t/pragma/warn/pp_sys
5642 ____________________________________________________________________________
5643 [  3631] By: gsar                                  on 1999/07/07  02:03:34
5644         Log: make Sys::Hostname safe against C<$SIG{CHLD}='IGNORE'> (suggested
5645              by David Muir Sharnoff <muir@idiom.com>)
5646      Branch: perl
5647            ! lib/Sys/Hostname.pm
5648 ____________________________________________________________________________
5649 [  3630] By: gsar                                  on 1999/07/07  01:57:16
5650         Log: From: "Vishal Bhatia" <vishalb@my-deja.com>
5651              Date: Sun, 20 Jun 1999 17:17:17 -0700
5652              Message-ID: <AEBDBGKPMEAJAAAA@my-deja.com>
5653              Subject: [PATCH 5.005_57] Minor bug fix in pp_require
5654      Branch: perl
5655            ! ext/B/B/CC.pm
5656 ____________________________________________________________________________
5657 [  3629] By: gsar                                  on 1999/07/07  01:46:03
5658         Log: installperl should write normal messages to STDOUT, not STDERR
5659      Branch: perl
5660            ! installperl
5661 ____________________________________________________________________________
5662 [  3628] By: gsar                                  on 1999/07/07  01:41:25
5663         Log: BSD/OS needs -DSTRUCT_TM_HASZONE as of 4.0.1 (from mab@alink.net)
5664      Branch: perl
5665            ! hints/bsdos.sh
5666 ____________________________________________________________________________
5667 [  3627] By: gsar                                  on 1999/07/07  00:27:10
5668         Log: make diagnostic on C<my $^I> etc., more readable
5669      Branch: perl
5670            ! op.c
5671 ____________________________________________________________________________
5672 [  3626] By: gsar                                  on 1999/07/06  23:47:27
5673         Log: From: Andy Dougherty <doughera@lafayette.edu>
5674              Date:  Thu, 17 Jun 1999 12:07:11 -0400 (EDT)
5675              Message-Id:  <Pine.GSU.4.05.9906171204580.937-100000@newton.phys>
5676              Subject: [ID 19990617.004  [PATCH 5.005_57] make distclean fixes]
5677      Branch: perl
5678            ! Makefile.SH utils/Makefile
5679 ____________________________________________________________________________
5680 [  3625] By: jhi                                   on 1999/07/06  21:50:46
5681         Log: Some new files of #3624 missing from MANIFEST.
5682      Branch: cfgperl
5683            ! MANIFEST
5684 ____________________________________________________________________________
5685 [  3624] By: jhi                                   on 1999/07/06  21:47:04
5686         Log: POSIX [[:character class:]] support for standard, locale,
5687              and utf8.  If both utf8 and locale are on, utf8 wins.
5688              I don't fully understand why so many tables changed in
5689              lib/unicode because of "make" -- maybe it was just overdue.
5690      Branch: cfgperl
5691            + lib/unicode/Is/ASCII.pl lib/unicode/Is/Cntrl.pl
5692            + lib/unicode/Is/Graph.pl lib/unicode/Is/Punct.pl
5693            + lib/unicode/Is/Word.pl lib/unicode/Is/XDigit.pl
5694            ! MANIFEST Todo-5.005 embed.h embed.pl embedvar.h global.sym
5695            ! handy.h intrpvar.h lib/unicode/Bidirectional.pl
5696            ! lib/unicode/Block.pl lib/unicode/Category.pl
5697            ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
5698            ! lib/unicode/Is/BidiL.pl lib/unicode/Is/Digit.pl
5699            ! lib/unicode/Is/L.pl lib/unicode/Is/Lo.pl
5700            ! lib/unicode/Is/Lower.pl lib/unicode/Is/Print.pl
5701            ! lib/unicode/Is/Space.pl lib/unicode/Is/Upper.pl
5702            ! lib/unicode/Is/Z.pl lib/unicode/Is/Zs.pl lib/unicode/Name.pl
5703            ! lib/unicode/To/Digit.pl lib/unicode/mktables.PL objXSUB.h
5704            ! pod/perldelta.pod pod/perldiag.pod pod/perlre.pod proto.h
5705            ! regcomp.c regcomp.h regcomp.sym regexec.c regnodes.h
5706            ! t/op/pat.t t/op/re_tests t/op/regexp.t t/pragma/utf8.t
5707            ! t/pragma/warn/regcomp utf8.c
5708 ____________________________________________________________________________
5709 [  3623] By: gsar                                  on 1999/07/06  20:52:48
5710         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5711              Date: Wed, 16 Jun 1999 14:57:22 -0400
5712              Message-ID: <19990616145722.B16258@monk.mps.ohio-state.edu>
5713              Subject: [PATCH 5.00557] Devel::Peek
5714      Branch: perl
5715            ! ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
5716 ____________________________________________________________________________
5717 [  3622] By: gsar                                  on 1999/07/06  20:22:59
5718         Log: applied patch after demunging headers with appropriate paths
5719              From: "Vishal Bhatia" <vishalb@my-deja.com>
5720              Date: Sat, 12 Jun 1999 08:23:59 -0700
5721              Message-ID: <JIHEJPFDFKIBDAAA@my-deja.com>
5722              Subject: [Patch 5.005_57] unsigned arithmetic (Compiler)
5723      Branch: perl
5724            ! cc_runtime.h ext/B/B.xs ext/B/B/CC.pm ext/B/B/Stackobj.pm
5725            ! ext/B/defsubs.h.PL lib/ExtUtils/typemap t/harness
5726 ____________________________________________________________________________
5727 [  3621] By: gsar                                  on 1999/07/06  20:10:50
5728         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5729              Date: Thu, 10 Jun 1999 04:05:22 -0400 (EDT)
5730              Message-Id: <199906100805.EAA18216@monk.mps.ohio-state.edu>
5731              Subject: [PATCH 5.005_57] Optimize 2>&1 in commands
5732      Branch: perl
5733            ! doio.c
5734 ____________________________________________________________________________
5735 [  3620] By: jhi                                   on 1999/07/06  19:16:47
5736         Log: Mention EPOC and SOCKS.
5737      Branch: cfgperl
5738            ! pod/perldelta.pod
5739 ____________________________________________________________________________
5740 [  3619] By: gsar                                  on 1999/07/06  16:52:37
5741         Log: fix int vs STRLEN issue
5742      Branch: perl
5743            ! pp.c
5744 ____________________________________________________________________________
5745 [  3618] By: jhi                                   on 1999/07/06  16:52:20
5746         Log: There ain't Perl_atonv().
5747      Branch: cfgperl
5748            ! ext/ByteLoader/bytecode.h
5749 ____________________________________________________________________________
5750 [  3617] By: jhi                                   on 1999/07/06  15:55:22
5751         Log: Integrate with Sarathy.
5752      Branch: cfgperl
5753           !> Makefile.SH
5754 ____________________________________________________________________________
5755 [  3616] By: jhi                                   on 1999/07/06  15:54:09
5756         Log: Tweak for #3613.
5757      Branch: cfgperl
5758            ! Configure config_h.SH
5759 ____________________________________________________________________________
5760 [  3615] By: gsar                                  on 1999/07/06  11:00:21
5761         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
5762              Date:  Sun, 13 Jun 1999 17:46:13 -0600 (MDT)
5763              Message-Id:  <199906132346.RAA26632@xerxes.courtesan.com>
5764              Subject: [ID 19990613.003  linklibperl set incorrectly in Makefile.SH for OpenBSD]
5765      Branch: perl
5766            ! Makefile.SH
5767 ____________________________________________________________________________
5768 [  3614] By: jhi                                   on 1999/07/06  10:44:48
5769         Log: Integrate with Sarathy.
5770      Branch: cfgperl
5771           !> ext/IO/lib/IO/File.pm op.c op.h opcode.h opcode.pl perl.h pp.h
5772           !> pp.sym pp_proto.h t/base/rs.t t/pragma/warn/op
5773 ____________________________________________________________________________
5774 [  3613] By: jhi                                   on 1999/07/06  10:43:20
5775         Log: From: Nathan Kurz <nate@valleytel.net>
5776              Subject: [ID 19990612.001 compiling three deep modules within ext/]
5777              ply-To: nate@valleytel.net
5778              erl5-porters@perl.org
5779              Date: Sat, 12 Jun 1999 01:26:04 -0500
5780              Message-Id: <199906120626.BAA04996@trinkpad.valleytel.net>
5781      Branch: cfgperl
5782            ! Configure config_h.SH
5783 ____________________________________________________________________________
5784 [  3612] By: gsar                                  on 1999/07/06  10:17:52
5785         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5786              Date: Sat, 12 Jun 1999 04:49:09 -0400 (EDT)
5787              Message-Id: <199906120849.EAA26986@monk.mps.ohio-state.edu>
5788              Subject: [PATCH 5.005_57] Optimize away OP_SASSIGN
5789      Branch: perl
5790            ! op.c op.h opcode.h opcode.pl pp.h pp.sym pp_proto.h
5791 ____________________________________________________________________________
5792 [  3611] By: gsar                                  on 1999/07/06  09:51:20
5793         Log: From: pvhp@forte.com (Peter Prymmer)
5794              Date: Fri, 11 Jun 99 17:07:19 PDT
5795              Message-Id: <9906120007.AA13802@forte.com>
5796              Subject: [PATCH _03 && _57]portability fix for IO::File and FileHandle
5797      Branch: perl
5798            ! ext/IO/lib/IO/File.pm
5799 ____________________________________________________________________________
5800 [  3610] By: gsar                                  on 1999/07/06  09:37:37
5801         Log: fix for C<$/ = 42> setting paragraph mode (applied with small
5802              tweak)
5803              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
5804              Date: Wed, 09 Jun 1999 18:27:51 +0100
5805              Message-Id: <E10rm8l-00023T-00@ursa.cus.cam.ac.uk>
5806              Subject: Re: [ID 19990608.002] Possible bug with binmode and <FH> on Perl 5.005_03 Win32
5807      Branch: perl
5808            ! perl.h t/base/rs.t
5809 ____________________________________________________________________________
5810 [  3609] By: jhi                                   on 1999/07/06  09:28:48
5811         Log: Integrate with Sarathy.
5812      Branch: cfgperl
5813           !> (integrate 49 files)
5814 ____________________________________________________________________________
5815 [  3608] By: gsar                                  on 1999/07/06  09:28:21
5816         Log: test tweak
5817      Branch: perl
5818            ! t/pragma/warn/op
5819 ____________________________________________________________________________
5820 [  3607] By: jhi                                   on 1999/07/06  09:22:48
5821         Log: Put back the cygwin32 Configure fix of 3582 undone by 3597.
5822      Branch: cfgperl
5823            ! Configure config_h.SH
5824 ____________________________________________________________________________
5825 [  3606] By: gsar                                  on 1999/07/06  09:05:02
5826         Log: applied slightly tweaked version of suggested patch for
5827              improved RE API
5828              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5829              Date: Wed, 9 Jun 1999 18:14:27 -0400 (EDT)
5830              Message-Id: <199906092214.SAA14126@monk.mps.ohio-state.edu>
5831              Subject: [PATCH 5.005_57] REx engine rehash
5832      Branch: perl
5833            ! Changes dump.c embed.h embed.pl embedvar.h ext/re/Makefile.PL
5834            ! ext/re/re.xs global.sym objXSUB.h perl.c perl.h pp.c pp_hot.c
5835            ! proto.h regcomp.c regcomp.h regexec.c regexp.h thrdvar.h
5836            ! util.c
5837 ____________________________________________________________________________
5838 [  3605] By: gsar                                  on 1999/07/06  08:54:03
5839         Log: bug in change#3602 (cpp conditionals not allowed inside macro args)
5840      Branch: perl
5841            ! sv.c
5842 ____________________________________________________________________________
5843 [  3604] By: gsar                                  on 1999/07/06  07:08:30
5844         Log: From: paul.marquess@bt.com
5845              Date: Tue, 8 Jun 1999 22:37:58 +0100 
5846              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6C3C@mbtlipnt02.btlabs.bt.co.uk>
5847              Subject: [PATCH 5.005_57] DB_File 1.67
5848      Branch: perl
5849            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
5850            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
5851 ____________________________________________________________________________
5852 [  3603] By: gsar                                  on 1999/07/06  07:04:50
5853         Log: From: paul.marquess@bt.com
5854              Date: Tue, 8 Jun 1999 22:34:01 +0100 
5855              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6C3B@mbtlipnt02.btlabs.bt.co.uk>
5856              Subject: [PATCH 5.005_57] DBM Filters
5857      Branch: perl
5858            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
5859            ! ext/NDBM_File/NDBM_File.pm ext/NDBM_File/NDBM_File.xs
5860            ! ext/ODBM_File/ODBM_File.pm ext/ODBM_File/ODBM_File.xs
5861            ! ext/SDBM_File/SDBM_File.pm ext/SDBM_File/SDBM_File.xs
5862 ____________________________________________________________________________
5863 [  3602] By: gsar                                  on 1999/07/06  07:00:01
5864         Log: slightly tweaked version of suggested patch
5865              From: Dan Sugalski <sugalskd@ous.edu>
5866              Date: Tue, 08 Jun 1999 14:09:38 -0700
5867              Message-Id: <3.0.6.32.19990608140938.030f12e0@ous.edu>
5868              Subject: [PATCH 5.005_57]Use NV instead of double in the core
5869      Branch: perl
5870            ! av.h bytecode.pl cv.h doio.c dump.c embed.pl
5871            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c hv.h
5872            ! intrpvar.h mg.c op.c perl.h pp.c pp.h pp_ctl.c pp_sys.c
5873            ! proto.h sv.c sv.h toke.c universal.c util.c
5874 ____________________________________________________________________________
5875 [  3601] By: gsar                                  on 1999/07/06  06:52:57
5876         Log: integrate cfgperl contents into mainline
5877      Branch: perl
5878           +> README.epoc epoc/config.h epoc/epoc.c epoc/epocish.h
5879           +> epoc/perl.mmp epoc/perl.pkg
5880           !> (integrate 30 files)
5881 ____________________________________________________________________________
5882 [  3598] By: jhi                                   on 1999/07/05  20:02:55
5883         Log: Integrate with mainperl.
5884      Branch: cfgperl
5885           +> lib/CGI/Pretty.pm
5886           !> Changes ext/B/B/Bblock.pm ext/B/B/C.pm ext/B/B/CC.pm
5887           !> ext/B/B/Stackobj.pm ext/GDBM_File/GDBM_File.xs mg.c op.c
5888           !> opcode.h opcode.pl pp_sys.c t/lib/io_udp.t thread.h toke.c
5889           !> vms/descrip_mms.template vms/subconfigure.com vms/vms.c
5890           !> vms/vmsish.h
5891 ____________________________________________________________________________
5892 [  3597] By: jhi                                   on 1999/07/05  19:59:48
5893         Log: Hack SOCKS support some more plus a patch from Andy Dougherty
5894              that addresses the notorious "Additional libraries" question.
5895      Branch: cfgperl
5896            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
5897            ! config_h.SH doio.c ext/Socket/Socket.xs hints/aix.sh perl.c
5898            ! pp_sys.c
5899 ____________________________________________________________________________
5900 [  3596] By: gsar                                  on 1999/07/05  18:30:51
5901         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5902              Date: Tue, 8 Jun 1999 04:47:58 -0400 (EDT)
5903              Message-Id: <199906080847.EAA03810@monk.mps.ohio-state.edu>
5904              Subject: [PATCH 5.00557] Long-standing UDP sockets bug on OS/2
5905      Branch: perl
5906            ! pp_sys.c t/lib/io_udp.t
5907 ____________________________________________________________________________
5908 [  3595] By: gsar                                  on 1999/07/05  18:29:08
5909         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5910              Date: Tue, 8 Jun 1999 04:44:58 -0400 (EDT)
5911              Message-Id: <199906080844.EAA03784@monk.mps.ohio-state.edu>
5912              Subject: [PATCH 5.00557] Setting $^E wipes out $!
5913      Branch: perl
5914            ! mg.c
5915 ____________________________________________________________________________
5916 [  3594] By: gsar                                  on 1999/07/05  18:24:53
5917         Log: hand-apply whitespace mutiliated patch
5918              From: Dan Sugalski <sugalskd@osshe.edu>
5919              Date: Mon, 07 Jun 1999 14:46:42 -0700
5920              Message-Id: <3.0.6.32.19990607144642.03079100@ous.edu>
5921              Subject: [PATCH 5.005_57]Updated VMS patch
5922      Branch: perl
5923            ! thread.h vms/descrip_mms.template vms/subconfigure.com
5924            ! vms/vms.c vms/vmsish.h
5925 ____________________________________________________________________________
5926 [  3593] By: gsar                                  on 1999/07/05  17:53:04
5927         Log: applied parts not duplicated by previous patches
5928              From: "Vishal Bhatia" <vishalb@my-deja.com>
5929              Date: Sat, 05 Jun 1999 08:42:17 -0700
5930              Message-ID: <JAMCAJKJEJDPAAAA@my-deja.com>
5931              Subject: Fwd: [PATCH 5.005_57] consolidated compiler changes
5932      Branch: perl
5933            ! Changes ext/B/B/Bblock.pm ext/B/B/C.pm ext/B/B/CC.pm
5934            ! ext/B/B/Stackobj.pm
5935 ____________________________________________________________________________
5936 [  3592] By: jhi                                   on 1999/07/05  17:17:22
5937         Log: AIX threaded build, plus few more on the side.
5938      Branch: cfgperl
5939            ! embed.h embed.pl ext/DynaLoader/dl_aix.xs
5940            ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_rhapsody.xs
5941            ! ext/DynaLoader/dl_vms.xs hints/aix.sh objXSUB.h perl.h
5942            ! perl_exp.SH pp_ctl.c proto.h toke.c util.c
5943 ____________________________________________________________________________
5944 [  3591] By: gsar                                  on 1999/07/05  16:52:34
5945         Log: "\e" and "\a" didn't produce right escape under EBCDIC
5946              From: pvhp@forte.com (Peter Prymmer)
5947              Date: Fri, 4 Jun 99 12:00:27 PDT
5948              Message-Id: <9906041900.AA28387@forte.com>
5949              Subject: [PATCH 5.005_57]lingering ASCIIism in tokener
5950      Branch: perl
5951            ! toke.c
5952 ____________________________________________________________________________
5953 [  3590] By: gsar                                  on 1999/07/05  16:40:01
5954         Log: s/scalar ref constructor/single ref constructor/ (suggested
5955              by Stephen McCamant)
5956      Branch: perl
5957            ! opcode.h opcode.pl
5958 ____________________________________________________________________________
5959 [  3589] By: gsar                                  on 1999/07/05  16:34:06
5960         Log: no such thing as gdbm_clearerr() (from Andy Dougherty)
5961      Branch: perl
5962            ! ext/GDBM_File/GDBM_File.xs
5963 ____________________________________________________________________________
5964 [  3588] By: gsar                                  on 1999/07/05  16:29:39
5965         Log: allow C<-foo> under C<use integer> (behavior of C<-$string>
5966              is unchanged still)
5967      Branch: perl
5968            ! op.c
5969 ____________________________________________________________________________
5970 [  3587] By: jhi                                   on 1999/07/05  10:31:43
5971         Log: Make perl_exp.SH smarter about what to include and what to exclude.
5972      Branch: cfgperl
5973            ! perl_exp.SH
5974 ____________________________________________________________________________
5975 [  3586] By: jhi                                   on 1999/07/05  09:29:31
5976         Log: Remove unnecessary and extraneous my $i = 0.
5977      Branch: cfgperl
5978            ! bytecode.pl
5979 ____________________________________________________________________________
5980 [  3585] By: jhi                                   on 1999/07/05  07:28:59
5981         Log: Integrate with mainperl.
5982      Branch: cfgperl
5983           !> (integrate 30 files)
5984 ____________________________________________________________________________
5985 [  3584] By: gsar                                  on 1999/07/05  05:36:28
5986         Log: From: Vishal Bhatia <vishalb@hotmail.com>
5987              Date: Thu, 03 Jun 1999 00:57:48 PDT
5988              Message-ID: <19990603075749.86665.qmail@hotmail.com>
5989              Subject: Re: [PATCH 5.005_57] pp_sort sorted out
5990      Branch: perl
5991            ! ext/B/B/Bblock.pm ext/B/B/C.pm ext/B/B/CC.pm
5992 ____________________________________________________________________________
5993 [  3583] By: gsar                                  on 1999/07/05  05:31:19
5994         Log: suppress fancy display when in verbose mode (suggested by
5995              Paul Johnson <pjcj@transeda.com>)
5996      Branch: perl
5997            ! lib/Test/Harness.pm
5998 ____________________________________________________________________________
5999 [  3582] By: gsar                                  on 1999/07/05  05:17:12
6000         Log: cygwin32 update
6001              From: "Fifer, Eric" <EFifer@sanwaint.com>
6002              Date:  Wed, 2 Jun 1999 15:16:05 +0100
6003              Message-Id:  <71E287AB0D94D111BBD600600849EC8185EDD9@POST>
6004              Subject:  [ID 19990602.003] perl5.005_03 (CORE) cygwin32 port
6005      Branch: perl
6006            ! Configure Makefile.SH README.cygwin32 cygwin32/Makefile.SHs
6007            ! cygwin32/build-instructions.READFIRST
6008            ! cygwin32/build-instructions.charles-wilson
6009            ! cygwin32/build-instructions.sebastien-barre
6010            ! cygwin32/build-instructions.steven-morlock
6011            ! cygwin32/build-instructions.steven-morlock2 doio.c dosish.h
6012            ! ext/POSIX/Makefile.PL ext/POSIX/POSIX.xs hints/cygwin32.sh
6013            ! lib/Cwd.pm lib/ExtUtils/MM_Cygwin.pm perl.h pp_hot.c
6014            ! t/op/magic.t util.c
6015 ____________________________________________________________________________
6016 [  3581] By: gsar                                  on 1999/07/05  02:46:18
6017         Log: NeXT doesn't have FD_CLOEXEC (suggested by Hans Mulder)
6018      Branch: perl
6019            ! util.c
6020 ____________________________________________________________________________
6021 [  3580] By: gsar                                  on 1999/07/05  02:38:03
6022         Log: From: "Ed Peschko" <ed_peschko@csgsystems.com>
6023              Date: Mon, 31 May 1999 18:18:13 -0600
6024              Message-ID: <19990601001813.AAA17834@csgsystems.com>
6025              Subject: [ PATCH perl5.005_57 ] new perlcc + regression tests
6026      Branch: perl
6027            ! t/TEST t/UTEST t/harness utils/perlcc.PL
6028 ____________________________________________________________________________
6029 [  3579] By: gsar                                  on 1999/07/05  01:20:58
6030         Log: compatibility tweak for Class::Struct
6031      Branch: perl
6032            ! lib/Class/Struct.pm
6033 ____________________________________________________________________________
6034 [  3578] By: jhi                                   on 1999/07/04  23:26:01
6035         Log: Miscellaneus AIX fixes + SOCKS support.
6036      Branch: cfgperl
6037            ! Configure Makefile.SH Porting/Glossary Porting/config.sh
6038            ! Porting/config_H config_h.SH doio.c ext/Socket/Socket.xs
6039            ! hints/aix.sh pp_sys.c
6040 ____________________________________________________________________________
6041 [  3577] By: gsar                                  on 1999/07/04  23:07:39
6042         Log: test tweak
6043      Branch: perl
6044            ! t/io/openpid.t
6045 ____________________________________________________________________________
6046 [  3576] By: jhi                                   on 1999/07/04  22:39:23
6047         Log: Integrate with mainperl.
6048      Branch: cfgperl
6049           +> t/io/openpid.t
6050            - win32/perlhost.h
6051           !> (integrate 51 files)
6052 ____________________________________________________________________________
6053 [  3575] By: jhi                                   on 1999/07/04  22:26:48
6054         Log: Added 64-bit support for AIX 4.3 or better
6055              based on Martin H. Rusoff's observations.
6056      Branch: cfgperl
6057            ! Configure config_h.SH hints/aix.sh
6058 ____________________________________________________________________________
6059 [  3574] By: jhi                                   on 1999/07/04  21:34:47
6060         Log: Do not throw away gccvers compilation errors.
6061              From: Andy Dougherty <doughera@lafayette.edu>
6062              To: Ron Seguin <rseguin@on.bell.ca>
6063              Cc: Perl Porters <perl5-porters@perl.org>
6064              Subject: [PATCH] Re: [ID 19990625.011]  WHOA There
6065              Date: Mon, 28 Jun 1999 12:36:38 -0400 (EDT)
6066              Message-Id: <Pine.GSU.4.05.9906281230100.6265-100000@newton.phys>
6067      Branch: cfgperl
6068            ! Configure config_h.SH
6069 ____________________________________________________________________________
6070 [  3573] By: gsar                                  on 1999/07/04  21:10:32
6071         Log: adapted suggested tests for addition to testsuite
6072              From: RonaldWS@aol.com
6073              Date:  Sun, 30 May 1999 16:27:28 EDT
6074              Message-Id:  <25cd799f.2482f930@aol.com>
6075              Subject: [19990530.007] Open with pipe | does not return pid under win32
6076      Branch: perl
6077            + t/io/openpid.t
6078            ! MANIFEST win32/win32.c
6079 ____________________________________________________________________________
6080 [  3572] By: gsar                                  on 1999/07/04  20:29:32
6081         Log: perl_run() should call my_exit(0) for normal completion
6082      Branch: perl
6083            ! perl.c
6084 ____________________________________________________________________________
6085 [  3571] By: jhi                                   on 1999/07/04  20:10:44
6086         Log: Add test for change #3568 plus general cleanup.
6087      Branch: cfgperl
6088            ! t/pragma/locale.t
6089 ____________________________________________________________________________
6090 [  3570] By: gsar                                  on 1999/07/04  20:03:21
6091         Log: make overload, Data::Dumper, and dumpvar understand qr// stringify
6092              overloading
6093      Branch: perl
6094            ! ext/Data/Dumper/Dumper.pm ext/Data/Dumper/Dumper.xs
6095            ! lib/Dumpvalue.pm lib/dumpvar.pl lib/overload.pm pp_ctl.c
6096 ____________________________________________________________________________
6097 [  3569] By: gsar                                  on 1999/07/04  18:04:48
6098         Log: make AIX dynaloading work when libperl is shared (and thus under
6099              mod_perl etc.)
6100              From: Jens-Uwe Mager <jum@helios.de>
6101              Date:  Sat, 29 May 1999 17:09:52 +0200
6102              Message-Id:  <199905291509.RAA43978@ans.helios.de>
6103              Subject: [19990529.002] DynaLoader does not work properly if perl is not the main program (AIX)
6104      Branch: perl
6105            ! ext/DynaLoader/dl_aix.xs
6106 ____________________________________________________________________________
6107 [  3568] By: jhi                                   on 1999/07/04  14:54:23
6108         Log: pp_lc/pp_lcfirst/pp_quotemeta/pp_uc/pp_ucfirst were not calling mg_set().
6109              This resulted for example in the 'o' magic not being cleared by
6110              magic_setcollxfrm(), which resulted in strange cmp results.
6111              The bug was reported originally in the message
6112              Subject: Bug with locale
6113              From: Jan Starzynski <jan@planet.de> 
6114              To: perlbug@perl.com 
6115              Date: Fri, 09 Apr 1999 13:23:07 +0200 
6116              Message-ID: <370DE31B.DAEE1332@planet.de> 
6117      Branch: cfgperl
6118            ! pp.c
6119 ____________________________________________________________________________
6120 [  3567] By: gsar                                  on 1999/07/04  02:38:34
6121         Log: remove misleading info on defined(&func), unclutter deprecation
6122              about defined(@array)
6123      Branch: perl
6124            ! op.c pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod
6125            ! t/pragma/warn/op
6126 ____________________________________________________________________________
6127 [  3566] By: gsar                                  on 1999/07/04  01:46:31
6128         Log: From: jan.dubois@ibm.net (Jan Dubois)
6129              Date: Wed, 26 May 1999 22:07:17 +0200
6130              Message-ID: <374c53ac.10322322@smtp1.ibm.net>
6131              Subject: [PATCH 5.005_57] MINGW32 and EGCS 1.1.2 support
6132      Branch: perl
6133            ! Changes win32/win32.c win32/win32.h
6134 ____________________________________________________________________________
6135 [  3565] By: gsar                                  on 1999/07/04  01:26:02
6136         Log: newer version of perlxstut from Jeff Okamoto (slightly edited
6137              for win32 issues)
6138      Branch: perl
6139            ! pod/perlxstut.pod
6140 ____________________________________________________________________________
6141 [  3564] By: gsar                                  on 1999/07/02  03:09:04
6142         Log: avoid warnings
6143      Branch: perl
6144            ! ext/Thread/Thread/Specific.pm lib/fields.pm
6145 ____________________________________________________________________________
6146 [  3563] By: gsar                                  on 1999/06/28  19:23:47
6147         Log: inc version (for CPAN.pm sanity)
6148      Branch: perl
6149            ! lib/Text/ParseWords.pm
6150 ____________________________________________________________________________
6151 [  3562] By: gsar                                  on 1999/06/28  19:19:01
6152         Log: regen perltoc
6153      Branch: perl
6154            ! pod/perltoc.pod
6155 ____________________________________________________________________________
6156 [  3561] By: gsar                                  on 1999/06/28  19:08:41
6157         Log: From: Damian Conway <damian@cs.monash.edu.au>
6158              Date: Wed, 26 May 1999 00:58:35 -0400
6159              Message-Id: <199905260458.AAA06411@defender.perl.org>
6160              Subject: [19990526.002] Misc. improvements to Class:Struct
6161      Branch: perl
6162            ! MANIFEST lib/Class/Struct.pm
6163 ____________________________________________________________________________
6164 [  3560] By: gsar                                  on 1999/06/28  18:50:52
6165         Log: remove bogus PL_optype_size
6166      Branch: perl
6167            ! bytecode.pl ext/ByteLoader/byterun.h
6168 ____________________________________________________________________________
6169 [  3559] By: gsar                                  on 1999/06/28  18:22:26
6170         Log: upgrade CGI.pm to v2.53 (CGI/{Apache,Switch}.pm NOT deleted)
6171      Branch: perl
6172            + lib/CGI/Pretty.pm
6173            ! eg/cgi/file_upload.cgi lib/CGI.pm lib/CGI/Carp.pm
6174            ! lib/CGI/Cookie.pm lib/CGI/Fast.pm t/lib/cgi-form.t
6175            ! t/lib/cgi-html.t t/lib/cgi-request.t
6176 ____________________________________________________________________________
6177 [  3558] By: jhi                                   on 1999/06/28  07:30:21
6178         Log: Change Olaf Lebbe's email address.
6179      Branch: cfgperl
6180            ! README.epoc
6181 ____________________________________________________________________________
6182 [  3557] By: gsar                                  on 1999/06/28  00:07:33
6183         Log: make autogenerated files writable
6184      Branch: perl
6185            - win32/perlhost.h
6186            ! MANIFEST Porting/makerel embed.h embedvar.h ext/B/B/Asmdata.pm
6187            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h global.sym
6188            ! keywords.h lib/warning.pm objXSUB.h opcode.h pp.sym pp_proto.h
6189            ! proto.h regnodes.h warning.h win32/config_H.bc
6190            ! win32/config_H.gc win32/config_H.vc
6191 ____________________________________________________________________________
6192 [  3556] By: jhi                                   on 1999/06/27  19:22:53
6193         Log: Update MANIFEST to match #3555.
6194      Branch: cfgperl
6195            ! MANIFEST
6196 ____________________________________________________________________________
6197 [  3555] By: jhi                                   on 1999/06/27  19:16:22
6198         Log: EPOC port to Psion5.
6199              From: Olaf Flebbe <O.Flebbe@science-computing.de>
6200              To: Jarkko Hietaniemi <jhi@iki.fi>
6201              Cc: perl5-porters@perl.org
6202              Subject: Re: Psion5
6203              Date: Sun, 27 Jun 1999 20:50:30 +0200 (METDST)
6204              Message-ID: <Pine.GHP.4.02.9906272048130.17736-100000@io.science-computing.de>
6205      Branch: cfgperl
6206            + README.epoc epoc/config.h epoc/epoc.c epoc/epocish.h
6207            + epoc/perl.mmp epoc/perl.pkg
6208            ! MANIFEST doio.c lib/Term/ReadLine.pm lib/perl5db.pl perl.c
6209            ! perl.h sv.c util.c
6210 ____________________________________________________________________________
6211 [  3554] By: jhi                                   on 1999/06/27  18:50:52
6212         Log: Integrate from mainperl.
6213      Branch: cfgperl
6214           !> (integrate 48 files)
6215 ____________________________________________________________________________
6216 [  3553] By: gsar                                  on 1999/06/27  14:28:49
6217         Log: somewhat untested PERL_OBJECT cleanups (C++isms mostly
6218              gone from the public API); PERL_OBJECT builds again on
6219              windows
6220              
6221              TODO: namespace-clean the typedefs in iperlsys.h and
6222              elsewhere; remove C++ remnants from public headers
6223      Branch: perl
6224            ! XSUB.h bytecode.pl cv.h embed.h embed.pl ext/B/B.xs
6225            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
6226            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h
6227            ! ext/DynaLoader/dlutils.c global.sym globals.c iperlsys.h
6228            ! lib/ExtUtils/Embed.pm lib/ExtUtils/xsubpp mg.c objXSUB.h
6229            ! opcode.h opcode.pl perl.c perl.h pod/perlhist.pod pp_ctl.c
6230            ! pp_hot.c proto.h scope.h sv.h toke.c universal.c util.c
6231            ! win32/GenCAPI.pl win32/Makefile win32/config.bc
6232            ! win32/config.gc win32/config.vc win32/dl_win32.xs
6233            ! win32/makedef.pl win32/makefile.mk win32/perllib.c
6234            ! win32/runperl.c win32/win32.c win32/win32.h win32/win32iop.h
6235            ! win32/win32sck.c
6236 ____________________________________________________________________________
6237 [  3552] By: gsar                                  on 1999/06/27  13:49:31
6238         Log: integrate cfgperl changes into mainline
6239      Branch: perl
6240           !> dump.c embed.h embed.pl embedvar.h global.sym intrpvar.h mg.c
6241           !> objXSUB.h op.c perl.c perl.h perlvars.h pp.c pp_ctl.c
6242           !> pp_proto.h pp_sys.c proto.h sv.c t/pragma/locale.t toke.c
6243           !> util.c
6244 ____________________________________________________________________________
6245 [  3551] By: gsar                                  on 1999/06/27  13:31:11
6246         Log: fix indents
6247      Branch: perl
6248            ! op.c
6249 ____________________________________________________________________________
6250 [  3550] By: gsar                                  on 1999/06/24  22:42:53
6251         Log: update Changes
6252      Branch: perl
6253            ! Changes
6254 ____________________________________________________________________________
6255 [  3549] By: gsar                                  on 1999/06/24  22:41:17
6256         Log: avoid race condition in the CAPI extension bootstrap handler
6257      Branch: perl
6258            ! lib/ExtUtils/xsubpp win32/GenCAPI.pl
6259 ____________________________________________________________________________
6260 [  3548] By: gsar                                  on 1999/06/24  22:39:53
6261         Log: sanity check to cover the case when perl is installed into the
6262              X:\ (drive root)
6263      Branch: perl
6264            ! win32/win32.c
6265 ____________________________________________________________________________
6266 [  3547] By: gsar                                  on 1999/06/22  19:30:32
6267         Log: tweak RefHash to make intent clearer (suggested by John Dlugosz)
6268      Branch: perl
6269            ! lib/Tie/RefHash.pm
6270 ____________________________________________________________________________
6271 [  3544] By: jhi                                   on 1999/06/18  19:24:28
6272         Log: Tidy up #3542 and #3543. 
6273      Branch: cfgperl
6274            ! t/pragma/locale.t util.c
6275 ____________________________________________________________________________
6276 [  3543] By: jhi                                   on 1999/06/18  10:28:45
6277         Log: Spice up locale.t.
6278      Branch: cfgperl
6279            ! t/pragma/locale.t
6280 ____________________________________________________________________________
6281 [  3542] By: jhi                                   on 1999/06/17  22:42:03
6282         Log: Fixed two long-standing locale bugs.
6283              
6284              Both problems were related to numeric locale which
6285              controls the radix character aka the decimal separator.
6286              (1) printf (and sprintf) were resetting the numeric locale to C.
6287              (2) Using locale-numerically formatted floating point
6288              numbers (e.g. "1,23") together with -w caused warnings about
6289              "isn't numeric".  The operations were working fine, though,
6290              because atof() was using the local locale.
6291              Both problems reported by Stefan Vogtner.
6292              
6293              Introduced a wrapper for atof() that attempts to convert
6294              the string both ways.  This helps Perl to understand
6295              numbers like this "4.56" even when using a local locale
6296              makes atof() understand only numbers like this "7,89".
6297              
6298              Remaining related problems, both of which existed before
6299              this patch and continue to exist after this patch:
6300              (a) The behaviour of print() is _not_ as documented by perllocale.
6301              Instead of always using the C locale, print() does use the
6302              local locale, just like the *printf() do.  This may be fixable
6303              now that switching to-and-fro between locales has been made
6304              more consistent, but fixing print() would change existing
6305              behaviour.  perllocale is not changed by this patch.
6306              (b) If a number has been stringified (say, via "$number") under
6307              a local locale, the cached string value persists even under
6308              "no locale".  This may or may not be a problem: operations
6309              work fine because the original number is still there, but
6310              that the string form keeps its locale-ish outlook may be
6311              somewhat confusing.
6312      Branch: cfgperl
6313            ! dump.c embed.h embed.pl embedvar.h global.sym intrpvar.h mg.c
6314            ! objXSUB.h op.c perl.c perl.h perlvars.h pp.c pp_ctl.c
6315            ! pp_proto.h pp_sys.c proto.h sv.c t/pragma/locale.t toke.c
6316            ! util.c
6317 ____________________________________________________________________________
6318 [  3541] By: jhi                                   on 1999/06/17  20:00:16
6319         Log: Integrate from mainperl.
6320      Branch: cfgperl
6321           !> ext/Data/Dumper/Dumper.pm op.c
6322 ____________________________________________________________________________
6323 [  3540] By: gsar                                  on 1999/06/16  16:49:55
6324         Log: dump C<0> as such, not C<'0'>
6325      Branch: perl
6326            ! ext/Data/Dumper/Dumper.pm
6327 ____________________________________________________________________________
6328 [  3539] By: gsar                                  on 1999/06/13  04:04:40
6329         Log: fix coredumper in change#3498
6330      Branch: perl
6331            ! op.c
6332 ____________________________________________________________________________
6333 [  3538] By: jhi                                   on 1999/06/12  22:01:26
6334         Log: Integrate from mainperl.
6335      Branch: cfgperl
6336           +> lib/caller.pm
6337           !> (integrate 36 files)
6338 ____________________________________________________________________________
6339 [  3537] By: gsar                                  on 1999/06/12  06:43:03
6340         Log: EXTERN_C declarations for global arrays in various
6341              headers, so perl can be built even in C++ mode; win32
6342              build fixups; regen headers
6343      Branch: perl
6344            ! XSUB.h embedvar.h ext/B/B.xs objXSUB.h opcode.h opcode.pl
6345            ! perl.h regcomp.h regexec.c utf8.h win32/win32.c win32/win32.h
6346 ____________________________________________________________________________
6347 [  3536] By: gsar                                  on 1999/06/12  06:38:21
6348         Log: caller.pm typos
6349      Branch: perl
6350            ! lib/caller.pm
6351 ____________________________________________________________________________
6352 [  3535] By: gsar                                  on 1999/06/11  23:13:54
6353         Log: various little tweaks; most globals are now in intrpvar.h, ninterps
6354              is temporarily gone
6355      Branch: perl
6356            ! embed.pl intrpvar.h os2/os2.c perl.c perlvars.h
6357            ! pod/perldelta.pod proto.h win32/perllib.c
6358 ____________________________________________________________________________
6359 [  3534] By: gsar                                  on 1999/06/11  20:41:51
6360         Log: implement C<use caller 'encoding'>
6361      Branch: perl
6362            + lib/caller.pm
6363            ! MANIFEST perl.h pod/perldelta.pod pod/perlfunc.pod pp_ctl.c
6364 ____________________________________________________________________________
6365 [  3533] By: gsar                                  on 1999/06/11  16:51:04
6366         Log: truncate() has a peculiar exemption from strict barewords, even
6367              though it has a non-filehandle prototype
6368      Branch: perl
6369            ! op.c t/io/fs.t
6370 ____________________________________________________________________________
6371 [  3532] By: gsar                                  on 1999/06/11  09:09:16
6372         Log: GDBM tweak
6373      Branch: perl
6374            ! ext/GDBM_File/GDBM_File.xs ext/GDBM_File/typemap
6375 ____________________________________________________________________________
6376 [  3531] By: gsar                                  on 1999/06/10  23:34:19
6377         Log: part of the platform changes for IMPLICIT_CONTEXT
6378      Branch: perl
6379            ! djgpp/djgpp.c jpl/JNI/JNI.xs jpl/JNI/typemap
6380            ! jpl/PerlInterpreter/PerlInterpreter.c
6381            ! jpl/PerlInterpreter/PerlInterpreter.h
6382            ! os2/OS2/ExtAttr/ExtAttr.xs os2/OS2/PrfDB/PrfDB.xs
6383            ! os2/OS2/Process/Process.xs os2/OS2/REXX/REXX.xs perl.h
6384 ____________________________________________________________________________
6385 [  3530] By: jhi                                   on 1999/06/10  20:55:56
6386         Log: Integrate from mainperl.
6387      Branch: cfgperl
6388           !> ext/DB_File/DB_File.xs ext/DB_File/typemap
6389 ____________________________________________________________________________
6390 [  3529] By: gsar                                  on 1999/06/10  20:40:01
6391         Log: DB_File tweaks for IMPLICIT CONTEXT
6392      Branch: perl
6393            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
6394 ____________________________________________________________________________
6395 [  3528] By: jhi                                   on 1999/06/10  10:18:15
6396         Log: Integrate from mainperl.
6397      Branch: cfgperl
6398           !> (integrate 105 files)
6399 ____________________________________________________________________________
6400 [  3527] By: gsar                                  on 1999/06/10  09:30:35
6401         Log: most globals are now interpreter local; locale initialization
6402              was too early, defer it until interpreter is allocated and
6403              initialized; multiple interpreters should now be
6404              concurrency-safe (untested)
6405      Branch: perl
6406            ! embedvar.h intrpvar.h malloc.c miniperlmain.c perl.c perl.h
6407            ! perlvars.h
6408 ____________________________________________________________________________
6409 [  3526] By: gsar                                  on 1999/06/10  08:38:00
6410         Log: fix small nits
6411      Branch: perl
6412            ! cc_runtime.h ext/B/B/CC.pm run.c
6413 ____________________________________________________________________________
6414 [  3525] By: gsar                                  on 1999/06/10  04:41:38
6415         Log: win32 build fixes
6416      Branch: perl
6417            ! bytecode.pl dosish.h embed.h embed.pl ext/B/B.xs
6418            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
6419            ! ext/ByteLoader/byterun.h ext/SDBM_File/sdbm/sdbm.c globals.c
6420            ! mg.c objXSUB.h op.h perl.c perl.h pp_sys.c proto.h sv.c util.c
6421            ! win32/Makefile win32/config_H.bc win32/config_H.gc
6422            ! win32/config_H.vc win32/config_h.PL win32/dl_win32.xs
6423            ! win32/makedef.pl win32/makefile.mk win32/perllib.c
6424            ! win32/win32.c win32/win32.h win32/win32sck.c
6425            ! win32/win32thread.c win32/win32thread.h
6426 ____________________________________________________________________________
6427 [  3524] By: gsar                                  on 1999/06/09  18:03:01
6428         Log: more complete support for implicit thread/interpreter pointer,
6429              enabled via -DPERL_IMPLICIT_CONTEXT (all changes are noops
6430              without that enabled):
6431              - USE_THREADS now enables PERL_IMPLICIT_CONTEXT, so dTHR
6432              is a noop; tests pass on Solaris; should be faster now!
6433              - MULTIPLICITY has been tested with and without
6434              PERL_IMPLICIT_CONTEXT on Solaris
6435              - improved function database now merged with embed.pl
6436              - everything except the varargs functions have foo(a,b,c) macros
6437              to provide compatibility
6438              - varargs functions default to compatibility variants that
6439              get the context pointer using dTHX
6440              - there should be almost no source compatibility issues as a
6441              result of all this
6442              - dl_foo.xs changes other than dl_dlopen.xs untested
6443              - still needs documentation, fixups for win32 etc
6444              Next step: migrate most non-mutex variables from perlvars.h
6445              to intrpvar.h
6446      Branch: perl
6447            - proto.pl
6448            ! MANIFEST XSUB.h av.c bytecode.pl cv.h doio.c doop.c dump.c
6449            ! ebcdic.c embed.h embed.pl embedvar.h ext/B/B.xs ext/B/typemap
6450            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
6451            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h
6452            ! ext/Data/Dumper/Dumper.xs ext/Devel/Peek/Peek.xs
6453            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs
6454            ! ext/DynaLoader/dl_cygwin32.xs ext/DynaLoader/dl_dld.xs
6455            ! ext/DynaLoader/dl_dlopen.xs ext/DynaLoader/dl_hpux.xs
6456            ! ext/DynaLoader/dl_mpeix.xs ext/DynaLoader/dl_next.xs
6457            ! ext/DynaLoader/dl_none.xs ext/DynaLoader/dl_rhapsody.xs
6458            ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs
6459            ! ext/DynaLoader/dlutils.c ext/Opcode/Opcode.xs
6460            ! ext/POSIX/POSIX.xs ext/Thread/Thread.xs ext/re/re.xs
6461            ! global.sym globals.c gv.c hv.c lib/ExtUtils/typemap
6462            ! lib/ExtUtils/xsubpp malloc.c mg.c mg.h miniperlmain.c
6463            ! objXSUB.h op.c opcode.h opcode.pl perl.c perl.h perlio.c
6464            ! perlsfio.h perly.c pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c
6465            ! proto.h regcomp.c regcomp.h regexec.c run.c scope.c scope.h
6466            ! sv.c taint.c thrdvar.h thread.h toke.c universal.c utf8.c
6467            ! util.c win32/Makefile win32/makefile.mk writemain.SH
6468 ____________________________________________________________________________
6469 [  3523] By: gsar                                  on 1999/06/07  05:24:13
6470         Log: missed a file
6471      Branch: perl
6472            + proto.pl
6473            ! MANIFEST
6474 ____________________________________________________________________________
6475 [  3522] By: gsar                                  on 1999/06/07  05:18:34
6476         Log: initial stub implementation of implicit thread/this
6477              pointer    argument; builds/tests on Solaris, win32
6478              hasn't been fixed up yet; proto.h, global.sym and
6479              static function decls are now generated from a common
6480              database in proto.pl; some inconsistently named
6481              perl_foo() things are now Perl_foo(), compatibility
6482              #defines provided; perl_foo() (lowercase 'p') reserved
6483              for functions that take an explicit context argument;
6484              next step: generate #define foo(a,b) Perl_foo(aTHX_ a,b)
6485      Branch: perl
6486            ! XSUB.h av.c cop.h deb.c doio.c doop.c dump.c ebcdic.c embed.h
6487            ! embed.pl ext/POSIX/POSIX.xs global.sym globals.c gv.c gv.h
6488            ! hv.c malloc.c mg.c miniperlmain.c objXSUB.h op.c opcode.h
6489            ! opcode.pl perl.c perl.h perl_exp.SH perlio.c perly.c perly.y
6490            ! pp.c pp.sym pp_ctl.c pp_hot.c pp_proto.h pp_sys.c proto.h
6491            ! regcomp.c regexec.c run.c scope.c scope.h sv.c taint.c toke.c
6492            ! universal.c utf8.c util.c
6493 ____________________________________________________________________________
6494 [  3521] By: gsar                                  on 1999/06/04  23:00:22
6495         Log: clean up some stray "global" symbols
6496      Branch: perl
6497            ! embed.h embed.pl global.sym objXSUB.h opcode.pl pp.sym
6498            ! pp_proto.h proto.h
6499 ____________________________________________________________________________
6500 [  3520] By: jhi                                   on 1999/06/02  21:33:28
6501         Log: Integrate from mainperl.
6502      Branch: cfgperl
6503           !> (integrate 94 files)
6504 ____________________________________________________________________________
6505 [  3519] By: gsar                                  on 1999/06/02  07:16:10
6506         Log: avoid dereferencing null pointer from getpwent() et al
6507      Branch: perl
6508            ! pp_sys.c
6509 ____________________________________________________________________________
6510 [  3518] By: gsar                                  on 1999/06/02  04:47:10
6511         Log: remove _() non-ansism
6512      Branch: perl
6513            ! Porting/config_H XSUB.h config_h.SH cv.h doio.c doop.c
6514            ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/byteperl.c
6515            ! ext/ByteLoader/ByteLoader.xs ext/Data/Dumper/Dumper.xs
6516            ! ext/DynaLoader/dl_beos.xs ext/DynaLoader/dl_dlopen.xs
6517            ! ext/DynaLoader/dl_vmesa.xs ext/IO/poll.h ext/IPC/SysV/SysV.xs
6518            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs ext/Thread/Thread.xs
6519            ! ext/re/re.xs handy.h hv.c iperlsys.h
6520            ! jpl/PerlInterpreter/PerlInterpreter.c lib/ExtUtils/Embed.pm
6521            ! malloc.c mg.c mg.h minimod.pl miniperlmain.c op.c op.h
6522            ! opcode.h opcode.pl os2/POSIX.mkfifo perl.c perl.h
6523            ! plan9/config.plan9 pod/perlembed.pod pod/perlguts.pod pp.c
6524            ! pp_ctl.c pp_hot.c pp_sys.c proto.h regcomp.c regexec.c run.c
6525            ! scope.h sv.c sv.h thread.h toke.c util.c vms/sockadapt.h
6526            ! vms/vmsish.h vms/writemain.pl vos/config.h
6527            ! vos/config_h.SH_orig win32/GenCAPI.pl win32/config_H.bc
6528            ! win32/config_H.gc win32/config_H.vc win32/makemain.pl
6529            ! win32/perllib.c win32/runperl.c win32/win32.h
6530            ! win32/win32thread.h writemain.SH x2p/a2p.c x2p/a2p.h x2p/a2p.y
6531            ! x2p/hash.h x2p/str.h x2p/util.h x2p/walk.c
6532 ____________________________________________________________________________
6533 [  3517] By: gsar                                  on 1999/06/02  02:17:51
6534         Log: missed a few files
6535      Branch: perl
6536            ! ext/POSIX/POSIX.xs jpl/JNI/JNI.xs
6537 ____________________________________________________________________________
6538 [  3516] By: gsar                                  on 1999/06/02  01:37:33
6539         Log: integrate cfgperl contents into mainline
6540      Branch: perl
6541           +> ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
6542           +> ext/ByteLoader/byterun.h
6543            - bytecode.h byterun.c byterun.h
6544            ! Changes
6545           !> (integrate 58 files)
6546 ____________________________________________________________________________
6547 [  3515] By: gsar                                  on 1999/06/02  00:48:50
6548         Log: remove stray K&R-isms
6549      Branch: perl
6550            ! ext/SDBM_File/sdbm/dba.c ext/SDBM_File/sdbm/dbd.c
6551            ! ext/SDBM_File/sdbm/dbe.c ext/SDBM_File/sdbm/dbm.c
6552            ! ext/SDBM_File/sdbm/dbu.c mg.c op.c pp_ctl.c pp_sys.c sv.c
6553            ! toke.c util.c win32/win32.c x2p/hash.c
6554 ____________________________________________________________________________
6555 [  3514] By: gsar                                  on 1999/06/01  15:55:55
6556         Log: change#3447 didn't do enough to exempt Foo->bar(qw/.../) from
6557              strict 'subs'
6558      Branch: perl
6559            ! op.c t/pragma/strict-subs
6560 ____________________________________________________________________________
6561 [  3513] By: jhi                                   on 1999/06/01  07:17:05
6562         Log: Patch applying of #3499 had gone awry.
6563      Branch: cfgperl
6564            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.h
6565 ____________________________________________________________________________
6566 [  3512] By: gsar                                  on 1999/05/31  19:21:30
6567         Log: tighter -help output
6568      Branch: perl
6569            ! perl.c
6570 ____________________________________________________________________________
6571 [  3511] By: gsar                                  on 1999/05/31  17:18:23
6572         Log: fix memory leak in C<eval 'return sub {...}'>
6573      Branch: perl
6574            ! embed.h embed.pl objXSUB.h pp_ctl.c proto.h
6575 ____________________________________________________________________________
6576 [  3510] By: gsar                                  on 1999/05/31  14:11:46
6577         Log: tweak C++isms
6578      Branch: perl
6579            ! win32/dl_win32.xs win32/win32.c
6580 ____________________________________________________________________________
6581 [  3509] By: jhi                                   on 1999/05/30  13:02:26
6582         Log: Cleanup of #3488.
6583      Branch: cfgperl
6584            ! Configure config_h.SH
6585 ____________________________________________________________________________
6586 [  3508] By: jhi                                   on 1999/05/30  11:16:01
6587         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6588              To: Mailing list Perl5 <perl5-porters@perl.org>
6589              Subject: [PATCH 5.005_57] Teach Socket and io_unix.t the syntax of OS/2
6590              Date: Sat, 29 May 1999 20:18:13 -0400
6591              Message-ID: <19990529201813.B9489@monk.mps.ohio-state.edu>
6592      Branch: cfgperl
6593            ! ext/Socket/Socket.xs os2/os2ish.h t/lib/io_unix.t
6594 ____________________________________________________________________________
6595 [  3507] By: jhi                                   on 1999/05/29  20:05:40
6596         Log: From: Mark-Jason Dominus <mjd@plover.com>
6597              To: perl5-porters@perl.com
6598              Subject: PATCH (5.005_57): Document use of `SPECIAL' flag for `pushre':
6599              Date: Sat, 29 May 1999 14:45:10 -0400
6600              Message-ID: <19990529184510.27557.qmail@plover.com>
6601      Branch: cfgperl
6602            ! op.h
6603 ____________________________________________________________________________
6604 [  3506] By: gsar                                  on 1999/05/29  16:49:39
6605         Log: avoid gv_check() recursive pit
6606      Branch: perl
6607            ! gv.c
6608 ____________________________________________________________________________
6609 [  3505] By: jhi                                   on 1999/05/29  11:38:16
6610         Log: From: jan.dubois@ibm.net (Jan Dubois)
6611              To: Gurusamy Sarathy <gsar@activestate.com>
6612              Cc: perl5-porters@perl.org
6613              Subject: [PATCH 5.005_57]Safeguard against unimplemented functions in pwuid.t and grent.t
6614              Date: Sat, 29 May 1999 08:46:22 +0200
6615              Message-ID: <374f8007.2016008@smtp1.ibm.net>
6616      Branch: cfgperl
6617            ! t/op/grent.t t/op/pwent.t
6618 ____________________________________________________________________________
6619 [  3504] By: jhi                                   on 1999/05/29  11:07:10
6620         Log: QNX needs <sys/select.h> to define fd_set.
6621              
6622              From: Norton Allen <allen@huarp.harvard.edu>
6623              To: perl5-porters@perl.org
6624              Subject: [19990526.016] Not OK: perl 5.00503 on x86-qnx 424
6625              Date:  Wed, 26 May 1999 13:51:27 -0400 (EDT)
6626              Message-Id:  <199905261751.NAA20966@bottesini.harvard.edu>
6627      Branch: cfgperl
6628            ! ext/IO/poll.c
6629 ____________________________________________________________________________
6630 [  3503] By: jhi                                   on 1999/05/29  10:53:31
6631         Log: From: jan.dubois@ibm.net (Jan Dubois)
6632              To: Gurusamy Sarathy <gsar@activestate.com>, perl5-porters@perl.org
6633              Subject: [PATCH all versions] (was Re: Unitialized Value Complaints in Math::BigFloat)
6634              Date: Fri, 28 May 1999 20:14:35 +0200
6635              Message-ID: <3751daa4.7188847@smtp1.ibm.net>
6636      Branch: cfgperl
6637            ! lib/Math/BigFloat.pm
6638 ____________________________________________________________________________
6639 [  3502] By: jhi                                   on 1999/05/29  10:44:44
6640         Log: Make Configure support the change #3367,
6641              SysV shadow passwords.
6642      Branch: cfgperl
6643            ! Configure config_h.SH pp_sys.c
6644 ____________________________________________________________________________
6645 [  3501] By: gsar                                  on 1999/05/28  21:22:23
6646         Log: add wide versions of win32 system calls (first step in
6647              globalization); delayload winsock for performance if compiling
6648              with VC 6.0
6649      Branch: perl
6650            ! win32/Makefile win32/dl_win32.xs win32/makefile.mk
6651            ! win32/win32.c win32/win32.h
6652 ____________________________________________________________________________
6653 [  3500] By: jhi                                   on 1999/05/28  21:17:24
6654         Log: The new t/lib/io_linenum.t was using stricture
6655              before @INC was set up.
6656      Branch: cfgperl
6657            ! t/lib/io_linenum.t
6658 ____________________________________________________________________________
6659 [  3499] By: jhi                                   on 1999/05/28  17:13:23
6660         Log: From: Tom Hughes <tom@compton.nu>
6661              To: perl5-porters@perl.org
6662              Subject: [PATCH 5.005_57] ByteLoader mark 2
6663              Date: Wed, 26 May 1999 23:59:49 +0100
6664              Message-ID: <bf337a0849.tom@compton.compton.nu>
6665              
6666              plus resolve tiny conflict with #3479
6667              plus regen_headers.
6668      Branch: cfgperl
6669            + ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
6670            + ext/ByteLoader/byterun.h
6671            - bytecode.h byterun.c byterun.h
6672            ! MANIFEST Makefile.SH bytecode.pl embed.h embedvar.h ext/B/B.pm
6673            ! ext/B/B.xs ext/B/B/Bytecode.pm ext/B/Makefile.PL
6674            ! ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
6675            ! ext/ByteLoader/Makefile.PL global.sym intrpvar.h objXSUB.h
6676            ! perl.h perlvars.h proto.h util.c utils/Makefile
6677 ____________________________________________________________________________
6678 [  3498] By: jhi                                   on 1999/05/28  16:53:04
6679         Log: From: Mark-Jason Dominus <mjd@plover.com>
6680              To: perl5-porters@perl.com
6681              Subject: PATCH (5.005_57): defined(@a) now deprecated
6682              Date: Thu, 27 May 1999 16:05:44 -0400
6683              Message-ID: <19990527200544.13330.qmail@plover.com>
6684      Branch: cfgperl
6685            ! lib/Carp.pm op.c opcode.h opcode.pl pod/perldelta.pod
6686            ! pod/perldiag.pod pod/perlfunc.pod pp_proto.h t/pragma/warn/op
6687 ____________________________________________________________________________
6688 [  3497] By: jhi                                   on 1999/05/28  16:50:54
6689         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6690              To: perl5-porters@perl.org (Mailing list Perl5)
6691              Subject: [PATCH 5.00557] Cosmetic OS/2-related patches
6692              Date: Fri, 28 May 1999 12:13:00 -0400 (EDT)
6693              Message-Id: <199905281613.MAA02048@monk.mps.ohio-state.edu>
6694      Branch: cfgperl
6695            ! MANIFEST Makefile.SH ext/POSIX/POSIX.xs hints/os2.sh
6696            ! os2/Makefile.SHs t/io/pipe.t t/lib/io_sock.t
6697 ____________________________________________________________________________
6698 [  3496] By: jhi                                   on 1999/05/28  16:48:39
6699         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6700              To: perl5-porters@perl.org (Mailing list Perl5)
6701              Subject: [PATCH 5.00557] Required OS/2-related patches
6702              Date: Fri, 28 May 1999 12:11:48 -0400 (EDT)
6703              Message-Id: <199905281611.MAA02037@monk.mps.ohio-state.edu>
6704      Branch: cfgperl
6705            ! os2/os2.c t/lib/bigfloatpm.t t/lib/io_unix.t t/op/groups.t
6706            ! t/op/stat.t util.c
6707 ____________________________________________________________________________
6708 [  3495] By: jhi                                   on 1999/05/28  16:45:56
6709         Log: From: Paul Johnson <pjcj@transeda.com>
6710              To: perl5-porters <perl5-porters@perl.org>
6711              Subject: [PATCH 5.005_57] Provide more useful test okay percentage
6712              Date: Fri, 28 May 1999 15:13:54 +0100
6713              Message-ID: <19990528151354.B289@west-tip.transeda.com>
6714      Branch: cfgperl
6715            ! t/TEST
6716 ____________________________________________________________________________
6717 [  3494] By: jhi                                   on 1999/05/28  16:44:34
6718         Log: From: Paul Johnson <pjcj@transeda.com>
6719              To: perl5-porters <perl5-porters@perl.org>
6720              Subject: [PATCH 5.005_57] Fixes related to working local $.
6721              Date: Fri, 28 May 1999 15:11:18 +0100
6722              Message-ID: <19990528151118.A289@west-tip.transeda.com>
6723      Branch: cfgperl
6724            ! ext/IO/lib/IO/Handle.pm pod/perlvar.pod t/lib/io_linenum.t
6725 ____________________________________________________________________________
6726 [  3493] By: gsar                                  on 1999/05/28  16:37:26
6727         Log: change#3449 wasn't doing enough
6728      Branch: perl
6729            ! op.c t/comp/proto.t
6730 ____________________________________________________________________________
6731 [  3492] By: jhi                                   on 1999/05/28  08:12:23
6732         Log: From: paul.marquess@bt.com
6733              To: doughera@lafayette.edu
6734              Cc: perl5-porters@perl.org
6735              Subject: RE: [19990527.002] DBM Filters in _57 cause problems in NDBM_File
6736              Date: Thu, 27 May 1999 23:31:38 +0100
6737              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6C03@mbtlipnt02.btlabs.bt.co.uk>
6738              
6739              Had to be applied manually; some mailer had munged the patch slightly.
6740      Branch: cfgperl
6741            ! ext/NDBM_File/NDBM_File.xs
6742 ____________________________________________________________________________
6743 [  3491] By: jhi                                   on 1999/05/28  07:51:17
6744         Log: From: "Vishal Bhatia" <vishalb@my-deja.com>
6745              To: perl5-porters@perl.org
6746              Subject: [PATCH 5.005_57] fixing eval in the compiler
6747              Date: Thu, 27 May 1999 07:56:54 -0700
6748              Message-ID: <JDIKFDKKLGHHBAAA@my-deja.com>
6749      Branch: cfgperl
6750            ! cc_runtime.h scope.h
6751 ____________________________________________________________________________
6752 [  3490] By: jhi                                   on 1999/05/28  07:47:06
6753         Log: From: Andy Dougherty <doughera@lafayette.edu>
6754              To: perlbug@perl.com
6755              Cc: Jarkko Hietaniemi <jhi@iki.fi>
6756              Subject: [PATCH] Configure updates for ISC 4.1
6757              Date: Thu, 27 May 1999 15:19:21 -0400 (EDT)
6758              Message-Id: <Pine.GSU.4.05.9905271513500.22115-100000@newton.phys>
6759      Branch: cfgperl
6760            ! Configure config_h.SH
6761 ____________________________________________________________________________
6762 [  3489] By: jhi                                   on 1999/05/28  07:39:17
6763         Log: Integrate from mainperl.
6764      Branch: cfgperl
6765           !> malloc.c win32/makedef.pl win32/win32.c
6766 ____________________________________________________________________________
6767 [  3488] By: jhi                                   on 1999/05/27  16:57:19
6768         Log: From: Andy Dougherty <doughera@lafayette.edu>
6769              To: Perl Porters <perl5-porters@perl.org>
6770              Subject: [PATCH] Re: 5.005_57 NOT OK on SunOS 4.1.3
6771              Date: Thu, 27 May 1999 12:26:28 -0400 (EDT)
6772              Message-Id: <Pine.GSU.4.05.9905271120230.22115-100000@newton.phys>
6773      Branch: cfgperl
6774            ! Configure config_h.SH hints/sunos_4_1.sh util.c
6775 ____________________________________________________________________________
6776 [  3487] By: gsar                                  on 1999/05/27  03:56:20
6777         Log: make win32_spawnvp() inherit standard handles even when they
6778              may be redirected
6779      Branch: perl
6780            ! win32/win32.c
6781 ____________________________________________________________________________
6782 [  3486] By: jhi                                   on 1999/05/26  19:55:52
6783         Log: From: Andy Dougherty <doughera@lafayette.edu>
6784              To: perl5-porters@perl.org
6785              Subject: Re: BUG -> [19990526.004] perl5.005_57 error in util.c on sun4-solaris2.6
6786              Date: Wed, 26 May 1999 14:49:52 -0400 (EDT)
6787              Message-Id: <Pine.GSU.4.05.9905261448310.19172-100000@newton.phys>
6788      Branch: cfgperl
6789            ! util.c
6790 ____________________________________________________________________________
6791 [  3485] By: chip                                  on 1999/05/26  17:19:11
6792         Log: Look for Linux FILE structure in libio.h, for glibc-2.1.
6793      Branch: maint-5.004/perl
6794            ! Configure
6795 ____________________________________________________________________________
6796 [  3484] By: gsar                                  on 1999/05/26  01:56:28
6797         Log: fix missing exported symbol
6798      Branch: perl
6799            ! malloc.c win32/makedef.pl
6800 ____________________________________________________________________________
6801 [  3483] By: jhi                                   on 1999/05/25  23:08:07
6802         Log: Configure -Dopenbsd_distribution to build for the OpenBSD tree.
6803              
6804              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
6805              To: perlbug@perl.com
6806              Subject: OpenBSD hints file update
6807              Date: Tue, 25 May 1999 12:12:38 -0600 (MDT)
6808              Message-Id: <199905251812.MAA06032@xerxes.courtesan.com>
6809      Branch: cfgperl
6810            ! hints/openbsd.sh
6811 ____________________________________________________________________________
6812 [  3482] By: jhi                                   on 1999/05/25  23:01:25
6813         Log: From: Tom Hughes <tom@compton.nu>
6814              To: perl5-porters@perl.org
6815              Subject: [PATCH 5.005_57] Make Configure recognise glibc 2.1 stdio
6816              Date: Tue, 25 May 1999 23:10:23 +0100
6817              Message-ID: <1ed7f10749.tom@compton.compton.nu>
6818      Branch: cfgperl
6819            ! Configure config_h.SH
6820 ____________________________________________________________________________
6821 [  3481] By: jhi                                   on 1999/05/25  22:31:50
6822         Log: 3479, 3480, 3481 seems logical.
6823      Branch: cfgperl
6824           !> hints/aix.sh
6825 ____________________________________________________________________________
6826 [  3480] By: jhi                                   on 1999/05/25  22:13:39
6827         Log: The change #3479 wasn't perfect.
6828      Branch: perl
6829            ! hints/aix.sh
6830 ____________________________________________________________________________
6831 [  3479] By: jhi                                   on 1999/05/25  21:59:21
6832         Log: Cures for _57 in AIX 4.1.5.0.
6833              (1) The lddlflags lost its -lc by change #3660
6834              (and the politeness of change #3257).
6835              (2) optype_size must end up in perl.exp (as PL_optype_size).
6836              Added it to perlvars.h, fixed bytecode.pl,
6837              regen'ed the relevant headers.
6838      Branch: cfgperl
6839            ! bytecode.h bytecode.pl byterun.h embed.h embedvar.h objXSUB.h
6840            ! perlvars.h
6841      Branch: perl
6842            ! hints/aix.sh
6843 ____________________________________________________________________________
6844 [  3478] By: jhi                                   on 1999/05/25  20:13:47
6845         Log: Integrate from mainperl.
6846      Branch: cfgperl
6847           +> pod/perltootc.pod
6848           !> (integrate 101 files)
6849 ____________________________________________________________________________
6850 [  3477] By: gsar                                  on 1999/05/25  10:43:48
6851         Log: here be 5.005_57
6852      Branch: perl
6853            ! Changes MANIFEST Porting/makerel
6854           !> Changes5.005
6855
6856 ----------------
6857 Version 5.005_57
6858 ----------------
6859
6860 ____________________________________________________________________________
6861 [  3476] By: gsar                                  on 1999/05/25  09:23:43
6862         Log: up patchlevel &c
6863      Branch: perl
6864            ! Changes patchlevel.h pod/perlhist.pod win32/Makefile
6865            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
6866            ! win32/makefile.mk
6867 ____________________________________________________________________________
6868 [  3475] By: gsar                                  on 1999/05/25  09:14:51
6869         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6870              Date: Tue, 25 May 1999 02:42:23 -0400 (EDT)
6871              Message-Id: <199905250642.CAA06208@monk.mps.ohio-state.edu>
6872              Subject: [PATCH 5.005_56] REx engine improvements
6873      Branch: perl
6874            ! embedvar.h mg.c objXSUB.h pp.c pp_ctl.c pp_hot.c regcomp.c
6875            ! regexec.c regexp.h t/op/pat.t t/op/re_tests t/op/regexp.t
6876            ! thrdvar.h util.c
6877 ____________________________________________________________________________
6878 [  3474] By: gsar                                  on 1999/05/25  08:39:56
6879         Log: test case for change#3470
6880      Branch: perl
6881            ! t/lib/bigintpm.t
6882 ____________________________________________________________________________
6883 [  3473] By: gsar                                  on 1999/05/25  08:36:52
6884         Log: perlport 1.43 update from Chris Nandor and Tom Christiansen
6885      Branch: perl
6886            ! Changes pod/perlport.pod
6887 ____________________________________________________________________________
6888 [  3472] By: gsar                                  on 1999/05/25  08:28:57
6889         Log: assorted tweaks
6890      Branch: perl
6891            ! doio.c iperlsys.h win32/config.bc win32/config.gc
6892            ! win32/config.vc win32/config_H.bc win32/config_H.gc
6893            ! win32/config_H.vc win32/makedef.pl
6894 ____________________________________________________________________________
6895 [  3471] By: gsar                                  on 1999/05/25  06:06:04
6896         Log: perlref update from Tom Christiansen
6897      Branch: perl
6898            ! pod/perlref.pod
6899 ____________________________________________________________________________
6900 [  3470] By: gsar                                  on 1999/05/25  06:03:27
6901         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6902              Date: Mon, 24 May 1999 17:43:56 -0400
6903              Message-ID: <19990524174356.A1944@monk.mps.ohio-state.edu>
6904              Subject: [PATCH 5.005_*] hv.c calling negative malloc()
6905      Branch: perl
6906            ! hv.c
6907 ____________________________________________________________________________
6908 [  3469] By: gsar                                  on 1999/05/25  05:59:22
6909         Log: avoid temporary files that have a constant name (from a suggestion
6910              by Anthony J. Lill <ajlill@ajlc.waterloo.on.ca>)
6911      Branch: perl
6912            ! lib/ExtUtils/MM_Unix.pm
6913 ____________________________________________________________________________
6914 [  3468] By: gsar                                  on 1999/05/25  05:54:29
6915         Log: From: pvhp@forte.com (Peter Prymmer)
6916              Date: Mon, 24 May 99 11:20:25 PDT
6917              Message-Id: <9905241820.AA28071@forte.com>
6918              Subject: [PATCH: _56 and _03]EBCDIC %HTML_Escapes for Pod::Text, plus sync patch.
6919      Branch: perl
6920            ! lib/Pod/Text.pm
6921 ____________________________________________________________________________
6922 [  3467] By: gsar                                  on 1999/05/25  04:08:50
6923         Log: fix glob() bug that resulted in missing symlinks that don't point
6924              anywhere
6925      Branch: perl
6926            ! pp_hot.c
6927 ____________________________________________________________________________
6928 [  3466] By: gsar                                  on 1999/05/25  03:00:00
6929         Log: avoid enumerating @INC contents in diagnostic if @INC was never
6930              searched
6931      Branch: perl
6932            ! pod/perldiag.pod pp_ctl.c
6933 ____________________________________________________________________________
6934 [  3465] By: gsar                                  on 1999/05/25  02:24:08
6935         Log: add caveat about close(PIPE) carelessness
6936      Branch: perl
6937            ! pod/perlfunc.pod
6938 ____________________________________________________________________________
6939 [  3464] By: gsar                                  on 1999/05/24  23:55:53
6940         Log: fix bogus line numbers for void context warnings
6941              (change#2548 was overeager)
6942      Branch: perl
6943            ! op.c
6944 ____________________________________________________________________________
6945 [  3463] By: gsar                                  on 1999/05/24  23:31:58
6946         Log: change#3455 had a typo
6947      Branch: perl
6948            ! pp_ctl.c
6949 ____________________________________________________________________________
6950 [  3462] By: gsar                                  on 1999/05/24  17:32:20
6951         Log: more pod updates from Tom Christiansen; regen perltoc
6952      Branch: perl
6953            ! pod/perl.pod pod/perldelta.pod pod/perlmod.pod pod/perlobj.pod
6954            ! pod/perlre.pod pod/perltoc.pod pod/perlvar.pod
6955 ____________________________________________________________________________
6956 [  3461] By: gsar                                  on 1999/05/24  07:41:32
6957         Log: perlmod notes from Damian Conway (via Tom Christiansen)
6958      Branch: perl
6959            ! pod/perlmod.pod
6960 ____________________________________________________________________________
6961 [  3460] By: gsar                                  on 1999/05/24  07:24:11
6962         Log: major pod update from Tom Christiansen
6963      Branch: perl
6964            + pod/perltootc.pod
6965            ! MANIFEST lib/Pod/Functions.pm pod/Makefile pod/buildtoc
6966            ! pod/perl.pod pod/perl5004delta.pod pod/perlcall.pod
6967            ! pod/perldata.pod pod/perldebug.pod pod/perldelta.pod
6968            ! pod/perldsc.pod pod/perlfunc.pod pod/perlipc.pod
6969            ! pod/perllol.pod pod/perlmod.pod pod/perlmodinstall.pod
6970            ! pod/perlmodlib.pod pod/perlobj.pod pod/perlop.pod
6971            ! pod/perlopentut.pod pod/perlpod.pod pod/perlport.pod
6972            ! pod/perlre.pod pod/perlref.pod pod/perlrun.pod pod/perlsec.pod
6973            ! pod/perlsub.pod pod/perlsyn.pod pod/perlthrtut.pod
6974            ! pod/perltie.pod pod/perltrap.pod pod/perlvar.pod
6975            ! pod/perlxs.pod pod/pod2man.PL
6976 ____________________________________________________________________________
6977 [  3459] By: gsar                                  on 1999/05/24  06:26:48
6978         Log: perlfaq update from Tom Christiansen
6979      Branch: perl
6980            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
6981            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
6982            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
6983            ! pod/perlfaq9.pod
6984 ____________________________________________________________________________
6985 [  3458] By: gsar                                  on 1999/05/24  05:55:11
6986         Log: updated to v1.50 from CPAN
6987      Branch: perl
6988            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
6989 ____________________________________________________________________________
6990 [  3457] By: gsar                                  on 1999/05/24  05:46:20
6991         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
6992              Date: Sun, 23 May 1999 16:35:07 +0100
6993              Message-Id: <199905231535.QAA00032@crypt.compulink.co.uk>
6994              Subject: [PATCH 5.005_56] name PL_in_eval bits
6995      Branch: perl
6996            ! cop.h op.c perl.c pp_ctl.c toke.c util.c
6997 ____________________________________________________________________________
6998 [  3456] By: gsar                                  on 1999/05/24  05:18:06
6999         Log: make -t mode the default on emacs/dumb terminals
7000      Branch: perl
7001            ! Changes utils/perldoc.PL
7002 ____________________________________________________________________________
7003 [  3455] By: gsar                                  on 1999/05/24  05:05:19
7004         Log: return 0 rather than "" when scalar grep has nothing to iterate
7005              on (brings behavior in line with documentation)
7006      Branch: perl
7007            ! pp_ctl.c
7008 ____________________________________________________________________________
7009 [  3454] By: gsar                                  on 1999/05/24  04:52:52
7010         Log: From: Tim Jenness <t.jenness@jach.hawaii.edu>
7011              Date: Thu, 20 May 1999 13:27:02 -1000
7012              Message-Id: <E10kcDN-0007TA-00@lapaki>
7013              Subject: Problem with MM_Unix in 5.005_03
7014      Branch: perl
7015            ! lib/ExtUtils/MM_Unix.pm
7016 ____________________________________________________________________________
7017 [  3453] By: gsar                                  on 1999/05/24  04:39:49
7018         Log: avoid removing duplicates in user-generated warnings
7019              From: byron@omix.com (Byron Brummer)
7020              Date: Thu, 20 May 1999 04:01:17 -0700 (PDT)
7021              Message-Id: <199905201101.EAA91175@thrush.omix.com>
7022              Subject: [PATCH] Re: warn buffers/loses output in ?? - 5.005_03
7023      Branch: perl
7024            ! lib/diagnostics.pm
7025 ____________________________________________________________________________
7026 [  3452] By: gsar                                  on 1999/05/24  04:23:10
7027         Log: straighten some code to avoid NeXT compiler bugs (from
7028              Geoff Kuenning <geoff@cs.hmc.edu>)
7029      Branch: perl
7030            ! pp_ctl.c
7031 ____________________________________________________________________________
7032 [  3451] By: gsar                                  on 1999/05/24  03:03:05
7033         Log: minor logic tweak for reserved word warning
7034      Branch: perl
7035            ! lib/Test/Harness.pm toke.c
7036 ____________________________________________________________________________
7037 [  3450] By: gsar                                  on 1999/05/24  02:34:20
7038         Log: oops, some files missing in change#3449
7039      Branch: perl
7040            ! op.c op.h toke.c
7041 ____________________________________________________________________________
7042 [  3449] By: gsar                                  on 1999/05/24  02:33:12
7043         Log: allow '*' prototype to autoquote even barewords that happen to be
7044              function names; parens or ampersand continue to force the other
7045              interpretation; makes C<sub Foo {'bar'} CORE::GLOBAL::require Foo;>
7046              do the right thing, for example
7047      Branch: perl
7048            ! t/comp/proto.t
7049 ____________________________________________________________________________
7050 [  3448] By: gsar                                  on 1999/05/24  01:51:24
7051         Log: remove vestiges of PL_last_proto
7052      Branch: perl
7053            ! embedvar.h intrpvar.h objXSUB.h
7054 ____________________________________________________________________________
7055 [  3447] By: gsar                                  on 1999/05/24  01:49:20
7056         Log: redo change#2061 and parts of change#1169 with code in the
7057              parser; PL_last_proto hackery gone, strict 'subs' in now
7058              implemented in the optimizer where specifying the exceptional
7059              cases is much more robust; '*' (bareword) prototype now works
7060              reliably when used in second and subsequent arguments
7061      Branch: perl
7062            ! dump.c embed.h embed.pl objXSUB.h op.c op.h proto.h toke.c
7063 ____________________________________________________________________________
7064 [  3446] By: gsar                                  on 1999/05/23  05:00:55
7065         Log: remove redundant part of change#1169 superceded by change#2061;
7066              avoid "future reserved word" warning on prototypical bearwords
7067      Branch: perl
7068            ! t/lib/fatal.t toke.c
7069 ____________________________________________________________________________
7070 [  3445] By: gsar                                  on 1999/05/21  23:36:49
7071         Log: s/isspace/isSPACE/g and make sure the CRT version is always
7072              passed an unsigned char (fixes random occurrence of spaces in
7073              arguments containing high-bit chars passed to spawned children,
7074              on win32)
7075      Branch: perl
7076            ! ext/SDBM_File/sdbm/dbe.c win32/perlhost.h win32/win32.c
7077 ____________________________________________________________________________
7078 [  3444] By: gsar                                  on 1999/05/21  23:08:55
7079         Log: integrate Configure changes from cfgperl
7080      Branch: perl
7081           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
7082           !> config_h.SH
7083 ____________________________________________________________________________
7084 [  3443] By: jhi                                   on 1999/05/21  22:00:56
7085         Log: Integrate from mainperl.
7086      Branch: cfgperl
7087           !> Changes doop.c ext/SDBM_File/sdbm/dba.c
7088           !> ext/SDBM_File/sdbm/dbd.c ext/SDBM_File/sdbm/dbe.c os2/os2.c
7089           !> perl.h pod/perldiag.pod pod/perlport.pod pp.c t/comp/proto.t
7090           !> win32/perlhost.h win32/win32.c x2p/walk.c
7091 ____________________________________________________________________________
7092 [  3442] By: jhi                                   on 1999/05/21  21:59:46
7093         Log: fflush.
7094      Branch: cfgperl
7095            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7096            ! config_h.SH
7097 ____________________________________________________________________________
7098 [  3441] By: gsar                                  on 1999/05/21  17:48:55
7099         Log: integrate cfgperl changes
7100      Branch: perl
7101           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
7102           !> config_h.SH hints/sunos_4_1.sh installperl
7103 ____________________________________________________________________________
7104 [  3440] By: gsar                                  on 1999/05/21  17:42:49
7105         Log: test tweak
7106      Branch: perl
7107            ! t/comp/proto.t
7108 ____________________________________________________________________________
7109 [  3439] By: gsar                                  on 1999/05/21  17:31:26
7110         Log: fix breakage when neither FFLUSH_ALL nor FFLUSH_NULL are #defined.
7111              (Configure fflush(NULL) detection seems broken on Solaris, which
7112              is why I hit the problem)
7113      Branch: perl
7114            ! Changes perl.h
7115 ____________________________________________________________________________
7116 [  3438] By: gsar                                  on 1999/05/20  16:41:01
7117         Log: perlport 1.41 update from Chris Nandor <pudge@pobox.com>
7118      Branch: perl
7119            ! pod/perlport.pod
7120 ____________________________________________________________________________
7121 [  3437] By: jhi                                   on 1999/05/20  07:14:39
7122         Log: Patches to fflushing in SunOS 4 from Andy Dougherty
7123              (via private email).
7124      Branch: cfgperl
7125            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7126            ! config_h.SH hints/sunos_4_1.sh
7127 ____________________________________________________________________________
7128 [  3436] By: gsar                                  on 1999/05/20  05:18:26
7129         Log: various little nits
7130      Branch: perl
7131            ! doop.c ext/SDBM_File/sdbm/dba.c ext/SDBM_File/sdbm/dbd.c
7132            ! ext/SDBM_File/sdbm/dbe.c os2/os2.c pod/perldiag.pod pp.c
7133            ! win32/perlhost.h win32/win32.c x2p/walk.c
7134 ____________________________________________________________________________
7135 [  3435] By: jhi                                   on 1999/05/18  16:25:49
7136         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
7137              To: perl5-porters@perl.org
7138              Subject: installperl
7139              Date: Fri, 14 May 1999 21:34:58 +0100
7140              Message-Id: <199905142034.VAA00865@crypt.compulink.co.uk>
7141      Branch: cfgperl
7142            ! installperl
7143 ____________________________________________________________________________
7144 [  3434] By: jhi                                   on 1999/05/17  21:25:54
7145         Log: Integrate from mainperl.
7146      Branch: cfgperl
7147           +> lib/ExtUtils/MM_Cygwin.pm
7148            - cygwin32/impure_ptr.c
7149           !> MANIFEST README.cygwin32 XSUB.h cygwin32/Makefile.SHs
7150           !> cygwin32/perlld.in dosish.h ext/DynaLoader/dl_cygwin32.xs
7151           !> ext/POSIX/POSIX.xs gv.c hints/cygwin32.sh installman
7152           !> installperl perl.h pod/perldiag.pod pp.c pp_hot.c util.c
7153           !> x2p/find2perl.PL
7154 ____________________________________________________________________________
7155 [  3433] By: gsar                                  on 1999/05/17  09:49:01
7156         Log: integrate cfgperl changes into mainline
7157      Branch: perl
7158           !> Configure INSTALL config_h.SH configure.com embed.h
7159           !> ext/Devel/Peek/Peek.xs ext/Socket/Socket.xs global.sym
7160           !> hints/dec_osf.sh objXSUB.h perl.h pod/perldiag.pod proto.h
7161           !> util.c
7162 ____________________________________________________________________________
7163 [  3432] By: gsar                                  on 1999/05/17  09:06:45
7164         Log: emit more appropriate diagnostic for failed glob (variant
7165              of patch suggested by Graham Barr)
7166      Branch: perl
7167            ! gv.c pod/perldiag.pod pp.c pp_hot.c
7168 ____________________________________________________________________________
7169 [  3431] By: gsar                                  on 1999/05/17  08:38:09
7170         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
7171              Date: Thu, 13 May 1999 22:18:43 -0600 (MDT)
7172              Message-Id: <199905140418.WAA18826@xerxes.courtesan.com>
7173              Subject: find2perl does not grok the 'c' suffix to the -size argument
7174      Branch: perl
7175            ! x2p/find2perl.PL
7176 ____________________________________________________________________________
7177 [  3430] By: gsar                                  on 1999/05/17  08:26:21
7178         Log: additional cleanups for cygwin32 port
7179              From: "Fifer, Eric" <EFifer@sanwaint.com>
7180              Date: Wed, 12 May 1999 20:25:54 +0100
7181              Message-ID: <71E287AB0D94D111BBD600600849EC8185EDAF@POST>
7182              Subject: [PATCH]perl5.005_03 (CORE) cygwin32 port
7183      Branch: perl
7184            + lib/ExtUtils/MM_Cygwin.pm
7185            - cygwin32/impure_ptr.c
7186            ! MANIFEST README.cygwin32 XSUB.h cygwin32/Makefile.SHs
7187            ! cygwin32/perlld.in dosish.h ext/DynaLoader/dl_cygwin32.xs
7188            ! ext/POSIX/POSIX.xs hints/cygwin32.sh installman installperl
7189            ! perl.h util.c
7190 ____________________________________________________________________________
7191 [  3429] By: gsar                                  on 1999/05/17  08:01:04
7192         Log: From: Andy Dougherty <doughera@lafayette.edu>
7193              Date: Wed, 12 May 1999 11:44:11 -0400 (EDT)
7194              Message-Id: <Pine.GSU.4.05.9905121136520.25150-100000@newton.phys>
7195              Subject: [PATCH] (Was Re: SunOS4.1 compilation error)
7196      Branch: perl
7197            ! INSTALL
7198 ____________________________________________________________________________
7199 [  3428] By: jhi                                   on 1999/05/17  07:03:26
7200         Log: Integrate from mainperl modulo the Socket.xs change.
7201      Branch: cfgperl
7202           !> ext/Socket/Socket.xs op.c win32/include/sys/socket.h
7203           !> win32/win32.c win32/win32.h
7204 ____________________________________________________________________________
7205 [  3427] By: jhi                                   on 1999/05/16  22:09:11
7206         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7207              To: perl5-porters@perl.org (Mailing list Perl5)
7208              Subject: [PATCH 5.005_56] Devel::Peek::mstat not working
7209              Date: Sun, 16 May 1999 01:28:18 -0400 (EDT)
7210              Message-Id: <199905160528.BAA23376@monk.mps.ohio-state.edu>
7211      Branch: cfgperl
7212            ! ext/Devel/Peek/Peek.xs
7213 ____________________________________________________________________________
7214 [  3426] By: jhi                                   on 1999/05/16  22:07:11
7215         Log: From: Mark-Jason Dominus <mjd@plover.com>
7216              To: perl5-porters@perl.com
7217              Subject: DOC PATCH (5.005_55): Error message missing from perldiag.pod
7218              Date: Sat, 15 May 1999 12:43:47 -0400
7219              Message-ID: <19990515164348.7313.qmail@plover.com>
7220      Branch: cfgperl
7221            ! pod/perldiag.pod
7222 ____________________________________________________________________________
7223 [  3425] By: nick                                  on 1999/05/15  15:56:10
7224         Log: Mingw32 + w32api-0.1.5 tweaks
7225              - now more like other Win32 compilers
7226      Branch: perl
7227            ! ext/Socket/Socket.xs win32/include/sys/socket.h win32/win32.c
7228            ! win32/win32.h
7229 ____________________________________________________________________________
7230 [  3424] By: nick                                  on 1999/05/14  21:04:22
7231         Log: Experimental "slab" allocator for ops.
7232              To try it -DPL_OP_SLAB_ALLOC for op.c 
7233              This is for proof of concept only, it leaks memory 
7234              (ops are not free'd) so don't use in embedded apps.
7235              If this minimalist version does not show performance 
7236              gain then whole idea is worthless. 
7237              Nick see's approx 12% speed up vs perlmalloc running
7238              perl -Ilib -MCPAN -e '' 
7239              Solaris2.6, gcc-2.8.1 but numbers are not repeatable.
7240      Branch: perl
7241            ! op.c
7242 ____________________________________________________________________________
7243 [  3423] By: gsar                                  on 1999/05/14  19:55:04
7244         Log: on win32, look for "site/5.XXX/lib" if "site/5.XXXYY/lib" isn't
7245              found (brings sitelib intuition in line with privlib)
7246      Branch: perl
7247            ! win32/win32.c
7248 ____________________________________________________________________________
7249 [  3422] By: jhi                                   on 1999/05/14  08:08:01
7250         Log: From: pvhp@forte.com (Peter Prymmer)
7251              To: perl5-porters@perl.org, vmsperl@perl.org
7252              Subject: [PATCH: 5.005_56] add config.msg to VMS configure.com
7253              Date: Thu, 13 May 99 15:29:57 PDT
7254              Message-Id: <9905132229.AA15854@forte.com>
7255      Branch: cfgperl
7256            ! configure.com
7257 ____________________________________________________________________________
7258 [  3421] By: jhi                                   on 1999/05/14  07:34:20
7259         Log: Integrate from mainperl.
7260      Branch: cfgperl
7261           !> lib/ExtUtils/MM_Unix.pm win32/win32.c
7262 ____________________________________________________________________________
7263 [  3420] By: jhi                                   on 1999/05/14  07:33:26
7264         Log: Still fflushing.
7265      Branch: cfgperl
7266            ! Configure config_h.SH util.c
7267 ____________________________________________________________________________
7268 [  3419] By: gsar                                  on 1999/05/14  03:08:29
7269         Log: mortalize string allocations by win32_get_{priv,site}lib()
7270              (fixes small memory leak in interpreter)
7271      Branch: perl
7272            ! win32/win32.c
7273 ____________________________________________________________________________
7274 [  3418] By: gsar                                  on 1999/05/14  03:06:50
7275         Log: make win32_longname() preserve kind of slashes in argument
7276      Branch: perl
7277            ! win32/win32.c
7278 ____________________________________________________________________________
7279 [  3417] By: gsar                                  on 1999/05/14  03:04:44
7280         Log: canonicalize path for $(FULLPERL) and $(PERL) in MakeMaker
7281      Branch: perl
7282            ! lib/ExtUtils/MM_Unix.pm
7283 ____________________________________________________________________________
7284 [  3416] By: jhi                                   on 1999/05/13  21:18:06
7285         Log: Integrate from mainperl.
7286      Branch: cfgperl
7287           !> pp_ctl.c
7288 ____________________________________________________________________________
7289 [  3415] By: jhi                                   on 1999/05/13  21:16:49
7290         Log: Fixes from Andy Dougherty (via private email).
7291      Branch: cfgperl
7292            ! Configure config_h.SH
7293 ____________________________________________________________________________
7294 [  3414] By: nick                                  on 1999/05/13  20:04:26
7295         Log: valist vs va_list typo
7296      Branch: perl
7297            ! pp_ctl.c
7298 ____________________________________________________________________________
7299 [  3413] By: jhi                                   on 1999/05/13  15:04:05
7300         Log: From: Andy Dougherty <doughera@lafayette.edu>
7301              To: perlbug@perl.com
7302              Subject: [PATCH] (Was Re: SunOS4.1 compilation error)
7303              Date: Wed, 12 May 1999 11:44:11 -0400 (EDT)
7304              Message-Id: <Pine.GSU.4.05.9905121136520.25150-100000@newton.phys>
7305      Branch: cfgperl
7306            ! INSTALL
7307 ____________________________________________________________________________
7308 [  3412] By: jhi                                   on 1999/05/13  14:20:17
7309         Log: Integrate from mainperl.
7310      Branch: cfgperl
7311           !> pp_ctl.c
7312 ____________________________________________________________________________
7313 [  3411] By: gsar                                  on 1999/05/13  14:16:56
7314         Log: docatch_body() declaration mismatch
7315      Branch: perl
7316            ! pp_ctl.c
7317 ____________________________________________________________________________
7318 [  3410] By: jhi                                   on 1999/05/13  13:51:44
7319         Log: Add HAS_MEMCHR and make memchr into a cpp macro if it already isn't.
7320      Branch: cfgperl
7321            ! Configure config_h.SH perl.h
7322 ____________________________________________________________________________
7323 [  3409] By: jhi                                   on 1999/05/13  13:31:53
7324         Log: Still fflushing strong.
7325      Branch: cfgperl
7326            ! Configure config_h.SH embed.h global.sym objXSUB.h perl.h
7327            ! proto.h util.c
7328 ____________________________________________________________________________
7329 [  3408] By: jhi                                   on 1999/05/12  14:30:23
7330         Log: Integrate from mainperl.
7331      Branch: cfgperl
7332           !> (integrate 30 files)
7333 ____________________________________________________________________________
7334 [  3407] By: jhi                                   on 1999/05/12  12:28:31
7335         Log: Be tidier with fflush(NULL) testing.
7336      Branch: cfgperl
7337            ! Configure config_h.SH
7338 ____________________________________________________________________________
7339 [  3406] By: gsar                                  on 1999/05/12  11:26:03
7340         Log: better range-checking on list slices, with test
7341              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
7342              Date: Sun, 02 May 1999 17:02:53 +0100
7343              Message-Id: <199905021602.RAA13905@crypt.compulink.co.uk>
7344              Subject: Re: List slice of undefs returns 0 items 
7345      Branch: perl
7346            ! pp.c t/op/list.t
7347 ____________________________________________________________________________
7348 [  3405] By: gsar                                  on 1999/05/12  11:22:27
7349         Log: change#3397 needs test tweak
7350      Branch: perl
7351            ! Changes t/pragma/warn/sv
7352 ____________________________________________________________________________
7353 [  3404] By: gsar                                  on 1999/05/12  11:07:44
7354         Log: typo in change#3397
7355      Branch: perl
7356            ! doop.c
7357 ____________________________________________________________________________
7358 [  3403] By: gsar                                  on 1999/05/12  10:49:01
7359         Log: From: Stephen Zander <gibreel@pobox.com>
7360              Date: 12 May 1999 01:22:31 -0700
7361              Message-ID: <87u2tik88o.fsf@pooh.fire-swamp.net>
7362              Subject: Re: Test::Harness runs tainted tests with wrong library path
7363      Branch: perl
7364            ! lib/Test/Harness.pm
7365 ____________________________________________________________________________
7366 [  3402] By: gsar                                  on 1999/05/12  10:42:06
7367         Log: typo in change#3400
7368      Branch: perl
7369            ! ext/B/B/Deparse.pm
7370 ____________________________________________________________________________
7371 [  3401] By: jhi                                   on 1999/05/12  10:40:42
7372         Log: A better, shinier, and possibly even correctly working
7373              reincarnation of #3398.
7374      Branch: cfgperl
7375            ! Configure config_h.SH
7376 ____________________________________________________________________________
7377 [  3400] By: gsar                                  on 1999/05/12  10:40:11
7378         Log: deparse \&func() as \(&func()) for clarity
7379              From: Albert Dvornik <bert@genscan.com>
7380              Date: 11 May 1999 13:32:04 -0400
7381              Message-ID: <tqk8ufwm0b.fsf@puma.genscan.com>
7382              Subject: [PATCH 5.005_56] Deparse and \&func() (was Re: File::Find...)
7383      Branch: perl
7384            ! ext/B/B/Deparse.pm
7385 ____________________________________________________________________________
7386 [  3399] By: gsar                                  on 1999/05/12  10:36:02
7387         Log: more testsuite smarts (many of them courtesy Ilya)
7388      Branch: perl
7389            ! lib/Test/Harness.pm t/comp/cpp.t t/io/pipe.t t/lib/db-btree.t
7390            ! t/lib/db-hash.t t/lib/db-recno.t t/lib/gdbm.t
7391            ! t/lib/io_multihomed.t t/lib/io_pipe.t t/lib/io_sock.t
7392            ! t/lib/io_udp.t t/lib/io_unix.t t/lib/ipc_sysv.t t/lib/ndbm.t
7393            ! t/lib/odbm.t t/lib/thread.t t/op/exec.t t/op/fork.t
7394            ! t/op/grent.t t/op/groups.t t/op/nothread.t t/op/numconvert.t
7395            ! t/op/pwent.t
7396 ____________________________________________________________________________
7397 [  3398] By: jhi                                   on 1999/05/12  09:33:08
7398         Log: Detect whether fflush(NULL) works as per change #3352.
7399      Branch: cfgperl
7400            ! Configure config_h.SH perl.h
7401 ____________________________________________________________________________
7402 [  3397] By: gsar                                  on 1999/05/12  08:56:03
7403         Log: From: jan.dubois@ibm.net (Jan Dubois)
7404              Date: Wed, 12 May 1999 01:01:00 +0200
7405              Message-ID: <3741b5e8.20386944@smtp1.ibm.net>
7406              Subject: [PATCH 5.005_03] chop/chomp modify readonly values
7407      Branch: perl
7408            ! doop.c
7409 ____________________________________________________________________________
7410 [  3396] By: gsar                                  on 1999/05/12  08:23:27
7411         Log: opendir(D,"x:") on win32 opens cwd() for drive rather than root;
7412              stat() behaves similarly
7413      Branch: perl
7414            ! win32/win32.c
7415 ____________________________________________________________________________
7416 [  3395] By: jhi                                   on 1999/05/11  22:21:32
7417         Log: Redo parts of #3341 and #3358 that #3394 undid.
7418      Branch: cfgperl
7419            ! Configure config_h.SH
7420 ____________________________________________________________________________
7421 [  3394] By: jhi                                   on 1999/05/11  22:03:48
7422         Log: Add I_NETINET_TCP to help change #3391.
7423      Branch: cfgperl
7424            ! Configure config_h.SH ext/Socket/Socket.xs
7425 ____________________________________________________________________________
7426 [  3393] By: jhi                                   on 1999/05/11  21:44:59
7427         Log: Integrate from mainperl.
7428      Branch: cfgperl
7429           !> (integrate 55 files)
7430 ____________________________________________________________________________
7431 [  3392] By: gsar                                  on 1999/05/11  20:56:43
7432         Log: update embedvar.h
7433      Branch: perl
7434            ! embedvar.h ext/ByteLoader/ByteLoader.pm pod/perldelta.pod
7435 ____________________________________________________________________________
7436 [  3391] By: gsar                                  on 1999/05/11  16:32:05
7437         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
7438              Date: Tue, 11 May 1999 11:10:13 -0400 (EDT)
7439              Message-ID: <Pine.GSO.4.02.9905111106460.1418-100000@eq1062.wks.na.deuba.com>
7440              Subject: Socket IPPROTO_TCP [PATCH 5.005_5x]
7441      Branch: perl
7442            ! ext/Socket/Socket.pm ext/Socket/Socket.xs
7443 ____________________________________________________________________________
7444 [  3390] By: gsar                                  on 1999/05/11  15:27:40
7445         Log: display more frequent progress messages when STDOUT is a tty
7446      Branch: perl
7447            ! lib/Test/Harness.pm
7448 ____________________________________________________________________________
7449 [  3389] By: gsar                                  on 1999/05/11  14:40:58
7450         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7451              Date: Mon, 10 May 1999 02:07:01 -0400 (EDT)
7452              Message-Id: <199905100607.CAA26045@monk.mps.ohio-state.edu>
7453              Subject: [PATCH 5.005_53] Explanations by Test::Harness
7454      Branch: perl
7455            ! lib/Test/Harness.pm
7456 ____________________________________________________________________________
7457 [  3388] By: gsar                                  on 1999/05/11  14:08:14
7458         Log: avoid creating spurious subroutine stubs on failed subroutine
7459              call and other places of sv_2cv() misuse; fixes problems with
7460              failed subroutine calls "hiding" later attempts to lookup methods
7461              in base classes
7462      Branch: perl
7463            ! gv.c perl.c pod/perlguts.pod pp_hot.c sv.c t/op/method.t
7464 ____________________________________________________________________________
7465 [  3387] By: gsar                                  on 1999/05/11  09:34:13
7466         Log: various fixes for clean build and test on win32; configpm broken,
7467              needed to open myconfig.SH rather than myconfig; sundry adjustments
7468              to bytecode stuff; tweaks to DYNAMIC_ENV_FETCH code to make it
7469              work under win32; getenv_sv() changed to getenv_len() since SVs
7470              aren't visible in the lower echelons; remove bogus exports from
7471              config.sym; PERL_OBJECT-ness for C++ exception support; null out
7472              IoDIRP in filter_del() or sv_free() will attempt to close it
7473      Branch: perl
7474            ! Changes bytecode.pl byterun.c byterun.h configpm embed.h
7475            ! embed.pl ext/B/B/Asmdata.pm ext/ByteLoader/ByteLoader.xs
7476            ! ext/DynaLoader/dlutils.c global.sym hv.c iperlsys.h objXSUB.h
7477            ! op.c perl.c perl.h pp.c pp_ctl.c proto.h scope.c scope.h
7478            ! t/io/open.t t/op/magic.t toke.c util.c vms/vms.c vms/vmsish.h
7479            ! win32/GenCAPI.pl win32/Makefile win32/config.bc
7480            ! win32/config.gc win32/config.vc win32/makedef.pl
7481            ! win32/makefile.mk win32/perlhost.h win32/runperl.c
7482            ! win32/win32.c win32/win32.h
7483 ____________________________________________________________________________
7484 [  3386] By: gsar                                  on 1999/05/11  02:49:07
7485         Log: gutsupport for C++ exceptions
7486              From: Chip Salzenberg <chip@perlsupport.com>
7487              Date: Tue, 9 Mar 1999 11:51:57 -0500
7488              Message-ID: <19990309115157.E7911@perlsupport.com>
7489              Subject: [PATCH 5.005] Flexible Exceptions
7490      Branch: perl
7491            ! embed.h global.sym objXSUB.h perl.c perl.h pp_ctl.c proto.h
7492            ! scope.c scope.h thrdvar.h util.c
7493 ____________________________________________________________________________
7494 [  3385] By: gsar                                  on 1999/05/10  19:33:36
7495         Log: "weak" references internals, still needs perlguts documentation
7496              (somewhat modified version of patch suggested by Tuomas J. Lukka
7497              <lukka@fas.harvard.edu>)
7498      Branch: perl
7499            ! dump.c embed.h embed.pl global.sym mg.c objXSUB.h perl.h
7500            ! pod/perldiag.pod proto.h sv.c sv.h util.c
7501 ____________________________________________________________________________
7502 [  3384] By: jhi                                   on 1999/05/10  18:21:43
7503         Log: Circumnavigate Digital UNIX 4.0D miniperl core dump
7504              (due to QAR 56761) (the bug has been fixed in 4.0E or better)
7505      Branch: cfgperl
7506            ! INSTALL hints/dec_osf.sh
7507 ____________________________________________________________________________
7508 [  3381] By: jhi                                   on 1999/05/10  14:39:28
7509         Log: Integrate from mainperl.
7510      Branch: cfgperl
7511           +> cygwin32/Makefile.SHs cygwin32/build-instructions.READFIRST
7512           +> cygwin32/build-instructions.charles-wilson
7513           +> cygwin32/build-instructions.sebastien-barre
7514           +> cygwin32/build-instructions.steven-morlock
7515           +> cygwin32/build-instructions.steven-morlock2
7516           +> cygwin32/impure_ptr.c cygwin32/ld2.in cygwin32/perlld.in
7517           +> ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
7518           +> ext/ByteLoader/Makefile.PL pod/Win32.pod t/lib/io_linenum.t
7519           +> t/op/numconvert.t utils/perlbc.PL
7520            - cygwin32/cw32imp.h cygwin32/gcc2 cygwin32/ld2 cygwin32/perlgcc
7521            - cygwin32/perlld
7522           !> (integrate 105 files)
7523 ____________________________________________________________________________
7524 [  3380] By: gsar                                  on 1999/05/10  12:27:14
7525         Log: regen regnodes.h
7526      Branch: perl
7527            ! Changes regnodes.h
7528 ____________________________________________________________________________
7529 [  3379] By: gsar                                  on 1999/05/10  12:17:26
7530         Log: From: jan.dubois@ibm.net (Jan Dubois)
7531              Date: Sat, 01 May 1999 22:55:36 +0200
7532              Message-ID: <373067e9.56194713@smtp1.ibm.net>
7533              Subject: [PATCH 5.005_56] Win32 and VC++ 98 doesn't support CASTI
7534      Branch: perl
7535            ! pod/perlfunc.pod pod/perlop.pod win32/config.vc
7536            ! win32/config_H.vc
7537 ____________________________________________________________________________
7538 [  3378] By: gsar                                  on 1999/05/10  12:07:13
7539         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7540              Date: Fri, 30 Apr 1999 22:26:09 -0400 (EDT)
7541              Message-Id: <199905010226.WAA19127@monk.mps.ohio-state.edu>
7542              Subject: [PATCH 5.005_56] Self-consistent numeric conversion again
7543      Branch: perl
7544            + t/op/numconvert.t
7545            ! MANIFEST doio.c dump.c perl.h pp.c pp_hot.c sv.c sv.h toke.c
7546            ! util.c
7547 ____________________________________________________________________________
7548 [  3377] By: gsar                                  on 1999/05/10  11:39:48
7549         Log: pp_modulo comment tweak from Ilya
7550      Branch: perl
7551            ! pp.c
7552 ____________________________________________________________________________
7553 [  3376] By: gsar                                  on 1999/05/10  11:30:40
7554         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
7555              Date: Fri, 7 May 1999 11:31:00 -0400 (EDT)
7556              Message-ID: <Pine.GSO.4.02.9905071127100.1449-100000@eq1062.wks.na.deuba.com>
7557              Subject: Test.pm update [PATCH _56]
7558      Branch: perl
7559            ! lib/Test.pm
7560 ____________________________________________________________________________
7561 [  3375] By: gsar                                  on 1999/05/10  11:28:30
7562         Log: From: jan.dubois@ibm.net (Jan Dubois)
7563              Date: Fri, 07 May 1999 00:59:54 +0200
7564              Message-ID: <373318ae.19292461@smtp1.ibm.net>
7565              Subject: Re: Using existing memory for an SV's PV 
7566      Branch: perl
7567            ! sv.c
7568 ____________________________________________________________________________
7569 [  3374] By: gsar                                  on 1999/05/10  11:23:44
7570         Log: From: jan.dubois@ibm.net (Jan Dubois)
7571              Date: Fri, 07 May 1999 00:59:52 +0200
7572              Message-ID: <37321800.19118320@smtp1.ibm.net>
7573              Subject: [PATCH 5.005_56] Fix -Dm memory debugging for PERL_OBJECT
7574      Branch: perl
7575            ! perl.h
7576 ____________________________________________________________________________
7577 [  3373] By: gsar                                  on 1999/05/10  11:22:10
7578         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7579              Date: Thu, 6 May 1999 18:17:28 -0400
7580              Message-ID: <19990506181728.A12433@monk.mps.ohio-state.edu>
7581              Subject: Re: [PATCH 5.005_56] Make open(F,"command |") return correct err(no)
7582      Branch: perl
7583            ! doio.c embed.h global.sym objXSUB.h pod/perldiag.pod proto.h
7584            ! util.c
7585 ____________________________________________________________________________
7586 [  3372] By: gsar                                  on 1999/05/10  10:57:49
7587         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7588              Date: Thu, 6 May 1999 01:21:05 -0400 (EDT)
7589              Message-Id: <199905060521.BAA03485@monk.mps.ohio-state.edu>
7590              Subject: [PATCH 5.005_56] Cosmetic: data-driven REx-dump
7591      Branch: perl
7592            ! regcomp.c regcomp.pl
7593 ____________________________________________________________________________
7594 [  3371] By: gsar                                  on 1999/05/10  10:54:01
7595         Log: From: lane@duphy4.physics.drexel.edu
7596              Date: Tue, 04 May 1999 10:19:25 -0700
7597              Message-Id: <3.0.6.32.19990504101925.02ecde30@ous.edu>
7598              Subject: [PATCH 5.005.56] pod->html VMS fixes
7599      Branch: perl
7600            ! installhtml lib/Pod/Html.pm
7601 ____________________________________________________________________________
7602 [  3370] By: gsar                                  on 1999/05/10  10:45:52
7603         Log: testsuite nits
7604      Branch: perl
7605            ! t/lib/io_linenum.t t/op/filetest.t
7606 ____________________________________________________________________________
7607 [  3369] By: gsar                                  on 1999/05/10  10:35:22
7608         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7609              Date: Mon, 3 May 1999 22:38:50 -0400 (EDT)
7610              Message-Id: <199905040238.WAA01865@monk.mps.ohio-state.edu>
7611              Subject: [PATCH 5.005_53] Quickier thread-specific data on OS/2
7612      Branch: perl
7613            ! os2/os2ish.h os2/os2thread.h
7614 ____________________________________________________________________________
7615 [  3368] By: gsar                                  on 1999/05/10  10:00:11
7616         Log: From: Albert Dvornik <bert@genscan.com>
7617              Date: 03 May 1999 12:20:57 -0400
7618              Message-ID: <tqlnf6gm52.fsf@puma.genscan.com>
7619              Subject: [PATCH 5.005_56] do_sv_dump does dump (core) on IO handles
7620      Branch: perl
7621            ! dump.c
7622 ____________________________________________________________________________
7623 [  3367] By: gsar                                  on 1999/05/10  09:55:51
7624         Log: shadow password support for Solaris (needs Configure help to
7625              determine HAS_GETSPENT)
7626              From: "Patrick O'Brien" <pdo@cs.umd.edu>
7627              Date: Sat, 01 May 1999 19:41:17 -0400
7628              Message-Id: <199905012341.TAA23989@optimus.cs.umd.edu>
7629              Subject: getpwent() under solaris
7630      Branch: perl
7631            ! pp_sys.c
7632 ____________________________________________________________________________
7633 [  3366] By: gsar                                  on 1999/05/10  09:45:58
7634         Log: From: jan.dubois@ibm.net (Jan Dubois)
7635              Date: Sat, 01 May 1999 23:45:47 +0200
7636              Message-ID: <373373fb.59284266@smtp1.ibm.net>
7637              Subject: [PATCH 5.005_56] Add POLLUTE=1 option to MakeMaker
7638      Branch: perl
7639            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
7640            ! pod/perldelta.pod
7641 ____________________________________________________________________________
7642 [  3365] By: gsar                                  on 1999/05/10  09:34:22
7643         Log: test suite and fix input_line_number()
7644              From: Paul Johnson <pjcj@transeda.com>
7645              Date: Thu, 29 Apr 1999 06:28:14 +0100
7646              Message-ID: <19990429062814.A17906@west-tip.transeda.com>
7647              Subject: [PATCH] IO::Handle 1.20 (was Re: FAIL Gedcom-1.01 i86pc-solaris 2.6)
7648      Branch: perl
7649            + t/lib/io_linenum.t
7650            ! MANIFEST ext/IO/lib/IO/Handle.pm
7651 ____________________________________________________________________________
7652 [  3364] By: gsar                                  on 1999/05/10  09:20:56
7653         Log: fix overeager [:foo:] parsing
7654              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
7655              Date: Fri, 30 Apr 1999 09:26:18 +0100
7656              Message-Id: <199904300826.JAA01257@crypt.compulink.co.uk>
7657              Subject: [PATCH 5.005_{56,03}] Re: Regular expression difference b/n 5.004 & 5.005 
7658      Branch: perl
7659            ! regcomp.c t/op/re_tests
7660 ____________________________________________________________________________
7661 [  3363] By: gsar                                  on 1999/05/10  09:09:21
7662         Log: documentation for Win32 builtins (somewhat modified)
7663              From: jan.dubois@ibm.net (Jan Dubois)
7664              Date: Tue, 30 Mar 1999 08:05:03 +0200
7665              Message-ID: <37006783.1926460@smtp1.ibm.net>
7666              Subject: Re: Issues with build 509 
7667      Branch: perl
7668            + pod/Win32.pod
7669            ! MANIFEST
7670 ____________________________________________________________________________
7671 [  3362] By: gsar                                  on 1999/05/10  08:22:07
7672         Log: provide File::Copy::syscopy() via Win32::CopyFile() on win32
7673      Branch: perl
7674            ! lib/File/Copy.pm win32/win32.c
7675 ____________________________________________________________________________
7676 [  3361] By: gsar                                  on 1999/05/10  08:11:29
7677         Log: escape ampersands in <pre> sections
7678      Branch: perl
7679            ! Changes lib/Pod/Html.pm
7680 ____________________________________________________________________________
7681 [  3360] By: gsar                                  on 1999/05/10  08:04:14
7682         Log: AIX hints enhancements (threads build, SOCKS support)
7683              From: "David R. Favor" <dfavor@austin.ibm.com>
7684              Date: Wed, 28 Apr 1999 08:45:28 -0500
7685              Message-ID: <372710F8.B1F73BEB@austin.ibm.com>
7686              Subject: Working build for AIX + gcc + threading
7687      Branch: perl
7688            ! hints/aix.sh
7689 ____________________________________________________________________________
7690 [  3359] By: gsar                                  on 1999/05/10  07:49:26
7691         Log: more Compiler patches from Vishal Bhatia <vishalb@my-dejanews.com>
7692              Date: Tue, 27 Apr 1999 23:47:24 PDT
7693              Message-ID: <19990428064724.95244.qmail@hotmail.com>
7694              Subject: [PATCH 5.005_56] Saving Tied hashes ( C.pm)
7695              --
7696              Date: Thu, 29 Apr 1999 18:21:06 -0700
7697              Message-ID: <GEFPBFDJADFJBAAA@my-dejanews.com>
7698              Subject: [PATCH 5.005_56] double constants ( C.pm)
7699              --
7700              Date: Mon, 03 May 1999 20:21:31 PDT
7701              Message-ID: <19990504032131.81113.qmail@hotmail.com>
7702              Subject: [PATCH 5.005_56] Overloading implementation ( Compiler)
7703              --
7704              Date: Thu, 06 May 1999 17:57:09 -0700
7705              Message-ID: <FCJELBLAJBOBAAAA@my-dejanews.com>
7706              Subject: Stash.pm
7707      Branch: perl
7708            ! ext/B/B.pm ext/B/B.xs ext/B/B/Bblock.pm ext/B/B/C.pm
7709            ! ext/B/B/CC.pm ext/B/B/Stash.pm t/harness
7710 ____________________________________________________________________________
7711 [  3358] By: gsar                                  on 1999/05/10  04:39:15
7712         Log: cygwin32 update (untested adaptation of patch against 5.005_03)
7713              From: alexander smishlajev <als@turnhere.com>
7714              Date: Sun, 25 Apr 1999 14:58:29 +0300
7715              Message-ID: <37230365.5F68B460@turnhere.com>
7716              Subject: [PATCH]5.005_03 (CORE) cygwin32 port
7717      Branch: perl
7718            + cygwin32/Makefile.SHs cygwin32/build-instructions.READFIRST
7719            + cygwin32/build-instructions.charles-wilson
7720            + cygwin32/build-instructions.sebastien-barre
7721            + cygwin32/build-instructions.steven-morlock
7722            + cygwin32/build-instructions.steven-morlock2
7723            + cygwin32/impure_ptr.c cygwin32/ld2.in cygwin32/perlld.in
7724            - cygwin32/cw32imp.h cygwin32/gcc2 cygwin32/ld2 cygwin32/perlgcc
7725            - cygwin32/perlld
7726            ! Configure EXTERN.h MANIFEST Makefile.SH README.cygwin32 XSUB.h
7727            ! cflags.SH config_h.SH dosish.h ext/POSIX/Makefile.PL
7728            ! ext/SDBM_File/sdbm/pair.c hints/cygwin32.sh installperl
7729            ! lib/Cwd.pm lib/ExtUtils/MakeMaker.pm lib/perl5db.pl
7730            ! makedepend.SH perl.h perlvars.h pp_hot.c pp_sys.c regcomp.c
7731            ! t/io/fs.t t/io/tell.t t/lib/anydbm.t t/op/stat.t util.c
7732 ____________________________________________________________________________
7733 [  3357] By: gsar                                  on 1999/05/10  04:07:07
7734         Log: applied suggested patch, modulo already applied parts
7735              From: Charles Bailey <BAILEY@newman.upenn.edu>
7736              Date: Sat, 24 Apr 1999 20:12:43 -0400 (EDT)
7737              Message-id: <01JAF9UAV9XG002O0W@mail.newman.upenn.edu>
7738              Subject: [Patch 5.005_56] VMS consolidated patch #2
7739      Branch: perl
7740            ! configure.com t/op/filetest.t t/op/taint.t t/pragma/warn/doio
7741            ! t/pragma/warn/mg t/pragma/warn/pp_sys t/pragma/warn/sv
7742            ! vms/descrip_mms.template vms/ext/vmsish.t vms/perlvms.pod
7743            ! vms/subconfigure.com vms/test.com vms/vms.c
7744 ____________________________________________________________________________
7745 [  3356] By: gsar                                  on 1999/05/10  03:48:08
7746         Log: applied suggested patch, with win32 and PERL_OBJECT additions
7747              From: Tom Hughes <tom@compton.nu>
7748              Date: Sat, 24 Apr 1999 18:11:59 +0100
7749              Message-ID: <609bdff748.tom@compton.compton.nu>
7750              Subject: ByteLoader patch
7751      Branch: perl
7752            + ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
7753            + ext/ByteLoader/Makefile.PL utils/perlbc.PL
7754            ! MANIFEST bytecode.h bytecode.pl byterun.c byterun.h embed.h
7755            ! embed.pl ext/B/B.xs ext/B/B/Asmdata.pm ext/B/B/Bytecode.pm
7756            ! ext/B/B/Debug.pm objXSUB.h op.c pp_ctl.c proto.h
7757            ! utils/Makefile win32/Makefile win32/makefile.mk
7758 ____________________________________________________________________________
7759 [  3355] By: gsar                                  on 1999/05/10  03:22:49
7760         Log: document 'test' attribute (from Andreas Koenig)
7761      Branch: perl
7762            ! lib/ExtUtils/MakeMaker.pm
7763 ____________________________________________________________________________
7764 [  3354] By: gsar                                  on 1999/05/10  03:12:37
7765         Log: From: pmarquess@bfsec.bt.co.uk
7766              Date: Thu, 22 Apr 1999 23:12:08 +0100
7767              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6B45@mbtlipnt02.btlabs.bt.co.uk>
7768              Subject: PATCH for small bug in scan_bin
7769      Branch: perl
7770            ! util.c
7771 ____________________________________________________________________________
7772 [  3353] By: gsar                                  on 1999/05/10  02:39:33
7773         Log: more bulletproof workaround for mangled paths (updates changes#3345,3350);
7774              provide Win32::GetLongPathName() to complement Win32::GetShortPathName()
7775      Branch: perl
7776            ! t/op/magic.t win32/makedef.pl win32/runperl.c win32/win32.c
7777            ! win32/win32iop.h
7778 ____________________________________________________________________________
7779 [  3352] By: gsar                                  on 1999/05/09  22:47:39
7780         Log: flush all open output buffers before fork(), exec(), system, qx//
7781              and pipe open() operations, simplifying buffering headaches faced
7782              by users; uses fflush(NULL), which may need Configure test
7783      Branch: perl
7784            ! perl.h pod/perldelta.pod pod/perlfunc.pod pod/perlipc.pod
7785            ! pp_sys.c util.c vmesa/vmesa.c vms/vms.c win32/win32.c
7786 ____________________________________________________________________________
7787 [  3351] By: gsar                                  on 1999/05/09  21:11:51
7788         Log: perlcc on win32 (correct version of fix suggested by Jean-Louis
7789              Leroy <jll@skynet.be>)
7790      Branch: perl
7791            ! utils/perlcc.PL
7792 ____________________________________________________________________________
7793 [  3350] By: gsar                                  on 1999/05/09  20:39:11
7794         Log: normalize $^X to full pathname on win32
7795      Branch: perl
7796            ! win32/runperl.c
7797 ____________________________________________________________________________
7798 [  3349] By: gsar                                  on 1999/05/09  20:23:07
7799         Log: allow readline($globref), <$globref> already works
7800      Branch: perl
7801            ! pp_hot.c
7802 ____________________________________________________________________________
7803 [  3348] By: gsar                                  on 1999/05/09  20:00:09
7804         Log: perldoc cleanups (variant of changes suggested by Christian Lemburg
7805              <lemburg@online-club.de>)
7806      Branch: perl
7807            ! utils/perldoc.PL
7808 ____________________________________________________________________________
7809 [  3347] By: gsar                                  on 1999/05/09  18:47:21
7810         Log: additions to Thread.pm docs from Tuomas J. Lukka
7811              <lukka@fas.harvard.edu>
7812      Branch: perl
7813            ! ext/Thread/Thread.pm
7814 ____________________________________________________________________________
7815 [  3346] By: gsar                                  on 1999/05/09  18:38:00
7816         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
7817              Date: Sat, 17 Apr 1999 02:46:13 -0700 (PDT)
7818              Message-ID: <14103.57454.614253.598264@fre-76-120.reshall.berkeley.edu>
7819              Subject: [PATCH _56] Re: pdt: Perl Development Tools? 
7820      Branch: perl
7821            ! ext/B/B/Xref.pm
7822 ____________________________________________________________________________
7823 [  3345] By: gsar                                  on 1999/05/09  18:22:43
7824         Log: work around mangled archname on win32 while finding privlib/sitelib;
7825              normalize lib paths to forward slashes internally
7826      Branch: perl
7827            ! win32/win32.c
7828 ____________________________________________________________________________
7829 [  3344] By: gsar                                  on 1999/05/09  03:20:06
7830         Log: fix typo in dbm filters that caused odbm.t to fail
7831      Branch: perl
7832            ! ext/ODBM_File/ODBM_File.xs t/lib/odbm.t
7833 ____________________________________________________________________________
7834 [  3343] By: gsar                                  on 1999/05/09  02:02:59
7835         Log: tweak test totals
7836      Branch: perl
7837            ! Changes t/lib/tie-stdhandle.t
7838 ____________________________________________________________________________
7839 [  3342] By: gsar                                  on 1999/05/09  01:42:06
7840         Log: import list propagation busted (pointed out by Ton Hospel
7841              <thospel@mail.dma.be>)
7842      Branch: perl
7843            ! lib/autouse.pm
7844 ____________________________________________________________________________
7845 [  3341] By: gsar                                  on 1999/05/09  00:54:18
7846         Log: hpux needs {SHLIB_PATH,LDOPTS} rather than LD_{LIBRARY,RUN}_PATH
7847              (as suggested by Eric Boehm <boehm@nortelnetworks.com>)
7848      Branch: perl
7849            ! Configure Makefile.SH
7850 ____________________________________________________________________________
7851 [  3340] By: gsar                                  on 1999/05/09  00:40:41
7852         Log: generate manpages for newly added utils
7853      Branch: perl
7854            ! installman
7855 ____________________________________________________________________________
7856 [  3339] By: gsar                                  on 1999/05/09  00:33:50
7857         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
7858              Date: Sun, 02 May 1999 17:59:24 +0100
7859              Message-Id: <199905021659.RAA14016@crypt.compulink.co.uk>
7860              Subject: [PATCH] Re: ptr to realloced memory in yylex
7861      Branch: perl
7862            ! toke.c
7863 ____________________________________________________________________________
7864 [  3338] By: jhi                                   on 1999/05/08  22:40:29
7865         Log: Remove CONFIG item, add Digital UNIX 'ld' bug.
7866      Branch: cfgperl
7867            ! INSTALL
7868 ____________________________________________________________________________
7869 [  3337] By: jhi                                   on 1999/05/08  22:22:26
7870         Log: Integrate from mainperl.
7871      Branch: cfgperl
7872           +> pod/perldbmfilter.pod t/io/open.t t/lib/tie-stdhandle.t
7873           !> (integrate 54 files)
7874 ____________________________________________________________________________
7875 [  3336] By: gsar                                  on 1999/05/08  21:48:22
7876         Log: make perldoc -f grok nested =items
7877      Branch: perl
7878            ! utils/perldoc.PL
7879 ____________________________________________________________________________
7880 [  3335] By: gsar                                  on 1999/05/08  19:48:11
7881         Log: allow AV/HV dereferences on pseudohashes ($ph->{foo}[1], etc.)
7882      Branch: perl
7883            ! op.c t/lib/fields.t
7884 ____________________________________________________________________________
7885 [  3334] By: gsar                                  on 1999/05/08  19:09:41
7886         Log: update test totals
7887      Branch: perl
7888            ! t/lib/bigintpm.t
7889 ____________________________________________________________________________
7890 [  3333] By: gsar                                  on 1999/05/08  16:56:02
7891         Log: mention unpack('pP',...) footshot (from Albert Dvornik <bert@genscan.com>)
7892      Branch: perl
7893            ! pod/perlfunc.pod
7894 ____________________________________________________________________________
7895 [  3332] By: gsar                                  on 1999/05/08  16:46:44
7896         Log: applied suggested patch, added tests
7897              From: William Mann <wmann@avici.com>
7898              Date: Mon, 12 Apr 1999 12:25:22 -0400 (EDT)
7899              Message-Id: <199904121625.MAA00983@hwsrv1.avici.com>
7900              Subject: BigInt.pm extensions for logical operations
7901      Branch: perl
7902            ! lib/Math/BigInt.pm pod/perldelta.pod t/lib/bigintpm.t
7903 ____________________________________________________________________________
7904 [  3331] By: gsar                                  on 1999/05/08  16:09:33
7905         Log: avoid temporary files named 'tmp'
7906      Branch: perl
7907            ! Makefile.SH pp.c
7908 ____________________________________________________________________________
7909 [  3330] By: nick                                  on 1999/05/08  14:16:30
7910         Log: Implement OPEN, EOF, SEEK, TELL, BINMODE and FILENO as TIEHANDLE methods.
7911              Provide Tie::StdHandle
7912              Basic update of docs.
7913      Branch: perl
7914            + t/lib/tie-stdhandle.t
7915            ! lib/Tie/Handle.pm pod/perltie.pod pp_sys.c
7916 ____________________________________________________________________________
7917 [  3329] By: nick                                  on 1999/05/08  12:03:45
7918         Log: Tweaks to open(my $fh,...) stuff
7919      Branch: perl
7920            ! op.c pp.c pp_sys.c t/io/open.t
7921 ____________________________________________________________________________
7922 [  3328] By: nick                                  on 1999/05/08  11:18:42
7923         Log: Bring SDBM_File.xs into line with new typemap
7924      Branch: perl
7925            ! ext/SDBM_File/SDBM_File.xs
7926 ____________________________________________________________________________
7927 [  3327] By: gsar                                  on 1999/05/08  00:07:11
7928         Log: add test case for AUTOLOAD reentrancy fix in change#3279
7929      Branch: perl
7930            ! t/lib/autoloader.t
7931 ____________________________________________________________________________
7932 [  3326] By: nick                                  on 1999/05/07  21:24:50
7933         Log: Implement open( my $fh, ...) and similar.
7934              Set flag in op.c for "constructor ops"
7935              In pp_rv2gv, if flag is set and arg is PADSV and uninit
7936              vivify as reference to a detached GV.
7937              (Name of GV is the pad name.)
7938              This scheme should "just work" for pipe/socket etc. too.
7939              
7940              #if 0 out the open(FH,undef) for now.
7941              Change t/io/open.t to test open(my $fh,...)
7942      Branch: perl
7943            ! op.c pp.c pp_sys.c t/io/open.t
7944 ____________________________________________________________________________
7945 [  3325] By: nick                                  on 1999/05/07  21:18:42
7946         Log: Correct SvLEN vs SvCUR  which leads to odd "chunk" vs "line" in mess().
7947      Branch: perl
7948            ! util.c
7949 ____________________________________________________________________________
7950 [  3324] By: gsar                                  on 1999/05/07  20:28:31
7951         Log: avoid using PL_sv_mutex in condpair_magic() (avoids hangs when
7952              intervening code has to allocate SVs)
7953      Branch: perl
7954            ! util.c
7955 ____________________________________________________________________________
7956 [  3323] By: gsar                                  on 1999/05/07  19:45:08
7957         Log: allow line numbers to show in diagnostics during global destruction
7958      Branch: perl
7959            ! util.c
7960 ____________________________________________________________________________
7961 [  3322] By: gsar                                  on 1999/05/07  09:38:11
7962         Log: From: Dan Sugalski <sugalskd@ous.edu>
7963              Date: Fri, 09 Apr 1999 16:16:39 -0700
7964              Message-Id: <3.0.6.32.19990409161639.02ea1050@ous.edu>
7965              Subject: [PATCH 5.005_03]Bug in MM_VMS.PM
7966      Branch: perl
7967            ! lib/ExtUtils/MM_VMS.pm
7968 ____________________________________________________________________________
7969 [  3321] By: gsar                                  on 1999/05/07  09:08:23
7970         Log: From: kwzh@gnu.org (Karl Heuer)
7971              Date: Wed, 7 Apr 1999 23:58:58 -0400
7972              Message-Id: <199904080358.XAA01192@mescaline.gnu.org>
7973              Subject: [perl-5.005.02] detect lack of /dev/tty
7974      Branch: perl
7975            ! Makefile.SH
7976 ____________________________________________________________________________
7977 [  3320] By: gsar                                  on 1999/05/07  08:52:14
7978         Log: allow distinct prefix for versioned executables
7979              From: Roderick Schertler <roderick@argon.org>
7980              Date: Wed, 07 Apr 1999 15:34:56 -0400
7981              Message-ID: <3003.923513696@eeyore.ibcinc.com>
7982              Subject: perl55.00503 -> perl5.00503 patch for installperl
7983      Branch: perl
7984            ! INSTALL installperl
7985 ____________________________________________________________________________
7986 [  3319] By: gsar                                  on 1999/05/07  08:07:02
7987         Log: From: Dan Sugalski <sugalskd@osshe.edu>
7988              Date: Mon, 05 Apr 1999 15:38:42 -0700
7989              Message-Id: <3.0.6.32.19990405153842.0367b650@ous.edu>
7990              Subject: Re: chomp fails with $/ in fixed-length record mode
7991              --
7992              From: Roderick Schertler <roderick@argon.org>
7993              Date: Tue, 06 Apr 1999 21:11:37 -0400
7994              Message-ID: <2795.923447497@eeyore.ibcinc.com>
7995              Subject: Re: chomp fails with $/ in fixed-length record mode
7996      Branch: perl
7997            ! doop.c pod/perlfunc.pod t/op/chop.t
7998 ____________________________________________________________________________
7999 [  3318] By: gsar                                  on 1999/05/07  07:56:35
8000         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8001              Date: Tue, 6 Apr 1999 01:40:36 -0400
8002              Message-ID: <19990406014035.A1238@monk.mps.ohio-state.edu>
8003              Subject: [PATCH 5.005_*] Make % use fmod()
8004      Branch: perl
8005            ! pp.c t/op/arith.t
8006 ____________________________________________________________________________
8007 [  3317] By: gsar                                  on 1999/05/07  04:18:11
8008         Log: DBM Filters (via private mail)
8009              From: pmarquess@bfsec.bt.co.uk
8010              Date: Sun, 18 Apr 1999 21:05:52 +0100
8011              Message-Id: <199904182009.NAA19152@activestate.com>
8012              Subject: DBM Filters
8013      Branch: perl
8014            + pod/perldbmfilter.pod
8015            ! MANIFEST ext/DB_File/Changes ext/DB_File/DB_File.pm
8016            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
8017            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
8018            ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.pm
8019            ! ext/NDBM_File/NDBM_File.xs ext/NDBM_File/typemap
8020            ! ext/ODBM_File/ODBM_File.pm ext/ODBM_File/ODBM_File.xs
8021            ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.pm
8022            ! ext/SDBM_File/SDBM_File.xs ext/SDBM_File/typemap
8023            ! lib/AnyDBM_File.pm pod/Makefile pod/buildtoc pod/perl.pod
8024            ! pod/perldelta.pod t/lib/db-btree.t t/lib/db-hash.t
8025            ! t/lib/db-recno.t t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
8026            ! t/lib/sdbm.t
8027 ____________________________________________________________________________
8028 [  3316] By: gsar                                  on 1999/05/07  03:28:53
8029         Log: avoid negative return value from Win32::GetTickCount()
8030              From: jan.dubois@ibm.net (Jan Dubois)
8031              Date: Sat, 03 Apr 1999 19:04:18 +0200
8032              Message-ID: <37084742.22824479@smtp1.ibm.net>
8033              Subject: Re: Win32::GetTickCount
8034      Branch: perl
8035            ! win32/win32.c
8036 ____________________________________________________________________________
8037 [  3314] By: gsar                                  on 1999/05/06  08:01:23
8038         Log: compiler fixes from Vishal Bhatia <vishalb@hotmail.com>
8039              Date: Tue, 30 Mar 1999 23:40:34 PST
8040              Message-ID: <19990331074034.6117.qmail@hotmail.com>
8041              Subject: [PATCH 5.005_56] pp_entersub and pp_leavewrite(CC.pm)
8042              --
8043              Date: Wed, 07 Apr 1999 00:28:23 -0800
8044              Message-ID: <FGBNLNPOEELFAAAA@my-dejanews.com>
8045              Subject: [PATCH 5.005_56] function prototypes(B.pm)
8046              --
8047              Date: Thu, 22 Apr 1999 23:40:52 -0700
8048              Message-ID: <OEAOMKBMLDADCAAA@my-dejanews.com>
8049              Subject: [PATCH 5.005_56 ] discarding worthless padsvs
8050              --
8051              Date: Tue, 27 Apr 1999 01:14:49 PDT
8052              Message-ID: <19990427081449.28615.qmail@hotmail.com>
8053              Subject: [PATCH 5.005_56] pp_ncmp implementation ( CC.pm)
8054      Branch: perl
8055            ! ext/B/B.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm t/op/gv.t
8056            ! t/op/ref.t
8057 ____________________________________________________________________________
8058 [  3313] By: jhi                                   on 1999/05/06  07:59:52
8059         Log: Integrate from mainperl.
8060      Branch: cfgperl
8061           !> (integrate 33 files)
8062 ____________________________________________________________________________
8063 [  3312] By: gsar                                  on 1999/05/06  07:11:50
8064         Log: add Ethiopic section to unicode master database (from Ken
8065              Whistler <kenw@sybase.com>)
8066      Branch: perl
8067            ! lib/unicode/UnicodeData-Latest.txt
8068 ____________________________________________________________________________
8069 [  3311] By: gsar                                  on 1999/05/06  05:37:55
8070         Log: From: Damon Atkins <n107844@sysmgtdev.nabaus.com.au>
8071              Date: Tue, 30 Mar 1999 11:26:11 +1000 (EST)
8072              Message-Id: <199903300126.LAA20870@sysmgtdev.nabaus.com.au>
8073              Subject: Largefiles for Solaris
8074      Branch: perl
8075            ! hints/solaris_2.sh
8076 ____________________________________________________________________________
8077 [  3310] By: gsar                                  on 1999/05/06  05:14:35
8078         Log: emit more accurate diagnostic for syntax errors involving <>
8079              within eval""
8080      Branch: perl
8081            ! toke.c utils/perldoc.PL
8082 ____________________________________________________________________________
8083 [  3309] By: gsar                                  on 1999/05/06  04:36:31
8084         Log: additional test for IPC::Open3 (courtesy RonaldWS@aol.com)
8085      Branch: perl
8086            ! t/lib/open3.t
8087 ____________________________________________________________________________
8088 [  3308] By: gsar                                  on 1999/05/06  03:19:16
8089         Log: applied first part of suggested patch (bug described cannot be
8090              reproduced any longer, so the second inconclusive part has not
8091              been applied)
8092              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
8093              Date: Sun, 28 Mar 1999 04:51:34 +0100
8094              Message-Id: <199903280351.EAA20430@crypt.compulink.co.uk>
8095              Subject: [PATCH 5.005_56] Re: A core dump 
8096      Branch: perl
8097            ! toke.c
8098 ____________________________________________________________________________
8099 [  3307] By: gsar                                  on 1999/05/06  01:56:06
8100         Log: fix bogus OPf_REF context in C<sort BLOCK @foo> (extension of
8101              change#3180)
8102      Branch: perl
8103            ! op.c
8104 ____________________________________________________________________________
8105 [  3306] By: gsar                                  on 1999/05/05  17:17:34
8106         Log: applied non-conflicting parts of suggested patch
8107              From: Charles Bailey <BAILEY@newman.upenn.edu>
8108              Date: Sat, 27 Mar 1999 00:16:51 -0400 (EDT)
8109              Message-id: <01J9AZY8I2PW001O2S@mail.newman.upenn.edu>
8110              Subject: [Patch 5.005_56] Revised VMS patch
8111      Branch: perl
8112            ! Changes ext/B/defsubs.h.PL hv.c iperlsys.h perl.c
8113            ! pod/perldiag.pod proto.h util.c vms/perlvms.pod vms/vms.c
8114 ____________________________________________________________________________
8115 [  3305] By: gsar                                  on 1999/05/05  16:20:19
8116         Log: make perldoc use backslashed pathnames within system() on win32
8117      Branch: perl
8118            ! pod/perldiag.pod pod/perlthrtut.pod utils/perldoc.PL
8119 ____________________________________________________________________________
8120 [  3304] By: gsar                                  on 1999/05/05  07:29:43
8121         Log: upgrade Pod::Parser to v1.081 from CPAN
8122      Branch: perl
8123            ! lib/Pod/Checker.pm lib/Pod/InputObjects.pm lib/Pod/Parser.pm
8124            ! lib/Pod/PlainText.pm lib/Pod/Select.pm lib/Pod/Usage.pm
8125            ! t/pod/special_seqs.t t/pod/special_seqs.xr t/pod/testp2pt.pl
8126 ____________________________________________________________________________
8127 [  3303] By: gsar                                  on 1999/05/05  07:02:07
8128         Log: From: Andy Dougherty <doughera@lafayette.edu>
8129              Date: Fri, 19 Mar 1999 12:31:35 -0500 (EST)
8130              Message-Id: <Pine.GSU.4.05.9903191208250.8899-100000@newton.phys>
8131              Subject: [PATCH 5.005_03-MT3] INSTALL patches
8132      Branch: perl
8133            ! INSTALL
8134 ____________________________________________________________________________
8135 [  3302] By: gsar                                  on 1999/05/05  06:55:21
8136         Log: load base packages based on nonexistent $VERSION
8137              From: andreas.koenig@anima.de (Andreas J. Koenig)
8138              Date: 19 Mar 1999 06:00:28 +0100
8139              Message-ID: <sfcsob2m5ub.fsf@dubravka.in-berlin.de>
8140              Subject: Re: base.pm flaw
8141      Branch: perl
8142            ! lib/base.pm lib/locale.pm
8143 ____________________________________________________________________________
8144 [  3301] By: gsar                                  on 1999/05/04  05:41:08
8145         Log: pod2man outputs switched date and revision label (fix suggested by
8146              EthanSasiela@mede.com)
8147      Branch: perl
8148            ! pod/pod2man.PL
8149 ____________________________________________________________________________
8150 [  3300] By: gsar                                  on 1999/05/03  18:48:25
8151         Log: adjust win32_stat() to cope with FindFirstFile() and stat() bugs
8152              (makes opendir(D,"c:") work reliably)
8153      Branch: perl
8154            ! win32/win32.c
8155 ____________________________________________________________________________
8156 [  3299] By: gsar                                  on 1999/05/02  19:39:55
8157         Log: add test case for change#3298
8158      Branch: perl
8159            ! sv.c t/op/readdir.t
8160 ____________________________________________________________________________
8161 [  3298] By: gsar                                  on 1999/05/02  19:24:41
8162         Log: close directory handles properly when localized
8163      Branch: perl
8164            ! sv.c
8165 ____________________________________________________________________________
8166 [  3297] By: jhi                                   on 1999/04/30  11:42:14
8167         Log: Integrate from mainperl.
8168      Branch: cfgperl
8169           !> Changes config_h.SH configure.com lib/AutoLoader.pm
8170           !> lib/AutoSplit.pm lib/File/Path.pm pod/perlre.pod pp.c pp_ctl.c
8171           !> pp_sys.c proto.h regcomp.c t/op/die.t t/op/ref.t util.c
8172           !> vms/descrip_mms.template vms/gen_shrfls.pl vms/munchconfig.c
8173           !> vms/subconfigure.com win32/win32.c
8174 ____________________________________________________________________________
8175 [  3293] By: chip                                  on 1999/04/29  18:50:49
8176         Log: Fix shebang lines.
8177      Branch: maint-5.004/perl
8178            ! Porting/p4d2p h2pl/mksizes pod/checkpods.PL pod/pod2html.PL
8179            ! pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL utils/c2ph.PL
8180            ! utils/h2ph.PL utils/h2xs.PL utils/perlbug.PL utils/perldoc.PL
8181            ! utils/pl2pm.PL utils/splain.PL win32/bin/search.pl
8182            ! x2p/find2perl.PL x2p/s2p.PL
8183 ____________________________________________________________________________
8184 [  3284] By: gsar                                  on 1999/04/27  00:48:42
8185         Log: integrate change#3279 from maint-5.004
8186      Branch: perl
8187            ! lib/AutoLoader.pm
8188 ____________________________________________________________________________
8189 [  3279] By: chip                                  on 1999/04/26  23:09:26
8190         Log: Make &AutoLoad::AUTOLOAD reentrant.
8191      Branch: maint-5.004/perl
8192            ! lib/AutoLoader.pm
8193 ____________________________________________________________________________
8194 [  3276] By: chip                                  on 1999/04/26  22:34:36
8195         Log: Make porting scripts executable.
8196      Branch: maint-5.004/perl
8197            ! Changes Porting/genlog Porting/makerel Porting/p4desc
8198            ! Porting/patchls
8199 ____________________________________________________________________________
8200 [  3274] By: gsar                                  on 1999/04/26  17:30:31
8201         Log: allow embedded null characters in diagnostics
8202      Branch: perl
8203            ! pp_ctl.c pp_sys.c proto.h regcomp.c t/op/die.t util.c
8204 ____________________________________________________________________________
8205 [  3273] By: gsar                                  on 1999/04/26  08:27:22
8206         Log: hand-applied conflicting parts of suggested patch
8207              From: Charles Bailey <BAILEY@newman.upenn.edu>
8208              Date: Wed, 17 Mar 1999 23:55:23 -0400 (EDT)
8209              Message-id: <01J8YELSL7WK001E7S@mail.newman.upenn.edu>
8210              Subject: [PATCH 5.005_56] VMS configuration/build
8211      Branch: perl
8212            ! configure.com vms/descrip_mms.template vms/gen_shrfls.pl
8213            ! vms/munchconfig.c vms/subconfigure.com
8214 ____________________________________________________________________________
8215 [  3272] By: gsar                                  on 1999/04/26  08:25:41
8216         Log: update Changes; tweak minor regressions
8217      Branch: perl
8218            ! Changes lib/AutoSplit.pm lib/File/Path.pm
8219 ____________________________________________________________________________
8220 [  3271] By: gsar                                  on 1999/04/26  07:52:51
8221         Log: integrate change#3229 from maint-5.004
8222      Branch: perl
8223            ! pp_ctl.c util.c
8224 ____________________________________________________________________________
8225 [  3270] By: gsar                                  on 1999/04/25  22:58:27
8226         Log: fix buggy reference count on refs to SVs with autoviv magic
8227              (resulted in C<my @a; $a[1] = 1; print \$_ for @a> and Data::Dumper
8228              accessing free()d memory)
8229      Branch: perl
8230            ! pp.c t/op/ref.t
8231 ____________________________________________________________________________
8232 [  3269] By: gsar                                  on 1999/04/24  17:07:55
8233         Log: fix bug in change#3123 (off-by-one, caused C<qx[noargs]> to fail
8234              on win32)
8235      Branch: perl
8236            ! win32/win32.c
8237 ____________________________________________________________________________
8238 [  3268] By: gsar                                  on 1999/04/24  16:38:25
8239         Log: kill dup hunk
8240      Branch: perl
8241            ! config_h.SH
8242 ____________________________________________________________________________
8243 [  3267] By: gsar                                  on 1999/04/24  16:35:57
8244         Log: integrate cfgperl changes into mainline
8245      Branch: perl
8246           +> myconfig.SH
8247            - myconfig
8248            ! pod/perlre.pod
8249           !> (integrate 38 files)
8250 ____________________________________________________________________________
8251 [  3266] By: jhi                                   on 1999/04/23  18:42:44
8252         Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
8253              To: perl5-porters@perl.org, Jarkko Hietaniemi <jhi@iki.fi>,
8254              Graham Barr <gbarr@pobox.com>, Gurusamy Sarathy <gsar@activestate.com>
8255              Cc: Lionel Cons <lionel.cons@cern.ch>,
8256              Ilya Zakharevich <ilya@math.ohio-state.edu>,
8257              David Hayes <david@bdel.com>
8258              Subject: [PATCH] h2ph
8259              Date: Fri, 23 Apr 1999 12:37:23 -0400
8260              Message-ID: <19990423123723.A49550@O2.chapin.edu>
8261      Branch: cfgperl
8262            ! utils/h2ph.PL
8263 ____________________________________________________________________________
8264 [  3265] By: jhi                                   on 1999/04/21  18:17:12
8265         Log: From: lane@duphy4.physics.drexel.edu (by way of Dan Sugalski <sugalskd@ous.edu>)
8266              To: perlbug@perl.org
8267              Subject: [PATCH Perl 5.005.56] descrip_mms.template installed files fix
8268              Date: Wed, 21 Apr 1999 08:17:54 -0700
8269              Message-Id: <3.0.6.32.19990421081754.03127b60@ous.edu>
8270      Branch: cfgperl
8271            ! vms/descrip_mms.template
8272 ____________________________________________________________________________
8273 [  3264] By: jhi                                   on 1999/04/20  08:50:54
8274         Log: From: Andy Dougherty <doughera@lafayette.edu>
8275              To: The Perl Porters Mailing List <perl5-porters@perl.org>
8276              Subject: [PATCH 5.005_56] Re: 5.006 Todo
8277              Date: Mon, 19 Apr 1999 16:27:07 -0400 (EDT)
8278              Message-Id: <Pine.GSU.4.05.9904191623470.7838-100000@newton.phys>
8279      Branch: cfgperl
8280            ! Porting/pumpkin.pod
8281 ____________________________________________________________________________
8282 [  3263] By: jhi                                   on 1999/04/20  08:05:01
8283         Log: From: Chip Salzenberg <chip@perlsupport.com>
8284              To: Perl 5 Porters <perl5-porters@perl.org>
8285              Subject: [PATCH 5.005_56] Configure: $sig_count
8286              Date: Sun, 18 Apr 1999 17:54:36 -0400
8287              Message-ID: <19990418175436.A27496@perlsupport.com>
8288      Branch: cfgperl
8289            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8290            ! config_h.SH
8291 ____________________________________________________________________________
8292 [  3262] By: jhi                                   on 1999/04/19  18:23:50
8293         Log: Subject: PATCH wrong faq reference in perlbook.pod
8294              From: Robin Barker <rmb1@cise.npl.co.uk>
8295              To: perlbug@perl.com
8296              Date: Fri, 9 Apr 1999 16:05:23 +0100 (BST)
8297              Message-Id: <199904091505.QAA03757@cyclone.cise.npl.co.uk>
8298      Branch: cfgperl
8299            ! pod/perlbook.pod
8300 ____________________________________________________________________________
8301 [  3261] By: jhi                                   on 1999/04/15  13:59:04
8302         Log: From: Andy Dougherty <doughera@lafayette.edu>
8303              To: Hugo van der Sanden <hugo@corp.netcom.net.uk>
8304              Cc: Perl Porters <perl5-porters@perl.org>
8305              Subject: [PATCH] Re: 5.005_03 and gcc, GNU ld under Solaris 2.6
8306              Date: Wed, 14 Apr 1999 17:07:43 -0400 (EDT)
8307              Message-Id: <Pine.GSU.4.05.9904141658290.4262-100000@newton.phys>
8308      Branch: cfgperl
8309            ! hints/solaris_2.sh
8310 ____________________________________________________________________________
8311 [  3260] By: jhi                                   on 1999/04/15  13:56:53
8312         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
8313              To: pumpkings@jhereg.perl.com
8314              Subject: PATCH: 5.005_56: perldata.pod (UPDATE)
8315              Date: Thu, 15 Apr 1999 07:13:41 -0600
8316              Message-Id: <199904151313.HAA07682@jhereg.perl.com>
8317      Branch: cfgperl
8318            ! pod/perldata.pod
8319 ____________________________________________________________________________
8320 [  3259] By: jhi                                   on 1999/04/13  23:12:52
8321         Log: LDLIBPTH also on 'clean' targets.
8322      Branch: cfgperl
8323            ! Makefile.SH
8324 ____________________________________________________________________________
8325 [  3258] By: jhi                                   on 1999/04/13  21:38:46
8326         Log: Add information about the two DEC C compiler optimizer bugs
8327              (what patch levels of the compilers fix them).
8328      Branch: cfgperl
8329            ! pp.c t/op/repeat.t
8330 ____________________________________________________________________________
8331 [  3257] By: jhi                                   on 1999/04/13  14:25:08
8332         Log: Be polite about ccdlflags and lddflags, too.
8333              Avoid Perl's malloc only when threaded.
8334      Branch: cfgperl
8335            ! hints/aix.sh
8336 ____________________________________________________________________________
8337 [  3256] By: jhi                                   on 1999/04/13  10:21:33
8338         Log: Croak if no known ways to semctl() (don't assume union semun).
8339      Branch: cfgperl
8340            ! doio.c perl.h
8341 ____________________________________________________________________________
8342 [  3255] By: jhi                                   on 1999/04/13  09:10:26
8343         Log: From: Dan Sugalski <sugalskd@osshe.edu>
8344              To: perl5-porters@perl.org, vmsperl@perl.org
8345              Subject: [Patch 5.005/5.006]Another MM_VMS.pm patch
8346              Date: Mon, 12 Apr 1999 13:36:48 -0700
8347              Message-Id: <3.0.6.32.19990412133648.030e7ec0@ous.edu>
8348      Branch: cfgperl
8349            ! lib/ExtUtils/MM_VMS.pm
8350 ____________________________________________________________________________
8351 [  3254] By: jhi                                   on 1999/04/13  06:56:26
8352         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
8353              To: perlbug@perl.com
8354              Subject: Update for OpenBSD hints
8355              Date: Mon, 12 Apr 1999 23:12:22 -0600 (MDT)
8356              Message-Id: <199904130512.XAA27712@xerxes.courtesan.com>
8357      Branch: cfgperl
8358            ! hints/openbsd.sh
8359 ____________________________________________________________________________
8360 [  3229] By: chip                                  on 1999/04/13  04:04:14
8361         Log: Preserve errno from importunities of sfio.
8362      Branch: maint-5.004/perl
8363            ! pp_ctl.c util.c
8364 ____________________________________________________________________________
8365 [  3226] By: jhi                                   on 1999/04/11  12:52:26
8366         Log: If both ways to call semctl are broken,    skip the tests.
8367      Branch: cfgperl
8368            ! t/lib/ipc_sysv.t
8369 ____________________________________________________________________________
8370 [  3225] By: jhi                                   on 1999/04/10  22:27:28
8371         Log: From: Andy Dougherty <doughera@lafayette.edu>
8372              To: dsembr01@ox.slug.louisville.edu
8373              Cc: perlbug@perl.com
8374              Subject: [PATCH 5.004_05 5.005_03 5.005_56] Re: Misspelled macro in ext/POSIX/POSIX.xs?
8375              Date: Fri, 9 Apr 1999 16:58:08 -0400 (EDT)
8376              Message-Id: <Pine.GSU.4.05.9904091648570.894-100000@newton.phys>
8377      Branch: cfgperl
8378            ! ext/POSIX/POSIX.xs
8379 ____________________________________________________________________________
8380 [  3224] By: jhi                                   on 1999/04/09  18:50:32
8381         Log: From: Andy Dougherty <doughera@lafayette.edu>
8382              To: Perl Porters <perl5-porters@perl.org>
8383              Subject: [PATCH 5.005_56] Re: prefix= in hints
8384              Date: Fri, 9 Apr 1999 14:54:18 -0400 (EDT)
8385              Message-Id: <Pine.GSU.4.05.9904091445280.894-100000@newton.phys>
8386              
8387              (Overrides change #3204 from Kurt)
8388      Branch: cfgperl
8389            ! hints/linux.sh
8390 ____________________________________________________________________________
8391 [  3223] By: jhi                                   on 1999/04/09  18:37:55
8392         Log: Understand Apollo's //node notation.
8393              
8394              From: Johann Klasek <jk@auto.tuwien.ac.at>
8395              To: jhi@iki.fi
8396              Subject: Re: DomainPerl
8397              Date: Fri, 9 Apr 1999 18:21:37 +0200
8398              Message-ID: <19990409182137.A2299@euklid.auto.tuwien.ac.at>
8399      Branch: cfgperl
8400            ! lib/Cwd.pm
8401 ____________________________________________________________________________
8402 [  3220] By: jhi                                   on 1999/04/04  16:33:49
8403         Log: Integrate from mainperl.
8404      Branch: cfgperl
8405           !> (integrate 39 files)
8406 ____________________________________________________________________________
8407 [  3219] By: gsar                                  on 1999/04/04  02:48:17
8408         Log: tweak previous change
8409      Branch: maint-5.005/perl
8410            ! win32/win32.c
8411 ____________________________________________________________________________
8412 [  3218] By: gsar                                  on 1999/04/04  02:44:47
8413         Log: be careful about extending the stack for the Win32:: builtins
8414      Branch: maint-5.005/perl
8415            ! win32/win32.c
8416 ____________________________________________________________________________
8417 [  3217] By: gsar                                  on 1999/04/04  01:59:26
8418         Log: correct places that said newSVpv() when they meant newSVpvn()
8419      Branch: perl
8420            ! XSUB.h dump.c ext/B/B.xs ext/B/defsubs.h.PL
8421            ! ext/DB_File/DB_File.xs ext/DynaLoader/dl_vms.xs
8422            ! ext/IPC/SysV/SysV.xs ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
8423            ! ext/Socket/Socket.xs ext/attrs/attrs.xs gv.c hv.c hv.h
8424            ! jpl/JNI/JNI.xs mg.c op.c perl.c pod/perlguts.pod pp.c pp_ctl.c
8425            ! pp_sys.c regcomp.c toke.c util.c win32/dl_win32.xs
8426            ! win32/win32.c
8427 ____________________________________________________________________________
8428 [  3216] By: gsar                                  on 1999/04/03  23:58:27
8429         Log: avoid duplicate code
8430      Branch: perl
8431            ! sv.c
8432 ____________________________________________________________________________
8433 [  3215] By: gsar                                  on 1999/04/03  23:14:34
8434         Log: grow PL_tmps_stack more efficiently; make it more amenable to
8435              STRESS_REALLOC testing
8436      Branch: perl
8437            ! embed.h embed.pl global.sym objXSUB.h pp.h proto.h scope.c
8438            ! sv.c
8439 ____________________________________________________________________________
8440 [  3214] By: gsar                                  on 1999/04/03  21:01:09
8441         Log: scrounge and save three extra branches in pp_entersub()
8442      Branch: perl
8443            ! cv.h pp_ctl.c pp_hot.c
8444 ____________________________________________________________________________
8445 [  3213] By: gsar                                  on 1999/04/03  17:43:23
8446         Log: remove duplicate code and an extra branch in sv_setsv() and
8447              other hot code by making SvTHINKFIRST() think about FAKE SVs
8448      Branch: perl
8449            ! doio.c embed.h embed.pl global.sym objXSUB.h pp.c pp_hot.c
8450            ! proto.h scope.c sv.c sv.h
8451 ____________________________________________________________________________
8452 [  3212] By: jhi                                   on 1999/04/03  16:20:09
8453         Log: Fix up some _t nits (Pid_t, Gid_t, Uid_t, etc. instead of int).
8454              
8455              From: John Bley <jbb6@acpub.duke.edu>
8456              To: perlbug@perl.org
8457              Subject: [PATCH]5.005_03 (CORE) Fix some _t nits
8458              Date: Thu, 1 Apr 1999 02:01:47 -0500 (EST)
8459              Message-ID: <Pine.SOL.3.91.990401015805.21458A-100000@soc13.acpub.duke.edu>
8460      Branch: cfgperl
8461            ! doio.c pp_sys.c
8462 ____________________________________________________________________________
8463 [  3211] By: jhi                                   on 1999/04/03  13:27:26
8464         Log: Change #3210 was rather unportable.  This is better.
8465      Branch: cfgperl
8466            ! Configure config_h.SH
8467 ____________________________________________________________________________
8468 [  3210] By: jhi                                   on 1999/04/03  13:16:20
8469         Log: Avoid Digital UNIX' ksh.
8470              
8471              From: Jarkko Hietaniemi <jhi@iki.fi> 
8472              To: Henrik Tougaard <ht000@siberut.foa.dk> 
8473              Cc: perlbug@perl.com, ht000@foa.dk 
8474              Subject: Re: Not OK perl5.005_03-MAINT_TRIAL_4
8475              Date: Wed, 27 Jan 1999 16:52:33 +0200 (EET) 
8476              Message-ID: <13999.10289.319422.239987@alpha.hut.fi> 
8477      Branch: cfgperl
8478            ! Configure config_h.SH
8479 ____________________________________________________________________________
8480 [  3209] By: jhi                                   on 1999/04/03  12:49:04
8481         Log: Integrate from mainperl.
8482      Branch: cfgperl
8483           !> Changes Makefile.SH README installperl t/lib/bigfloatpm.t
8484 ____________________________________________________________________________
8485 [  3208] By: jhi                                   on 1999/04/03  12:27:24
8486         Log: Add -mabi=64 to ccflags for 64-bit IRIX gcc.
8487              
8488              From: Lionel Cons <lionel.cons@cern.ch>
8489              To: jhi@iki.fi
8490              Cc: perlbug@perl.com, kstar@isinet.com,
8491              Philippe Defert <philippe.defert@cern.ch>
8492              Subject: Re: Not OK: perl 5.00503 on IP27-irix 6.5 (UNINSTALLED)
8493              Date: Thu, 1 Apr 1999 14:05:28 +0200 (METDST)
8494              Message-Id: <199904011205.OAA11380@mercury.cern.ch>
8495      Branch: cfgperl
8496            ! hints/irix_6.sh
8497 ____________________________________________________________________________
8498 [  3207] By: jhi                                   on 1999/04/03  12:20:21
8499         Log: Be polite about usemymalloc.
8500      Branch: cfgperl
8501            ! hints/aix.sh
8502 ____________________________________________________________________________
8503 [  3206] By: gsar                                  on 1999/04/02  23:31:59
8504         Log: a typo in change#3205
8505      Branch: perl
8506            ! t/lib/bigfloatpm.t
8507 ____________________________________________________________________________
8508 [  3205] By: gsar                                  on 1999/04/02  23:20:31
8509         Log: make testsuite reflect change#3157  (Math::BigFloat->new now
8510              returns NaNs faithfully)
8511      Branch: perl
8512            ! t/lib/bigfloatpm.t
8513 ____________________________________________________________________________
8514 [  3204] By: jhi                                   on 1999/04/02  22:03:23
8515         Log: On -Uinstallusrbinperl and no -Dprefix, set prefix to /usr/local.
8516              
8517              From: "Kurt D. Starsinic" <kstar@chapin.edu>
8518              To: perl5-porters@perl.org
8519              Subject: linux hints nit
8520              Date: Fri, 2 Apr 1999 16:49:47 -0500
8521              Message-ID: <19990402164947.E80926@O2.chapin.edu>
8522      Branch: cfgperl
8523            ! hints/linux.sh
8524 ____________________________________________________________________________
8525 [  3203] By: jhi                                   on 1999/04/02  22:00:56
8526         Log: Display exact glibc version in Linux. 
8527              
8528              From: Andy Dougherty <doughera@lafayette.edu>
8529              To: Perl Porters <perl5-porters@perl.org>
8530              Subject: Displaying glibc version on Linux
8531              Date: Mon, 29 Mar 1999 15:04:26 -0500 (EST)
8532              Message-Id: <Pine.GSU.4.05.9903291417370.15335-100000@newton.phys>
8533      Branch: cfgperl
8534            ! hints/linux.sh
8535 ____________________________________________________________________________
8536 [  3202] By: gsar                                  on 1999/04/02  21:23:18
8537         Log: various little goofs
8538      Branch: perl
8539            ! Changes Makefile.SH README installperl
8540 ____________________________________________________________________________
8541 [  3201] By: jhi                                   on 1999/04/02  13:13:39
8542         Log: Configure regen.
8543              
8544              Add llseek + offset_t probing.
8545              Change CONFIG to CONFIGDOTSH.
8546              'unset foo' is unportable, use foo=''.
8547      Branch: cfgperl
8548            ! Configure Makefile.SH Policy_sh.SH cflags.SH config_h.SH
8549            ! configpm makeaperl.SH makedepend.SH makedir.SH myconfig.SH
8550            ! perl_exp.SH writemain.SH
8551 ____________________________________________________________________________
8552 [  3200] By: jhi                                   on 1999/04/02  12:06:22
8553         Log: Introduce myconfig.SH.
8554              
8555              From: Andy Dougherty <doughera@lafayette.edu>
8556              To: Jarkko Hietaniemi <jhi@iki.fi>
8557              Cc: Nick Ing-Simmons <nik@tiuk.ti.com>, Perl Porters <perl5-porters@perl.org>
8558              Subject: [PATCH] myconfig.SH (was Re: perl install bug on AIX 4.3.1.0)
8559              Date: Tue, 30 Mar 1999 12:41:29 -0500 (EST)
8560              Message-Id: <Pine.GSU.4.05.9903301222280.15987-100000@newton.phys>
8561      Branch: cfgperl
8562            + myconfig.SH
8563            - myconfig
8564            ! MANIFEST
8565 ____________________________________________________________________________
8566 [  3195] By: jhi                                   on 1999/03/28  16:42:54
8567         Log: Update perlhist on 5_03.
8568      Branch: maint-5.005/perl
8569            ! pod/perlhist.pod
8570 ____________________________________________________________________________
8571 [  3194] By: jhi                                   on 1999/03/28  12:30:01
8572         Log: Integrate from mainperl.
8573      Branch: cfgperl
8574           +> t/op/grep.t
8575            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/bigfloat.pl
8576            ! t/lib/bigintpm.t
8577           !> MANIFEST Porting/p4desc ext/Thread/Thread.xs op.c
8578           !> t/lib/thread.t
8579 ____________________________________________________________________________
8580 [  3189] By: gsar                                  on 1999/03/28  08:22:00
8581         Log: various pod niggles
8582      Branch: maint-5.005/perl
8583            ! pod/perl.pod pod/perldebug.pod pod/perldiag.pod
8584            ! pod/perlfunc.pod pod/perlhist.pod
8585 ____________________________________________________________________________
8586 [  3187] By: gsar                                  on 1999/03/28  07:31:16
8587         Log: regularize CAPI declarations (CAPI extensions now build under
8588              the Borland compiler)
8589      Branch: maint-5.005/perl
8590            ! win32/GenCAPI.pl
8591 ____________________________________________________________________________
8592 [  3186] By: gsar                                  on 1999/03/28  07:26:33
8593         Log: ensure XS_LOCKS stuff happens *before* XSUB is entered under
8594              -DPERL_CAPI
8595      Branch: maint-5.005/perl
8596            ! XSlock.h win32/GenCAPI.pl win32/Makefile win32/makefile.mk
8597 ____________________________________________________________________________
8598 [  3183] By: gsar                                  on 1999/03/28  06:00:46
8599         Log: update p4 utility to ignore non-text files
8600      Branch: perl
8601            ! Porting/p4desc
8602 ____________________________________________________________________________
8603 [  3181] By: gsar                                  on 1999/03/28  03:37:23
8604         Log: integrate change#3179 from maint-5.005
8605      Branch: perl
8606           !> ext/Thread/Thread.xs t/lib/thread.t
8607 ____________________________________________________________________________
8608 [  3180] By: gsar                                  on 1999/03/28  02:28:20
8609         Log: fix bogus OPf_REF context for the BLOCK in C<grep BLOCK @foo>
8610              (sometimes caused bizarreness in the BLOCK)
8611      Branch: perl
8612            + t/op/grep.t
8613            ! MANIFEST op.c
8614 ____________________________________________________________________________
8615 [  3179] By: gsar                                  on 1999/03/28  02:14:04
8616         Log: fix thread segfault when passing large number of arguments to child
8617              a la C<Thread->new($foo, 1..1000)>
8618      Branch: maint-5.005/perl
8619            ! ext/Thread/Thread.xs t/lib/thread.t
8620 ____________________________________________________________________________
8621 [  3178] By: gbarr                                 on 1999/03/28  01:39:23
8622         Log: fix $Config{'usethreads'} typo in perlthrtut
8623              
8624              From: Ian Maloney <szhmf9@wsblob.ubs.com>
8625              Date: Thu, 25 Mar 1999 16:40:14 +0100 (MET)
8626              Message-Id: <199903251540.QAA02439@wsblob.>
8627              Subject: perlthrtut documentation error
8628      Branch: maint-5.005/perl
8629            ! pod/perlthrtut.pod
8630 ____________________________________________________________________________
8631 [  3173] By: gbarr                                 on 1999/03/27  18:19:47
8632         Log: Update Test.pm to VERSION 1.122 from CPAN
8633      Branch: maint-5.005/perl
8634            ! lib/Test.pm
8635 ____________________________________________________________________________
8636 [  3171] By: jhi                                   on 1999/03/26  22:38:28
8637         Log: Integrate from mainperl.
8638      Branch: cfgperl
8639           !> (integrate 37 files)
8640 ____________________________________________________________________________
8641 [  3170] By: gsar                                  on 1999/03/26  01:30:25
8642         Log: specify type of bracket in "Unmatched bracket" diagnostic;
8643              prefer 'brace' or 'curly bracket' over 'curly brace'
8644      Branch: perl
8645            ! pod/perldiag.pod pod/perlreftut.pod pod/perlstyle.pod
8646            ! t/op/misc.t t/op/re_tests toke.c
8647 ____________________________________________________________________________
8648 [  3169] By: gsar                                  on 1999/03/26  00:50:51
8649         Log: better description of "Integer overflow" diagnostic
8650      Branch: perl
8651            ! pod/perldiag.pod
8652 ____________________________________________________________________________
8653 [  3168] By: gsar                                  on 1999/03/25  11:02:46
8654         Log: applied needful parts of suggested patch
8655              From: "Vishal Bhatia" <vishalb@my-dejanews.com>
8656              Date: Tue, 23 Mar 1999 16:21:43 -0800
8657              Message-ID: <OOOKJGFMLFLHBAAA@my-dejanews.com>
8658              Subject: [PATCH 5.005_56] pp_formline correction
8659      Branch: perl
8660            ! ext/B/B/Bblock.pm ext/B/B/CC.pm
8661 ____________________________________________________________________________
8662 [  3167] By: gsar                                  on 1999/03/25  10:39:02
8663         Log: clarify what a "comment" means (due to Mark-Jason Dominus
8664              <mjd@plover.com>)
8665      Branch: perl
8666            ! pod/perlsyn.pod
8667 ____________________________________________________________________________
8668 [  3166] By: gsar                                  on 1999/03/25  10:33:18
8669         Log: describe current behavior on local($foo{nothere}) (suggested by
8670              Lionel Cons <lionel.cons@cern.ch>)
8671      Branch: perl
8672            ! pod/perlsub.pod
8673 ____________________________________________________________________________
8674 [  3165] By: gsar                                  on 1999/03/25  06:21:05
8675         Log: fix refcnt on PL_main_cv (variant of suggestion by Vishal Bhatia
8676              <vishalb@hotmail.com>)
8677      Branch: perl
8678            ! ext/B/B/C.pm
8679 ____________________________________________________________________________
8680 [  3164] By: gsar                                  on 1999/03/25  06:17:27
8681         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
8682              Date: Tue, 23 Mar 1999 17:47:04 -0800 (PST)
8683              Message-ID: <14072.16859.154428.241373@fre-76-120.reshall.berkeley.edu>
8684              Subject: [PATCH _56] Compiler needs to know about utf8 SVOP tr///s
8685      Branch: perl
8686            ! ext/B/B.xs op.h opcode.pl
8687 ____________________________________________________________________________
8688 [  3163] By: gsar                                  on 1999/03/25  06:15:49
8689         Log: B::Deparse update from Stephen McCamant <smccam@uclink4.berkeley.edu>
8690              Date: Tue, 23 Mar 1999 02:41:34 -0800 (PST)
8691              Message-ID: <14071.27445.867782.852353@fre-76-120.reshall.berkeley.edu>
8692              Subject: [PATCH _56] B::Deparse 0.57
8693              --
8694              Date: Tue, 23 Mar 1999 13:08:12 -0800 (PST)
8695              Message-ID: <14072.502.107712.175179@fre-76-120.reshall.berkeley.edu>
8696              Subject: Re: [PATCH _56] B::Deparse 0.57 
8697      Branch: perl
8698            ! AUTHORS MAINTAIN ext/B/B/Deparse.pm
8699 ____________________________________________________________________________
8700 [  3162] By: gsar                                  on 1999/03/25  06:11:46
8701         Log: fix a few places that said 'int', but meant 'STRLEN'
8702      Branch: perl
8703            ! pod/perlguts.pod proto.h sv.c
8704 ____________________________________________________________________________
8705 [  3161] By: gsar                                  on 1999/03/25  06:01:18
8706         Log: From: Russ Allbery <rra@stanford.edu>
8707              Date: 22 Mar 1999 04:26:26 -0800
8708              Message-ID: <yl4sndr9ql.fsf@windlord.stanford.edu>
8709              Subject: [5.005_56] Add EXISTS to SDBM_File and libsdbm
8710      Branch: perl
8711            ! ext/SDBM_File/SDBM_File.xs ext/SDBM_File/sdbm/README.too
8712            ! ext/SDBM_File/sdbm/pair.c ext/SDBM_File/sdbm/pair.h
8713            ! ext/SDBM_File/sdbm/sdbm.3 ext/SDBM_File/sdbm/sdbm.c
8714            ! ext/SDBM_File/sdbm/sdbm.h pod/perldelta.pod t/lib/sdbm.t
8715 ____________________________________________________________________________
8716 [  3160] By: gsar                                  on 1999/03/25  02:26:31
8717         Log: better description of OP_UNSTACK (s/unstack/iteration finalizer/)
8718      Branch: perl
8719            ! opcode.h opcode.pl
8720 ____________________________________________________________________________
8721 [  3159] By: gsar                                  on 1999/03/25  02:18:17
8722         Log: add statement-modifier loops to :base_loop class
8723      Branch: perl
8724            ! ext/Opcode/Opcode.pm
8725 ____________________________________________________________________________
8726 [  3158] By: gsar                                  on 1999/03/25  00:36:57
8727         Log: integrate changes#3105,3130,3154 from maint-5.005
8728      Branch: perl
8729           !> Configure INSTALL hints/dec_osf.sh hints/netbsd.sh
8730 ____________________________________________________________________________
8731 [  3157] By: gsar                                  on 1999/03/25  00:24:17
8732         Log: remove bogus panic()
8733      Branch: perl
8734            ! Changes lib/Math/BigFloat.pm
8735 ____________________________________________________________________________
8736 [  3156] By: jhi                                   on 1999/03/24  22:43:43
8737         Log: Integrate from mainperl.
8738      Branch: cfgperl
8739           +> (branch 38 files)
8740           !> (integrate 68 files)
8741 ____________________________________________________________________________
8742 [  3155] By: jhi                                   on 1999/03/24  22:12:17
8743         Log: Configure regenerated because of changes #3130/#3154 and #3147.
8744      Branch: cfgperl
8745            ! Configure config_h.SH
8746 ____________________________________________________________________________
8747 [  3154] By: jhi                                   on 1999/03/24  21:40:51
8748         Log: Reword the shared library search path (LD_LIBRARY_PATH) info
8749              based on suggestions from Andy Dougherty.
8750      Branch: maint-5.005/perl
8751            ! INSTALL
8752 ____________________________________________________________________________
8753 [  3153] By: gsar                                  on 1999/03/24  10:38:05
8754         Log: applied suggested patch, modulo superceded parts
8755              From: Charles Bailey <BAILEY@newman.upenn.edu>
8756              Date: Thu, 18 Mar 1999 00:10:44 -0400 (EDT)
8757              Message-id: <01J8YFGIHW2W001E7S@mail.newman.upenn.edu>
8758              Subject: [PATCH 5.005_56] Miscellaneous VMS-specific fixes
8759      Branch: perl
8760            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_VMS.pm
8761            ! t/comp/require.t t/op/lex_assign.t t/op/taint.t
8762            ! utils/perldoc.PL vms/ext/Stdio/Stdio.pm vms/ext/Stdio/Stdio.xs
8763            ! vms/ext/Stdio/test.pl vms/test.com vms/vmsish.h
8764 ____________________________________________________________________________
8765 [  3152] By: gsar                                  on 1999/03/24  10:30:51
8766         Log: applied suggested patch, modulo superceded parts
8767              From: Charles Bailey <BAILEY@newman.upenn.edu>
8768              Date: Thu, 18 Mar 1999 00:04:31 -0400 (EDT)
8769              Message-id: <01J8YF0EOWLU001E7S@mail.newman.upenn.edu>
8770              Subject: [PATCH 5.005_56] Miscellaneous small fixes
8771      Branch: perl
8772            ! ext/B/defsubs.h.PL ext/re/re.pm lib/ExtUtils/MM_Unix.pm
8773            ! lib/File/Basename.pm
8774 ____________________________________________________________________________
8775 [  3151] By: gsar                                  on 1999/03/24  10:15:00
8776         Log: doc tweak suggested by M.J.T. Guy <mjtg@cus.cam.ac.uk>
8777      Branch: perl
8778            ! pod/perlop.pod
8779 ____________________________________________________________________________
8780 [  3150] By: gsar                                  on 1999/03/24  10:09:13
8781         Log: missing integration in previous change
8782      Branch: perl
8783           !> README.apollo
8784 ____________________________________________________________________________
8785 [  3149] By: gsar                                  on 1999/03/24  10:06:44
8786         Log: integrate changes#3116,3119 from maint-5.005
8787      Branch: perl
8788            + README.apollo
8789           +> apollo/netinet/in.h
8790           !> MANIFEST hints/apollo.sh t/lib/io_udp.t
8791 ____________________________________________________________________________
8792 [  3148] By: gsar                                  on 1999/03/24  10:01:56
8793         Log: integrate changes#3091-3094 from maint-5.005
8794      Branch: perl
8795           !> README.hurd vms/subconfigure.com vos/config.h
8796           !> vos/config_h.SH_orig
8797 ____________________________________________________________________________
8798 [  3147] By: gsar                                  on 1999/03/24  09:31:49
8799         Log: warn about newfangled vfork() caveats
8800      Branch: perl
8801            ! Configure
8802 ____________________________________________________________________________
8803 [  3146] By: jhi                                   on 1999/03/24  09:20:14
8804         Log: Bring in changes #2808 and #2812 (from mainline perl)
8805              that enhance the perlbug checklist.
8806      Branch: maint-5.005/perl
8807            ! utils/perlbug.PL
8808 ____________________________________________________________________________
8809 [  3145] By: gsar                                  on 1999/03/24  08:37:02
8810         Log: integrate change#3115 from maint-5.005
8811      Branch: perl
8812           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
8813           !> ext/DB_File/DB_File.xs ext/DB_File/typemap
8814 ____________________________________________________________________________
8815 [  3144] By: gsar                                  on 1999/03/24  08:33:59
8816         Log: add note about map in scalar context
8817      Branch: perl
8818            ! pod/perlfunc.pod
8819 ____________________________________________________________________________
8820 [  3143] By: gsar                                  on 1999/03/24  08:25:59
8821         Log: doc tweak
8822      Branch: perl
8823            ! lib/Time/Local.pm
8824 ____________________________________________________________________________
8825 [  3142] By: gsar                                  on 1999/03/24  08:20:37
8826         Log: applied suggested patch, modulo bogus hunk
8827              From: "Vishal Bhatia" <vishalb@hotmail.com>
8828              Date: Thu, 11 Mar 1999 07:40:27 PST
8829              Message-ID: <19990311154027.25891.qmail@hotmail.com>
8830              Subject: [PATCH 5.005_56] Minor fixes in perlcc
8831      Branch: perl
8832            ! ext/B/B/C.pm ext/B/B/CC.pm utils/perlcc.PL
8833 ____________________________________________________________________________
8834 [  3141] By: gsar                                  on 1999/03/24  08:06:12
8835         Log: integrate change#3104 from maint-5.005
8836      Branch: perl
8837           !> README.os390 t/lib/posix.t
8838 ____________________________________________________________________________
8839 [  3140] By: gsar                                  on 1999/03/24  06:34:56
8840         Log: fix failure of C<&locked_sub;> under -Dusethreads
8841      Branch: perl
8842            ! pp_hot.c t/lib/thread.t
8843 ____________________________________________________________________________
8844 [  3139] By: gsar                                  on 1999/03/24  05:52:00
8845         Log: debugger tweak (wasn't printing a newline after recalled commands)
8846      Branch: perl
8847            ! lib/perl5db.pl
8848 ____________________________________________________________________________
8849 [  3138] By: gsar                                  on 1999/03/24  05:33:28
8850         Log: document OO exceptions (based on a suggestion by Andreas Koenig
8851              <andreas.koenig@anima.de>)
8852      Branch: perl
8853            ! pod/perlfunc.pod
8854 ____________________________________________________________________________
8855 [  3137] By: gsar                                  on 1999/03/24  02:50:20
8856         Log: better "Illegal %s digit ignored" warnings
8857      Branch: perl
8858            ! MANIFEST pod/perldiag.pod pod/perlfunc.pod t/pragma/warn/util
8859            ! toke.c util.c
8860 ____________________________________________________________________________
8861 [  3136] By: gsar                                  on 1999/03/24  02:26:38
8862         Log: fix off-by-one that resulted in misparse of C</[\x{80}-\x{81}]/>
8863      Branch: perl
8864            + t/pragma/utf8.t
8865            ! regcomp.c
8866 ____________________________________________________________________________
8867 [  3135] By: gsar                                  on 1999/03/24  01:29:09
8868         Log: flip release & version in win32_uname()
8869      Branch: perl
8870            ! win32/win32.c
8871 ____________________________________________________________________________
8872 [  3134] By: gsar                                  on 1999/03/24  01:08:33
8873         Log: support POSIX::uname() via win32_uname()
8874      Branch: perl
8875            ! XSUB.h iperlsys.h win32/GenCAPI.pl win32/config.bc
8876            ! win32/config.gc win32/config.vc win32/config_H.bc
8877            ! win32/config_H.gc win32/config_H.vc win32/makedef.pl
8878            ! win32/perlhost.h win32/win32.c win32/win32.h win32/win32iop.h
8879 ____________________________________________________________________________
8880 [  3133] By: gsar                                  on 1999/03/23  22:20:10
8881         Log: From: jan.dubois@ibm.net (Jan Dubois)
8882              Date: Sat, 06 Mar 1999 21:42:56 +0100
8883              Message-ID: <36e49281.50337171@smtp1.ibm.net>
8884              Subject: [PATCH 5.005_56] perldelta.pod changes for Win32::* functions
8885      Branch: perl
8886            ! pod/perldelta.pod
8887 ____________________________________________________________________________
8888 [  3132] By: gsar                                  on 1999/03/23  22:17:45
8889         Log: File::Spec fixes from Jan Dubois <jan.dubois@ibm.net>
8890              Date: Sat, 06 Mar 1999 17:50:49 +0100
8891              Message-ID: <36e25209.33833760@smtp1.ibm.net>
8892              Subject: [PATCH 5.005_56] Fixes for File::Spec::Functions.pm
8893              --
8894              Date: Sat, 06 Mar 1999 18:15:00 +0100
8895              Message-ID: <36e36222.37954195@smtp1.ibm.net>
8896              Subject: [PATCH 5.005_56] Fix for File::Spec::Win32.pm
8897      Branch: perl
8898            + t/lib/filefunc.t
8899            ! MANIFEST lib/File/Spec/Functions.pm lib/File/Spec/Win32.pm
8900            ! pod/perldelta.pod pod/perlmodlib.pod
8901 ____________________________________________________________________________
8902 [  3131] By: gsar                                  on 1999/03/23  22:07:59
8903         Log: integrate cfgperl changes into mainline
8904      Branch: perl
8905           +> ext/DynaLoader/dl_rhapsody.xs hints/rhapsody.sh
8906           !> Configure Makefile.SH config_h.SH configure.gnu handy.h
8907           !> installperl malloc.c perl.c perl.h pod/perl.pod
8908           !> pod/perldelta.pod pp_sys.c t/op/stat.t x2p/util.c
8909 ____________________________________________________________________________
8910 [  3130] By: jhi                                   on 1999/03/23  22:02:23
8911         Log: Don't use config.msg to remind about the
8912              LD_LIBRARY_PATH because Makefile.SH takes
8913              care of that.
8914              
8915              Use shrplib in DEC O^W^Digital U^W^WTru64 UNIX.
8916              This used to be the default but in some MT or another it
8917              was dropped because of some transient error or another.
8918      Branch: maint-5.005/perl
8919            ! Configure hints/dec_osf.sh
8920 ____________________________________________________________________________
8921 [  3129] By: gsar                                  on 1999/03/23  21:38:03
8922         Log: add Pod-Parser-1.08 (verbatim module =include tests elided owing
8923              to size    and better maintainability)
8924      Branch: perl
8925            + lib/Pod/Checker.pm lib/Pod/InputObjects.pm lib/Pod/Parser.pm
8926            + lib/Pod/PlainText.pm lib/Pod/Select.pm lib/Pod/Usage.pm
8927            + pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
8928            + t/pod/emptycmd.t t/pod/emptycmd.xr t/pod/for.t t/pod/for.xr
8929            + t/pod/headings.t t/pod/headings.xr t/pod/include.t
8930            + t/pod/include.xr t/pod/included.t t/pod/included.xr
8931            + t/pod/lref.t t/pod/lref.xr t/pod/nested_items.t
8932            + t/pod/nested_items.xr t/pod/nested_seqs.t t/pod/nested_seqs.xr
8933            + t/pod/oneline_cmds.t t/pod/oneline_cmds.xr t/pod/poderrs.t
8934            + t/pod/poderrs.xr t/pod/special_seqs.t t/pod/special_seqs.xr
8935            + t/pod/testcmp.pl t/pod/testp2pt.pl t/pod/testpchk.pl
8936            ! AUTHORS MAINTAIN MANIFEST installperl pod/Makefile
8937            ! win32/Makefile win32/makefile.mk win32/pod.mak
8938 ____________________________________________________________________________
8939 [  3128] By: jhi                                   on 1999/03/23  10:14:54
8940         Log: Integrate from mainperl.
8941      Branch: cfgperl
8942           !> (integrate 46 files)
8943 ____________________________________________________________________________
8944 [  3127] By: gsar                                  on 1999/03/23  06:57:30
8945         Log: From: Tim Witham - FES <twitham@pcocd2.intel.com>
8946              Date: Thu, 4 Mar 1999 10:54:01 -0800
8947              Message-Id: <9903041854.AA46868@frc0000>
8948              Subject: patch for useless Math::BigInt warnings
8949      Branch: perl
8950            ! lib/Math/BigInt.pm
8951 ____________________________________________________________________________
8952 [  3126] By: gsar                                  on 1999/03/23  05:54:37
8953         Log: avoid literal 'undef' in $lddlflags under `Configure -Uoptimize`
8954              From: "Kurt D. Starsinic" <kstar@chapin.edu>
8955              Date: Fri, 19 Feb 1999 15:47:59 -0500
8956              Message-ID: <19990219154759.A32350@O2.chapin.edu>
8957              Subject: [PATCH] OSF/1 hints
8958      Branch: perl
8959            ! hints/dec_osf.sh
8960 ____________________________________________________________________________
8961 [  3125] By: gsar                                  on 1999/03/23  00:56:38
8962         Log: avoid typeglob persistence in pp_readline()
8963      Branch: perl
8964            ! sv.c t/op/gv.t
8965 ____________________________________________________________________________
8966 [  3124] By: gsar                                  on 1999/03/22  21:12:23
8967         Log: update copyright years
8968      Branch: perl
8969            ! Changes EXTERN.h INTERN.h av.c av.h bytecode.pl cop.h cv.h
8970            ! deb.c doio.c doop.c dump.c form.h gv.c gv.h handy.h hv.c hv.h
8971            ! malloc.c mg.c mg.h op.c op.h perl.c perl.h perlio.c pp.c pp.h
8972            ! pp_ctl.c pp_hot.c pp_sys.c regcomp.c regexec.c run.c scope.c
8973            ! sv.c sv.h toke.c utf8.c utf8.h util.c
8974 ____________________________________________________________________________
8975 [  3123] By: gsar                                  on 1999/03/22  07:07:06
8976         Log: implement win32_spawnvp() internally, making it return true PIDs
8977              for asynchronous spawns; fix win32_kill() to always deal with
8978              PIDs
8979      Branch: perl
8980            ! win32/win32.c win32/win32.h
8981 ____________________________________________________________________________
8982 [  3122] By: jhi                                   on 1999/03/19  21:12:14
8983         Log: Describe the new Benchmark feature in more detail.
8984      Branch: cfgperl
8985            ! pod/perldelta.pod
8986      Branch: maint-5.005/perl
8987            ! pod/perldelta.pod
8988 ____________________________________________________________________________
8989 [  3121] By: jhi                                   on 1999/03/19  08:16:12
8990         Log: AVAILABILITY tuning.
8991      Branch: cfgperl
8992            ! pod/perl.pod
8993      Branch: maint-5.005/perl
8994            ! pod/perl.pod
8995 ____________________________________________________________________________
8996 [  3120] By: jhi                                   on 1999/03/17  14:52:17
8997         Log: Rhapsody change assumed too much.
8998      Branch: cfgperl
8999            ! t/op/stat.t
9000 ____________________________________________________________________________
9001 [  3119] By: jhi                                   on 1999/03/17  14:33:43
9002         Log: More Apollo fixes.
9003      Branch: maint-5.005/perl
9004            ! README.apollo hints/apollo.sh t/lib/io_udp.t
9005 ____________________________________________________________________________
9006 [  3118] By: jhi                                   on 1999/03/16  17:23:39
9007         Log: Nada.
9008      Branch: maint-5.005/perl
9009            ! README.apollo
9010 ____________________________________________________________________________
9011 [  3117] By: jhi                                   on 1999/03/16  17:18:49
9012         Log: Apollo DomainOS AVAILABILITY.
9013      Branch: cfgperl
9014            ! pod/perl.pod
9015      Branch: maint-5.005/perl
9016            ! pod/perl.pod
9017 ____________________________________________________________________________
9018 [  3116] By: jhi                                   on 1999/03/16  17:14:00
9019         Log: Apollo DomainOS patch
9020              From: Johann Klasek <jk@auto.tuwien.ac.at>
9021              Subject: Re: DomainPerl
9022              Date: Tue, 16 Mar 1999 17:46:32 +0100
9023              Message-ID: <19990316174632.A19759@euklid.auto.tuwien.ac.at>
9024      Branch: maint-5.005/perl
9025            + README.apollo apollo/netinet/in.h
9026            ! MANIFEST hints/apollo.sh
9027 ____________________________________________________________________________
9028 [  3115] By: jhi                                   on 1999/03/16  14:23:54
9029         Log: From: Paul Marquess <pmarquess@bfsec.bt.co.uk>
9030              To: Gurusamy Sarathy <gsar@activestate.com>,
9031              Graham Barr <gbarr@pobox.com>
9032              Cc: Perl5 Porters <perl5-porters@perl.org>,
9033              "Paul.Marquess" <Paul.Marquess@btinternet.com>
9034              Subject: [PATCH 5.005_56 & 5.005_03_T6] Upgrade DB_File to version 1.65
9035              Date: Sun, 14 Mar 1999 14:43:57 -0000
9036              Message-Id: <199903141841.NAA17040@defender.perl.org>
9037      Branch: maint-5.005/perl
9038            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
9039            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
9040 ____________________________________________________________________________
9041 [  3114] By: jhi                                   on 1999/03/16  12:42:20
9042         Log: Mention Rhapsody in 5.005_5X perldelta,
9043              and in Rhapsody and Netware in 5.005_0X and 5.005_5X
9044              *planned* AVAILABILITY.
9045      Branch: cfgperl
9046            ! pod/perl.pod pod/perldelta.pod
9047      Branch: maint-5.005/perl
9048            ! pod/perl.pod
9049 ____________________________________________________________________________
9050 [  3113] By: jhi                                   on 1999/03/16  10:38:53
9051         Log: perldelta niggling.
9052      Branch: cfgperl
9053            ! pod/perldelta.pod
9054      Branch: maint-5.005/perl
9055            ! pod/perldelta.pod
9056 ____________________________________________________________________________
9057 [  3112] By: jhi                                   on 1999/03/16  10:35:21
9058         Log: Integrate from mainperl.
9059      Branch: cfgperl
9060           !> lib/unicode/MakeEthiopicSyllables.PL pod/perldelta.pod
9061           !> pod/perlhist.pod pod/perlmodinstall.pod pod/perltodo.pod
9062 ____________________________________________________________________________
9063 [  3111] By: jhi                                   on 1999/03/16  10:28:10
9064         Log: AVAILABILITY update: still mention PowerUX,
9065              Novell Netware now has sources available.
9066      Branch: cfgperl
9067            ! pod/perl.pod
9068      Branch: maint-5.005/perl
9069            ! pod/perl.pod
9070 ____________________________________________________________________________
9071 [  3110] By: gsar                                  on 1999/03/16  04:34:23
9072         Log: sundry pod niggles
9073      Branch: perl
9074            ! lib/unicode/MakeEthiopicSyllables.PL pod/perldelta.pod
9075            ! pod/perlhist.pod pod/perlmodinstall.pod pod/perltodo.pod
9076 ____________________________________________________________________________
9077 [  3109] By: jhi                                   on 1999/03/15  17:00:11
9078         Log: Integrate from mainperl.
9079      Branch: cfgperl
9080           +> lib/unicode/EthiopicSyllables.txt lib/unicode/In/Ethiopic.pl
9081           +> lib/unicode/Is/Syllable.pl
9082           +> lib/unicode/MakeEthiopicSyllables.PL
9083           +> lib/unicode/README.Ethiopic
9084           !> AUTHORS MAINTAIN MANIFEST lib/unicode/Block.pl
9085           !> lib/unicode/Category.pl lib/unicode/Is/Alnum.pl
9086           !> lib/unicode/Is/Alpha.pl lib/unicode/Is/Digit.pl
9087           !> lib/unicode/Is/L.pl lib/unicode/Is/Lo.pl lib/unicode/Is/N.pl
9088           !> lib/unicode/Is/Nd.pl lib/unicode/Is/No.pl lib/unicode/Is/P.pl
9089           !> lib/unicode/Is/Po.pl lib/unicode/Is/Space.pl
9090           !> lib/unicode/Is/Z.pl lib/unicode/Is/Zs.pl lib/unicode/Makefile
9091           !> lib/unicode/Name.pl lib/unicode/Number.pl op.c
9092 ____________________________________________________________________________
9093 [  3108] By: jhi                                   on 1999/03/15  16:58:12
9094         Log: First pass of integrating the Rhapsody port,
9095              
9096              From: Wilfredo Sanchez <wsanchez@apple.com> 
9097              Subject: Keeping the world in sync.
9098              Reply-To: wsanchez@apple.com 
9099              To: perlbug@perl.com 
9100              Date: Fri, 13 Nov 1998 17:11:30 -0800 
9101              Message-Id: <199811140111.RAA41784@scv4.apple.com> 
9102      Branch: cfgperl
9103            + ext/DynaLoader/dl_rhapsody.xs hints/rhapsody.sh
9104            ! Configure Makefile.SH config_h.SH configure.gnu handy.h
9105            ! installperl malloc.c perl.c perl.h pp_sys.c t/op/stat.t
9106            ! x2p/util.c
9107 ____________________________________________________________________________
9108 [  3107] By: gsar                                  on 1999/03/15  03:22:10
9109         Log: applied suggested patch (mailed to perl-unicode@perl.org) with minor tweaks
9110              From: Daniel Yacob <dmulholl@cs.indiana.edu>
9111              Date: Tue, 23 Feb 1999 16:13:42 -0500 (EST)
9112              Message-Id: <199902232113.QAA26135@drum.cs.indiana.edu>
9113              Subject: ../lib/unicode/ Unicode 3.0 Extensions for Ethiopic
9114      Branch: perl
9115            + lib/unicode/EthiopicSyllables.txt lib/unicode/In/Ethiopic.pl
9116            + lib/unicode/Is/Syllable.pl
9117            + lib/unicode/MakeEthiopicSyllables.PL
9118            + lib/unicode/README.Ethiopic
9119            ! AUTHORS MAINTAIN MANIFEST lib/unicode/Block.pl
9120            ! lib/unicode/Category.pl lib/unicode/Is/Alnum.pl
9121            ! lib/unicode/Is/Alpha.pl lib/unicode/Is/Digit.pl
9122            ! lib/unicode/Is/L.pl lib/unicode/Is/Lo.pl lib/unicode/Is/N.pl
9123            ! lib/unicode/Is/Nd.pl lib/unicode/Is/No.pl lib/unicode/Is/P.pl
9124            ! lib/unicode/Is/Po.pl lib/unicode/Is/Space.pl
9125            ! lib/unicode/Is/Z.pl lib/unicode/Is/Zs.pl lib/unicode/Makefile
9126            ! lib/unicode/Name.pl lib/unicode/Number.pl
9127 ____________________________________________________________________________
9128 [  3106] By: gsar                                  on 1999/03/12  20:35:36
9129         Log: change#3067 failed package.t due to needless creation of $a and $b;
9130              fixed to do that only for C<sort BLOCK|CODE @foo>, not C<sort(@foo)>
9131      Branch: perl
9132            ! op.c
9133 ____________________________________________________________________________
9134 [  3105] By: jhi                                   on 1999/03/12  15:54:57
9135         Log: Recognize the NetBSD packages collection.
9136      Branch: maint-5.005/perl
9137            ! hints/netbsd.sh
9138 ____________________________________________________________________________
9139 [  3104] By: jhi                                   on 1999/03/12  09:07:04
9140         Log: From: pvhp@forte.com (Peter Prymmer)
9141              To: jhi@iki.fi, perl-mvs@perl.org, perlbug@perl.com
9142              Subject: [PATCH MT6,_56] was Re: Not OK: perl 5.00503 +MAINT_TRIAL_6 on os390 06.00 (UNINSTALLED)
9143              Date: Thu, 11 Mar 99 14:24:54 PST
9144              Message-Id: <9903112224.AA24346@forte.com>
9145      Branch: maint-5.005/perl
9146            ! README.os390 t/lib/posix.t
9147 ____________________________________________________________________________
9148 [  3103] By: jhi                                   on 1999/03/10  11:07:46
9149         Log: Integrate from mainperl.
9150      Branch: cfgperl
9151           !> Changes embed.h embed.pl embedvar.h global.sym objXSUB.h op.c
9152           !> perl.c perl.h pod/perldelta.pod pod/pod2man.PL t/base/lex.t
9153           !> t/pragma/warn/1global toke.c win32/makedef.pl
9154 ____________________________________________________________________________
9155 [  3102] By: jhi                                   on 1999/03/10  11:01:20
9156         Log: From: pvhp@forte.com (Peter Prymmer)
9157              To: perl5-porters@perl.org
9158              Subject: [5.005_03-MT6]Patch: time passes
9159              Date: Tue, 9 Mar 99 18:42:17 PST
9160              Message-Id: <9903100242.AA29057@forte.com>
9161      Branch: maint-5.005/perl
9162            ! perl.c
9163 ____________________________________________________________________________
9164 [  3101] By: jhi                                   on 1999/03/10  10:30:15
9165         Log: From: Mark-Jason Dominus <mjd@plover.com>
9166              To: perl5-porters@perl.com
9167              Subject: Minor fix to perlfunc.pod
9168              Date: Mon, 08 Mar 1999 20:05:53 -0500
9169              Message-ID: <19990309010553.13757.qmail@plover.com>
9170      Branch: maint-5.005/perl
9171            ! pod/perlfunc.pod
9172 ____________________________________________________________________________
9173 [  3100] By: gsar                                  on 1999/03/09  23:04:44
9174         Log: change#3060 had the wrong quotes
9175      Branch: perl
9176            ! pod/pod2man.PL
9177 ____________________________________________________________________________
9178 [  3099] By: jhi                                   on 1999/03/09  12:52:21
9179         Log: d_uname was broken (probably since _53), reported by
9180              
9181              From: Alan Burlison <Alan.Burlison@uk.sun.com>
9182              To: p5p <perl5-porters@perl.org>, Gurusamy Sarathy <gsar@umich.edu>,
9183              cpan-testers@perl.org
9184              Subject: Not OK: perl 5.00556 on sun4-solaris 2.6
9185              Date: Mon, 08 Mar 1999 13:22:31 +0000
9186              Message-ID: <36E3CF17.EA1FEDAA@uk.sun.com>
9187              
9188              and
9189              
9190              From: lvirden@cas.org (Larry W. Virden)
9191              To: perlbug@perl.com
9192              Subject: configure not correctly identifying uname posix compatibility
9193              Date: Mon, 8 Mar 1999 06:36:16 -0500 (EST)
9194              Message-Id: <199903081136.GAA23682@cas.org>
9195      Branch: cfgperl
9196            ! Configure config_h.SH
9197 ____________________________________________________________________________
9198 [  3098] By: gsar                                  on 1999/03/09  03:16:07
9199         Log: fix parsing of here documents in C<eval 's/.../<<FOO/e'>
9200      Branch: perl
9201            ! op.c perl.h pod/perldelta.pod t/base/lex.t toke.c
9202 ____________________________________________________________________________
9203 [  3097] By: gsar                                  on 1999/03/09  02:50:43
9204         Log: use yyerror() instead of croak() so that compile-time failures in
9205              my(LIST) don't confuse globals with lexicals
9206      Branch: perl
9207            ! op.c toke.c
9208 ____________________________________________________________________________
9209 [  3096] By: gsar                                  on 1999/03/09  02:47:36
9210         Log: adjust testsuite for change#3067
9211      Branch: perl
9212            ! t/pragma/warn/1global
9213 ____________________________________________________________________________
9214 [  3095] By: gsar                                  on 1999/03/08  21:04:48
9215         Log: remove bogus symbols from global.sym
9216      Branch: perl
9217            ! Changes embed.h embed.pl embedvar.h global.sym objXSUB.h
9218            ! perl.h win32/makedef.pl
9219 ____________________________________________________________________________
9220 [  3094] By: jhi                                   on 1999/03/06  16:16:15
9221         Log: From: Mark Kettenis <kettenis@wins.uva.nl>
9222              To: jhi@iki.fi
9223              Subject: Oops
9224              Date: Sat, 6 Mar 1999 17:15:35 +0100 (CET)
9225              Message-Id: <199903061615.RAA00207@delius.kettenis.nl>
9226      Branch: maint-5.005/perl
9227            ! README.hurd
9228 ____________________________________________________________________________
9229 [  3093] By: jhi                                   on 1999/03/06  15:59:46
9230         Log: From: Mark Kettenis <kettenis@wins.uva.nl>
9231              To: jhi@iki.fi
9232              Subject: New Hurd README
9233              Date: Sat, 6 Mar 1999 16:46:12 +0100 (CET)
9234              Message-Id: <199903061601.RAA00185@delius.kettenis.nl>
9235      Branch: maint-5.005/perl
9236            ! README.hurd
9237 ____________________________________________________________________________
9238 [  3092] By: jhi                                   on 1999/03/06  12:52:06
9239         Log: From: Paul_Green@stratus.com
9240              To: perl5-porters@perl.org
9241              Cc: jhi@iki.fi, Paul_Green@stratus.com
9242              Subject: [PATCH 5.005_03-MAINT_TRIAL_6]: platform: vos -- updates to VOS port of Perl5
9243              Date: Fri, 5 Mar 1999 18:08:49 -0500 
9244              Message-ID: <1D1A4EF7AD4DD211A80D00A0C9D7DB665A035A@exna1.stratus.com>
9245      Branch: maint-5.005/perl
9246            ! vos/config.h vos/config_h.SH_orig
9247 ____________________________________________________________________________
9248 [  3091] By: jhi                                   on 1999/03/06  12:42:21
9249         Log: From: Dan Sugalski <sugalskd@osshe.edu>
9250              To: perl5-porters@perl.org, vmsperl@perl.org
9251              Subject: [PATCH 5.005_03-MT6]VMS build patch
9252              Date: Fri, 05 Mar 1999 12:36:19 -0800
9253              Message-Id: <3.0.6.32.19990305123619.02d326a0@ous.edu>
9254      Branch: maint-5.005/perl
9255            ! vms/subconfigure.com
9256 ____________________________________________________________________________
9257 [  3090] By: gsar                                  on 1999/03/06  04:40:03
9258         Log: integrate change#3089 from mainline
9259              
9260              tolerate CRs after options
9261      Branch: maint-5.005/perl
9262           !> perl.c
9263 ____________________________________________________________________________
9264 [  3089] By: gsar                                  on 1999/03/06  04:30:40
9265         Log: tolerate CRs after options
9266      Branch: perl
9267            ! perl.c
9268 ____________________________________________________________________________
9269 [  3088] By: jhi                                   on 1999/03/05  12:49:01
9270         Log: Integrate from mainperl.
9271      Branch: cfgperl
9272           +> README.hurd
9273           !> MANIFEST ext/Errno/Errno_pm.PL t/lib/io_sock.t
9274 ____________________________________________________________________________
9275 [  3087] By: gsar                                  on 1999/03/05  06:41:16
9276         Log: adjust timeouts to accomodate slow/busy systems
9277      Branch: perl
9278            ! t/lib/io_sock.t
9279 ____________________________________________________________________________
9280 [  3083] By: gsar                                  on 1999/03/05  01:32:47
9281         Log: integrate change#3081 from maint-5.005
9282      Branch: perl
9283           !> ext/Errno/Errno_pm.PL
9284 ____________________________________________________________________________
9285 [  3082] By: gsar                                  on 1999/03/05  01:31:06
9286         Log: integrate change#2904 from maint-5.005
9287      Branch: perl
9288           +> README.hurd
9289           !> MANIFEST
9290 ____________________________________________________________________________
9291 [  3081] By: gsar                                  on 1999/03/05  00:14:33
9292         Log: protect against doubled backslashes
9293      Branch: maint-5.005/perl
9294            ! ext/Errno/Errno_pm.PL
9295 ____________________________________________________________________________
9296 [  3077] By: jhi                                   on 1999/03/04  08:10:13
9297         Log: Integrate from mainperl.
9298      Branch: cfgperl
9299           +> ext/B/B/Stash.pm
9300           !> MANIFEST README.hpux cc_runtime.h config_h.SH ext/B/B/C.pm
9301           !> ext/B/B/CC.pm gv.c lib/File/Compare.pm lib/Test/Harness.pm
9302           !> op.c pod/perldelta.pod pod/perlfunc.pod pod/pod2man.PL
9303           !> t/lib/bigfloatpm.t t/lib/io_sock.t utils/perlcc.PL
9304 ____________________________________________________________________________
9305 [  3076] By: jhi                                   on 1999/03/04  08:07:59
9306         Log: Regen config_h.SH once more because of *size, 
9307              noticed by
9308              
9309              From: Hans Mulder <hansm@icgned.icgroup.nl>
9310              To: Jarkko Hietaniemi <jhi@iki.fi>
9311              Cc: perl5-porters@perl.org
9312              Subject: [PATCH for _56] LONGSIZE used before it is set in config.h
9313              Date: Thu,  4 Mar 99 00:10:45 +0100
9314              Message-Id: <9903032317.AA23021@icgned.icgroup.nl>
9315      Branch: cfgperl
9316            ! Configure config_h.SH
9317 ____________________________________________________________________________
9318 [  3068] By: gsar                                  on 1999/03/04  05:48:03
9319         Log: From: Hans Mulder <hansm@icgned.icgroup.nl>
9320              Date: Thu,  4 Mar 99 00:10:45 +0100
9321              Message-Id: <9903032317.AA23021@icgned.icgroup.nl>
9322              Subject: [PATCH for _56] LONGSIZE used before it is set in config.h
9323      Branch: perl
9324            ! config_h.SH
9325 ____________________________________________________________________________
9326 [  3067] By: gsar                                  on 1999/03/04  05:44:32
9327         Log: exempt $foo::a,$foo::b from warnings only if sort() was seen in package foo
9328              From: Graham Barr <gbarr@ti.com>
9329              Date: Wed, 3 Mar 1999 17:23:56 -0600
9330              Message-ID: <19990303172356.F7442@dal.asp.ti.com>
9331              Subject: Re: 'use strict' doesn't work for one-letter variables
9332      Branch: perl
9333            ! gv.c op.c
9334 ____________________________________________________________________________
9335 [  3066] By: gsar                                  on 1999/03/04  05:20:50
9336         Log: updates to compiler modules
9337              From: "Vishal Bhatia" <vishalb@hotmail.com>
9338              Date: Tue, 02 Mar 1999 23:27:25 PST
9339              Message-ID: <19990303072725.779.qmail@hotmail.com>
9340              Subject: PATCH 5.005_56 + Test procedure
9341      Branch: perl
9342            + ext/B/B/Stash.pm
9343            ! MANIFEST cc_runtime.h ext/B/B/C.pm ext/B/B/CC.pm
9344            ! lib/Test/Harness.pm utils/perlcc.PL
9345 ____________________________________________________________________________
9346 [  3065] By: gsar                                  on 1999/03/04  05:03:30
9347         Log: more s/s_/s!/ etc.
9348      Branch: perl
9349            ! pod/perldelta.pod pod/perlfunc.pod
9350 ____________________________________________________________________________
9351 [  3064] By: gsar                                  on 1999/03/04  04:50:45
9352         Log: integrate cfgperl contents into mainline
9353      Branch: perl
9354           !> Configure README.vms bytecode.h config_h.SH configure.com
9355           !> ext/B/defsubs.h.PL hints/hpux.sh pod/perldelta.pod
9356           !> pod/perldiag.pod pp.c t/lib/ipc_sysv.t t/op/pack.t thread.h
9357           !> vms/ext/vmsish.pm vms/subconfigure.com vms/vms.c vms/vmsish.h
9358 ____________________________________________________________________________
9359 [  3063] By: gsar                                  on 1999/03/04  04:44:13
9360         Log: HP-UX has yet another spelling for /NaNQ?/
9361      Branch: perl
9362            ! t/lib/bigfloatpm.t
9363 ____________________________________________________________________________
9364 [  3062] By: gsar                                  on 1999/03/04  04:36:08
9365         Log: error-check for accept() test
9366      Branch: perl
9367            ! t/lib/io_sock.t
9368 ____________________________________________________________________________
9369 [  3061] By: gsar                                  on 1999/03/04  03:40:25
9370         Log: allow custom comparison function in File::Compare::compare_text()
9371              From: jan.dubois@ibm.net (Jan Dubois)
9372              Date: Fri, 26 Feb 1999 21:56:09 +0100
9373              Message-ID: <36db0838.8805651@smtp1.ibm.net>
9374              Subject: Re: PodParser 1.07 (was: RE: C<stuff()> vs stuff()) 
9375      Branch: perl
9376            ! lib/File/Compare.pm
9377 ____________________________________________________________________________
9378 [  3060] By: gsar                                  on 1999/03/04  03:37:38
9379         Log: better version of change#3038
9380              From: abigail@fnx.com
9381              Date: Mon, 1 Mar 1999 14:11:36 -0500 (EST)
9382              Message-ID: <19990301191136.5557.qmail@alexandra.wayne.fnx.com>
9383              Subject: Re: [PATCH 5.005_03 TRIAL-5 pod/pod2man.PL] Recognize -> and => inside
9384      Branch: perl
9385            ! pod/pod2man.PL
9386 ____________________________________________________________________________
9387 [  3058] By: jhi                                   on 1999/03/03  22:30:40
9388         Log: Configure regen to
9389              (1) match maint-5.005 patches #3056 and #3057
9390              (2) better version of PHOSTNAME of #3050
9391              (3) the crosscompile/multiarch config_h.SH trouble solved for now
9392      Branch: cfgperl
9393            ! Configure config_h.SH
9394 ____________________________________________________________________________
9395 [  3054] By: jhi                                   on 1999/03/03  09:57:59
9396         Log: Change #3053 missed perldelta.
9397      Branch: cfgperl
9398            ! pod/perldelta.pod
9399 ____________________________________________________________________________
9400 [  3053] By: jhi                                   on 1999/03/03  08:29:43
9401         Log: Use '!' to mark native integer packings instead of '_'.
9402      Branch: cfgperl
9403            ! pod/perldiag.pod pp.c t/lib/ipc_sysv.t t/op/pack.t
9404 ____________________________________________________________________________
9405 [  3052] By: jhi                                   on 1999/03/02  23:12:36
9406         Log: The HP-UX threads patch (change #3028) is needed also here.
9407      Branch: cfgperl
9408            ! hints/hpux.sh thread.h
9409 ____________________________________________________________________________
9410 [  3051] By: jhi                                   on 1999/03/02  08:24:52
9411         Log: From: Dan Sugalski <sugalskd@osshe.edu>
9412              To: perl5-porters@perl.org, vmsperl@perl.org
9413              Subject: [PATCH 5.005_0x and 5.005_5x]Minor update to README.VMS
9414              Date: Mon, 01 Mar 1999 16:10:57 -0800
9415              Message-Id: <3.0.6.32.19990301161057.03b1fc00@ous.edu>
9416      Branch: cfgperl
9417            ! README.vms
9418      Branch: maint-5.005/perl
9419            ! README.vms
9420 ____________________________________________________________________________
9421 [  3050] By: jhi                                   on 1999/03/02  08:22:29
9422         Log: From: Dan Sugalski <sugalskd@osshe.edu>
9423              To: perl5-porters@perl.org, vmsperl@perl.org
9424              Subject: [PATCH5.005_56]Diffs to get 5.005_56 building on VMS
9425              Date: Mon, 01 Mar 1999 16:06:29 -0800
9426              Message-Id: <3.0.6.32.19990301160629.02e09ec0@ous.edu>
9427              
9428              From: Dan Sugalski <sugalskd@osshe.edu>
9429              To: perl5-porters@perl.org, vmsperl@perl.org
9430              Subject: [PATCH 5.005_56]vmsish.pm patch
9431              Date: Mon, 01 Mar 1999 20:19:04 -0800
9432              Message-Id: <3.0.6.32.19990301201904.02cff460@ous.edu>
9433              
9434              plus Configure regen containing a "solution" to the
9435              crosscompile/multiarch problem.
9436      Branch: cfgperl
9437            ! Configure config_h.SH configure.com ext/B/defsubs.h.PL
9438            ! vms/ext/vmsish.pm vms/subconfigure.com vms/vms.c vms/vmsish.h
9439 ____________________________________________________________________________
9440 [  3049] By: jhi                                   on 1999/03/02  07:34:21
9441         Log: From: Spider Boardman <spider@leggy.zk3.dec.com>
9442              To: perl5-porters@perl.org
9443              Subject: [PATCH] Eliminate (valid) warning in byterun.c
9444              Date: Mon, 01 Mar 1999 17:27:59 -0500
9445              Message-Id: <199903012227.RAA00181@leggy.zk3.dec.com>
9446      Branch: cfgperl
9447            ! bytecode.h
9448      Branch: maint-5.005/perl
9449            ! bytecode.h
9450 ____________________________________________________________________________
9451 [  3048] By: gsar                                  on 1999/03/02  06:41:21
9452         Log: updated HP-UX notes from Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
9453      Branch: perl
9454            ! MANIFEST README.hpux
9455 ____________________________________________________________________________
9456 [  3047] By: jhi                                   on 1999/03/01  06:34:43
9457         Log: Integrate from mainperl.
9458      Branch: cfgperl
9459           +> README.hpux lib/File/Spec/Functions.pm
9460           !> (integrate 28 files)
9461 ____________________________________________________________________________
9462 [  3046] By: gsar                                  on 1999/03/01  05:34:28
9463         Log: this is 5.005_56
9464      Branch: perl
9465            ! Changes
9466
9467 ----------------
9468 Version 5.005_56
9469 ----------------
9470
9471 ____________________________________________________________________________
9472 [  3045] By: gsar                                  on 1999/03/01  03:32:30
9473         Log: destroy PL_svref_mutex in perl_destruct()
9474      Branch: perl
9475            ! perl.c
9476 ____________________________________________________________________________
9477 [  3044] By: gsar                                  on 1999/03/01  00:38:50
9478         Log: up patchlevel &c.
9479      Branch: perl
9480            ! Changes patchlevel.h pod/perlhist.pod win32/Makefile
9481            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
9482            ! win32/makefile.mk
9483 ____________________________________________________________________________
9484 [  3043] By: gsar                                  on 1999/03/01  00:14:15
9485         Log: integrate cfgperl contents into mainline
9486      Branch: perl
9487            ! pod/perldelta.pod
9488           !> Configure config_h.SH
9489 ____________________________________________________________________________
9490 [  3042] By: gsar                                  on 1999/02/28  23:55:08
9491         Log: slightly edited version of suggested patch
9492              From: jan.dubois@ibm.net (Jan Dubois)
9493              Date: Mon, 01 Mar 1999 00:32:05 +0100
9494              Message-ID: <36dbcf2c.12325433@smtp1.ibm.net>
9495              Subject: Re: [PATCH 5.005_55] Cleanup of File::Spec module
9496      Branch: perl
9497            + lib/File/Spec/Functions.pm
9498            ! MANIFEST lib/File/Spec.pm
9499 ____________________________________________________________________________
9500 [  3041] By: gsar                                  on 1999/02/28  22:47:19
9501         Log: fix subtle bug in eval'' testsuite
9502      Branch: perl
9503            ! t/op/eval.t
9504 ____________________________________________________________________________
9505 [  3040] By: gsar                                  on 1999/02/28  22:46:24
9506         Log: avoid literal control characters in change#3039
9507      Branch: perl
9508            ! t/base/lex.t
9509 ____________________________________________________________________________
9510 [  3039] By: gsar                                  on 1999/02/28  21:47:18
9511         Log: todo item: permit extended control variables a la ${^Foo} (patch
9512              courtesy Mark-Jason Dominus <mjd@plover.com>)
9513      Branch: perl
9514            ! op.c pod/perldelta.pod pod/perltodo.pod pod/perlvar.pod
9515            ! t/base/lex.t toke.c
9516 ____________________________________________________________________________
9517 [  3038] By: gsar                                  on 1999/02/28  21:21:05
9518         Log: From: abigail@fnx.com
9519              Date: Sun, 28 Feb 1999 10:59:16 -0500 (EST)
9520              Message-ID: <19990228155916.14496.qmail@alexandra.wayne.fnx.com>
9521              Subject: Recognize -> and => inside [A-Z]<> sequences.
9522      Branch: perl
9523            ! pod/pod2man.PL
9524 ____________________________________________________________________________
9525 [  3037] By: gsar                                  on 1999/02/28  21:12:22
9526         Log: fix longstanding bug: searches for lexicals originating within eval''
9527              weren't stopping at the subroutine boundary correctly
9528      Branch: perl
9529            ! op.c proto.h t/op/eval.t
9530 ____________________________________________________________________________
9531 [  3036] By: gsar                                  on 1999/02/28  20:02:29
9532         Log: revert parts of change#2990 to preserve predictable usage of Win32::Foo()
9533              as stacked list values
9534              From: jan.dubois@ibm.net (Jan Dubois)
9535              Date: Sat, 27 Feb 1999 18:24:17 +0100
9536              Message-ID: <36e22849.36531259@smtp1.ibm.net>
9537              Subject: Re: resend [PATCH 5.005_55] Various win32/win32.c cleanup 
9538      Branch: perl
9539            ! win32/win32.c
9540 ____________________________________________________________________________
9541 [  3035] By: gsar                                  on 1999/02/28  19:48:54
9542         Log: remove superfluous stack_sp decl
9543      Branch: perl
9544            ! jpl/JNI/JNI.xs
9545 ____________________________________________________________________________
9546 [  3034] By: gsar                                  on 1999/02/28  19:34:58
9547         Log: s/print STDERR/warn/ suggested by abigail@fnx.com; add $VERSION
9548      Branch: perl
9549            ! lib/Getopt/Std.pm
9550 ____________________________________________________________________________
9551 [  3033] By: gsar                                  on 1999/02/28  19:23:41
9552         Log: add File::Compare::compare_text()
9553              From: jan.dubois@ibm.net (Jan Dubois)
9554              Date: Fri, 26 Feb 1999 00:20:41 +0100
9555              Message-ID: <36dcd8ab.20195659@smtp1.ibm.net>
9556              Subject: Re: PodParser 1.07 (was: RE: C<stuff()> vs stuff()) 
9557      Branch: perl
9558            ! lib/File/Compare.pm pod/perltodo.pod
9559 ____________________________________________________________________________
9560 [  3032] By: gsar                                  on 1999/02/28  19:01:33
9561         Log: add README.hpux
9562      Branch: perl
9563            + README.hpux
9564            ! MAINTAIN MANIFEST
9565 ____________________________________________________________________________
9566 [  3031] By: gsar                                  on 1999/02/28  18:49:08
9567         Log: avoid escaping &amp; et al multiple times (variant of fix suggested by
9568              James Cromie <jcromie@fossil.uswc.uswest.com>
9569      Branch: perl
9570            ! lib/Pod/Html.pm
9571 ____________________________________________________________________________
9572 [  3030] By: gsar                                  on 1999/02/28  18:35:09
9573         Log: From: jan.dubois@ibm.net (Jan Dubois)
9574              Date: Wed, 24 Feb 1999 22:34:56 +0100
9575              Message-ID: <36d86f1e.11495549@smtp1.ibm.net>
9576              Subject: [PATCH 5.005_55] Test::Harness setting $ENV{HARNESS_ACTIVE}
9577      Branch: perl
9578            ! lib/Test/Harness.pm
9579 ____________________________________________________________________________
9580 [  3029] By: gsar                                  on 1999/02/28  18:28:18
9581         Log: add note about env pollution
9582      Branch: perl
9583            ! INSTALL pod/perltodo.pod
9584 ____________________________________________________________________________
9585 [  3028] By: jhi                                   on 1999/02/26  14:40:00
9586         Log: HP-UX 11 threads.
9587              
9588              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
9589              To: perl5-porters@perl.org
9590              Cc: jhi@cc.hut.fi
9591              Subject: Maint 5 and _54 with threading on HP-UX 11.00
9592              Date: Wed, 3 Feb 1999 12:57:18 -0800 (PST)
9593              Message-Id: <199902032057.MAA10218@xfiles.intercon.hp.com>
9594              
9595              NOTE from jhi: the hpux hints could still be more robust by
9596              disabling gdbm when necessary.
9597              
9598              Currently if there's a libgdbm.sl (gdbm 1.7.3) which is pre-11,
9599              linking -lgdbm -lpthread creates an executable that instantly
9600              core dumps on a pthreads internal panic:
9601              
9602              ./gdpt
9603              
9604              Pthread internal error: message: __libc_reinit() failed, file: ../pthreads/pthread.c, line: 1096
9605              Return Pointer is 0xc082bf33
9606              17639 quit (core dumped)  ./gdpt
9607              
9608              You don't have to *use* either gdbm or pthreads in the executable,
9609              just linking them together is enough.  Workaround is to recompile
9610              the GDBM under HP-UX 11, that makes the problem go away.
9611      Branch: maint-5.005/perl
9612            ! hints/hpux.sh thread.h
9613 ____________________________________________________________________________
9614 [  3025] By: jhi                                   on 1999/02/25  20:41:07
9615         Log: Temporary workaround for the config_h.SH versus
9616              crosscompile and multiarch plus introduce 'rt'
9617              to $libswanted: in UNIX98 sched_yield() lives there.
9618      Branch: cfgperl
9619            ! Configure config_h.SH
9620 ____________________________________________________________________________
9621 [  3024] By: jhi                                   on 1999/02/24  12:54:59
9622         Log: Integrate from mainperl.
9623      Branch: cfgperl
9624           +> t/lib/fatal.t
9625           !> (integrate 44 files)
9626 ____________________________________________________________________________
9627 [  3023] By: gsar                                  on 1999/02/24  07:02:12
9628         Log: integrate cfgperl contents
9629      Branch: perl
9630           !> (integrate 30 files)
9631 ____________________________________________________________________________
9632 [  3022] By: gsar                                  on 1999/02/24  05:59:47
9633         Log: From: Daniel Grisinger <dgris@moiraine.dimensional.com>
9634              Date: 23 Feb 1999 17:53:22 -0700
9635              Message-ID: <m3g17w62rh.fsf@moiraine.dimensional.com>
9636              Subject: [PATCH: _55] perldoc -q broken
9637      Branch: perl
9638            ! utils/perldoc.PL
9639 ____________________________________________________________________________
9640 [  3021] By: gsar                                  on 1999/02/24  05:51:53
9641         Log: ansify perlio.c, fix PerlIO-ish typos
9642      Branch: perl
9643            ! ext/DynaLoader/dl_beos.xs ext/DynaLoader/dl_cygwin32.xs
9644            ! iperlsys.h perlio.c
9645 ____________________________________________________________________________
9646 [  3020] By: gsar                                  on 1999/02/24  05:28:06
9647         Log: adjust a Perl_malloc() flag for NeXT
9648              From: Hans Mulder <hansm@icgned.icgroup.nl>
9649              Date: Tue, 23 Feb 99 00:26:25 +0100
9650              Message-Id: <9902222329.AA17516@icgned.icgroup.nl>
9651              Subject: [PATCH for _55] MUTEX_INIT_CALLS_MALLOC no longer necessary
9652      Branch: perl
9653            ! perl.h
9654 ____________________________________________________________________________
9655 [  3019] By: gsar                                  on 1999/02/24  05:19:42
9656         Log: perltodo adjustments from Joshua Pritikin <joshua.pritikin@db.com>
9657      Branch: perl
9658            ! pod/perltodo.pod
9659 ____________________________________________________________________________
9660 [  3018] By: gsar                                  on 1999/02/24  04:15:18
9661         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
9662              Date: Mon, 22 Feb 1999 11:29:09 -0500 (EST)
9663              Message-ID: <Pine.GSO.4.02.9902221128200.500-100000@eq1062.wks.na.deuba.com>
9664              Subject: improved error message [PATCH _55] [RESEND]
9665      Branch: perl
9666            ! sv.c
9667 ____________________________________________________________________________
9668 [  3017] By: gsar                                  on 1999/02/24  03:50:34
9669         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
9670              Date: Sun, 21 Feb 1999 20:02:18 -0700
9671              Message-Id: <199902220302.UAA09981@jhereg.perl.com>
9672              Subject: perlfunc updates (against 55)
9673      Branch: perl
9674            ! pod/perlfunc.pod
9675 ____________________________________________________________________________
9676 [  3016] By: gsar                                  on 1999/02/24  03:17:05
9677         Log: testsuite adjustments
9678              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
9679              Date: Sat, 20 Feb 1999 15:24:57 +0000
9680              Message-Id: <E10EEH3-0003Wf-00@taurus.cus.cam.ac.uk>
9681              Subject: Not quite OK: perl5.005_55 on SunOS 4.1.3 / gcc
9682      Branch: perl
9683            ! t/lib/io_sock.t t/op/lex_assign.t
9684 ____________________________________________________________________________
9685 [  3015] By: gsar                                  on 1999/02/24  02:54:47
9686         Log: avoid modifying readonly values from qw()
9687      Branch: perl
9688            ! lib/ExtUtils/MM_Unix.pm
9689 ____________________________________________________________________________
9690 [  3014] By: gsar                                  on 1999/02/24  02:49:04
9691         Log: more "correct" utbuf for utime()
9692      Branch: perl
9693            ! doio.c
9694 ____________________________________________________________________________
9695 [  3013] By: jhi                                   on 1999/02/22  19:27:44
9696         Log: Fix MacPerl version, change PowerUX to PowerMAX.
9697              
9698              From: Chris Nandor <pudge@pobox.com>
9699              To: jhi@iki.fi
9700              Cc: perl5-porters@perl.org
9701              Subject: Re: perl current availability as documented by perl.pod
9702              Date: Sun, 21 Feb 1999 11:06:03 -0500
9703              Message-Id: <v04020a07b2f5df60c9e3@[192.168.0.77]>
9704              
9705              From: Tom Horsley <Tom.Horsley@mail.ccur.com>
9706              To: jhi@iki.fi
9707              Cc: perl5-porters@perl.org
9708              Subject: Re: perl current availability as documented by perl.pod
9709              Date: Mon, 22 Feb 1999 13:08:30 GMT
9710              Message-Id: <199902221308.NAA19971@cleo.ccur.com>
9711      Branch: cfgperl
9712            ! pod/perl.pod
9713      Branch: maint-5.005/perl
9714            ! pod/perl.pod
9715 ____________________________________________________________________________
9716 [  3012] By: jhi                                   on 1999/02/22  10:26:11
9717         Log: Snapshot the cross-compilation/multiarchitecture stuff
9718              (currently broken in next)
9719      Branch: cfgperl
9720            ! Configure config_h.SH pp.c
9721 ____________________________________________________________________________
9722 [  3011] By: jhi                                   on 1999/02/22  10:24:51
9723         Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
9724              To: gsar@activestate.com (Gurusamy Sarathy)
9725              Cc: perl5-porters@perl.org (Perl5 Porters)
9726              Subject: [PATCH 5.005_55] DB_File 1.64 patch
9727              Date: Mon, 22 Feb 1999 10:07:00 +0000 (GMT)
9728              Message-Id: <9902221007.AA17751@claudius.bfsec.bt.co.uk>
9729      Branch: cfgperl
9730            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
9731            ! ext/DB_File/DB_File.xs ext/DB_File/typemap t/lib/db-recno.t
9732 ____________________________________________________________________________
9733 [  3009] By: jhi                                   on 1999/02/22  09:14:26
9734         Log: Scratch #3008 and introduce $crosscompile and $multiarch
9735              also in non-Configure lands.
9736      Branch: cfgperl
9737            ! Configure config_h.SH hints/next_3.sh hints/next_3_0.sh
9738            ! hints/next_4.sh vms/subconfigure.com win32/config.bc
9739            ! win32/config.gc win32/config.vc win32/config_H.bc
9740            ! win32/config_H.gc win32/config_H.vc
9741 ____________________________________________________________________________
9742 [  3008] By: jhi                                   on 1999/02/22  08:58:04
9743         Log: Add -DMULTIARCH (see change #3006).
9744      Branch: cfgperl
9745            ! hints/next_3.sh hints/next_3_0.sh hints/next_4.sh
9746 ____________________________________________________________________________
9747 [  3007] By: jhi                                   on 1999/02/22  08:54:06
9748         Log: Undo the references to local{lib,arch} introduced by #3006.
9749      Branch: cfgperl
9750            ! Configure config_h.SH
9751 ____________________________________________________________________________
9752 [  3006] By: jhi                                   on 1999/02/22  08:43:50
9753         Log: From: hansm@icgned.icgroup.nl
9754              To: perlbug@perl.com
9755              Subject: Not OK: perl 5.00555 on OPENSTEP-Mach-thread 4_2 (UNINSTALLED)
9756              Date: Sun, 21 Feb 1999 22:58:55 +0100
9757              Reply-To: hansmu@xs4all.nl
9758              Message-Id: <9902212201.AA13386@icgned.icgroup.nl>
9759              
9760              plus other Configure changes: prepare for cross-compilation/
9761              multiarchitecture builds.
9762      Branch: cfgperl
9763            ! Configure config_h.SH
9764 ____________________________________________________________________________
9765 [  3005] By: jhi                                   on 1999/02/22  08:35:30
9766         Log: Configure/Perl knew how to look for use Mach cthreads
9767              but Configure didn't let them to be used ($osname 'next').
9768      Branch: cfgperl
9769            ! Configure config_h.SH
9770      Branch: maint-5.005/perl
9771            ! Configure
9772 ____________________________________________________________________________
9773 [  3004] By: jhi                                   on 1999/02/21  15:46:02
9774         Log: Update Acorn AVAILABILITY.
9775      Branch: cfgperl
9776            ! pod/perl.pod
9777      Branch: maint-5.005/perl
9778            ! pod/perl.pod
9779 ____________________________________________________________________________
9780 [  3003] By: jhi                                   on 1999/02/21  14:50:42
9781         Log: From: rjk@linguist.dartmouth.edu (Ronald J. Kimball)
9782              To: perl5-porters@perl.org (Perl 5 Porters)
9783              Subject: PATCH: perlref.pod - symbolic ref example
9784              Date: Sat, 20 Feb 1999 17:32:11 -0500 (EST)
9785              Message-Id: <199902202232.RAA62306@linguist.dartmouth.edu>
9786      Branch: cfgperl
9787            ! pod/perlref.pod
9788      Branch: maint-5.005/perl
9789            ! pod/perlref.pod
9790 ____________________________________________________________________________
9791 [  3002] By: jhi                                   on 1999/02/21  14:35:22
9792         Log: Sync cfgperl with maint-5.005 change #3000.
9793      Branch: cfgperl
9794            ! pod/perlfunc.pod t/op/pack.t
9795 ____________________________________________________________________________
9796 [  2999] By: gsar                                  on 1999/02/20  22:48:30
9797         Log: From:    John Bley <jbb6@acpub.duke.edu>
9798              Date:    Sat, 20 Feb 1999 16:02:34 EST
9799              Message-Id: <Pine.SOL.3.91.990220155832.9913A-100000@soc11.acpub.duke.edu>
9800              Subject: [PATCH]5.005_55 (CORE) Sparse intializer in regcomp.c
9801      Branch: perl
9802            ! regcomp.c
9803 ____________________________________________________________________________
9804 [  2998] By: jhi                                   on 1999/02/20  14:13:06
9805         Log: Enhanced the endianness description.
9806      Branch: cfgperl
9807            ! pod/perlfunc.pod
9808 ____________________________________________________________________________
9809 [  2996] By: jhi                                   on 1999/02/20  13:55:41
9810         Log: Glossary now mostly fixed.
9811      Branch: cfgperl
9812            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
9813            ! config_h.SH
9814 ____________________________________________________________________________
9815 [  2994] By: jhi                                   on 1999/02/20  11:58:33
9816         Log: Perldeltify GNU/Hurd.
9817      Branch: cfgperl
9818            ! pod/perldelta.pod
9819 ____________________________________________________________________________
9820 [  2993] By: gsar                                  on 1999/02/20  00:59:10
9821         Log: fix typo in Perl_sbrk()
9822              From: hansm@icgned.icgroup.nl
9823              Date: Fri, 19 Feb 1999 23:19:31 +0100
9824              Message-Id: <9902192221.AA07213@icgned.icgroup.nl>
9825              Subject: Not OK: perl 5.00555 on OPENSTEP-Mach 4_2 (UNINSTALLED)
9826      Branch: perl
9827            ! malloc.c
9828 ____________________________________________________________________________
9829 [  2992] By: gsar                                  on 1999/02/20  00:51:08
9830         Log: integrate change#2980 from maint-5.005
9831      Branch: perl
9832           !> utils/h2xs.PL
9833 ____________________________________________________________________________
9834 [  2991] By: gsar                                  on 1999/02/20  00:34:01
9835         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
9836              Date: Thu, 18 Feb 1999 18:51:38 +0000
9837              Message-Id: <199902181851.SAA14018@crypt.compulink.co.uk>
9838              Subject: [PATCH 5.005_55] test failures with MIME-tools-4.122 and perl 5.005_55 
9839      Branch: perl
9840            ! pp_hot.c t/op/pat.t
9841 ____________________________________________________________________________
9842 [  2990] By: gsar                                  on 1999/02/20  00:30:48
9843         Log: From: jan.dubois@ibm.net (Jan Dubois)
9844              Date: Thu, 18 Feb 1999 19:14:07 +0100
9845              Message-ID: <36d15809.40853323@smtp1.ibm.net>
9846              Subject: resend [PATCH 5.005_55] Various win32/win32.c cleanup
9847      Branch: perl
9848            ! win32/win32.c
9849 ____________________________________________________________________________
9850 [  2989] By: gsar                                  on 1999/02/20  00:27:01
9851         Log: do poll() emulation unless HAS_POLL && I_POLL
9852      Branch: perl
9853            ! ext/IO/poll.h
9854 ____________________________________________________________________________
9855 [  2988] By: gsar                                  on 1999/02/19  23:52:12
9856         Log: tweak RE for NaNQ? recognition
9857      Branch: perl
9858            ! t/lib/bigfloatpm.t
9859 ____________________________________________________________________________
9860 [  2987] By: gsar                                  on 1999/02/19  23:29:59
9861         Log: mention C<use utf8> and C<use warning> in perldelta
9862      Branch: perl
9863            ! pod/perldelta.pod
9864 ____________________________________________________________________________
9865 [  2985] By: jhi                                   on 1999/02/19  20:43:19
9866         Log: pack/unpack better in (network-)short-non-16-bits and
9867              (network-)long-non-32-bits systems such as Cray C90.
9868      Branch: cfgperl
9869            ! perl.h pp.c t/op/pack.t
9870 ____________________________________________________________________________
9871 [  2984] By: jhi                                   on 1999/02/19  20:38:54
9872         Log: Regen Configure.
9873      Branch: cfgperl
9874            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
9875            ! perl.c
9876 ____________________________________________________________________________
9877 [  2982] By: jhi                                   on 1999/02/19  19:51:49
9878         Log: Configure update: fstatvfs/fstafs/getmntent/hasmntopt were
9879              not probed for and         
9880              
9881              From: "Kurt D. Starsinic" <kstar@chapin.edu>
9882              To: Chaim Frenkel <chaimf@pobox.com>,
9883              Russ Allbery <rra@stanford.edu>,
9884              Jarkko Hietaniemi <jhi@iki.fi>,
9885              Gurusamy Sarathy <gsar@activestate.com>,
9886              Graham Barr <gbarr@pobox.com>
9887              Cc: bdensch@ameritech.net, perlbug@perl.com
9888              Subject: [PATCH] Re: Solaris 7 for Intel
9889              Message-ID: <19990219124404.A30182@O2.chapin.edu>
9890              
9891              Glossary is still missing some terms because
9892              mkglossary is misbehaving (change #2981 updated
9893              Glossary manually)
9894      Branch: cfgperl
9895            ! Configure Makefile.SH Porting/Glossary Porting/config.sh
9896            ! Porting/config_H
9897 ____________________________________________________________________________
9898 [  2980] By: gbarr                                 on 1999/02/19  16:06:53
9899         Log: Make result of h2xs work when user adds C<use strict>
9900      Branch: maint-5.005/perl
9901            ! utils/h2xs.PL
9902 ____________________________________________________________________________
9903 [  2979] By: gsar                                  on 1999/02/19  05:24:29
9904         Log: doc for change#2978
9905      Branch: perl
9906            ! pod/perlsub.pod
9907 ____________________________________________________________________________
9908 [  2978] By: gsar                                  on 1999/02/19  05:08:29
9909         Log: bring '*' prototype closer to how it behaves internally
9910      Branch: perl
9911            + t/lib/fatal.t
9912            ! MANIFEST lib/Fatal.pm op.c t/comp/proto.t
9913 ____________________________________________________________________________
9914 [  2977] By: gsar                                  on 1999/02/19  02:50:31
9915         Log: stem leakage of perly.h #defines #ifndef PERL_CORE
9916      Branch: perl
9917            ! perly.h
9918 ____________________________________________________________________________
9919 [  2975] By: gsar                                  on 1999/02/18  21:41:57
9920         Log: distinguish eval'' from BEGIN|INIT|END CVs (fixes buggy propagation
9921              of lexical searches in BEGIN|INIT|END)
9922      Branch: perl
9923            ! cop.h cv.h op.c perly.c perly.y pp_ctl.c t/op/misc.t
9924            ! vms/perly_c.vms
9925 ____________________________________________________________________________
9926 [  2974] By: gsar                                  on 1999/02/18  21:03:06
9927         Log: missing PERL_POLLUTE_MALLOC
9928      Branch: perl
9929            ! ext/SDBM_File/sdbm/sdbm.h
9930 ____________________________________________________________________________
9931 [  2973] By: gsar                                  on 1999/02/18  17:10:49
9932         Log: From:    Andy Dougherty <doughera@lafayette.edu>
9933              Date:    Wed, 17 Feb 1999 17:22:50 EST
9934              Message-Id: <Pine.GSU.4.05.9902171720490.17243-100000@newton.phys>
9935              Subject: [PATCH 5.005_xx] dotsh.pl triggers new warnings
9936      Branch: perl
9937            ! lib/dotsh.pl
9938 ____________________________________________________________________________
9939 [  2972] By: gsar                                  on 1999/02/18  17:04:12
9940         Log: s/#defined/#define/
9941      Branch: perl
9942            ! ext/Data/Dumper/Dumper.xs
9943 ____________________________________________________________________________
9944 [  2970] By: gsar                                  on 1999/02/18  03:26:43
9945         Log: ensure is data malloc()ed by GDBM is free()d (not Perl_mfree()d)
9946      Branch: perl
9947            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
9948            ! ext/GDBM_File/typemap
9949 ____________________________________________________________________________
9950 [  2969] By: gsar                                  on 1999/02/17  23:30:47
9951         Log: correct slurp mode doc
9952      Branch: perl
9953            ! pod/perlfunc.pod pod/perlop.pod
9954 ____________________________________________________________________________
9955 [  2968] By: jhi                                   on 1999/02/17  23:15:49
9956         Log: Ultrix hints update.
9957              
9958              From: Spider Boardman <spider@zk3.dec.com>
9959              To: perlbug@perl.com
9960              Subject: Not OK: perl 5.00555 on RISC-ultrix 4.4 (UNINSTALLED)
9961              Date: Tue, 16 Feb 1999 23:04:28 -0500
9962              Message-Id: <9902170404.AA11036@abyss.zk3.dec.com>
9963      Branch: cfgperl
9964            ! hints/ultrix_4.sh
9965 ____________________________________________________________________________
9966 [  2966] By: jhi                                   on 1999/02/17  23:09:21
9967         Log: Change #2965 wiped out some Sarathy's _55 changes.
9968              Now unwiped.
9969      Branch: cfgperl
9970            ! Configure pp.c t/op/pack.t
9971 ____________________________________________________________________________
9972 [  2965] By: jhi                                   on 1999/02/17  23:00:04
9973         Log: Configure tweaks.
9974              
9975              Fix the Unixware/SCO uname scan:
9976              
9977              From: Tom Hughes <thh@cyberscience.com>
9978              To: perlbug@perl.com
9979              Subject: Not OK: perl 5.00555 on i386-svr4 [actually Unixware 2.1] (UNINSTALLED)
9980              Date: 17 Feb 1999 15:34:15 +0000    
9981              Message-ID: <yekg185nix4.fsf@elva.cyberscience.com>
9982              
9983              AIX syscalls.exp scan: the syscall might be marked 32, 3264, or 64
9984              
9985              From: Joe Buehler <jhpb@hekimian.com>
9986              To: perl5-porters@perl.org
9987              Subject: setsid not detected by perl 5.005_02 configure under AIX 4.3
9988              Date: 12 Feb 1999 11:25:21 -0500
9989              Message-ID: <yd3lni3613i.fsf@ganymede.hekimian.com>
9990              
9991              Make the pthreads joinable constant scan to output to fd 4, not 2.
9992      Branch: cfgperl
9993            ! Configure
9994 ____________________________________________________________________________
9995 [  2964] By: gsar                                  on 1999/02/17  21:30:07
9996         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
9997              Date: Wed, 17 Feb 1999 06:53:13 -0700
9998              Message-Id: <199902171353.GAA15682@jhereg.perl.com>
9999              Subject: PATCH: lib/Pod/Functions.pm for perl5.005_55
10000      Branch: perl
10001            ! lib/Pod/Functions.pm
10002 ____________________________________________________________________________
10003 [  2963] By: gsar                                  on 1999/02/17  21:18:21
10004         Log: fix comppad handling for failures in eval 'qr/(?p{...})/'
10005              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
10006              Date: Wed, 17 Feb 1999 10:06:01 +0000
10007              Message-Id: <199902171006.KAA10204@crypt.compulink.co.uk>
10008              Subject: Re: [5.005_53] panic: pad_free curpad 
10009      Branch: perl
10010            ! regcomp.c regexec.c t/op/misc.t
10011 ____________________________________________________________________________
10012 [  2962] By: gsar                                  on 1999/02/16  21:26:28
10013         Log: NaNQ? tweak
10014      Branch: perl
10015            ! t/lib/bigfloatpm.t
10016 ____________________________________________________________________________
10017 [  2961] By: jhi                                   on 1999/02/16  19:26:38
10018         Log: Integrate from mainperl.
10019      Branch: cfgperl
10020           !> (integrate 37 files)
10021 ____________________________________________________________________________
10022 [  2960] By: gsar                                  on 1999/02/16  18:04:29
10023         Log: undo change#2465 (qw[] is a real list now)
10024      Branch: perl
10025            ! pod/perlop.pod
10026 ____________________________________________________________________________
10027 [  2959] By: gsar                                  on 1999/02/16  07:09:33
10028         Log: this was 5.005_55
10029      Branch: perl
10030            ! Changes
10031
10032 ----------------
10033 Version 5.005_55
10034 ----------------
10035
10036 ____________________________________________________________________________
10037 [  2958] By: gsar                                  on 1999/02/16  06:18:27
10038         Log: integrate change#2852 from maint-5.005; integrate cfgperl contents;
10039              elide dups and non-dependents from Changes
10040      Branch: perl
10041            ! Changes pod/perlhist.pod
10042           !> Configure INSTALL README.threads doio.c ext/IPC/SysV/SysV.xs
10043           !> hints/ultrix_4.sh pod/perl.pod pod/perlfunc.pod
10044           !> pod/perlport.pod pp.c t/op/pack.t
10045 ____________________________________________________________________________
10046 [  2957] By: gsar                                  on 1999/02/16  04:09:47
10047         Log: propagate PERL_VERSION everywhere, add to pod
10048      Branch: perl
10049            ! Configure configpm configure.com ext/B/B/C.pm ext/B/byteperl.c
10050            ! ext/DB_File/DB_File.xs ext/Data/Dumper/Dumper.xs ext/IO/IO.xs
10051            ! hints/freebsd.sh hints/os2.sh installman installperl myconfig
10052            ! os2/Makefile.SHs os2/os2.c patchlevel.h perl.c perl.h
10053            ! plan9/genconfig.pl plan9/myconfig.plan9 plan9/versnum
10054            ! pod/perldebug.pod pod/perldelta.pod vms/genconfig.pl
10055            ! vms/myconfig.com vms/subconfigure.com win32/config.bc
10056            ! win32/config.gc win32/config.vc win32/config_sh.PL
10057            ! win32/win32.c x2p/a2py.c
10058 ____________________________________________________________________________
10059 [  2955] By: jhi                                   on 1999/02/15  16:15:03
10060         Log: The pack tests now better in C90 (after the packnative patches).
10061      Branch: cfgperl
10062            ! t/op/pack.t
10063 ____________________________________________________________________________
10064 [  2954] By: gsar                                  on 1999/02/15  14:11:50
10065         Log: tweak Configure to follow new PERL_VERSION etc.
10066      Branch: perl
10067            ! Configure patchlevel.h pod/perlhist.pod
10068 ____________________________________________________________________________
10069 [  2953] By: jhi                                   on 1999/02/15  14:02:21
10070         Log: Integrate from mainperl.
10071      Branch: cfgperl
10072           !> MANIFEST Porting/makerel
10073 ____________________________________________________________________________
10074 [  2952] By: jhi                                   on 1999/02/15  13:50:07
10075         Log: Enhance the packnative patch: use the packnative code
10076              only if required.  Also added hefty testing (hopefully
10077              I didn't assume too much...).  Tested on alpha, ix86, sparc.
10078      Branch: cfgperl
10079            ! pod/perlfunc.pod pp.c t/op/pack.t
10080 ____________________________________________________________________________
10081 [  2951] By: jhi                                   on 1999/02/15  13:46:56
10082         Log: AVAILABILITY from 5.005_03-tobe, will of course
10083              require updating when 5.006 comes out.
10084      Branch: cfgperl
10085            ! pod/perl.pod
10086 ____________________________________________________________________________
10087 [  2949] By: gsar                                  on 1999/02/15  13:28:51
10088         Log: will this be it for 5.005_55?
10089      Branch: perl
10090            ! MANIFEST Porting/makerel
10091 ____________________________________________________________________________
10092 [  2948] By: jhi                                   on 1999/02/15  13:23:52
10093         Log: Integrate from mainperl.
10094      Branch: cfgperl
10095           !> Changes Makefile.SH ext/B/B/C.pm patchlevel.h perl.h
10096           !> pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod
10097           !> pod/perlfaq4.pod pod/perlfaq9.pod pod/perlmodinstall.pod
10098           !> pod/perlmodlib.pod pod/perltoc.pod t/io/argv.t
10099           !> t/lib/bigfloatpm.t t/lib/h2ph.t win32/Makefile win32/config.bc
10100           !> win32/config.gc win32/config.vc win32/config_H.bc
10101           !> win32/config_H.gc win32/config_H.vc win32/makefile.mk
10102 ____________________________________________________________________________
10103 [  2947] By: jhi                                   on 1999/02/15  13:20:41
10104         Log: perlport.pod 1.39 from Chris.
10105      Branch: cfgperl
10106            ! pod/perlport.pod
10107 ____________________________________________________________________________
10108 [  2946] By: jhi                                   on 1999/02/15  13:09:58
10109         Log: Import Ultrix update, change #2864, 
10110              
10111              From: Spider Boardman <spider@zk3.dec.com>
10112              To: perlbug@perl.com
10113              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on RISC-ultrix 4.4 (UNINSTALLED)
10114              Date: Wed, 10 Feb 1999 23:33:31 -0500
10115              Message-Id: <9902110433.AA12816@abyss.zk3.dec.com>
10116      Branch: cfgperl
10117            ! doio.c ext/IPC/SysV/SysV.xs hints/ultrix_4.sh
10118 ____________________________________________________________________________
10119 [  2945] By: jhi                                   on 1999/02/15  13:04:50
10120         Log: OpenBSD sparc SHMLBA.
10121      Branch: cfgperl
10122            ! ext/IPC/SysV/SysV.xs
10123 ____________________________________________________________________________
10124 [  2944] By: gsar                                  on 1999/02/15  12:09:52
10125         Log: update win32/config* stuff, Changes
10126      Branch: perl
10127            ! Changes win32/Makefile win32/config.bc win32/config.gc
10128            ! win32/config.vc win32/config_H.bc win32/config_H.gc
10129            ! win32/config_H.vc win32/makefile.mk
10130 ____________________________________________________________________________
10131 [  2943] By: gsar                                  on 1999/02/15  11:54:08
10132         Log: #include patchlevel.h by default, provide
10133              PERL_{REVISION,VERSION,SUBVERSION}
10134      Branch: perl
10135            ! patchlevel.h perl.h
10136 ____________________________________________________________________________
10137 [  2942] By: gsar                                  on 1999/02/15  10:26:59
10138         Log: allow /0|NaN/ on some bigfloatpm.t tests for portability; other
10139              misc fixes
10140      Branch: perl
10141            ! Makefile.SH t/io/argv.t t/lib/bigfloatpm.t t/lib/h2ph.t
10142 ____________________________________________________________________________
10143 [  2941] By: gsar                                  on 1999/02/15  10:24:37
10144         Log: broken URLs fixed (from Michael G Schwern <schwern@pobox.com>)
10145              Message-ID: <19990207002851.B9185@toldyouso.com>
10146              Message-ID: <19990207212152.A9765@toldyouso.com>
10147              Message-ID: <19990207212041.A9622@toldyouso.com>
10148              Message-ID: <19990207213127.A10244@toldyouso.com>
10149              Message-ID: <19990207212559.A9950@toldyouso.com>
10150              Message-ID: <19990207212842.A9994@toldyouso.com>
10151              Message-ID: <19990207212500.A9860@toldyouso.com>
10152              Message-ID: <19990207213013.A10105@toldyouso.com>
10153      Branch: perl
10154            ! pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod
10155            ! pod/perlfaq4.pod pod/perlfaq9.pod pod/perlmodinstall.pod
10156            ! pod/perlmodlib.pod pod/perltoc.pod
10157 ____________________________________________________________________________
10158 [  2940] By: gsar                                  on 1999/02/15  10:07:08
10159         Log: enable dynaloading in C.pm-compiled programs (non-conflicting part
10160              of suggested patch)
10161              From: "Vishal Bhatia" <vishalb@my-dejanews.com>
10162              Date: Mon, 08 Feb 1999 01:14:41 -0000
10163              Message-ID: <DHIDFFOPMEFDBAAA@my-dejanews.com>
10164              Subject: [PATCH 5.005_54] some pending C.pm stuff 
10165      Branch: perl
10166            ! ext/B/B/C.pm
10167 ____________________________________________________________________________
10168 [  2939] By: jhi                                   on 1999/02/15  08:40:18
10169         Log: Integrate from mainperl.
10170      Branch: cfgperl
10171           +> t/lib/bigfloat.t t/lib/bigfloatpm.t
10172            - lib/File/PathConvert.pm
10173           !> (integrate 81 files)
10174 ____________________________________________________________________________
10175 [  2938] By: gsar                                  on 1999/02/15  06:56:39
10176         Log: change#2839 was bogus, redo
10177      Branch: perl
10178           !> t/lib/h2ph.pht
10179 ____________________________________________________________________________
10180 [  2937] By: gsar                                  on 1999/02/15  06:38:15
10181         Log: support Win32::GetFullPathName() and Win32::SetLastError()
10182              From: jan.dubois@ibm.net (Jan Dubois)
10183              Date: Tue, 09 Feb 1999 22:27:31 +0100
10184              Message-ID: <36c1a2ed.8007554@smtp1.ibm.net>
10185              Subject: [PATCH _54] Win32::GetFullPathName (Re: File::Spec::Win32 and UNCs)
10186      Branch: perl
10187            ! win32/win32.c
10188 ____________________________________________________________________________
10189 [  2936] By: gsar                                  on 1999/02/15  06:26:39
10190         Log: support native integers, pack("L_",...) etc. (via private mail)
10191              From: Jarkko Hietaniemi <jhi@iki.fi>
10192              Date: Wed, 10 Feb 1999 00:04:52 +0200 (EET)
10193              Message-Id: <199902092204.AAA29065@alpha.hut.fi>
10194              Subject: the "packnative" patch
10195      Branch: perl
10196            ! pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod pp.c
10197            ! t/lib/ipc_sysv.t t/op/pack.t
10198 ____________________________________________________________________________
10199 [  2935] By: gsar                                  on 1999/02/15  06:04:02
10200         Log: From: Michael G Schwern <schwern@pobox.com>
10201              Date: Tue, 9 Feb 1999 04:13:12 -0500
10202              Message-ID: <19990209041312.A15788@toldyouso.com>
10203              Subject: [PATCH]5.005_03-MAINT_TRIAL_5 utils/h2xs fixing -A & more
10204      Branch: perl
10205            ! utils/h2xs.PL
10206 ____________________________________________________________________________
10207 [  2934] By: gsar                                  on 1999/02/15  05:30:13
10208         Log: fix bugs in the handling of negative numbers, among other things
10209              From: Steven Knight <knight@theopera.baldmt.citilink.com>
10210              Date: Mon, 8 Feb 1999 01:16:24 -0600
10211              Message-Id: <199902080716.BAA24652@theopera.baldmt.citilink.com>
10212              Subject: Math::BigFloat and Math::BigInt
10213      Branch: perl
10214            + t/lib/bigfloat.t t/lib/bigfloatpm.t
10215            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/bigfloat.pl
10216            ! t/lib/bigintpm.t
10217 ____________________________________________________________________________
10218 [  2933] By: gsar                                  on 1999/02/15  04:57:52
10219         Log: From: "J. van Krieken" <John.van.Krieken@ATComputing.nl>
10220              Date: Thu, 4 Feb 1999 17:25:25 +0100 (MET)
10221              Message-Id: <199902041625.RAA14489@atcmpg.ATComputing.nl>
10222              Subject: s2p incorrectly handles hold space commands
10223      Branch: perl
10224            ! x2p/s2p.PL
10225 ____________________________________________________________________________
10226 [  2932] By: gsar                                  on 1999/02/15  04:45:55
10227         Log: clarify what a "line" is
10228      Branch: perl
10229            ! pod/perlfunc.pod pod/perlvar.pod
10230 ____________________________________________________________________________
10231 [  2931] By: gsar                                  on 1999/02/15  04:23:29
10232         Log: backout change#2811 and add newer version based on File::Spec
10233              From: Barrie Slaymaker <rbs@telerama.com>
10234              Date: Thu, 11 Feb 1999 16:29:24 -0500
10235              Message-ID: <36C34BB4.A62090E0@telerama.com>
10236              Subject: [PATCH]5.005_54 (pod2html) Relative URLs using new File::Spec
10237      Branch: perl
10238            - lib/File/PathConvert.pm
10239            ! MANIFEST installhtml lib/Pod/Html.pm
10240 ____________________________________________________________________________
10241 [  2930] By: gsar                                  on 1999/02/15  04:16:25
10242         Log: From: Barrie Slaymaker <rbs@telerama.com>
10243              Date: Thu, 11 Feb 1999 19:39:48 -0500
10244              Message-ID: <36C37854.707D139@telerama.com>
10245              Subject: [PATCH] 5.005_54 #2 Merging File::PathConvert in to File::Spec
10246      Branch: perl
10247            ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
10248 ____________________________________________________________________________
10249 [  2929] By: gsar                                  on 1999/02/15  04:06:50
10250         Log: patches suggested by John Bley <jbb6@acpub.duke.edu> (with minor edits)
10251              Date: Wed, 3 Feb 1999 05:24:55 -0500 (EST)
10252              Message-ID: <Pine.SOL.3.91.990203051924.302A-100000@soc11.acpub.duke.edu>
10253              Subject: [PATCH]5.005_54 (DOC) fix many typos
10254              --
10255              Date: Wed, 3 Feb 1999 08:53:53 -0500 (EST)
10256              Message-ID: <Pine.SOL.3.91.990203085157.895A-100000@soc11.acpub.duke.edu>
10257              Subject: [PATCH]5.005_54 (DOC) typos
10258      Branch: perl
10259            ! pod/perl5004delta.pod pod/perl5005delta.pod pod/perlcall.pod
10260            ! pod/perldebug.pod pod/perlfaq1.pod pod/perlfaq2.pod
10261            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
10262            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
10263            ! pod/perlfaq9.pod pod/perlfunc.pod pod/perlguts.pod
10264            ! pod/perllol.pod pod/perlmod.pod pod/perlref.pod
10265            ! pod/perlrun.pod pod/perlsub.pod pod/perltoc.pod
10266            ! pod/perlvar.pod pod/perlxs.pod
10267 ____________________________________________________________________________
10268 [  2928] By: gsar                                  on 1999/02/15  03:39:53
10269         Log: allow the Carp routines to pass through exception objects
10270      Branch: perl
10271            ! lib/Carp.pm
10272 ____________________________________________________________________________
10273 [  2927] By: gsar                                  on 1999/02/15  03:22:57
10274         Log: mention Proc::Daemon (suggested by Michael G Schwern <schwern@pobox.com>)
10275      Branch: perl
10276            ! pod/perlfaq8.pod
10277 ____________________________________________________________________________
10278 [  2926] By: gsar                                  on 1999/02/15  03:19:39
10279         Log: integrate h2ph.PL fixes from change#2809 (change#2838 was supposed to
10280              have done that, but didn't)
10281      Branch: perl
10282           !> utils/h2ph.PL
10283 ____________________________________________________________________________
10284 [  2925] By: gsar                                  on 1999/02/15  03:17:01
10285         Log: integrate cfgperl changes into mainline
10286      Branch: perl
10287            ! Changes
10288           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
10289           !> config_h.SH hints/openbsd.sh hints/ultrix_4.sh
10290           !> pod/perlport.pod t/lib/h2ph.pht utils/h2ph.PL
10291           !> vms/subconfigure.com
10292 ____________________________________________________________________________
10293 [  2924] By: gsar                                  on 1999/02/15  03:07:08
10294         Log: add const qualifier to most char* prototypes, handle ripple effect
10295      Branch: perl
10296            ! gv.c hv.c hv.h mg.c op.c perl.c pod/perlguts.pod proto.h sv.c
10297            ! universal.c util.c
10298 ____________________________________________________________________________
10299 [  2923] By: gsar                                  on 1999/02/15  01:04:30
10300         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
10301              Date: Thu, 04 Feb 1999 02:37:31 +0000
10302              Message-Id: <199902040237.CAA03255@crypt.compulink.co.uk>
10303              Subject: [PATCH 5.005_54] Re: .. misinterpreted as flipflop 
10304      Branch: perl
10305            ! pp_ctl.c t/op/range.t
10306 ____________________________________________________________________________
10307 [  2922] By: gsar                                  on 1999/02/15  00:24:34
10308         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
10309              Date: Sun, 31 Jan 1999 01:50:06 +0000
10310              Message-Id: <199901310150.BAA16299@crypt.compulink.co.uk>
10311              Subject: [PATCH 5.005_03t4] regexp flags bug
10312      Branch: perl
10313            ! regcomp.c t/op/re_tests
10314 ____________________________________________________________________________
10315 [  2921] By: gsar                                  on 1999/02/15  00:13:02
10316         Log: use New() et al., rather than safemalloc() et al.
10317              From: jan.dubois@ibm.net (Jan Dubois)
10318              Date: Fri, 29 Jan 1999 23:27:22 +0100
10319              Message-ID: <36bd33f2.51029616@smtp1.ibm.net>
10320              Subject: [PATCH _03-MT5] POSIX.xs memory API
10321      Branch: perl
10322            ! ext/POSIX/POSIX.xs
10323 ____________________________________________________________________________
10324 [  2920] By: gsar                                  on 1999/02/15  00:05:33
10325         Log: tweak READ() docs to mention $buffer must be altered by reference
10326      Branch: perl
10327            ! pod/perltie.pod
10328 ____________________________________________________________________________
10329 [  2919] By: gsar                                  on 1999/02/14  23:50:39
10330         Log: applied suggested patch, with several language/readability tweaks
10331              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10332              Date: Fri, 29 Jan 1999 00:25:02 -0500
10333              Message-ID: <19990129002502.C2898@monk.mps.ohio-state.edu>
10334              Subject: Re: [PATCH 5.005_*] Better parsing docs
10335      Branch: perl
10336            ! pod/perlop.pod
10337 ____________________________________________________________________________
10338 [  2918] By: gsar                                  on 1999/02/14  23:20:42
10339         Log: several bug fixes; now croak()s when date exceeds integer limits (instead
10340              of silently returning bogus values)
10341              From: Peter Chines <pchines@nhgri.nih.gov>
10342              Date: Wed, 27 Jan 1999 16:11:31 -0500
10343              Message-Id: <199901272117.QAA21458@kronos.nhgri.nih.gov>
10344              Subject: Time::Local
10345      Branch: perl
10346            ! lib/Time/Local.pm pod/perldelta.pod
10347 ____________________________________________________________________________
10348 [  2917] By: gsar                                  on 1999/02/14  11:21:43
10349         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10350              Date: Thu, 28 Jan 1999 10:02:20 -0500
10351              Message-ID: <19990128100220.A1321@monk.mps.ohio-state.edu>
10352              Subject: Re: [PATCH 5.005_53] Better perldoc
10353      Branch: perl
10354            ! utils/perldoc.PL
10355 ____________________________________________________________________________
10356 [  2916] By: gsar                                  on 1999/02/14  10:59:38
10357         Log: back out change#2751, apply updated version 
10358              From: jan.dubois@ibm.net (Jan Dubois)
10359              Date: Sat, 06 Feb 1999 01:06:29 +0100
10360              Message-ID: <36bc844c.18763049@smtp1.ibm.net>
10361              Subject: [PATCH] Cleanup of File::Spec module
10362      Branch: perl
10363            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
10364            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
10365            ! lib/File/Spec/Win32.pm
10366 ____________________________________________________________________________
10367 [  2915] By: gsar                                  on 1999/02/14  10:48:01
10368         Log: tweak select() test
10369      Branch: perl
10370            ! pod/perlipc.pod t/op/fh.t
10371 ____________________________________________________________________________
10372 [  2914] By: gsar                                  on 1999/02/14  10:25:55
10373         Log: allow C<select('foo')> to autovivify *foo (SelectSaver expects that)
10374      Branch: perl
10375            ! op.c pod/perldiag.pod pp_sys.c t/op/misc.t
10376 ____________________________________________________________________________
10377 [  2913] By: gsar                                  on 1999/02/14  10:03:51
10378         Log: From: Kenneth Albanowski <kjahds@kjahds.com>
10379              Date: Sat, 23 Jan 1999 21:52:15 -0500 (EST)
10380              Message-ID: <Pine.LNX.3.93.990123212857.446B-100000@kjahds.kjahds.com>
10381              Subject: Re: SvOPV() or SvPV_nolen() or ...
10382      Branch: perl
10383            ! pod/perlguts.pod
10384 ____________________________________________________________________________
10385 [  2912] By: gsar                                  on 1999/02/14  09:57:29
10386         Log: provide SvPV_nolen(sv) to avoid use of PL_na
10387              From: jan.dubois@ibm.net (Jan Dubois)
10388              Date: Sun, 24 Jan 1999 02:45:32 +0100
10389              Message-ID: <36bb7ada.68485547@smtp1.ibm.net>
10390              Subject: [PATCH 5.005_54]  _54 version of SvPV_nolen patch
10391      Branch: perl
10392            ! embed.h global.sym objXSUB.h pod/perlguts.pod proto.h sv.c
10393            ! sv.h
10394 ____________________________________________________________________________
10395 [  2911] By: gsar                                  on 1999/02/14  06:51:05
10396         Log: elide stray effluvium
10397      Branch: perl
10398            ! pod/perldelta.pod
10399 ____________________________________________________________________________
10400 [  2910] By: gsar                                  on 1999/02/14  05:51:56
10401         Log: slurping an empty file should return '' rather than undef, with
10402              commensurate effects on ARGV processing
10403      Branch: perl
10404            ! pod/perldelta.pod pod/perlfunc.pod pod/perlop.pod
10405            ! pod/perlvar.pod pp_hot.c sv.h t/io/argv.t
10406 ____________________________________________________________________________
10407 [  2909] By: gsar                                  on 1999/02/14  00:02:11
10408         Log: perly_c.diff typo
10409      Branch: perl
10410            ! perly.c perly_c.diff vms/perly_c.vms
10411 ____________________________________________________________________________
10412 [  2908] By: gsar                                  on 1999/02/13  18:20:13
10413         Log: From: jan.dubois@ibm.net (Jan Dubois)
10414              Date: Sat, 13 Feb 1999 13:25:53 +0100
10415              Message-Id: <36c9629c.13334874@smtp1.ibm.net>
10416              Subject: [PATCH 5.005_03-MT5] "goto must have label" message for C<goto ''>
10417      Branch: perl
10418            ! pod/perlfunc.pod pp_ctl.c t/lib/io_unix.t
10419 ____________________________________________________________________________
10420 [  2907] By: jhi                                   on 1999/02/13  15:07:26
10421         Log: Integrate from mainperl.
10422      Branch: cfgperl
10423           +> emacs/e2ctags.pl pod/perltodo.pod t/op/lop.t
10424           !> (integrate 150 files)
10425 ____________________________________________________________________________
10426 [  2903] By: gsar                                  on 1999/02/12  13:25:59
10427         Log: From: jan.dubois@ibm.net (Jan Dubois)
10428              Date: Sun, 24 Jan 1999 01:12:00 +0100
10429              Message-ID: <36b66479.62756298@smtp1.ibm.net>
10430              Subject: [PATCH 5.005_54] remove OVERLOAD conditionals
10431      Branch: perl
10432            ! XSUB.h dump.c gv.c hv.h mg.c perl.h perlvars.h pp.c pp.h
10433            ! proto.h sv.c sv.h
10434 ____________________________________________________________________________
10435 [  2902] By: gsar                                  on 1999/02/12  12:55:11
10436         Log: script to generate ctags from etags
10437              From: Colin Kuskie <ckuskie@cadence.com>
10438              Date: Wed, 20 Jan 1999 16:29:35 -0800 (PST)
10439              Message-ID: <Pine.GSO.3.96.990120160519.5755Q-100000@pdxue150.cadence.com>
10440              Subject: [PATCH 5.005_54] adding ctags to the source, FAQ, make
10441      Branch: perl
10442            + emacs/e2ctags.pl
10443            ! Makefile.SH pod/perlfaq3.pod
10444 ____________________________________________________________________________
10445 [  2901] By: gsar                                  on 1999/02/12  12:40:17
10446         Log: allow boolean assign ops to be lvalues
10447              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
10448              Date: Mon, 11 Jan 1999 16:52:18 -0600 (CST)
10449              Message-ID: <13978.32609.495338.544643@alias-2.pr.mcs.net>
10450              --
10451              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
10452              Date: Mon, 18 Jan 1999 10:04:00 +0000
10453              Message-Id: <199901181004.KAA17471@crypt.compulink.co.uk>
10454              Subject: Re: [inconsistency 5.005_54] ||= not an lvalue 
10455      Branch: perl
10456            + t/op/lop.t
10457            ! MANIFEST op.c
10458 ____________________________________________________________________________
10459 [  2899] By: jhi                                   on 1999/02/12  12:03:48
10460         Log: Configure update: OpenBSD thread-awareness, SCO ODT/OSR osvers.
10461      Branch: cfgperl
10462            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
10463            ! config_h.SH hints/openbsd.sh
10464 ____________________________________________________________________________
10465 [  2898] By: gsar                                  on 1999/02/12  11:49:25
10466         Log: support win32_putenv()
10467      Branch: perl
10468            ! mg.c util.c win32/GenCAPI.pl win32/makedef.pl win32/perlhost.h
10469            ! win32/win32.c win32/win32iop.h
10470 ____________________________________________________________________________
10471 [  2894] By: gsar                                  on 1999/02/12  11:09:27
10472         Log: add missing hunk in change#2657
10473      Branch: perl
10474            ! ext/B/B/CC.pm
10475 ____________________________________________________________________________
10476 [  2893] By: gsar                                  on 1999/02/12  11:00:13
10477         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10478              Date: Tue, 19 Jan 1999 20:13:15 -0500
10479              Message-ID: <19990119201315.A21167@monk.mps.ohio-state.edu>
10480              Subject: [PATCH 5.005_53] Remove extraneous sh in test suites
10481      Branch: perl
10482            ! t/op/fh.t t/op/misc.t t/op/runlevel.t t/pragma/strict.t
10483            ! t/pragma/subs.t t/pragma/warning.t
10484 ____________________________________________________________________________
10485 [  2892] By: gsar                                  on 1999/02/12  10:44:38
10486         Log: update change#2670 to later version
10487              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
10488              Date: Sun, 31 Jan 1999 16:16:14 +0000
10489              Message-Id: <199901311616.QAA17673@crypt.compulink.co.uk>
10490              Subject: Re: [PATCH 5.005_54] Evalled substitution parsing 
10491      Branch: perl
10492            ! t/op/subst.t toke.c
10493 ____________________________________________________________________________
10494 [  2891] By: gsar                                  on 1999/02/12  10:31:17
10495         Log: make testsuite somewhat location independent
10496      Branch: perl
10497            ! (edit 117 files)
10498 ____________________________________________________________________________
10499 [  2890] By: gsar                                  on 1999/02/12  10:00:30
10500         Log: add $AutoLoader::VERSION
10501      Branch: perl
10502            ! lib/AutoLoader.pm
10503 ____________________________________________________________________________
10504 [  2889] By: gsar                                  on 1999/02/12  09:55:48
10505         Log: tweak PERL_STRICT_CR notes
10506      Branch: perl
10507            ! pod/perl5005delta.pod
10508 ____________________________________________________________________________
10509 [  2888] By: gsar                                  on 1999/02/12  09:41:45
10510         Log: add note about test-notty target
10511      Branch: perl
10512            ! README.win32
10513 ____________________________________________________________________________
10514 [  2887] By: gsar                                  on 1999/02/12  09:37:37
10515         Log: add perltodo.pod
10516      Branch: perl
10517            + pod/perltodo.pod
10518            ! MANIFEST Todo pod/Makefile pod/perl.pod pod/roffitall
10519            ! win32/pod.mak
10520 ____________________________________________________________________________
10521 [  2886] By: jhi                                   on 1999/02/12  08:52:14
10522         Log: Integrate from mainperl.
10523      Branch: cfgperl
10524           +> t/op/fh.t
10525           !> (integrate 30 files)
10526 ____________________________________________________________________________
10527 [  2885] By: gsar                                  on 1999/02/12  08:42:10
10528         Log: note how to find REG_INFTY limit
10529      Branch: perl
10530            ! pod/perlre.pod
10531 ____________________________________________________________________________
10532 [  2884] By: jhi                                   on 1999/02/12  08:36:14
10533         Log: OpenBSD pthreads awareness, thanks to
10534              David Leonard <david.leonard@csee.uq.edu.au>
10535      Branch: maint-5.005/perl
10536            ! Configure hints/openbsd.sh
10537 ____________________________________________________________________________
10538 [  2882] By: gsar                                  on 1999/02/12  08:05:20
10539         Log: IO is maintained by p5p (per Graham Barr's wishes)
10540      Branch: perl
10541            ! MAINTAIN ext/IO/ChangeLog ext/IO/README ext/IO/lib/IO/Dir.pm
10542            ! ext/IO/lib/IO/Pipe.pm ext/IO/lib/IO/Poll.pm
10543            ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
10544            ! ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
10545 ____________________________________________________________________________
10546 [  2881] By: gsar                                  on 1999/02/12  07:57:13
10547         Log: fh.t typo
10548      Branch: perl
10549            ! t/op/fh.t
10550 ____________________________________________________________________________
10551 [  2880] By: gsar                                  on 1999/02/12  07:38:16
10552         Log: PERL5OPT=-T enables taint mode (suggested by Jason Riedy <ejr@cise.ufl.edu>)
10553      Branch: perl
10554            ! perl.c pod/perlrun.pod
10555 ____________________________________________________________________________
10556 [  2879] By: gsar                                  on 1999/02/12  05:39:29
10557         Log: fix ops that are not filehandle constructors to not create GV if it
10558              doesn't already exist (avoids leaks); extend semantics of defined()
10559              so that defined(*{$foo}) works (experimental)
10560      Branch: perl
10561            + t/op/fh.t
10562            ! MANIFEST embed.h embed.pl objXSUB.h op.c pod/perldiag.pod pp.c
10563            ! pp_hot.c pp_sys.c proto.h t/op/gv.t t/op/misc.t
10564 ____________________________________________________________________________
10565 [  2877] By: jhi                                   on 1999/02/11  20:44:00
10566         Log: From: Chris Nandor <pudge@pobox.com>
10567              To: perl5-porters@perl.org
10568              Subject: [PATCH] perlport.pod 1.39
10569              Date: Thu, 11 Feb 1999 12:28:35 -0500
10570              Message-Id: <v04020a2db2e8c3177123@[192.168.0.77]>
10571      Branch: cfgperl
10572            ! pod/perlport.pod
10573 ____________________________________________________________________________
10574 [  2870] By: gsar                                  on 1999/02/11  11:17:08
10575         Log: remove double typeglob deref (suggested by RonaldWS <ronaldws@aol.com>)
10576      Branch: perl
10577            ! ext/IO/lib/IO/Pipe.pm
10578 ____________________________________________________________________________
10579 [  2869] By: gsar                                  on 1999/02/11  11:00:56
10580         Log: update win32/pod.mak
10581      Branch: perl
10582            ! win32/pod.mak
10583 ____________________________________________________________________________
10584 [  2868] By: gsar                                  on 1999/02/11  10:42:44
10585         Log: From: Benjamin Low <b.d.low@unsw.edu.au>
10586              Date: Fri, 08 Jan 1999 14:36:53 +1100
10587              Message-ID: <36957D55.1D65A0B2@unsw.edu.au>
10588              Subject: Re: [Fwd: IO::Socket::connect and blocking]
10589      Branch: perl
10590            ! ext/IO/lib/IO/Socket.pm
10591 ____________________________________________________________________________
10592 [  2867] By: gsar                                  on 1999/02/11  09:43:03
10593         Log: av_extend() doc tweak from Jan Dubois
10594      Branch: perl
10595            ! pod/perlguts.pod
10596 ____________________________________________________________________________
10597 [  2866] By: gsar                                  on 1999/02/11  09:27:17
10598         Log: display full pathname of unreadable files
10599      Branch: perl
10600            ! utils/perldoc.PL
10601 ____________________________________________________________________________
10602 [  2865] By: gsar                                  on 1999/02/11  09:02:31
10603         Log: missing patch in change#2522
10604      Branch: perl
10605            ! lib/Pod/Text.pm
10606 ____________________________________________________________________________
10607 [  2864] By: jhi                                   on 1999/02/11  08:45:00
10608         Log: From: Spider Boardman <spider@zk3.dec.com>
10609              To: perlbug@perl.com
10610              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on RISC-ultrix 4.4 (UNINSTALLED)
10611              Date: Wed, 10 Feb 1999 23:33:31 -0500
10612              Message-Id: <9902110433.AA12816@abyss.zk3.dec.com>
10613      Branch: maint-5.005/perl
10614            ! doio.c ext/IPC/SysV/SysV.xs hints/ultrix_4.sh
10615 ____________________________________________________________________________
10616 [  2862] By: gsar                                  on 1999/02/11  08:14:34
10617         Log: integrate changes#2738,2740 from maint-5.005
10618      Branch: perl
10619           !> lib/ExtUtils/MakeMaker.pm
10620 ____________________________________________________________________________
10621 [  2861] By: jhi                                   on 1999/02/11  08:04:25
10622         Log: Integrate from mainperl.
10623      Branch: cfgperl
10624           !> Changes perl.h pod/perl5005delta.pod pp_ctl.c t/op/local.t
10625           !> t/op/range.t win32/config.gc
10626 ____________________________________________________________________________
10627 [  2860] By: gsar                                  on 1999/02/11  07:30:08
10628         Log: binmode() support for cygwin32 (suggested by Steven Morlock
10629              <newspost@morlock.net>)
10630      Branch: perl
10631            ! perl.h
10632 ____________________________________________________________________________
10633 [  2859] By: gsar                                  on 1999/02/11  07:14:21
10634         Log: update Changes
10635      Branch: perl
10636            ! Changes
10637           !> pod/perl5005delta.pod
10638 ____________________________________________________________________________
10639 [  2856] By: gsar                                  on 1999/02/11  07:07:39
10640         Log: integrate perldelta changes from maint-5.005
10641      Branch: perl
10642           !> pod/perl5005delta.pod
10643 ____________________________________________________________________________
10644 [  2855] By: gsar                                  on 1999/02/11  06:31:50
10645         Log: applied suggested patch; added tests
10646              From: Adam Krolnik <adamk@gypsy.cyrix.com>
10647              Date: Sat, 12 Dec 98 15:30:18 -0600
10648              Message-Id: <9812122130.AA03717@gypsy.eng.cyrix.com>
10649              Subject: Range operation doesn't handle IV_MAX
10650      Branch: perl
10651            ! pp_ctl.c t/op/range.t
10652 ____________________________________________________________________________
10653 [  2854] By: gsar                                  on 1999/02/11  05:00:55
10654         Log: compatibility fix: magic non-propagation in foreach implicit localization
10655      Branch: perl
10656            ! pp_ctl.c t/op/local.t win32/config.gc
10657 ____________________________________________________________________________
10658 [  2852] By: gsar                                  on 1999/02/10  23:17:49
10659         Log: fair warning about -Dusethreads
10660      Branch: maint-5.005/perl
10661            ! Configure INSTALL README.threads
10662 ____________________________________________________________________________
10663 [  2847] By: jhi                                   on 1999/02/09  19:13:28
10664         Log: Integrate from mainperl.
10665      Branch: cfgperl
10666           !> pod/perldelta.pod pod/perlfunc.pod pod/perlobj.pod
10667           !> pod/perlop.pod pp.c t/op/method.t t/op/pack.t
10668 ____________________________________________________________________________
10669 [  2846] By: gsar                                  on 1999/02/09  13:53:28
10670         Log: a modified version of suggested patch for pack template 'Z'; added docs
10671              From: "Valeriy E. Ushakov" <uwe@ptc.spbu.ru>
10672              Date: Mon, 16 Jun 1997 03:00:31 +0400 (MSD)
10673              Message-ID: <%lOHpzIuGV@snark.ptc.spbu.ru>
10674              Subject: lack of pack/unpack letter with useful symmetry for C null delimited strings
10675      Branch: perl
10676            ! pod/perldelta.pod pod/perlfunc.pod pp.c t/op/pack.t
10677 ____________________________________________________________________________
10678 [  2845] By: gsar                                  on 1999/02/09  00:03:26
10679         Log: clarify docs for change#2835
10680      Branch: perl
10681            ! pod/perldelta.pod pod/perlop.pod
10682 ____________________________________________________________________________
10683 [  2844] By: gsar                                  on 1999/02/08  23:40:57
10684         Log: addendum to change#2823
10685              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
10686              Date: Sun, 13 Dec 1998 16:06:04 -0800 (PST)
10687              Message-ID: <13940.21805.470054.299@fre-76-120.reshall.berkeley.edu>
10688              Subject: [PATCH] Docs and tests for method-call syntax
10689      Branch: perl
10690            ! pod/perlobj.pod t/op/method.t
10691 ____________________________________________________________________________
10692 [  2843] By: jhi                                   on 1999/02/08  21:06:28
10693         Log: Ultrix mmap tidbit.
10694      Branch: cfgperl
10695            ! hints/ultrix_4.sh
10696 ____________________________________________________________________________
10697 [  2842] By: jhi                                   on 1999/02/08  20:22:55
10698         Log: Integrate from mainperl.
10699      Branch: cfgperl
10700           +> t/op/subst_wamp.t
10701           !> (integrate 35 files)
10702 ____________________________________________________________________________
10703 [  2841] By: jhi                                   on 1999/02/08  18:23:26
10704         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10705              To: Mailing list Perl5 <perl5-porters@perl.org>
10706              Subject: [PATCH 5.005_53] s/\ba/./g was over-optimized
10707              Date: Sun, 7 Feb 1999 17:25:22 -0500
10708              Message-ID: <19990207172522.B894@monk.mps.ohio-state.edu>
10709      Branch: cfgperl
10710            + t/op/subst_amp.t
10711            ! MANIFEST regcomp.c t/op/subst.t
10712 ____________________________________________________________________________
10713 [  2840] By: jhi                                   on 1999/02/08  18:16:54
10714         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10715              To: Mailing list Perl5 <perl5-porters@perl.org>
10716              Subject: [PATCH 5.005_53] Fix list-context //g with zero-length matches
10717              Date: Sun, 7 Feb 1999 17:00:10 -0500
10718              Message-ID: <19990207170009.A894@monk.mps.ohio-state.edu>
10719      Branch: cfgperl
10720            ! pp_hot.c t/op/pat.t
10721 ____________________________________________________________________________
10722 [  2839] By: jhi                                   on 1999/02/08  17:25:30
10723         Log: A require was missing.
10724      Branch: cfgperl
10725            ! t/lib/h2ph.pht
10726 ____________________________________________________________________________
10727 [  2838] By: jhi                                   on 1999/02/08  16:38:41
10728         Log: Bring in the change #2809 (the Configure part has been
10729              modified rather a lot since the #2809, though.)
10730      Branch: cfgperl
10731            ! Configure utils/h2ph.PL
10732 ____________________________________________________________________________
10733 [  2835] By: gsar                                  on 1999/02/08  14:40:23
10734         Log: make qw() into a true list at compile time (slightly modified
10735              variant of patch suggested by Tom Hughes <tom@compton.demon.co.uk>)
10736      Branch: perl
10737            ! pod/perldelta.pod pod/perlop.pod pp_hot.c toke.c
10738 ____________________________________________________________________________
10739 [  2834] By: gsar                                  on 1999/02/08  13:23:16
10740         Log: make safesysmalloc() etc., always available; safemalloc() et al are
10741              now macros that point to the right malloc; fix various places in
10742              sources that need to always use safesysmalloc() et al
10743      Branch: perl
10744            ! embed.h embedvar.h global.sym iperlsys.h mg.c objXSUB.h perl.h
10745            ! perl_exp.SH proto.h util.c vms/gen_shrfls.pl win32/makedef.pl
10746 ____________________________________________________________________________
10747 [  2833] By: gsar                                  on 1999/02/08  10:56:16
10748         Log: remove spurious #endif in last change
10749      Branch: perl
10750            ! perl.h
10751 ____________________________________________________________________________
10752 [  2832] By: gsar                                  on 1999/02/08  10:34:55
10753         Log: make EMBEDMYMALLOC the default and provide PERL_POLLUTE_MALLOC to let
10754              them ask for insanity (untested)
10755      Branch: perl
10756            ! INSTALL Todo-5.005 ext/SDBM_File/sdbm/sdbm.h hints/machten.sh
10757            ! hints/next_3.sh hints/next_4.sh hints/qnx.sh iperlsys.h
10758            ! malloc.c perl.h pod/perldelta.pod pod/perlguts.pod sv.c
10759 ____________________________________________________________________________
10760 [  2831] By: jhi                                   on 1999/02/08  08:33:33
10761         Log: Update vms/subconfigure.com along the lines of change #2829.
10762      Branch: cfgperl
10763            ! vms/subconfigure.com
10764 ____________________________________________________________________________
10765 [  2830] By: gsar                                  on 1999/02/08  00:19:46
10766         Log: integrate cfgperl changes into mainline
10767      Branch: perl
10768           +> ext/DynaLoader/dl_beos.xs ext/GDBM_File/hints/sco.pl
10769           +> lib/File/PathConvert.pm pod/perlthrtut.pod
10770            ! Changes
10771           !> (integrate 93 files)
10772 ____________________________________________________________________________
10773 [  2829] By: jhi                                   on 1999/02/07  23:49:46
10774         Log: Configure update.
10775              
10776              Probe for mmap() et alia.
10777              The *cc*symbols patch (just Configure, no h2ph).
10778      Branch: cfgperl
10779            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
10780            ! config_h.SH perl.h
10781 ____________________________________________________________________________
10782 [  2828] By: gsar                                  on 1999/02/07  23:38:47
10783         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10784              Date: Sun, 7 Feb 1999 17:25:22 -0500
10785              Message-ID: <19990207172522.B894@monk.mps.ohio-state.edu>
10786              Subject: [PATCH 5.005_53] s/\ba/./g was over-optimized
10787      Branch: perl
10788            + t/op/subst_amp.t t/op/subst_wamp.t
10789            ! MANIFEST regcomp.c t/op/subst.t
10790 ____________________________________________________________________________
10791 [  2827] By: gsar                                  on 1999/02/07  23:27:32
10792         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10793              Date: Sun, 7 Feb 1999 17:00:10 -0500
10794              Message-ID: <19990207170009.A894@monk.mps.ohio-state.edu>
10795              Subject: [PATCH 5.005_53] Fix list-context //g with zero-length matches
10796      Branch: perl
10797            ! pp_hot.c t/op/pat.t
10798 ____________________________________________________________________________
10799 [  2826] By: gsar                                  on 1999/02/07  23:26:04
10800         Log: patch for change#2822, done right; add PERL_OBJECT stuff; regen headers
10801              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10802              Date: Sun, 7 Feb 1999 15:07:27 -0500
10803              Message-ID: <19990207150726.A571@monk.mps.ohio-state.edu>
10804              Subject: Re: fixing memory leaks in REx compilation
10805      Branch: perl
10806            ! embed.h embed.pl objXSUB.h proto.h regcomp.c regcomp.h
10807            ! regexec.c
10808 ____________________________________________________________________________
10809 [  2825] By: jhi                                   on 1999/02/07  18:05:13
10810         Log: Integrate from mainperl.
10811      Branch: cfgperl
10812           +> lib/DB.pm t/comp/bproto.t
10813           !> MANIFEST ext/Data/Dumper/Dumper.pm ext/SDBM_File/sdbm/sdbm.c
10814           !> lib/Pod/Html.pm op.c perly.c perly.y perly_c.diff
10815           !> pod/perldelta.pod pod/perlfunc.pod pod/perlop.pod regcomp.h
10816           !> toke.c vms/perly_c.vms
10817 ____________________________________________________________________________
10818 [  2824] By: gsar                                  on 1999/02/07  14:21:48
10819         Log: tweak doc on bitwise ops
10820      Branch: perl
10821            ! pod/perlop.pod
10822 ____________________________________________________________________________
10823 [  2823] By: gsar                                  on 1999/02/07  13:38:31
10824         Log: applied suggested patch; regen perly* and vms/perly*
10825              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
10826              Date: Sun, 13 Dec 1998 01:10:12 -0800 (PST)
10827              Message-ID: <13939.26706.620683.846776@fre-76-120.reshall.berkeley.edu>
10828              Subject: [PATCH] Re: Suggestion for perlobj man page
10829      Branch: perl
10830            ! perly.c perly.y perly_c.diff toke.c vms/perly_c.vms
10831 ____________________________________________________________________________
10832 [  2822] By: gsar                                  on 1999/02/07  12:39:09
10833         Log: Ilya's idea for cleaning up failed regex allocs (substantive parts
10834              disabled, fails tests)
10835      Branch: perl
10836            ! regcomp.h
10837 ____________________________________________________________________________
10838 [  2821] By: gsar                                  on 1999/02/07  11:09:39
10839         Log: pod2html misinterprets Foo::Bar as a URL (fix suggested by Alexander Barilo
10840              <Alexander.Barilo@aexp.com>)
10841      Branch: perl
10842            ! lib/Pod/Html.pm
10843 ____________________________________________________________________________
10844 [  2820] By: gsar                                  on 1999/02/07  10:20:35
10845         Log: add draft debugging API implementation
10846      Branch: perl
10847            + lib/DB.pm
10848            ! MANIFEST
10849 ____________________________________________________________________________
10850 [  2819] By: gsar                                  on 1999/02/07  09:58:45
10851         Log: avoid garbage in db->dirbuf
10852              From: Masahiro KAJIURA <masahiro.kajiura@toshiba.co.jp>
10853              Date: Sat, 05 Dec 1998 14:14:54 +0900
10854              Message-Id: <199812050514.OAA23268@toshiba.co.jp>
10855              Subject: SDBM bug
10856      Branch: perl
10857            ! ext/SDBM_File/sdbm/sdbm.c
10858 ____________________________________________________________________________
10859 [  2818] By: gsar                                  on 1999/02/07  09:32:24
10860         Log: missing entry
10861      Branch: perl
10862            ! MANIFEST
10863 ____________________________________________________________________________
10864 [  2817] By: gsar                                  on 1999/02/07  09:30:47
10865         Log: properly prototype check parenthesized unary ops (e.g. defined(&a,&b))
10866      Branch: perl
10867            + t/comp/bproto.t
10868            ! op.c pod/perldelta.pod pod/perlfunc.pod pod/perlop.pod
10869 ____________________________________________________________________________
10870 [  2816] By: gsar                                  on 1999/02/06  00:14:29
10871         Log: minor bug in dumping blessed subrefs
10872      Branch: perl
10873            ! ext/Data/Dumper/Dumper.pm
10874 ____________________________________________________________________________
10875 [  2812] By: jhi                                   on 1999/02/03  22:02:24
10876         Log: Enhance change #2808.
10877              
10878              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
10879              To: perl5-porters@perl.org
10880              Subject: Re: [PATCH 5.00*]: perlbug checklist
10881              Date: Wed, 3 Feb 1999 19:02:27 +0000
10882              Message-Id: <E1087ZD-0005z1-00@taurus.cus.cam.ac.uk>
10883      Branch: cfgperl
10884            ! utils/perlbug.PL
10885 ____________________________________________________________________________
10886 [  2811] By: jhi                                   on 1999/02/03  21:53:23
10887         Log: From: Barrie Slaymaker <rbs@telerama.com>
10888              To: perl5-porters@perl.org
10889              CC: pod-people@perl.org
10890              Subject: [PATCH]5.005_54 (pod2html) Generate Relative URLs
10891              Date: Wed, 03 Feb 1999 10:34:18 -0500
10892              Message-ID: <36B86C7A.E99EFFF1@telerama.com>
10893              
10894              Add File::PathConvert.pm.
10895              Fix Pod::Html and installhtml to understand relative urls.
10896      Branch: cfgperl
10897            + lib/File/PathConvert.pm
10898            ! MANIFEST installhtml lib/Pod/Html.pm
10899 ____________________________________________________________________________
10900 [  2810] By: jhi                                   on 1999/02/03  20:25:10
10901         Log: From: Francois Desarmenien <desar@club-internet.fr>
10902              To: Mailing list Perl5 <perl5-porters@perl.org>
10903              Subject: [PATCH]5.005_54 (hints) SCO 3/5 hint files and SysV correction
10904              Date: Wed, 03 Feb 1999 13:13:24 +0000
10905              Message-ID: <36B84B74.5EC9B6C8@club-internet.fr>
10906              
10907              (note: this patch completely overrides Tom Wolfe's patch,
10908              change #2604)
10909      Branch: cfgperl
10910            + ext/GDBM_File/hints/sco.pl
10911            ! MANIFEST ext/IPC/SysV/SysV.xs hints/sco.sh
10912 ____________________________________________________________________________
10913 [  2809] By: jhi                                   on 1999/02/03  19:54:16
10914         Log: h2ph fixes + Configure patch to support them.
10915              
10916              From: "Kurt D. Starsinic" <kstar@chapin.edu>
10917              To: Graham Barr <gbarr@pobox.com>, Jarkko Hietaniemi <jhi@iki.fi>,
10918              Gurusamy Sarathy <gsar@engin.umich.edu>
10919              Cc: perl5-porters@perl.org
10920              Subject: [PATCH 5.00503_MT5] h2ph.PL
10921              Date: Tue, 2 Feb 1999 19:48:06 -0500
10922              Message-ID: <19990202194806.E10647@O2.chapin.edu>
10923      Branch: maint-5.005/perl
10924            ! Configure utils/h2ph.PL
10925 ____________________________________________________________________________
10926 [  2808] By: jhi                                   on 1999/02/03  16:59:55
10927         Log: Enhance the perlbug checklist.
10928      Branch: cfgperl
10929            ! utils/perlbug.PL
10930 ____________________________________________________________________________
10931 [  2807] By: jhi                                   on 1999/02/03  14:01:37
10932         Log: Document the standard strftime %formats.
10933              
10934              From: Dominic Dunlop <domo@vo.lu>
10935              To: "Kurt D. Starsinic" <kstar@chapin.edu>, Ben Gertzfield <che@debian.org>
10936              Subject: [PATCH] 5.00[45]*: Re: POSIX's strftime() does not enforce POSIX %C on Solaris
10937              Date: Tue, 2 Feb 1999 15:55:29 +0100
10938              Message-Id: <v0311070cb2dcb3f5f773@[212.24.192.188]>
10939      Branch: cfgperl
10940            ! ext/POSIX/POSIX.pod
10941 ____________________________________________________________________________
10942 [  2806] By: jhi                                   on 1999/02/03  13:58:00
10943         Log: Integrate from mainperl.
10944      Branch: cfgperl
10945           !> perl.h
10946 ____________________________________________________________________________
10947 [  2805] By: gsar                                  on 1999/02/03  03:32:31
10948         Log: PL_uuemap[] init needs help for sizeof()
10949      Branch: perl
10950            ! perl.h
10951 ____________________________________________________________________________
10952 [  2804] By: jhi                                   on 1999/02/02  20:44:30
10953         Log: These should've been already in #2803.
10954      Branch: cfgperl
10955            ! Configure config_h.SH vms/subconfigure.com
10956 ____________________________________________________________________________
10957 [  2803] By: jhi                                   on 1999/02/02  20:38:45
10958         Log: telldir prototype issue, from mists of time...
10959      Branch: cfgperl
10960            ! hints/netbsd.sh pp_sys.c
10961 ____________________________________________________________________________
10962 [  2801] By: jhi                                   on 1999/02/02  17:40:14
10963         Log: From: John Bley <jbb6@acpub.duke.edu>
10964              To: perlbug@perl.org
10965              Subject: [PATCH]5.005_54 (DOC) fix minor typos
10966              Date: Tue, 2 Feb 1999 07:52:52 -0500 (EST)
10967              Message-ID: <Pine.SOL.3.91.990202075115.23589A-100000@soc11.acpub.duke.edu>
10968      Branch: cfgperl
10969            ! pod/perlre.pod
10970 ____________________________________________________________________________
10971 [  2800] By: jhi                                   on 1999/02/02  17:26:49
10972         Log: Update todo with POSIX 1003.1 1996 Edition reminder.
10973      Branch: cfgperl
10974            ! Todo-5.005
10975 ____________________________________________________________________________
10976 [  2799] By: jhi                                   on 1999/02/02  17:18:51
10977         Log: Update FindBin from maint-5.005.
10978      Branch: cfgperl
10979            ! lib/FindBin.pm
10980 ____________________________________________________________________________
10981 [  2798] By: jhi                                   on 1999/02/02  17:16:07
10982         Log: Fix typecasts in #2797
10983              
10984              From: "G. Del Merritt" <del@intranetics.com>
10985              Date: Fri, 29 Jan 1999 11:47:25 -0700
10986              Message-Id: <199901291847.LAA04828@jhereg.perl.com>
10987              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on MSWin32-x86-object 4.0 (PATCH included)
10988      Branch: cfgperl
10989            ! ext/POSIX/POSIX.xs
10990 ____________________________________________________________________________
10991 [  2797] By: jhi                                   on 1999/02/02  17:14:37
10992         Log: From: Ted Law <tedlaw@cibcwg.com>
10993              Date: Wed, 27 Jan 1999 14:54:03 -0500 (EST)
10994              Message-Id: <199901271954.OAA07391@dcm2.cibcwg.com>
10995              Subject: POSIX::strftime buffer overflow problem
10996      Branch: cfgperl
10997            ! ext/POSIX/POSIX.xs
10998 ____________________________________________________________________________
10999 [  2796] By: jhi                                   on 1999/02/02  17:13:23
11000         Log: Do not use File::Slurp.
11001      Branch: cfgperl
11002            ! t/lib/textfill.t
11003 ____________________________________________________________________________
11004 [  2795] By: jhi                                   on 1999/02/02  17:11:48
11005         Log: perlhist update from maint-5.005.
11006      Branch: cfgperl
11007            ! pod/perlhist.pod
11008 ____________________________________________________________________________
11009 [  2794] By: jhi                                   on 1999/02/02  17:10:33
11010         Log: POSIX::redef setv?buf() to IO::Handle:: (by gbarr).
11011      Branch: cfgperl
11012            ! ext/POSIX/POSIX.pm
11013 ____________________________________________________________________________
11014 [  2793] By: jhi                                   on 1999/02/02  17:08:39
11015         Log: Missed the html test from change #2787. 
11016      Branch: cfgperl
11017            ! t/lib/cgi-html.t
11018 ____________________________________________________________________________
11019 [  2792] By: jhi                                   on 1999/02/02  17:01:24
11020         Log: Update Getopt::Long to 2.19.
11021      Branch: cfgperl
11022            ! lib/Getopt/Long.pm
11023 ____________________________________________________________________________
11024 [  2791] By: jhi                                   on 1999/02/02  16:59:13
11025         Log: overload syntax is no longer experimental
11026      Branch: cfgperl
11027            ! lib/overload.pm
11028 ____________________________________________________________________________
11029 [  2789] By: jhi                                   on 1999/02/02  16:47:50
11030         Log: Still doc fixes.
11031      Branch: cfgperl
11032            ! lib/diagnostics.pm
11033 ____________________________________________________________________________
11034 [  2788] By: jhi                                   on 1999/02/02  16:47:07
11035         Log: Doc fixes.
11036      Branch: cfgperl
11037            ! lib/CGI.pm lib/diagnostics.pm
11038 ____________________________________________________________________________
11039 [  2787] By: jhi                                   on 1999/02/02  16:38:55
11040         Log: CGI.pm updated to 2.46 (the CGI docs fixes redone
11041              where applicable).
11042      Branch: cfgperl
11043            ! eg/cgi/RunMeFirst eg/cgi/caution.xbm
11044            ! eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
11045            ! eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
11046            ! eg/cgi/dna.small.gif.uu eg/cgi/file_upload.cgi
11047            ! eg/cgi/frameset.cgi eg/cgi/index.html
11048            ! eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
11049            ! eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
11050            ! eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
11051            ! eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo.gif.uu
11052            ! lib/CGI.pm lib/CGI/Apache.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
11053            ! lib/CGI/Fast.pm lib/CGI/Push.pm lib/CGI/Switch.pm
11054 ____________________________________________________________________________
11055 [  2786] By: jhi                                   on 1999/02/02  16:17:52
11056         Log: Update CPAN to 1.47.
11057      Branch: cfgperl
11058            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
11059 ____________________________________________________________________________
11060 [  2785] By: jhi                                   on 1999/02/02  16:09:03
11061         Log: From: Mark-Jason Dominus <mjd@plover.com>
11062              Date: Sat, 16 Jan 1999 17:22:06 -0500
11063              Subject: Re: DOC PATCH (5.005_54 perlsub.pod)
11064              Message-ID: <19990116222206.3674.qmail@plover.com>
11065      Branch: cfgperl
11066            ! pod/perlsub.pod
11067 ____________________________________________________________________________
11068 [  2784] By: jhi                                   on 1999/02/02  16:01:31
11069         Log: Fix incorrect "used only once" warnings
11070              
11071              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11072              Date: Fri, 8 Jan 1999 04:37:10 -0500
11073              Message-ID: <19990108043710.A14390@monk.mps.ohio-state.edu>
11074              Subject: Re: change#965 flakiness
11075      Branch: cfgperl
11076            ! gv.c
11077 ____________________________________________________________________________
11078 [  2783] By: jhi                                   on 1999/02/02  15:50:38
11079         Log: perldelta updates.
11080      Branch: cfgperl
11081            ! pod/perldelta.pod
11082 ____________________________________________________________________________
11083 [  2782] By: jhi                                   on 1999/02/02  14:28:26
11084         Log: Mirror change #2781.
11085      Branch: cfgperl
11086            ! hints/linux.sh
11087 ____________________________________________________________________________
11088 [  2781] By: jhi                                   on 1999/02/02  14:27:01
11089         Log: Update the MkLinux note.
11090      Branch: maint-5.005/perl
11091            ! hints/linux.sh
11092 ____________________________________________________________________________
11093 [  2780] By: jhi                                   on 1999/02/02  14:10:59
11094         Log: Update todo.
11095      Branch: cfgperl
11096            ! Todo-5.005
11097 ____________________________________________________________________________
11098 [  2779] By: jhi                                   on 1999/02/02  14:00:25
11099         Log: Integrate from mainperl.
11100      Branch: cfgperl
11101            ! t/lib/textfill.t t/lib/textwrap.t
11102           !> (integrate 32 files)
11103 ____________________________________________________________________________
11104 [  2778] By: jhi                                   on 1999/02/02  13:56:23
11105         Log: VMS update, applicable parts of
11106              
11107              From: Dan Sugalski <sugalskd@osshe.edu>
11108              To: perl5-porters@perl.org
11109              Subject: [PATCH 5.005_03MT3]VMS configure tweak
11110              Date: Wed, 20 Jan 1999 12:05:18 -0800
11111              Message-Id: <3.0.6.32.19990120120518.00a98470@ous.edu>
11112              
11113              From: Dan Sugalski <sugalskd@osshe.edu>
11114              To: perlbug@perl.com, vmsperl@perl.org
11115              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on VMSAXP (Patch included, of course)
11116              Date: Tue, 26 Jan 1999 14:40:38 -0800
11117              Message-Id: <3.0.6.32.19990126144038.02e5d650@ous.edu>
11118              
11119              From: Dan Sugalski <sugalskd@osshe.edu>
11120              To: perl5-porters@perl.org, vmsperl@perl.org
11121              Subject: [PATCH 5.005_03-MAILT_TRIAL_4]VMS test patches
11122              Date: Tue, 26 Jan 1999 14:55:29 -0800
11123              Message-Id: <3.0.6.32.19990126145529.02f22280@ous.edu>
11124      Branch: cfgperl
11125            ! vms/ext/Stdio/test.pl vms/subconfigure.com
11126 ____________________________________________________________________________
11127 [  2777] By: jhi                                   on 1999/02/02  13:43:24
11128         Log: Synch usethreads parts from maint-5.005.
11129      Branch: cfgperl
11130            ! hints/aix.sh hints/dec_osf.sh hints/dos_djgpp.sh
11131            ! hints/freebsd.sh hints/hpux.sh hints/irix_4.sh hints/irix_5.sh
11132            ! hints/irix_6.sh hints/irix_6_0.sh hints/irix_6_1.sh
11133            ! hints/linux.sh hints/os2.sh hints/solaris_2.sh hints/vmesa.sh
11134 ____________________________________________________________________________
11135 [  2776] By: jhi                                   on 1999/02/02  13:17:16
11136         Log: Jumbo FreeBSD update from Anton Berezin <tobez@plab.ku.dk>
11137      Branch: cfgperl
11138            ! Makefile.SH hints/freebsd.sh
11139 ____________________________________________________________________________
11140 [  2774] By: jhi                                   on 1999/02/02  13:10:39
11141         Log: Add perlthrtut, update pod/* machinery.
11142              (a pod/Makefile.SH is sorely needed)
11143      Branch: cfgperl
11144            + pod/perlthrtut.pod
11145            ! MANIFEST pod/Makefile pod/perl.pod pod/roffitall
11146 ____________________________________________________________________________
11147 [  2773] By: jhi                                   on 1999/02/02  12:54:24
11148         Log: From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
11149              To: perl5-porters@perl.org
11150              Subject: Re: [PATCH] perl5.005_03-MAINT_TRIAL_3: clarify Sv[INU]V versus Sv[INU]VX in perlguts
11151              Date: Tue, 26 Jan 1999 22:25:07 +0000
11152              Message-Id: <E105Gux-0000Ac-00@taurus.cus.cam.ac.uk>
11153      Branch: cfgperl
11154            ! pod/perlguts.pod
11155 ____________________________________________________________________________
11156 [  2771] By: jhi                                   on 1999/02/02  12:47:34
11157         Log: Use perlbug instead of personal email address.
11158      Branch: cfgperl
11159            ! Configure
11160 ____________________________________________________________________________
11161 [  2770] By: jhi                                   on 1999/02/02  12:42:06
11162         Log: Miniperl fails to build (pp_sys.c was changed and iperlsys.h wasn't)
11163              
11164              From: "G. Del Merritt" <del@intranetics.com>
11165              To: perlbug@perl.com
11166              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on MSWin32-x86-object (PATCHES included)
11167              Date: Tue, 26 Jan 1999 12:09:09 -0700
11168              Message-Id: <199901261909.MAA25525@jhereg.perl.com>
11169      Branch: cfgperl
11170            ! iperlsys.h
11171 ____________________________________________________________________________
11172 [  2769] By: jhi                                   on 1999/02/02  12:37:57
11173         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11174              To: Mailing list Perl5 <perl5-porters@perl.org>
11175              Subject: [PATCH 5.005_*] OS/2 threads
11176              Date: Tue, 26 Jan 1999 13:39:46 -0500
11177              Message-ID: <19990126133946.A11594@monk.mps.ohio-state.edu>
11178      Branch: cfgperl
11179            ! os2/os2ish.h
11180 ____________________________________________________________________________
11181 [  2768] By: jhi                                   on 1999/02/02  12:36:16
11182         Log: Apply change #2711 from maint-5.005:
11183              
11184              make ok", "make okfile", and "make nok" were broken
11185              with -Duseshrplib, because of a shared typo.
11186              
11187              From: Spider Boardman <spider@web.zk3.dec.com>
11188              To: perlbug@perl.com
11189              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
11190              Date: Wed, 27 Jan 1999 12:27:15 -0500
11191              Message-Id: <199901271727.MAA233455@web.zk3.dec.com>
11192      Branch: cfgperl
11193            ! Makefile.SH
11194 ____________________________________________________________________________
11195 [  2766] By: jhi                                   on 1999/02/02  12:27:08
11196         Log: Make Configure use "int main()" instead of bare "main()".
11197              Like maint-5.005 change #2703 but now via metaconfig.
11198      Branch: cfgperl
11199            ! Configure
11200 ____________________________________________________________________________
11201 [  2765] By: jhi                                   on 1999/02/02  11:59:30
11202         Log: Undo part of change #2562.
11203      Branch: cfgperl
11204            ! Configure
11205 ____________________________________________________________________________
11206 [  2764] By: jhi                                   on 1999/02/02  11:52:39
11207         Log: NetBSD synch with maint-5.005.
11208      Branch: cfgperl
11209            ! Makefile.SH hints/netbsd.sh makedepend.SH unixish.h
11210 ____________________________________________________________________________
11211 [  2763] By: jhi                                   on 1999/02/02  11:44:07
11212         Log: $Config{installusrbinperl}
11213              (maint-5.005 changes #2614 and #2709)
11214      Branch: cfgperl
11215            ! Configure installperl
11216 ____________________________________________________________________________
11217 [  2762] By: jhi                                   on 1999/02/02  11:29:13
11218         Log: Errno update from maint-5.005 (changes #2583, #2710).
11219      Branch: cfgperl
11220            ! Configure ext/Errno/Errno_pm.PL
11221 ____________________________________________________________________________
11222 [  2759] By: jhi                                   on 1999/02/02  10:53:20
11223         Log: Update Trig.pm from maint-5.005.
11224      Branch: cfgperl
11225            ! lib/Math/Trig.pm
11226 ____________________________________________________________________________
11227 [  2757] By: jhi                                   on 1999/02/02  10:41:26
11228         Log: MPE/iX update (mirror maint-5.005 change #2715)
11229      Branch: cfgperl
11230            ! hints/mpeix.sh mpeix/relink
11231 ____________________________________________________________________________
11232 [  2756] By: jhi                                   on 1999/02/02  10:38:08
11233         Log: BeOS update (Mirror maint-5.005 change #2727).
11234      Branch: cfgperl
11235            + ext/DynaLoader/dl_beos.xs
11236            ! Configure MANIFEST Makefile.SH README.beos hints/beos.sh
11237            ! lib/ExtUtils/MM_Unix.pm
11238 ____________________________________________________________________________
11239 [  2754] By: gsar                                  on 1999/02/02  08:52:13
11240         Log: Todo updates from Andy Dougherty <doughera@lafayette.edu>
11241      Branch: perl
11242            ! Porting/pumpkin.pod Todo Todo-5.005
11243 ____________________________________________________________________________
11244 [  2753] By: gsar                                  on 1999/02/02  08:46:21
11245         Log: Todo tweaks
11246      Branch: perl
11247            ! Todo Todo-5.005
11248 ____________________________________________________________________________
11249 [  2752] By: jhi                                   on 1999/02/01  22:15:12
11250         Log: Add perlthrtut.pod.
11251              
11252              From: Dan Sugalski <sugalskd@osshe.edu>
11253              To: perl5-porters@perl.org
11254              Subject: perlthrtut.pod
11255              Date: Mon, 01 Feb 1999 10:57:11 -0800
11256              Message-Id: <3.0.6.32.19990201105711.02e62540@ous.edu>
11257      Branch: maint-5.005/perl
11258            + pod/perlthrtut.pod
11259            ! MANIFEST pod/Makefile pod/buildtoc pod/perldelta.pod
11260            ! pod/roffitall
11261 ____________________________________________________________________________
11262 [  2751] By: gsar                                  on 1999/02/01  07:28:05
11263         Log: devnull() support from Jan Dubois <jan.dubois@ibm.net> and others
11264      Branch: perl
11265            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
11266            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
11267 ____________________________________________________________________________
11268 [  2750] By: gsar                                  on 1999/02/01  07:09:20
11269         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11270              Date: Fri, 4 Dec 1998 01:02:03 -0500 (EST)
11271              Message-Id: <199812040602.BAA07215@monk.mps.ohio-state.edu>
11272              Subject: [PATCH 5.005_53] Debugging REx with lookbehind
11273      Branch: perl
11274            ! regexec.c
11275 ____________________________________________________________________________
11276 [  2749] By: gsar                                  on 1999/02/01  07:07:59
11277         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11278              Date: Fri, 4 Dec 1998 00:05:41 -0500 (EST)
11279              Message-Id: <199812040505.AAA16616@monk.mps.ohio-state.edu>
11280              Subject: [PATCH 5.005_53] Speed up .*? and half-fix UTF lookbehind
11281      Branch: perl
11282            ! regexec.c
11283 ____________________________________________________________________________
11284 [  2748] By: gsar                                  on 1999/02/01  06:47:06
11285         Log: From: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
11286              Date: Thu, 3 Dec 1998 15:10:17 -0500
11287              Message-Id: <199812032010.PAA09692@jik.shore.net>
11288              Subject: sample checksum code in "perlfunc" man page is wrong
11289      Branch: perl
11290            ! pod/perlfunc.pod
11291 ____________________________________________________________________________
11292 [  2747] By: gsar                                  on 1999/02/01  06:35:13
11293         Log: typos in Pod/Text.pm
11294              From: "Greg Chapman" <glc@well.com>
11295              Date: Tue, 1 Dec 1998 10:50:18 -0800
11296              Message-Id: <199812011849.KAA08816@smtp.well.com>
11297              Subject: Glitch in Pod::Text
11298      Branch: perl
11299            ! lib/Pod/Text.pm
11300 ____________________________________________________________________________
11301 [  2746] By: gsar                                  on 1999/02/01  06:27:35
11302         Log: various win32-ish changes merged from maint-5.005
11303      Branch: perl
11304            ! README.win32 embedvar.h globvar.sym lib/ExtUtils/MM_Unix.pm
11305            ! objXSUB.h op.c perl.h perlvars.h pp.c sv.c t/io/fs.t toke.c
11306            ! win32/Makefile win32/config.bc win32/config.vc
11307            ! win32/config_sh.PL win32/makefile.mk win32/runperl.c
11308            ! win32/win32.c
11309 ____________________________________________________________________________
11310 [  2745] By: gsar                                  on 1999/02/01  04:51:54
11311         Log: integrate cfgperl changes into mainline
11312      Branch: perl
11313           !> INSTALL hints/aix.sh lib/Time/Local.pm pod/perldelta.pod
11314 ____________________________________________________________________________
11315 [  2744] By: gsar                                  on 1999/02/01  04:31:09
11316         Log: improved diagnostic on syntax errors at EOL
11317      Branch: perl
11318            ! toke.c
11319 ____________________________________________________________________________
11320 [  2743] By: gsar                                  on 1999/02/01  03:59:13
11321         Log: don't attempt connect() to bogus IP addresses
11322              From:    Graham Barr <gbarr@pobox.com>
11323              Date:    Sun, 31 Jan 1999 21:50:45 CST
11324              Message-Id: <19990131215045.A633@pobox.com>
11325      Branch: perl
11326            ! t/lib/io_multihomed.t
11327 ____________________________________________________________________________
11328 [  2742] By: gsar                                  on 1999/02/01  03:08:58
11329         Log: update Changes
11330      Branch: perl
11331            ! Changes pod/perldelta.pod
11332 ____________________________________________________________________________
11333 [  2740] By: gsar                                  on 1999/02/01  02:43:07
11334         Log: CAPI inheritance tweak and doc
11335      Branch: maint-5.005/perl
11336            ! lib/ExtUtils/MakeMaker.pm
11337 ____________________________________________________________________________
11338 [  2739] By: jhi                                   on 1999/01/31  18:31:54
11339         Log: Undo changes #2730 and #2731 and replace them
11340              with an extensively tested patch from
11341              Anton Berezin <tobez@plab.ku.dk> (via private email).
11342      Branch: maint-5.005/perl
11343            ! Makefile.SH hints/freebsd.sh
11344 ____________________________________________________________________________
11345 [  2738] By: gsar                                  on 1999/01/31  05:04:32
11346         Log: fix bogus CAPI inheritance from change#2541
11347      Branch: maint-5.005/perl
11348            ! lib/ExtUtils/MakeMaker.pm
11349 ____________________________________________________________________________
11350 [  2731] By: jhi                                   on 1999/01/29  14:33:12
11351         Log: FreeBSD version numbers can be like "2.2.8-release".
11352      Branch: maint-5.005/perl
11353            ! hints/freebsd.sh
11354 ____________________________________________________________________________
11355 [  2730] By: jhi                                   on 1999/01/29  12:40:38
11356         Log: FreeBSD hints iteration (hopefully convergent).
11357              usethreads: require at least FreeBSD 2.2.8.
11358              signal type: mirror change #2429 in cfgperl.
11359      Branch: maint-5.005/perl
11360            ! hints/freebsd.sh
11361 ____________________________________________________________________________
11362 [  2727] By: gbarr                                 on 1999/01/29  04:09:57
11363         Log: From: Tom Spindler <dogcow@isi.net>
11364              Date: Thu, 28 Jan 1999 17:15:11 -0800
11365              Message-ID: <19990128171510.A11778@isi.net>
11366              Subject: [PATCH] BeOS dynamic loading support for perl5.005_03_MT4
11367      Branch: maint-5.005/perl
11368            + ext/DynaLoader/dl_beos.xs
11369            ! Configure MANIFEST Makefile.SH README.beos hints/beos.sh
11370            ! lib/ExtUtils/MM_Unix.pm
11371 ____________________________________________________________________________
11372 [  2726] By: gbarr                                 on 1999/01/29  03:30:51
11373         Log: Remove use of File::Slurp in t/lib/textfill.t
11374      Branch: maint-5.005/perl
11375            ! t/lib/textfill.t
11376 ____________________________________________________________________________
11377 [  2725] By: gbarr                                 on 1999/01/29  03:11:41
11378         Log: From: Gurusamy Sarathy <gsar@ActiveState.com>
11379              Date: Wed, 27 Jan 1999 23:14:33 -0800
11380              Message-Id: <199901280714.XAA10176@activestate.com>
11381              Subject: Re: NOT OK: "@INC contains: ." after make install - MAINT_TRIAL_4 - 5.005_03 maintenance trial 4 MSWin32-x86-object
11382      Branch: maint-5.005/perl
11383            ! win32/Makefile win32/makefile.mk
11384 ____________________________________________________________________________
11385 [  2720] By: gsar                                  on 1999/01/27  21:54:42
11386         Log: missing space while munging CCFLAGS for PERL_CAPI
11387      Branch: perl
11388            ! lib/ExtUtils/MM_Unix.pm
11389 ____________________________________________________________________________
11390 [  2718] By: jhi                                   on 1999/01/27  19:46:04
11391         Log: io/fs.t fails test #18 (sense of tests appears to have been
11392              changed incompletely; this patch just skips the test attached,
11393              a la test #17 preceding it).
11394              
11395              From: "G. Del Merritt" <del@intranetics.com>
11396              To: perlbug@perl.com
11397              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on MSWin32-x86-object (PATCHES included)
11398              Date: Tue, 26 Jan 1999 12:09:09 -0700
11399              Message-Id: <199901261909.MAA25525@jhereg.perl.com>
11400      Branch: maint-5.005/perl
11401            ! t/io/fs.t
11402 ____________________________________________________________________________
11403 [  2717] By: jhi                                   on 1999/01/27  19:44:46
11404         Log: Miniperl fails to build (pp_sys.c was changed and iperlsys.h wasn't)
11405              
11406              From: "G. Del Merritt" <del@intranetics.com>
11407              To: perlbug@perl.com
11408              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on MSWin32-x86-object (PATCHES included)
11409              Date: Tue, 26 Jan 1999 12:09:09 -0700
11410              Message-Id: <199901261909.MAA25525@jhereg.perl.com>
11411      Branch: maint-5.005/perl
11412            ! iperlsys.h
11413 ____________________________________________________________________________
11414 [  2715] By: jhi                                   on 1999/01/27  19:34:28
11415         Log: From: Mark Bixby <markb@spock.dis.cccd.edu>
11416              To: perl5-porters@perl.org
11417              Subject: [PATCH perl5.005_03-MAINT_TRIAL_4] MPE port tweaks
11418              Date: Tue, 26 Jan 1999 16:32:18 -0800 (PST)
11419              Message-Id: <199901270032.QAA13395@spock.dis.cccd.edu>
11420      Branch: maint-5.005/perl
11421            ! hints/mpeix.sh mpeix/relink
11422 ____________________________________________________________________________
11423 [  2710] By: jhi                                   on 1999/01/27  19:22:23
11424         Log: Errno fixes:
11425              
11426              From: Spider Boardman <spider@web.zk3.dec.com>
11427              To: perlbug@perl.com
11428              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
11429              Date: Wed, 27 Jan 1999 12:27:15 -0500
11430              Message-Id: <199901271727.MAA233455@web.zk3.dec.com>
11431              
11432              From: Spider Boardman <spider@web.zk3.dec.com>
11433              To: perlbug@perl.com
11434              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
11435              Date: Wed, 27 Jan 1999 13:31:16 -0500
11436              Message-Id: <199901271831.NAA241001@web.zk3.dec.com>
11437      Branch: maint-5.005/perl
11438            ! Configure ext/Errno/Errno_pm.PL
11439 ____________________________________________________________________________
11440 [  2709] By: jhi                                   on 1999/01/27  19:17:35
11441         Log: Fix Configure installusrbinperl:
11442              
11443              From: Spider Boardman <spider@web.zk3.dec.com>
11444              To: jhi@iki.fi
11445              cc: perl5-porters@perl.org
11446              Subject: Re: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
11447              Date: Wed, 27 Jan 1999 13:03:35 -0500
11448              Message-Id: <199901271803.NAA238257@web.zk3.dec.com>
11449      Branch: maint-5.005/perl
11450            ! Configure
11451 ____________________________________________________________________________
11452 [  2707] By: gbarr                                 on 1999/01/26  02:06:17
11453         Log: Add redef IO::Handle::* for setv?buf()
11454      Branch: maint-5.005/perl
11455            ! ext/POSIX/POSIX.pm
11456 ____________________________________________________________________________
11457 [  2705] By: jhi                                   on 1999/01/24  15:14:30
11458         Log: Mention year-1900 and month 0..11.
11459      Branch: cfgperl
11460            ! lib/Time/Local.pm
11461 ____________________________________________________________________________
11462 [  2704] By: jhi                                   on 1999/01/24  15:13:36
11463         Log: Document Configure -Uinstallusrbinperl.
11464      Branch: cfgperl
11465            ! INSTALL pod/perldelta.pod
11466 ____________________________________________________________________________
11467 [  2698] By: jhi                                   on 1999/01/24  12:46:00
11468         Log: Use only xlc_r for usethreads.
11469      Branch: cfgperl
11470            ! hints/aix.sh
11471 ____________________________________________________________________________
11472 [  2695] By: gsar                                  on 1999/01/24  07:09:05
11473         Log: integrate cfgperl changes into mainline
11474      Branch: perl
11475           +> lib/Exporter/Heavy.pm
11476           !> (integrate 65 files)
11477 ____________________________________________________________________________
11478 [  2694] By: gsar                                  on 1999/01/24  01:28:49
11479         Log: better notes on 'make' on win32
11480      Branch: perl
11481            ! README.win32
11482 ____________________________________________________________________________
11483 [  2683] By: jhi                                   on 1999/01/22  15:41:00
11484         Log: More de-cut-and-pastos.
11485      Branch: cfgperl
11486            ! hints/irix_6.sh hints/os2.sh
11487 ____________________________________________________________________________
11488 [  2682] By: jhi                                   on 1999/01/22  15:30:51
11489         Log: usethreads.cbu cut-and-pasto.
11490      Branch: cfgperl
11491            ! hints/solaris_2.sh
11492 ____________________________________________________________________________
11493 [  2681] By: jhi                                   on 1999/01/22  14:54:55
11494         Log: Better (I hope) LANGUAGE documentation.
11495      Branch: cfgperl
11496            ! pod/perllocale.pod
11497 ____________________________________________________________________________
11498 [  2680] By: jhi                                   on 1999/01/22  09:20:29
11499         Log: From: Dan Sugalski <sugalskd@osshe.edu>
11500              To: perl5-porters@perl.org
11501              Subject: [PATCH 5.005_03MT3]VMS configure tweak
11502              Date: Wed, 20 Jan 1999 12:05:18 -0800
11503              Message-Id: <3.0.6.32.19990120120518.00a98470@ous.edu>
11504      Branch: cfgperl
11505            ! vms/subconfigure.com
11506 ____________________________________________________________________________
11507 [  2679] By: jhi                                   on 1999/01/22  09:13:18
11508         Log: nosuid getmntent() branch.
11509      Branch: cfgperl
11510            ! perl.c perl.h
11511 ____________________________________________________________________________
11512 [  2678] By: jhi                                   on 1999/01/22  08:54:19
11513         Log: nosuid patch continued: *BSD needs <sys/param.h>.
11514      Branch: cfgperl
11515            ! Configure config_h.SH
11516 ____________________________________________________________________________
11517 [  2676] By: gbarr                                 on 1999/01/22  01:54:02
11518         Log: Fixup FindBin to use File::Spec
11519              
11520              Message-Id: <19990120185157.D24479@west-tip.transeda.com>
11521              Date: Wed, 20 Jan 1999 18:51:57 +0000
11522              From: Paul Johnson <pjcj@transeda.com>
11523              Subject: Re: [PATCH] 5005_54 Make FindBin work with UNC paths
11524      Branch: maint-5.005/perl
11525            ! lib/FindBin.pm
11526 ____________________________________________________________________________
11527 [  2671] By: gbarr                                 on 1999/01/22  00:40:13
11528         Log: Fix win32 for Borland compiler and spaces in paths
11529              
11530              From: Gurusamy Sarathy <gsar@activestate.com>
11531              Date: Mon, 18 Jan 1999 20:33:17 -0800
11532              Message-Id: <199901190433.UAA03656@activestate.com>
11533              Subject: [PATCH] 5.005_03-trial3 win32 issues
11534      Branch: maint-5.005/perl
11535            ! README.win32 win32/Makefile win32/config_sh.PL
11536            ! win32/makefile.mk win32/runperl.c
11537 ____________________________________________________________________________
11538 [  2670] By: jhi                                   on 1999/01/21  16:12:38
11539         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
11540              To: perl5-porters@perl.org
11541              Subject: Re: [PATCH 5.005_54] Evalled substitution parsing
11542              Date: Thu, 21 Jan 1999 12:08:01 +0000
11543              Message-Id: <199901211208.MAA01228@crypt.compulink.co.uk>
11544      Branch: cfgperl
11545            ! pod/perldiag.pod t/op/subst.t toke.c
11546 ____________________________________________________________________________
11547 [  2669] By: jhi                                   on 1999/01/21  16:11:46
11548         Log: To: perl5-porters@perl.org
11549              Subject: [PATCH 5.005_54] hints/freebsd.sh - reflect the birth of version 4.0
11550              From: Anton Berezin <tobez@plab.ku.dk>
11551              Date: 21 Jan 1999 17:07:28 +0100
11552              Message-ID: <86emood2yn.fsf@lion.plab.ku.dk>
11553      Branch: cfgperl
11554            ! hints/freebsd.sh
11555 ____________________________________________________________________________
11556 [  2668] By: jhi                                   on 1999/01/21  15:38:34
11557         Log: Add Daniel Grisinger <dgris@dimensional.com>.
11558      Branch: cfgperl
11559            ! AUTHORS MAINTAIN
11560 ____________________________________________________________________________
11561 [  2667] By: jhi                                   on 1999/01/21  15:32:28
11562         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11563              To: Mailing list Perl5 <perl5-porters@perl.org>
11564              Subject: [PATCH 5.005_53] Lean Exporter.pm
11565              Date: Thu, 21 Jan 1999 03:25:23 -0500
11566              Message-ID: <19990121032523.A25704@monk.mps.ohio-state.edu>
11567      Branch: cfgperl
11568            + lib/Exporter/Heavy.pm
11569            ! MANIFEST lib/Exporter.pm
11570 ____________________________________________________________________________
11571 [  2666] By: jhi                                   on 1999/01/21  15:24:10
11572         Log: From: "W. Phillip Moore" <wpm@ms.com>
11573              To: Graham Barr <gbarr@ti.com>, perlbug@perl.org
11574              Subject: Re: [PATCH] File::Path 1.04 bug (all perl5 core versions)
11575              Date: Tue, 19 Jan 1999 11:39:11 -0500 (EST)
11576              Message-ID: <13988.46383.298992.97303@zappa>
11577      Branch: cfgperl
11578            ! lib/File/Path.pm
11579 ____________________________________________________________________________
11580 [  2665] By: jhi                                   on 1999/01/21  15:20:48
11581         Log: CPAN update (CPAN-1.44_54) from Andreas and
11582              jumbo doc patch from Abigail.
11583              
11584              From: abigail@fnx.com
11585              To: perl5-porters@perl.org (Perl Porters)
11586              Subject: [PATCH 5.005_03 TRIAL 3 lib/AutoLoader.pm]  Typos
11587              Date: Tue, 19 Jan 1999 19:14:10 -0500 (EST)
11588              Message-ID: <19990120001410.19645.qmail@alexandra.wayne.fnx.com>
11589              
11590              From: abigail@fnx.com
11591              To: perl5-porters@perl.org (Perl Porters)
11592              Subject: [PATCH 5.005_03 TRIAL3 lib/CGI.pm] Typos
11593              Date: Tue, 19 Jan 1999 19:32:42 -0500 (EST)
11594              Message-ID: <19990120003242.19938.qmail@alexandra.wayne.fnx.com>
11595              
11596              From: abigail@fnx.com
11597              To: perl5-porters@perl.org (Perl Porters)
11598              Subject: [PATCH 5.005_03 TRIAL3 lib/CPAN.pm] Typos
11599              Date: Tue, 19 Jan 1999 19:40:41 -0500 (EST)
11600              Message-ID: <19990120004041.20052.qmail@alexandra.wayne.fnx.com>
11601              
11602              From: abigail@fnx.com
11603              To: perl5-porters@perl.org (Perl Porters)
11604              Subject: [PATCH 5.005_03 TRIAL3 lib/Carp.pm] Typo
11605              Date: Tue, 19 Jan 1999 19:43:12 -0500 (EST)
11606              Message-ID: <19990120004312.20152.qmail@alexandra.wayne.fnx.com>
11607              
11608              From: abigail@fnx.com
11609              To: perl5-porters@perl.org (Perl Porters)
11610              Subject: [PATCH 5.005_03 TRIAL3 lib/Cwd.pm] Typo
11611              Date: Tue, 19 Jan 1999 19:44:29 -0500 (EST)
11612              Message-ID: <19990120004429.20190.qmail@alexandra.wayne.fnx.com>
11613              
11614              From: abigail@fnx.com
11615              To: perl5-porters@perl.org (Perl Porters)
11616              Subject: [PATCH 5.005_03 TRIAL3 lib/Safe.pm] Typo
11617              Date: Tue, 19 Jan 1999 19:52:41 -0500 (EST)
11618              Message-ID: <19990120005241.20693.qmail@alexandra.wayne.fnx.com>
11619              
11620              From: abigail@fnx.com
11621              To: perl5-porters@perl.org (Perl Porters)
11622              Subject: [PATCH 5.005_03 TRIAL3 lib/SelfLoader.pm] Typos
11623              Date: Tue, 19 Jan 1999 19:55:25 -0500 (EST)
11624              Message-ID: <19990120005525.20788.qmail@alexandra.wayne.fnx.com>
11625              
11626              From: abigail@fnx.com
11627              To: perl5-porters@perl.org (Perl Porters)
11628              Subject: [PATCH 5.005_03 TRIAL3 lib/Symbol.pm] Typo
11629              Date: Tue, 19 Jan 1999 19:58:21 -0500 (EST)
11630              Message-ID: <19990120005821.20926.qmail@alexandra.wayne.fnx.com>
11631              
11632              From: abigail@fnx.com
11633              To: perl5-porters@perl.org (Perl Porters)
11634              Subject: [PATCH 5.005_03 TRIAL3 lib/Test.pm] Typo
11635              Date: Tue, 19 Jan 1999 20:00:02 -0500 (EST)
11636              Message-ID: <19990120010002.20973.qmail@alexandra.wayne.fnx.com>
11637              
11638              From: abigail@fnx.com
11639              To: perl5-porters@perl.org (Perl Porters)
11640              Subject: [PATCH 5.005_03 TRIAL3 lib/ops.pm] Typo
11641              Date: Tue, 19 Jan 1999 20:39:09 -0500 (EST)
11642              Message-ID: <19990120013909.23085.qmail@alexandra.wayne.fnx.com>
11643              
11644              From: abigail@fnx.com
11645              To: perl5-porters@perl.org (Perl Porters)
11646              Subject: [PATCH 5.005_03 TRIAL3 lib/diagnostics.pm] Typos  (ignore previous patch for this file...)
11647              Date: Tue, 19 Jan 1999 20:38:23 -0500 (EST)
11648              Message-ID: <19990120013823.23015.qmail@alexandra.wayne.fnx.com>
11649              
11650              From: abigail@fnx.com
11651              To: perl5-porters@perl.org (Perl Porters)
11652              Subject: [PATCH 5.005_03 TRIAL3 lib/overload.pm] Typos
11653              Date: Tue, 19 Jan 1999 20:58:16 -0500 (EST)
11654              Message-ID: <19990120015817.24306.qmail@alexandra.wayne.fnx.com>
11655              
11656              From: abigail@fnx.com
11657              To: perl5-porters@perl.org (Perl Porters)
11658              Subject: [PATCH 5.005_03 TRIAL3 lib/re.pm] Typos
11659              Date: Tue, 19 Jan 1999 21:03:26 -0500 (EST)
11660              Message-ID: <19990120020326.24373.qmail@alexandra.wayne.fnx.com>
11661      Branch: cfgperl
11662            ! ext/Opcode/Safe.pm ext/Opcode/ops.pm lib/AutoLoader.pm
11663            ! lib/CGI.pm lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
11664            ! lib/Carp.pm lib/Cwd.pm lib/SelfLoader.pm lib/Symbol.pm
11665            ! lib/Test.pm lib/diagnostics.pm lib/fields.pm lib/overload.pm
11666 ____________________________________________________________________________
11667 [  2664] By: jhi                                   on 1999/01/21  14:47:43
11668         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11669              To: Mailing list Perl5 <perl5-porters@perl.org>
11670              Subject: [PATCH 5.005_*] OS2::PrfDB was exploiting a bug in U32 XSUBs
11671              Date: Thu, 21 Jan 1999 03:58:29 -0500
11672              Message-ID: <19990121035829.A25822@monk.mps.ohio-state.edu>
11673      Branch: cfgperl
11674            ! os2/Changes os2/OS2/PrfDB/PrfDB.xs
11675 ____________________________________________________________________________
11676 [  2663] By: jhi                                   on 1999/01/21  14:43:58
11677         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11678              To: Mailing list Perl5 <perl5-porters@perl.org>
11679              Subject: [PATCH 5.005_*] Errno.pm suffers from \\ too
11680              Date: Thu, 21 Jan 1999 02:46:34 -0500
11681              Message-ID: <19990121024634.A25600@monk.mps.ohio-state.edu>
11682      Branch: cfgperl
11683            ! ext/Errno/Errno_pm.PL
11684 ____________________________________________________________________________
11685 [  2662] By: jhi                                   on 1999/01/21  14:42:42
11686         Log: From: Daniel Grisinger <dgris@moiraine.dimensional.com>
11687              To: Francois Desarmenien <desar@club-internet.fr>
11688              Cc: Gurusamy Sarathy <gsar@activestate.com>,
11689              Mailing list Perl5 <perl5-porters@perl.org>, bugmongers@perl.org
11690              Subject: [PATCH] patching.pod, misc fixes (was Re: Which ? What ? Why ? When ?)
11691              Date: 21 Jan 1999 00:17:35 -0700
11692              Message-ID: <m31zkpqels.fsf_-_@moiraine.dimensional.com>
11693      Branch: cfgperl
11694            ! Porting/patching.pod
11695 ____________________________________________________________________________
11696 [  2661] By: jhi                                   on 1999/01/21  14:41:13
11697         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11698              To: Mailing list Perl5 <perl5-porters@perl.org>
11699              Subject: [PATCH 5.00*] makedepend
11700              Date: Thu, 21 Jan 1999 02:08:27 -0500
11701              Message-ID: <19990121020827.A25509@monk.mps.ohio-state.edu>
11702      Branch: cfgperl
11703            ! makedepend.SH
11704 ____________________________________________________________________________
11705 [  2660] By: jhi                                   on 1999/01/21  14:36:45
11706         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11707              To: Mailing list Perl5 <perl5-porters@perl.org>
11708              Subject: [PATCH 5.005_53] Pipes and 2>&1 on OS/2
11709              Date: Tue, 19 Jan 1999 20:06:45 -0500
11710              Message-ID: <19990119200645.A21154@monk.mps.ohio-state.edu>
11711      Branch: cfgperl
11712            ! os2/Changes os2/os2.c
11713 ____________________________________________________________________________
11714 [  2657] By: jhi                                   on 1999/01/21  11:40:35
11715         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
11716              To: perl5-porters@perl.org
11717              Subject: [PATCH 5.005_54]pp_mapstart & pp_grepstart return val (CC.pm)
11718              Date: Mon, 18 Jan 1999 01:32:31 PST
11719              Message-ID: <19990118093231.18443.qmail@hotmail.com>
11720      Branch: cfgperl
11721            ! ext/B/B/CC.pm
11722 ____________________________________________________________________________
11723 [  2656] By: jhi                                   on 1999/01/21  11:35:34
11724         Log: From: Achim Bohnet <ach@mpe.mpg.de>
11725              Subject: [PATCH] Not OK: perl 5.00503 +MAINT_TRIAL_3 on alpha-dec_osf 4.0 (UNINSTALLED) 
11726              Date: Wed, 20 Jan 1999 20:25:53 +0100
11727              Message-Id: <199901201925.UAA16940@o06.xray.mpe.mpg.de>
11728      Branch: cfgperl
11729            ! pp.c
11730 ____________________________________________________________________________
11731 [  2655] By: jhi                                   on 1999/01/21  10:46:01
11732         Log: Handle NIS (and NetInfo) more robustly.
11733      Branch: cfgperl
11734            ! t/op/grent.t t/op/pwent.t
11735 ____________________________________________________________________________
11736 [  2654] By: jhi                                   on 1999/01/21  10:17:20
11737         Log: Two-argument eaccess() of SCO.
11738      Branch: cfgperl
11739            ! pp_sys.c
11740 ____________________________________________________________________________
11741 [  2653] By: jhi                                   on 1999/01/21  08:53:14
11742         Log: -DNO_NOSUID_CHECK for those platforms which have no way
11743              of checking for nosuid but still want suidperl.
11744      Branch: cfgperl
11745            ! perl.c
11746 ____________________________________________________________________________
11747 [  2652] By: jhi                                   on 1999/01/21  08:22:50
11748         Log: The LANGUAGE mirrors LC_ALL usage.
11749      Branch: cfgperl
11750            ! Configure config_h.SH
11751 ____________________________________________________________________________
11752 [  2651] By: jhi                                   on 1999/01/20  22:01:21
11753         Log: I_MNTENT was missing.
11754      Branch: cfgperl
11755            ! Configure config_h.SH
11756 ____________________________________________________________________________
11757 [  2650] By: jhi                                   on 1999/01/19  13:42:03
11758         Log: NetBSD update, based on patches from the NetBSD packages system.
11759      Branch: cfgperl
11760            ! Makefile.SH hints/netbsd.sh makedepend.SH unixish.h
11761 ____________________________________________________________________________
11762 [  2649] By: jhi                                   on 1999/01/19  12:44:02
11763         Log: Jumbo Configure update.
11764              * -Uinstallusrbinperl: disable /usr/bin/perl installation
11765              by installperl
11766              * usethreads.cbu
11767              * use64bits.cbu
11768              * "nosuid"
11769      Branch: cfgperl
11770            ! Configure config_h.SH hints/aix.sh hints/dec_osf.sh
11771            ! hints/dos_djgpp.sh hints/freebsd.sh hints/hpux.sh
11772            ! hints/irix_4.sh hints/irix_5.sh hints/irix_6.sh
11773            ! hints/irix_6_0.sh hints/irix_6_1.sh hints/linux.sh
11774            ! hints/os2.sh hints/solaris_2.sh hints/vmesa.sh perl.c perl.h
11775            ! pod/perldiag.pod
11776 ____________________________________________________________________________
11777 [  2648] By: jhi                                   on 1999/01/19  09:16:44
11778         Log: Mention /usr/share/locale.
11779      Branch: cfgperl
11780            ! pod/perllocale.pod
11781 ____________________________________________________________________________
11782 [  2647] By: jhi                                   on 1999/01/19  09:11:11
11783         Log: SHMLBA strikes back in NetBSD/sparc.
11784              
11785              From: Dave Nelson <David.Nelson@bellcow.com>
11786              To: jhi@iki.fi
11787              Subject: perl5.005_02 + IPC::SysV + NetBSD/Sparc
11788              Date: Mon, 18 Jan 1999 22:07:56 -0600
11789              Message-Id: <199901190407.WAA02543@longhorn.bellcow.com>
11790      Branch: cfgperl
11791            ! ext/IPC/SysV/SysV.xs
11792 ____________________________________________________________________________
11793 [  2646] By: jhi                                   on 1999/01/19  08:58:17
11794         Log: Show LANGUAGE env var when needed. (Augment change #2645).
11795      Branch: cfgperl
11796            ! util.c utils/perlbug.PL
11797 ____________________________________________________________________________
11798 [  2645] By: jhi                                   on 1999/01/19  08:52:15
11799         Log: Document the GNU LANGUAGE env var.
11800      Branch: cfgperl
11801            ! pod/perllocale.pod
11802 ____________________________________________________________________________
11803 [  2644] By: jhi                                   on 1999/01/19  08:42:25
11804         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11805              To: Mailing list Perl5 <perl5-porters@perl.org>
11806              Subject: [PATCH 5.005_53] Fixing \G bug by Francois Desarmenien
11807              Date: Mon, 18 Jan 1999 20:57:02 -0500
11808              Message-ID: <19990118205702.A18379@monk.mps.ohio-state.edu>
11809      Branch: cfgperl
11810            ! pp_hot.c t/op/pat.t
11811 ____________________________________________________________________________
11812 [  2643] By: jhi                                   on 1999/01/18  11:23:41
11813         Log: Add various cruft to "clean" target. (Time for t/Makefile?)
11814      Branch: cfgperl
11815            ! Makefile.SH
11816 ____________________________________________________________________________
11817 [  2642] By: jhi                                   on 1999/01/18  11:03:38
11818         Log: GNU libc locale system has LANGUAGE env var that partly
11819              overrides even LC_ALL.
11820      Branch: cfgperl
11821            ! t/lib/safe2.t t/op/groups.t t/op/mkdir.t
11822 ____________________________________________________________________________
11823 [  2641] By: jhi                                   on 1999/01/18  10:55:04
11824         Log: Integrate from mainperl.
11825      Branch: cfgperl
11826           +> ext/B/defsubs.h.PL
11827            ! t/op/groups.t
11828           !> (integrate 38 files)
11829 ____________________________________________________________________________
11830 [  2640] By: gsar                                  on 1999/01/18  10:06:29
11831         Log: a few random cleanups
11832      Branch: perl
11833            ! ext/B/Makefile.PL lib/Test/Harness.pm t/pragma/warn/doio
11834 ____________________________________________________________________________
11835 [  2639] By: gsar                                  on 1999/01/18  05:56:21
11836         Log: From:    "Vishal Bhatia" <vishalb@hotmail.com>
11837              Date:    Sun, 17 Jan 1999 16:41:10 PST
11838              Message-Id: <19990118004111.29667.qmail@hotmail.com>
11839              Subject: [PATCH 5.005_54]Duplicate saved ops (CC.pm)
11840      Branch: perl
11841            ! ext/B/B/C.pm
11842 ____________________________________________________________________________
11843 [  2638] By: gsar                                  on 1999/01/18  05:41:21
11844         Log: From:    jan.dubois@ibm.net (Jan Dubois)
11845              Date:    Mon, 18 Jan 1999 00:37:41 +0100
11846              Message-Id: <36a271cd.2105507@smtp1.ibm.net>
11847              Subject: [PATCH 5.005_54] fix bugs in do_sv_dump() from Devel::Peek integration
11848      Branch: perl
11849            ! dump.c
11850 ____________________________________________________________________________
11851 [  2633] By: gsar                                  on 1999/01/17  13:39:59
11852         Log: bogus assert()
11853      Branch: perl
11854            ! pp.c t/op/groups.t
11855 ____________________________________________________________________________
11856 [  2632] By: gsar                                  on 1999/01/17  13:22:04
11857         Log: various tweaks for clean build and test on win32
11858      Branch: perl
11859            ! embed.h ext/B/Makefile.PL global.sym lib/FindBin.pm objXSUB.h
11860            ! op.c t/pragma/warn/doio
11861 ____________________________________________________________________________
11862 [  2631] By: gsar                                  on 1999/01/17  12:28:06
11863         Log: undo change#2336, and add clarification about subversive
11864              CPAN distributions from Andreas Koenig
11865      Branch: perl
11866            ! Porting/pumpkin.pod lib/CPAN.pm
11867 ____________________________________________________________________________
11868 [  2630] By: gsar                                  on 1999/01/17  12:04:06
11869         Log: fix silent taint failures under -U
11870      Branch: perl
11871            ! doio.c
11872 ____________________________________________________________________________
11873 [  2629] By: gsar                                  on 1999/01/17  12:00:23
11874         Log: sanity check piped opens (tweaked version of patch suggested
11875              by Mark-Jason Dominus)
11876      Branch: perl
11877            ! doio.c pod/perldelta.pod pod/perldiag.pod t/io/pipe.t
11878            ! t/op/taint.t t/pragma/warn/doio
11879 ____________________________________________________________________________
11880 [  2628] By: gsar                                  on 1999/01/17  11:26:21
11881         Log: regen headers
11882      Branch: perl
11883            ! embed.h embedvar.h objXSUB.h
11884 ____________________________________________________________________________
11885 [  2627] By: gsar                                  on 1999/01/17  11:23:37
11886         Log: PERL_OBJECTness for change#2595
11887      Branch: perl
11888            ! embed.pl op.c pod/perlport.pod proto.h
11889 ____________________________________________________________________________
11890 [  2626] By: gsar                                  on 1999/01/17  09:47:07
11891         Log: PERL_OBJECT tweaks for change#2426
11892      Branch: perl
11893            ! embed.pl proto.h regcomp.c
11894 ____________________________________________________________________________
11895 [  2625] By: gsar                                  on 1999/01/17  09:37:58
11896         Log: documentation in change#2596 is not quite right; fix it
11897      Branch: perl
11898            ! lib/Math/BigFloat.pm pod/perlguts.pod
11899 ____________________________________________________________________________
11900 [  2624] By: gsar                                  on 1999/01/17  09:28:34
11901         Log: undo change#2571; C<use File::Spec> instead
11902      Branch: perl
11903            ! lib/FindBin.pm
11904 ____________________________________________________________________________
11905 [  2623] By: gsar                                  on 1999/01/17  09:20:42
11906         Log: change#2572 is not applicable; undo, retaining scan_bin addition
11907              to global.sym
11908      Branch: perl
11909            ! global.sym perl.c proto.h
11910 ____________________________________________________________________________
11911 [  2622] By: gsar                                  on 1999/01/17  09:17:42
11912         Log: change#2576 is based on a wrong premise; undo it
11913      Branch: perl
11914            ! pp_ctl.c
11915 ____________________________________________________________________________
11916 [  2621] By: gsar                                  on 1999/01/17  09:12:42
11917         Log: fix change#2602 to not used hard coded constants
11918      Branch: perl
11919            ! ext/B/B/C.pm ext/B/defsubs.h.PL
11920 ____________________________________________________________________________
11921 [  2620] By: gsar                                  on 1999/01/17  09:02:07
11922         Log: integrate cfgperl changes into mainline, fix conflicts
11923      Branch: perl
11924           +> AUTHORS MAINTAIN README.mint ext/DynaLoader/hints/linux.pl
11925           +> ext/POSIX/hints/mint.pl hints/gnu.sh hints/mint.sh
11926           +> lib/Dumpvalue.pm mint/Makefile mint/README mint/errno.h
11927           +> mint/pwd.c mint/stdio.h mint/sys/time.h mint/time.h
11928           +> pod/perlopentut.pod
11929           !> (integrate 162 files)
11930 ____________________________________________________________________________
11931 [  2619] By: gsar                                  on 1999/01/17  08:42:04
11932         Log: a few doc typos
11933      Branch: perl
11934            ! lib/utf8.pm pod/perlfunc.pod pod/perlre.pod
11935 ____________________________________________________________________________
11936 [  2616] By: gbarr                                 on 1999/01/16  18:59:55
11937         Log: Win32 changes from Jan
11938              
11939              From: jan.dubois@ibm.net (Jan Dubois)
11940              Date: Fri, 15 Jan 1999 23:38:35 +0100
11941              Message-ID: <36a7c10d.16311905@smtp1.ibm.net>
11942              Subject: [PATCH 5.005_03m2] Win32 Makefile patches
11943              
11944              From: jan.dubois@ibm.net (Jan Dubois)
11945              Date: Sat, 16 Jan 1999 13:02:45 +0100
11946              Message-ID: <36a07da6.10722337@smtp1.ibm.net>
11947              Subject: [PATCH 5.005_03m2] minor tweaks to README.win32
11948      Branch: maint-5.005/perl
11949            ! README.win32 win32/Makefile win32/makefile.mk
11950 ____________________________________________________________________________
11951 [  2615] By: gbarr                                 on 1999/01/16  18:48:48
11952         Log: Jumbo patch from Sarathy for PERL_OBJECT & USE_THREADS
11953              
11954              From: Gurusamy Sarathy <gsar@engin.umich.edu>
11955              Date: Thu, 07 Jan 1999 00:12:00 -0500
11956              Message-Id: <199901070512.AAA23568@aatma.engin.umich.edu>
11957              Subject: Re: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
11958              
11959              From: Gurusamy Sarathy <gsar@engin.umich.edu>
11960              Date: Thu, 14 Jan 1999 19:21:46 -0500
11961              Message-Id: <199901150021.TAA01886@aatma.engin.umich.edu>
11962              Subject: Re: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
11963      Branch: maint-5.005/perl
11964            ! embed.h global.sym lib/ExtUtils/MM_Unix.pm objXSUB.h objpp.h
11965            ! op.c perl.c perl.h perly.c perly.y perly_c.diff pp.c proto.h
11966            ! sv.c t/io/fs.t toke.c win32/GenCAPI.pl win32/config.bc
11967            ! win32/makedef.pl win32/runperl.c win32/win32.c
11968 ____________________________________________________________________________
11969 [  2614] By: gbarr                                 on 1999/01/16  16:48:38
11970         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
11971              Date: Fri, 15 Jan 1999 17:28:34 +0200 (EET)
11972              Message-Id: <199901151528.RAA08785@alpha.hut.fi>
11973              Subject: [PATCH] 5.005_03-MAINT_TRIAL_2: NetBSD patches
11974              
11975              From: Jarkko Hietaniemi <jhi@iki.fi>
11976              Date: Fri, 15 Jan 1999 18:44:19 +0200 (EET)
11977              Message-Id: <199901151644.SAA08184@alpha.hut.fi>
11978              Subject: [PATCH] 5.005_03-MAINT_TRIAL_2: allow skipping the "install also as /usr/bin/perl" question of installperl
11979              
11980              From: Jarkko Hietaniemi <jhi@iki.fi>
11981              Date: Fri, 15 Jan 1999 18:52:29 +0200 (EET)
11982              Message-Id: <199901151652.SAA11259@alpha.hut.fi>
11983              Subject: the promised "installusrbinperl + NetBSD" fix
11984      Branch: maint-5.005/perl
11985            ! Configure Makefile.SH hints/netbsd.sh installperl
11986            ! makedepend.SH unixish.h
11987 ____________________________________________________________________________
11988 [  2611] By: jhi                                   on 1999/01/14  12:16:14
11989         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
11990              To: pumpkings@jhereg.perl.com
11991              Subject: perlopentut.pod
11992              Date: Sat, 09 Jan 1999 08:13:18 -0700
11993              Message-Id: <199901091513.IAA17512@jhereg.perl.com>
11994      Branch: cfgperl
11995            + pod/perlopentut.pod
11996            ! MANIFEST pod/perl.pod pod/perldelta.pod pod/roffitall
11997 ____________________________________________________________________________
11998 [  2607] By: gbarr                                 on 1999/01/14  02:53:40
11999         Log: Added Carp::cluck to perldelta.pod
12000      Branch: maint-5.005/perl
12001            ! pod/perldelta.pod
12002 ____________________________________________________________________________
12003 [  2605] By: jhi                                   on 1999/01/13  18:26:19
12004         Log: From: "Jonathan Fine (IT- Borders Online)" <jfine@borders.com>
12005              To: "'cpan@perl.org'" <cpan@perl.org>
12006              Subject: "Bug" fix for File::Find.pm
12007              Date:   Thu, 31 Dec 1998 13:01:50 -0500
12008              Message-ID: <311F144DB5E5D011B03F00805FE954B10708BE17@exchange01_ph.borders.com>
12009      Branch: cfgperl
12010            ! lib/File/Find.pm
12011 ____________________________________________________________________________
12012 [  2604] By: jhi                                   on 1999/01/13  18:08:45
12013         Log: From: Peter Wolfe <wolfe@teloseng.com>
12014              Subject: SCO 3.2v5 patch for perl5.005_03-MAINT_TRIAL_1
12015              To: perlbug@perl.com
12016              Date: 11 Jan 1999 23:00:05 +0200
12017              Message-ID: <MLIST_199901111950.LAA01703@titan.teloseng.com>
12018      Branch: cfgperl
12019            ! hints/sco.sh
12020 ____________________________________________________________________________
12021 [  2603] By: jhi                                   on 1999/01/13  18:06:56
12022         Log: From: hans@icgroup.nl (Hans Mulder)
12023              Subject: [Patch for 5.005_54] re::debugcolors dumps core
12024              To: perlbug@perl.com
12025              Cc: hansmu@xs4all.nl
12026              Date: 11 Jan 1999 22:22:45 +0200
12027              Message-ID: <MLIST_9901111947.AA22109@icgned.icgroup.nl>
12028      Branch: cfgperl
12029            ! ext/re/re.pm regcomp.c
12030 ____________________________________________________________________________
12031 [  2602] By: jhi                                   on 1999/01/13  18:05:43
12032         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
12033              Subject: [PATCH 5.005_54]B::MAGIC::PTR doesnot check for valid length.
12034              Date: 11 Jan 1999 08:02:41 +0200
12035              Lines: 134
12036              Message-ID: <MLIST_19990111052126.27966.qmail@hotmail.com>
12037      Branch: cfgperl
12038            ! ext/B/B.xs ext/B/B/C.pm
12039 ____________________________________________________________________________
12040 [  2601] By: jhi                                   on 1999/01/13  18:01:53
12041         Log: From: James FitzGibbon <james@ican.net>
12042              Subject: Trivial patch for HP-UX 11 and shared libperl
12043              To: perl5-porters@perl.org
12044              Date: 8 Jan 1999 19:13:23 +0200
12045              Message-ID: <MLIST_Pine.BSF.4.05.9901081110090.21785-100000@staff1.tor.accglobal.net>
12046      Branch: cfgperl
12047            ! Makefile.SH
12048 ____________________________________________________________________________
12049 [  2600] By: jhi                                   on 1999/01/13  17:59:45
12050         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
12051              Subject: [PATCH 5.005_54] B::CC::pp_rv2cv problem
12052              To: perl5-porters@perl.org
12053              Date: 8 Jan 1999 12:43:36 +0200
12054              Message-ID: <MLIST_19990108101557.4481.qmail@hotmail.com>
12055      Branch: cfgperl
12056            ! ext/B/B/CC.pm
12057 ____________________________________________________________________________
12058 [  2599] By: jhi                                   on 1999/01/13  17:50:11
12059         Log: From: Robin Barker <rmb1@cise.npl.co.uk>
12060              Subject: PATCH to installperl
12061              To: perl5-porters@perl.org
12062              Date: 4 Jan 1999 16:15:18 +0200
12063              Message-ID: <MLIST_199901041350.NAA19665@cyclone.cise.npl.co.uk>
12064      Branch: cfgperl
12065            ! installperl
12066 ____________________________________________________________________________
12067 [  2598] By: jhi                                   on 1999/01/13  17:34:51
12068         Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
12069              To: gsar@engin.umich.edu (Gurusamy Sarathy), gbarr@pobox.com
12070              Cc: perl5-porters@perl.org
12071              Subject: PATCH DB_File 1.63 for 5.005_54 & 5.005_03
12072              Date: Tue, 29 Dec 1998 16:23:54 +0000 (GMT)
12073              Message-Id: <9812291623.AA20884@claudius.bfsec.bt.co.uk>
12074      Branch: cfgperl
12075            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
12076            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
12077 ____________________________________________________________________________
12078 [  2597] By: jhi                                   on 1999/01/13  17:30:33
12079         Log: From: David Dyck <dcd@tc.fluke.com>
12080              To: Perl Porters <perl5-porters@perl.org>,
12081              Gurusamy Sarathy <gsar@engin.umich.edu>
12082              Subject: PATCH to perl5.005_54/pod/perldsc.pod (fix typo)
12083              Date: Tue, 12 Jan 1999 11:14:19 -0800 (PST)
12084              Message-ID: <Pine.LNX.4.05.9901121111250.22568-100000@dd.tc.fluke.com>
12085      Branch: cfgperl
12086            ! pod/perldsc.pod
12087 ____________________________________________________________________________
12088 [  2596] By: jhi                                   on 1999/01/13  17:26:44
12089         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
12090              To: perl5-porters@perl.org
12091              Subject: [PATCH] modglobal w/ spelling fixes
12092              Date: Tue, 12 Jan 1999 18:06:01 -0500 (EST)
12093              Message-ID: <Pine.GSO.4.02.9901121805290.625-100000@eq1062.wks.na.deuba.com>
12094      Branch: cfgperl
12095            ! pod/perlguts.pod
12096 ____________________________________________________________________________
12097 [  2595] By: jhi                                   on 1999/01/13  17:24:59
12098         Log: From: Hans Mulder <hansm@icgroup.nl>
12099              Optimize common sort routines.  Thread started by the message
12100              
12101              From: Hans Mulder <hansm@icgroup.nl>
12102              Sender: owner-perl5-porters@perl.org
12103              To: perl5-porters@perl.org
12104              Subject: [Patch for 5.00554] From the Todo list: Optimize sort by { $a <=> $b
12105              Message-Id: <9901092156.AA03831@icgned.icgroup.nl>
12106              
12107              and the patch from the message
12108              
12109              From: Hans Mulder <hans@icgroup.nl>
12110              To: jhi@iki.fi
12111              Cc: perl5-porters@perl.org
12112              Subject: Re: [Patch for 5.00554] From the Todo list: Optimize sort by { $a <=>
12113              $b }
12114              Date: Wed, 13 Jan 1999 17:39:35 +0100
12115              Message-Id: <9901131639.AA17419@icgned.icgroup.nl>
12116      Branch: cfgperl
12117            ! Todo op.c op.h pp_ctl.c t/op/sort.t
12118 ____________________________________________________________________________
12119 [  2594] By: jhi                                   on 1999/01/13  16:50:17
12120         Log: Atari MiNT port by Guido Flohr <gufl0000@stud.uni-sb.de>
12121              (the diffs were based on 5.004_02).  Tested by Guido
12122              and Frank Naumann <fnaumann@prinz-atm.CS.Uni-Magdeburg.De>.
12123      Branch: cfgperl
12124            + README.mint ext/POSIX/hints/mint.pl hints/mint.sh
12125            + mint/Makefile mint/README mint/errno.h mint/pwd.c mint/stdio.h
12126            + mint/sys/time.h mint/time.h
12127            ! MANIFEST doio.c malloc.c miniperlmain.c perl.c t/io/fs.t
12128            ! t/lib/safe2.t t/op/groups.t t/op/mkdir.t t/op/taint.t util.c
12129 ____________________________________________________________________________
12130 [  2593] By: jhi                                   on 1999/01/09  16:54:26
12131         Log: Detypo.
12132      Branch: cfgperl
12133            ! hints/dec_osf.sh
12134 ____________________________________________________________________________
12135 [  2592] By: jhi                                   on 1999/01/09  16:17:13
12136         Log: Move usethreads and use64bits logic from hints to Configure.
12137      Branch: cfgperl
12138            ! Configure hints/README.hints hints/aix.sh hints/dec_osf.sh
12139            ! hints/dos_djgpp.sh hints/freebsd.sh hints/hpux.sh
12140            ! hints/irix_6.sh hints/irix_6_0.sh hints/irix_6_1.sh
12141            ! hints/linux.sh hints/os2.sh hints/solaris_2.sh hints/vmesa.sh
12142 ____________________________________________________________________________
12143 [  2591] By: jhi                                   on 1999/01/09  14:45:24
12144         Log: Missing dTHRs added.
12145      Branch: cfgperl
12146            ! regcomp.c toke.c
12147 ____________________________________________________________________________
12148 [  2590] By: jhi                                   on 1999/01/08  15:27:17
12149         Log: Finalize change #2589 and add better AIX nm scanning from:
12150              
12151              Message-Id: <m0zyNW0-00017VC@gentoo.com>
12152              From: bll@gentoo.com (Brad Lanam)
12153              Subject: Re: mailhelp returned a non-zero status
12154              In-Reply-To: <199901072155.WAA14369@hptnocou.grenoble.hp.com> from Raphael Manfredi at "Jan 7, 1999 10:55:24 pm"
12155              To: ram@hptnocou.grenoble.hp.com (Raphael Manfredi)
12156      Branch: cfgperl
12157            ! Configure hints/freebsd.sh hints/linux.sh
12158 ____________________________________________________________________________
12159 [  2589] By: jhi                                   on 1999/01/08  15:14:54
12160         Log: Undo change #2581.
12161      Branch: cfgperl
12162            ! Configure hints/freebsd.sh hints/linux.sh
12163 ____________________________________________________________________________
12164 [  2588] By: jhi                                   on 1999/01/08  11:51:52
12165         Log: FAQ jumbo patch from tchrist.
12166              
12167              Message-Id: <199901080605.XAA20229@jhereg.perl.com>
12168              From: Tom Christiansen <tchrist@jhereg.perl.com>
12169              To: pumpkings@jhereg.perl.com
12170              Subject: newest version of perlfaq.pod
12171              Date: Thu, 7 Jan 1999 23:05:02 -0700
12172              
12173              Message-Id: <199901080605.XAA20231@jhereg.perl.com>
12174              From: Tom Christiansen <tchrist@jhereg.perl.com>
12175              To: pumpkings@jhereg.perl.com
12176              Subject: newest version of perlfaq1.pod
12177              Date: Thu, 7 Jan 1999 23:05:02 -0700
12178              
12179              Message-Id: <199901080605.XAA20233@jhereg.perl.com>
12180              From: Tom Christiansen <tchrist@jhereg.perl.com>
12181              To: pumpkings@jhereg.perl.com
12182              Subject: newest version of perlfaq2.pod
12183              Date: Thu, 7 Jan 1999 23:05:02 -0700
12184              
12185              Message-Id: <199901080605.XAA20235@jhereg.perl.com>
12186              From: Tom Christiansen <tchrist@jhereg.perl.com>
12187              To: pumpkings@jhereg.perl.com
12188              Subject: newest version of perlfaq3.pod
12189              Date: Thu, 7 Jan 1999 23:05:02 -0700
12190              
12191              Message-Id: <199901080605.XAA20237@jhereg.perl.com>
12192              From: Tom Christiansen <tchrist@jhereg.perl.com>
12193              To: pumpkings@jhereg.perl.com
12194              Subject: newest version of perlfaq4.pod
12195              Date: Thu, 7 Jan 1999 23:05:02 -0700
12196              
12197              Message-Id: <199901080605.XAA20239@jhereg.perl.com>
12198              From: Tom Christiansen <tchrist@jhereg.perl.com>
12199              To: pumpkings@jhereg.perl.com
12200              Subject: newest version of perlfaq5.pod
12201              Date: Thu, 7 Jan 1999 23:05:02 -0700
12202              
12203              Message-Id: <199901080605.XAA20241@jhereg.perl.com>
12204              From: Tom Christiansen <tchrist@jhereg.perl.com>
12205              To: pumpkings@jhereg.perl.com
12206              Subject: newest version of perlfaq6.pod
12207              Date: Thu, 7 Jan 1999 23:05:02 -0700
12208              
12209              Message-Id: <199901080605.XAA20243@jhereg.perl.com>
12210              From: Tom Christiansen <tchrist@jhereg.perl.com>
12211              To: pumpkings@jhereg.perl.com
12212              Subject: newest version of perlfaq7.pod
12213              Date: Thu, 7 Jan 1999 23:05:03 -0700
12214              
12215              Message-Id: <199901080605.XAA20245@jhereg.perl.com>
12216              From: Tom Christiansen <tchrist@jhereg.perl.com>
12217              To: pumpkings@jhereg.perl.com
12218              Subject: newest version of perlfaq8.pod
12219              Date: Thu, 7 Jan 1999 23:05:03 -0700
12220              
12221              Message-Id: <199901080605.XAA20257@jhereg.perl.com>
12222              From: Tom Christiansen <tchrist@jhereg.perl.com>
12223              To: pumpkings@jhereg.perl.com
12224              Subject: newest version of perlfaq9.pod
12225              Date: Thu, 7 Jan 1999 23:05:03 -0700
12226      Branch: cfgperl
12227            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
12228            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
12229            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
12230            ! pod/perlfaq9.pod
12231 ____________________________________________________________________________
12232 [  2587] By: jhi                                   on 1999/01/08  11:17:43
12233         Log: More doc fixes from Abigail.
12234      Branch: cfgperl
12235            ! lib/Time/gmtime.pm lib/Time/localtime.pm lib/User/grent.pm
12236            ! lib/User/pwent.pm
12237 ____________________________________________________________________________
12238 [  2585] By: jhi                                   on 1999/01/08  08:31:02
12239         Log: Change #2584 from maint-5.005:
12240              
12241              implemented Ilya's suggested fix, and added a testcase
12242              
12243              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12244              Date: Tue, 5 Jan 1999 00:56:01 -0500 (EST)
12245              Message-Id: <199901050556.AAA02597@monk.mps.ohio-state.edu>
12246              Subject: Re: Text::ParseWords: regex fix
12247      Branch: cfgperl
12248            ! lib/Text/ParseWords.pm t/lib/parsewords.t
12249 ____________________________________________________________________________
12250 [  2583] By: gbarr                                 on 1999/01/08  04:50:03
12251         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
12252              Date: Thu, 7 Jan 1999 12:47:38 +0200 (EET)
12253              Message-Id: <199901071047.MAA24100@alpha.hut.fi>
12254              Subject: [PATCH] 5.005_03-MAINT_TRIAL_2: ext/Errno_pm.PL: understand wrapper cppstdins
12255      Branch: maint-5.005/perl
12256            ! ext/Errno/Errno_pm.PL
12257 ____________________________________________________________________________
12258 [  2581] By: jhi                                   on 1999/01/07  16:38:03
12259         Log: Configure update:
12260              - usethreads, use64bits, and usemultiplicity
12261              are no more interactively asked by Configure
12262              - "int main()" (vs bare "main()") enforced in test programs
12263      Branch: cfgperl
12264            ! Configure hints/freebsd.sh hints/linux.sh
12265 ____________________________________________________________________________
12266 [  2580] By: jhi                                   on 1999/01/07  11:19:12
12267         Log: From: Dan Sugalski <sugalskd@osshe.edu>
12268              Date: Wed, 06 Jan 1999 13:47:34 -0800
12269              Message-Id: <3.0.6.32.19990106134734.0334d260@ous.edu>
12270              Subject: [PATCH 5.005_02-MT2, 5.005_5x]VMS.C tweak for occasional system() error
12271      Branch: cfgperl
12272            ! vms/vms.c
12273 ____________________________________________________________________________
12274 [  2579] By: jhi                                   on 1999/01/07  09:08:36
12275         Log: Another set of doc patches from Abigail
12276              
12277              From: abigail@fnx.com
12278              Message-ID: <19990107032132.20124.qmail@alexandra.wayne.fnx.com>
12279              Subject: [PATCH 5.005_03 TRAIL2 lib/Net/hostent.pm] Typo fix
12280              Date: Wed, 6 Jan 1999 22:21:32 -0500 (EST)
12281              
12282              From: abigail@fnx.com
12283              Message-ID: <19990107032445.20178.qmail@alexandra.wayne.fnx.com>
12284              Subject: [PATCH 5.005_03 TRIAL2 lib/Net/netent.pm] Typo fix
12285              Date: Wed, 6 Jan 1999 22:24:45 -0500 (EST)
12286              
12287              From: abigail@fnx.com
12288              Message-ID: <19990107032834.20362.qmail@alexandra.wayne.fnx.com>
12289              Subject: [PATCH 5.005_03 TRAIL2 lib/Term/Complete.pm] Typo fix
12290              Date: Wed, 6 Jan 1999 22:28:34 -0500 (EST)
12291              
12292              From: abigail@fnx.com
12293              Message-ID: <19990107033136.20440.qmail@alexandra.wayne.fnx.com>
12294              Subject: [PATCH 5.005_03 TRAIL2 lib/Term/ReadLine.pm] Typo fix
12295              Date: Wed, 6 Jan 1999 22:31:36 -0500 (EST)
12296              
12297              From: abigail@fnx.com
12298              Message-ID: <19990107033351.20540.qmail@alexandra.wayne.fnx.com>
12299              Subject: [PATCH 5.005_03 TRIAL2 lib/CGI/Apache.pm] Typo fix
12300              Date: Wed, 6 Jan 1999 22:33:51 -0500 (EST)
12301              
12302              From: abigail@fnx.com
12303              Message-ID: <19990107033933.20707.qmail@alexandra.wayne.fnx.com>
12304              Subject: [PATCH 5.005_03 TRIAL2 lib/CGI/Push.pm] Typo fix
12305              Date: Wed, 6 Jan 1999 22:39:33 -0500 (EST)
12306              
12307              From: abigail@fnx.com
12308              Message-ID: <19990107034548.20936.qmail@alexandra.wayne.fnx.com>
12309              Subject: [PATCH 5.005_03 TRIAL2 lib/File/Copy.pm] Typo fixes
12310              Date: Wed, 6 Jan 1999 22:45:48 -0500 (EST)
12311              
12312              From: abigail@fnx.com
12313              Message-ID: <19990107034856.21056.qmail@alexandra.wayne.fnx.com>
12314              Subject: [PATCH 5.005_03 TRIAL2 lib/File/Spec.pm] Typo fix
12315              Date: Wed, 6 Jan 1999 22:48:56 -0500 (EST)
12316              
12317              From: abigail@fnx.com
12318              Message-ID: <19990107035113.21174.qmail@alexandra.wayne.fnx.com>
12319              Subject: [PATCH 5.005_03 TRIAL2 lib/File/Spec/Mac.pm] Typo fixes
12320              Date: Wed, 6 Jan 1999 22:51:13 -0500 (EST)
12321              
12322              From: abigail@fnx.com
12323              Message-ID: <19990107035612.21522.qmail@alexandra.wayne.fnx.com>
12324              Subject: [PATCH 5.005_03 TRIAL2 lib/Math/BigFloat.pm] Typo fix
12325              Date: Wed, 6 Jan 1999 22:56:12 -0500 (EST)
12326              
12327              From: abigail@fnx.com
12328              Message-ID: <19990107035842.21585.qmail@alexandra.wayne.fnx.com>
12329              Subject: [PATCH 5.005_03 TRIAL2 lib/Math/BigInt.pm] Typo fixes
12330              Date: Wed, 6 Jan 1999 22:58:41 -0500 (EST)
12331              
12332              From: abigail@fnx.com
12333              Message-ID: <19990107040644.22009.qmail@alexandra.wayne.fnx.com>
12334              Subject: [PATCH 5.005_03 TRIAL2 lib/Text/Wrap.pm] Typo fixes
12335              Date: Wed, 6 Jan 1999 23:06:44 -0500 (EST)
12336              
12337              From: abigail@fnx.com
12338              Message-ID: <19990107040955.22087.qmail@alexandra.wayne.fnx.com>
12339              Subject: [PATCH 5.005_03 TRIAL2 lib/Tie/Array.pm] Typo fixes
12340              Date: Wed, 6 Jan 1999 23:09:55 -0500 (EST)
12341              
12342              From: abigail@fnx.com
12343              Message-ID: <19990107041136.22174.qmail@alexandra.wayne.fnx.com>
12344              Subject: [PATCH 5.005_03 TRIAL2 lib/Tie/Hash.pm] Typo fix
12345              Date: Wed, 6 Jan 1999 23:11:36 -0500 (EST)
12346      Branch: cfgperl
12347            ! lib/CGI/Apache.pm lib/CGI/Push.pm lib/File/Copy.pm
12348            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/Math/BigFloat.pm
12349            ! lib/Math/BigInt.pm lib/Net/hostent.pm lib/Net/netent.pm
12350            ! lib/Term/Complete.pm lib/Term/ReadLine.pm lib/Text/Wrap.pm
12351            ! lib/Tie/Array.pm lib/Tie/Hash.pm
12352 ____________________________________________________________________________
12353 [  2576] By: jhi                                   on 1999/01/06  17:05:20
12354         Log: Change #2582 fallout: the amagic_cmp* are no more file static.
12355      Branch: cfgperl
12356            ! pp_ctl.c
12357 ____________________________________________________________________________
12358 [  2575] By: jhi                                   on 1999/01/06  13:18:56
12359         Log: Enhance the great_circle_distance() documentation.
12360      Branch: cfgperl
12361            ! lib/Math/Trig.pm
12362 ____________________________________________________________________________
12363 [  2574] By: jhi                                   on 1999/01/06  12:58:03
12364         Log: From: Mark Bixby <markb@spock.dis.cccd.edu>
12365              To: perlbug@perl.com
12366              Subject: [PATCH 5.005_03-MAINT_TRIAL_2] t/op/sysio.t for MPE/iX
12367              Date: Mon, 4 Jan 1999 13:34:58 -0800 (PST)
12368              Message-Id: <199901042134.NAA18852@spock.dis.cccd.edu>
12369      Branch: cfgperl
12370            ! t/op/sysio.t
12371 ____________________________________________________________________________
12372 [  2573] By: jhi                                   on 1999/01/06  12:40:19
12373         Log: From: "W. Phillip Moore" <wpm@ms.com>
12374              To: perlbug@perl.org
12375              Subject: [PATCH] POSIX getpgrp is not -w clean
12376              Date: Tue, 5 Jan 1999 12:40:27 -0500 (EST)
12377              Message-ID: <13970.20107.190314.549471@zappa>
12378      Branch: cfgperl
12379            ! ext/POSIX/POSIX.pm
12380 ____________________________________________________________________________
12381 [  2572] By: jhi                                   on 1999/01/06  12:25:24
12382         Log: Based on
12383              From: jan.dubois@ibm.net (Jan Dubois)
12384              To: perl5-porters@perl.org
12385              Subject: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
12386              Date: Wed, 06 Jan 1999 01:24:09 +0100
12387              Message-ID: <3696aa85.18259325@smtp1.ibm.net>
12388              except that
12389              - objXSUB.h was already okay
12390              - embed.h patching is futile, global.sym patched instead
12391              - objpp.h does not exist
12392              - proto.h addition applied manually
12393              - win32/GenCAPI.pl was already okay
12394              - win32/makedef.pl was already okay
12395      Branch: cfgperl
12396            ! global.sym perl.c proto.h
12397 ____________________________________________________________________________
12398 [  2571] By: jhi                                   on 1999/01/06  11:25:48
12399         Log: From: Slaven Rezic <eserte@cs.tu-berlin.de>
12400              To: perlbug@perl.com
12401              Subject: FindBin.pm on Win32 systems
12402              Date: Mon, 4 Jan 1999 23:01:46 +0100 (CET)
12403              Message-Id: <199901042201.XAA01875@cabulja.herceg.de>
12404      Branch: cfgperl
12405            ! lib/FindBin.pm
12406 ____________________________________________________________________________
12407 [  2570] By: jhi                                   on 1999/01/06  11:21:48
12408         Log: From: Dan Sugalski <sugalskd@osshe.edu>
12409              To: perl5-porters@perl.org, vmsperl@perl.org
12410              Subject: [PATCH 5.005_03-MAINT_TRIAL_2]taint.c fix for VMS
12411              Date: Tue, 05 Jan 1999 16:47:31 -0800
12412              Message-Id: <3.0.6.32.19990105164731.00b5b2d0@ous.edu>
12413              
12414              (the ext/IO/lib/IO/Socket.pm was not really changed here;
12415              it was a leftover from #2569)
12416      Branch: cfgperl
12417            ! ext/IO/lib/IO/Socket.pm taint.c
12418 ____________________________________________________________________________
12419 [  2569] By: jhi                                   on 1999/01/06  11:18:22
12420         Log: Jumbo doc patch from Abigail (almost identical to
12421              the 5.005-maint change #2562 except for the
12422              ext/IO/lib/IO/Socket.pm patch which was not
12423              applicable because the IO version of 5.005-devel
12424              is somewhat different (why?))
12425              
12426              From: abigail@fnx.com
12427              Message-ID: <19990105170142.4889.qmail@alexandra.wayne.fnx.com>
12428              Subject: [PATCH 5.005_03-TRIAL2 lib/ExtUtils/Liblist.pm] pod fixes
12429              Date: Tue, 5 Jan 1999 12:01:42 -0500 (EST)
12430              
12431              From: abigail@fnx.com
12432              Message-ID: <19990105172855.5115.qmail@alexandra.wayne.fnx.com>
12433              Subject: [PATCH 5.005_03 MAINT2 lib/ExtUtils/Commands.pm] Typo fix.
12434              Date: Tue, 5 Jan 1999 12:28:55 -0500 (EST)
12435              
12436              From: abigail@fnx.com
12437              Message-ID: <19990105173808.5260.qmail@alexandra.wayne.fnx.com>
12438              Subject: [PATCH perl5.005_03 MAINT3 lib/ExtUtils/Embed.pm] Typo fix
12439              Date: Tue, 5 Jan 1999 12:38:08 -0500 (EST)
12440              
12441              From: abigail@fnx.com
12442              Message-ID: <19990105174859.5533.qmail@alexandra.wayne.fnx.com>
12443              Subject: [PATCH 5.005_03 MAINT2 lib/ExtUtils/Install.pm] Typo fix
12444              Date: Tue, 5 Jan 1999 12:48:59 -0500 (EST)
12445              
12446              From: abigail@fnx.com
12447              Message-ID: <19990105174947.5547.qmail@alexandra.wayne.fnx.com>
12448              Subject: [PATCH 5.005_03 lib/ExtUtils/MM_Unix.pm] Typo fixes
12449              Date: Tue, 5 Jan 1999 12:49:46 -0500 (EST)
12450              
12451              From: abigail@fnx.com
12452              Message-ID: <19990105182301.5966.qmail@alexandra.wayne.fnx.com>
12453              Subject: [PATCH 5.005_03 lib/ExtUtils/MakeMaker.pm] Typos fixes.
12454              Date: Tue, 5 Jan 1999 13:23:00 -0500 (EST)
12455              
12456              From: abigail@fnx.com
12457              Message-ID: <19990105183344.6065.qmail@alexandra.wayne.fnx.com>
12458              Subject: [PATCH 5.005_03 TRIAL2 lib/ExtUtils/Manifest.pm] Typo fixes
12459              Date: Tue, 5 Jan 1999 13:33:44 -0500 (EST)
12460              
12461              From: abigail@fnx.com
12462              Message-ID: <19990105184028.6220.qmail@alexandra.wayne.fnx.com>
12463              Subject: [PATCH 5.005_03 TRIAL2 lib/ExtUtils/Mksymlists.pm] Typo fix
12464              Date: Tue, 5 Jan 1999 13:40:28 -0500 (EST)
12465              
12466              From: abigail@fnx.com
12467              Message-ID: <19990106012015.9451.qmail@alexandra.wayne.fnx.com>
12468              Subject: [PATCH 5.005_03 TRIAL2 lib/IO/Pipe.pm] Typo fixes.
12469              Date: Tue, 5 Jan 1999 20:20:15 -0500 (EST)
12470              
12471              From: abigail@fnx.com
12472              Message-ID: <19990106012047.9459.qmail@alexandra.wayne.fnx.com>
12473              Subject: [PATCH 5.005_03 TRAIL2 lib/IO/Seekable.pm] Typo fixes
12474              Date: Tue, 5 Jan 1999 20:20:47 -0500 (EST)
12475      Branch: cfgperl
12476            ! ext/IO/lib/IO/Pipe.pm ext/IO/lib/IO/Seekable.pm
12477            ! lib/ExtUtils/Command.pm lib/ExtUtils/Embed.pm
12478            ! lib/ExtUtils/Install.pm lib/ExtUtils/Liblist.pm
12479            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
12480            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/Mksymlists.pm
12481 ____________________________________________________________________________
12482 [  2568] By: gbarr                                 on 1999/01/06  03:13:15
12483         Log: From: jan.dubois@ibm.net (Jan Dubois)
12484              Date: Wed, 06 Jan 1999 01:24:09 +0100
12485              Message-ID: <3696aa85.18259325@smtp1.ibm.net>
12486              Subject: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
12487      Branch: maint-5.005/perl
12488            ! embed.h global.sym objXSUB.h objpp.h perl.c proto.h
12489            ! win32/GenCAPI.pl win32/makedef.pl
12490 ____________________________________________________________________________
12491 [  2566] By: gbarr                                 on 1999/01/06  02:29:05
12492         Log: From: "W. Phillip Moore" <wpm@ms.com>
12493              Date: Tue, 5 Jan 1999 12:40:27 -0500 (EST)
12494              Message-ID: <13970.20107.190314.549471@zappa>
12495              Subject: [PATCH] POSIX getpgrp is not -w clean
12496      Branch: maint-5.005/perl
12497            ! ext/POSIX/POSIX.pm
12498 ____________________________________________________________________________
12499 [  2565] By: gbarr                                 on 1999/01/06  02:19:00
12500         Log: From: Slaven Rezic <eserte@cs.tu-berlin.de>
12501              Date: Mon, 4 Jan 1999 23:01:46 +0100 (CET)
12502              Message-Id: <199901042201.XAA01875@cabulja.herceg.de>
12503              Subject: FindBin.pm on Win32 systems
12504      Branch: maint-5.005/perl
12505            ! lib/FindBin.pm
12506 ____________________________________________________________________________
12507 [  2561] By: jhi                                   on 1999/01/05  10:49:10
12508         Log: Reword the setlocale() 1-arg case better.
12509      Branch: cfgperl
12510            ! ext/POSIX/POSIX.pod
12511 ____________________________________________________________________________
12512 [  2559] By: gbarr                                 on 1999/01/02  15:37:35
12513         Log: From: Blair Zajac <bzajac@geostaff.com>
12514              Date: Wed, 23 Dec 1998 17:13:32 -0800
12515              Message-ID: <3681953C.8B6A90AA@geostaff.com>
12516              Subject: Tie::SubstrHash patch
12517      Branch: maint-5.005/perl
12518            ! lib/Tie/SubstrHash.pm
12519 ____________________________________________________________________________
12520 [  2554] By: jhi                                   on 1999/01/02  14:55:06
12521         Log: Object destruction order testing.
12522      Branch: cfgperl
12523            ! t/op/misc.t
12524 ____________________________________________________________________________
12525 [  2553] By: jhi                                   on 1999/01/02  14:49:40
12526         Log: perldelta the Dumpvalue.pm of change #2513.
12527      Branch: cfgperl
12528            ! lib/Dumpvalue.pm pod/perldelta.pod
12529 ____________________________________________________________________________
12530 [  2552] By: nick                                  on 1999/01/02  14:45:38
12531         Log: Tone down Makefile.PL so it works on Win32
12532      Branch: perl
12533            ! ext/B/Makefile.PL
12534 ____________________________________________________________________________
12535 [  2551] By: nick                                  on 1999/01/02  14:06:30
12536         Log: Export constant subs from B.xs for op.h, cop.h and a few others.
12537              Use them in various B::* rather than have local defs.
12538      Branch: perl
12539            + ext/B/defsubs.h.PL
12540            ! ext/B/B.pm ext/B/B.xs ext/B/B/Bytecode.pm ext/B/B/C.pm
12541            ! ext/B/B/CC.pm ext/B/B/Deparse.pm ext/B/B/Lint.pm
12542            ! ext/B/B/Stackobj.pm ext/B/B/Xref.pm ext/B/Makefile.PL
12543 ____________________________________________________________________________
12544 [  2550] By: nick                                  on 1999/01/02  10:04:02
12545         Log: Integrate ext/B changes from //depot/cfgperl
12546      Branch: perl
12547           !> ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
12548 ____________________________________________________________________________
12549 [  2549] By: jhi                                   on 1999/01/01  13:54:16
12550         Log: From: "Paul Holser" <Paul.Holser.pholser@nortelnetworks.com>
12551              To: perlbug@perl.com
12552              Subject: op/groups.t fails test 1 on HP-UX 10.20
12553              Date: Wed, 30 Dec 1998 15:16:12 -0600 (CST)
12554              Message-Id: <199812302116.PAA12439@crchh44c.us.nortel.com>
12555      Branch: cfgperl
12556            ! t/op/groups.t
12557 ____________________________________________________________________________
12558 [  2548] By: jhi                                   on 1999/01/01  13:53:31
12559         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
12560              To: perl5-porters@perl.org
12561              cc: hv@crypt0.demon.co.uk
12562              Subject: [bug 5.004_54] duplicate error message
12563              Date: Thu, 31 Dec 1998 04:05:25 +0000
12564              Message-Id: <199812310405.EAA00386@crypt.compulink.co.uk>
12565              
12566              Message-ID: <13963.60672.134591.383377@alias-2.pr.mcs.net>
12567              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
12568              To: hv@crypt0.demon.co.uk
12569              Cc: perl5-porters@perl.org
12570              Subject: [PATCH _54] Re: duplicate error message
12571              Date: Thu, 31 Dec 1998 16:10:13 -0600 (CST)
12572              
12573              Message-Id: <199901010732.HAA02926@crypt.compulink.co.uk>
12574              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
12575              To: Stephen McCamant <smccam@uclink4.berkeley.edu>
12576              cc: hv@crypt0.demon.co.uk, perl5-porters@perl.org
12577              Subject: [TEST PATCH _54] Re: duplicate error message 
12578              Date: Fri, 01 Jan 1999 07:32:14 +0000
12579      Branch: cfgperl
12580            ! op.c t/pragma/warn/op
12581 ____________________________________________________________________________
12582 [  2547] By: jhi                                   on 1998/12/31  14:15:04
12583         Log: From: Chris Nandor <pudge@pobox.com>
12584              To: jhi@iki.fi
12585              Cc: perl5-porters@perl.org
12586              Subject: Re: [PATCH] perlport.pod 1.38
12587              Date: Thu, 31 Dec 1998 09:06:48 -0500
12588              Message-Id: <v04020a1db2b1352ec92a@[192.168.0.77]>
12589      Branch: cfgperl
12590            ! pod/perlport.pod
12591 ____________________________________________________________________________
12592 [  2546] By: jhi                                   on 1998/12/31  11:18:17
12593         Log: From: Wilson P. Snyder II
12594              To: perl5-porters@perl.org
12595              Subject: [PATCH v5.5.53] REV2: Binary number support
12596              Date: 1998/11/30
12597              Message-ID: <199811301543.KAA15689@vulcan.maker.com>
12598      Branch: cfgperl
12599            ! pod/perldata.pod pod/perldelta.pod pod/perlfunc.pod pp.c
12600            ! proto.h sv.c t/op/oct.t t/op/sprintf.t t/pragma/warn/util
12601            ! toke.c util.c
12602 ____________________________________________________________________________
12603 [  2545] By: jhi                                   on 1998/12/31  09:27:40
12604         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
12605              To: perlbug@perl.com
12606              Subject: "perl -T -P" dumps core on OpenBSD and Linux
12607              Date: Wed, 30 Dec 1998 21:11:05 -0700 (MST)
12608              Message-Id: <199812310411.VAA37568@xerxes.courtesan.com>
12609      Branch: cfgperl
12610            ! taint.c
12611 ____________________________________________________________________________
12612 [  2544] By: jhi                                   on 1998/12/31  09:21:45
12613         Log: From: Tim Bunce <Tim.Bunce@ig.co.uk> 
12614              To: perlbug@perl.com 
12615              Subject: bug in pod2man search for perl binary [5.005_5x]
12616              Date: Sat, 12 Dec 1998 23:08:51 +0000 
12617              Message-ID: <19981212230851.A20578@ig.co.uk> 
12618      Branch: cfgperl
12619            ! pod/pod2man.PL
12620 ____________________________________________________________________________
12621 [  2541] By: gbarr                                 on 1998/12/30  14:37:14
12622         Log: From: jan.dubois@ibm.net (Jan Dubois)
12623              Date: Wed, 23 Dec 1998 21:26:38 +0100
12624              Message-ID: <36895086.8849224@smtp1.ibm.net>
12625              Subject: [PATCH 5.005_03m1] subdirectory Makefiles should inherit CAPI setting from command line
12626      Branch: maint-5.005/perl
12627            ! lib/ExtUtils/MakeMaker.pm
12628 ____________________________________________________________________________
12629 [  2540] By: jhi                                   on 1998/12/30  08:42:04
12630         Log: Evermore AUTHORS and MAINTAIN.
12631      Branch: cfgperl
12632            ! AUTHORS MAINTAIN
12633 ____________________________________________________________________________
12634 [  2539] By: jhi                                   on 1998/12/29  15:10:34
12635         Log: More AUTHORS and MAINTAIN.
12636      Branch: cfgperl
12637            ! AUTHORS MAINTAIN
12638 ____________________________________________________________________________
12639 [  2537] By: jhi                                   on 1998/12/29  14:34:47
12640         Log: From: Frank Ridderbusch <Frank.Ridderbusch@pdb.siemens.de>
12641              Date: Tue, 15 Dec 1998 16:23:12 +0100 (MET)
12642              Message-ID: <13942.32480.700000.640927@utensil>
12643              Subject: Minor Bug in AutoSplit.qm in 5.005 and 5.004
12644              (mirror change#2531 in the 5.005-maint)
12645      Branch: cfgperl
12646            ! lib/AutoSplit.pm
12647 ____________________________________________________________________________
12648 [  2531] By: gbarr                                 on 1998/12/29  14:12:25
12649         Log: change in_pod pattern to /^=\w/ from /^=/
12650              From: Frank Ridderbusch <Frank.Ridderbusch@pdb.siemens.de>
12651              Date: Tue, 15 Dec 1998 16:23:12 +0100 (MET)
12652              Message-ID: <13942.32480.700000.640927@utensil>
12653              Subject: Minor Bug in AutoSplit.qm in 5.005 and 5.004
12654      Branch: maint-5.005/perl
12655            ! lib/AutoSplit.pm
12656 ____________________________________________________________________________
12657 [  2525] By: jhi                                   on 1998/12/29  13:06:26
12658         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
12659              To: perl5-porters@perl.org
12660              Subject: [PATCH 5.005_54] More minor  Fixes in CC.pm/C.pm
12661              Date: 16 Dec 1998 03:17:03 +0200
12662              Message-ID: <MLIST_199812160055.QAA06272@f10.hotmail.com>
12663      Branch: cfgperl
12664            ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
12665 ____________________________________________________________________________
12666 [  2524] By: jhi                                   on 1998/12/29  13:00:06
12667         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
12668              To: perl5-porters@perl.org
12669              Cc: rmb1@cise.npl.co.uk, nick@ni-s.u-net.com
12670              Subject: [PATCH 5.005_54] Re:perlcc -e 'my $x = shift; print +($x ?...' failure
12671              Date: 10 Dec 1998 08:30:02 +0200
12672              Message-ID: <MLIST_19981210061651.29891.qmail@hotmail.com>
12673              
12674              (Nick's part was applied earlier, in change #2460)
12675      Branch: cfgperl
12676            ! ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
12677 ____________________________________________________________________________
12678 [  2523] By: jhi                                   on 1998/12/29  12:41:31
12679         Log: From: "vishal bhatia" <vishalb@hotmail.com>
12680              To: nick@ni-s.u-net.com
12681              Cc: perl5-porters@perl.org
12682              Subject: [PATCH 5.005_54] return value of perlcc/B::CC generated functions.
12683              Date: 9 Dec 1998 06:50:30 +0200
12684              Message-ID: <MLIST_19981209043146.16829.qmail@hotmail.com>
12685      Branch: cfgperl
12686            ! ext/B/B/CC.pm
12687 ____________________________________________________________________________
12688 [  2522] By: jhi                                   on 1998/12/29  12:15:18
12689         Log: From: rjk@linguist.dartmouth.edu (Ronald J. Kimball)
12690              To: perl5-porters@perl.org (Perl 5 Porters)
12691              Subject: [PATCH 5.005_54] Pod::Text.pm reformating indented paragraphs
12692              Date: 25 Dec 1998 23:02:28 +0200
12693              Message-ID: <MLIST_199812252034.PAA27812@linguist.dartmouth.edu>
12694      Branch: cfgperl
12695            ! lib/Pod/Text.pm
12696 ____________________________________________________________________________
12697 [  2521] By: jhi                                   on 1998/12/29  12:07:54
12698         Log: Undo #2519 (breaks universal.c).
12699      Branch: cfgperl
12700            ! XSUB.h
12701 ____________________________________________________________________________
12702 [  2519] By: jhi                                   on 1998/12/29  11:41:10
12703         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
12704              To: perl5-porters@perl.org
12705              Cc: perl-xs@perl.org
12706              Subject: XSUB.h refinement [PATCH]
12707              Date: 18 Dec 1998 03:58:44 +0200
12708              Message-ID: <MLIST_Pine.GSO.4.02.9812171733330.589-100000@eq1062.wks.na.deuba.com>
12709      Branch: cfgperl
12710            ! XSUB.h
12711 ____________________________________________________________________________
12712 [  2518] By: jhi                                   on 1998/12/29  11:36:19
12713         Log: From: abigail@fnx.com
12714              To: perl5-porters@perl.org (Perl Porters)
12715              Subject: [PATCH 5.005_02; lib/fields.pm] Typos in pod.
12716              Date: 28 Dec 1998 21:39:15 +0200
12717              Message-ID: <MLIST_19981228191612.8380.qmail@alexandra.wayne.fnx.com>
12718      Branch: cfgperl
12719            ! lib/fields.pm
12720 ____________________________________________________________________________
12721 [  2517] By: jhi                                   on 1998/12/29  11:35:03
12722         Log: Document change #2516.
12723      Branch: cfgperl
12724            ! pod/perldelta.pod
12725 ____________________________________________________________________________
12726 [  2516] By: jhi                                   on 1998/12/29  11:32:26
12727         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12728              To: perl5-porters@perl.org (Mailing list Perl5)
12729              Subject: [PATCH 5.005_53] Warn on unrecognized alpha escapes.
12730              Date: 9 Dec 1998 10:39:31 +0200
12731              Message-ID: <MLIST_199812090823.DAA17566@monk.mps.ohio-state.edu>
12732      Branch: cfgperl
12733            ! pod/perldiag.pod regcomp.c toke.c
12734 ____________________________________________________________________________
12735 [  2515] By: jhi                                   on 1998/12/29  11:27:11
12736         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12737              To: perl5-porters@perl.org (Mailing list Perl5)
12738              Subject: [PATCH 5.005_53] Bugs in hairy interactions of feature in REx
12739              Date: 8 Dec 1998 09:02:04 +0200
12740              Message-ID: <MLIST_199812080637.BAA16025@monk.mps.ohio-state.edu>
12741              
12742              \G fixes (wasn't working right with //g, s///, and $_ in (?{})).
12743      Branch: cfgperl
12744            ! pp_ctl.c pp_hot.c regexec.c regexp.h t/op/pat.t t/op/subst.t
12745 ____________________________________________________________________________
12746 [  2514] By: jhi                                   on 1998/12/29  11:21:31
12747         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12748              To: perl5-porters@perl.org (Mailing list Perl5)
12749              Subject: [PATCH 5.005_53] Regexp tests and UTF8
12750              Date: 8 Dec 1998 07:02:01 +0200
12751              Message-ID: <MLIST_199812080447.XAA05297@monk.mps.ohio-state.edu>
12752      Branch: cfgperl
12753            ! regcomp.c
12754 ____________________________________________________________________________
12755 [  2513] By: jhi                                   on 1998/12/29  11:18:34
12756         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12757              Subject: [PATCH 5.005_*] Dumpvar.pm
12758              To: perl5-porters@perl.org (Mailing list Perl5)
12759              Date: 7 Dec 1998 10:17:35 +0200
12760              Message-ID: <MLIST_199812070744.CAA18949@monk.mps.ohio-state.edu>
12761      Branch: cfgperl
12762            + lib/Dumpvalue.pm
12763            ! MANIFEST
12764 ____________________________________________________________________________
12765 [  2511] By: gbarr                                 on 1998/12/28  14:55:28
12766         Log: From: jan.dubois@ibm.net (Jan Dubois)
12767              Date: Tue, 01 Dec 1998 00:07:33 +0100
12768              Message-ID: <366921b5.14512598@smtp1.ibm.net>
12769              Subject: Re: 5.005_03-MAINT-TRIAL1, [PATCH] to compile on Win32
12770              
12771              From: jan.dubois@ibm.net (Jan Dubois)
12772              Date: Wed, 02 Dec 1998 00:24:54 +0100
12773              Message-ID: <366a77bb.19498126@smtp1.ibm.net>
12774              Subject: Re: 5.005_03-MAINT-TRIAL1, [PATCH] spaces in filenames support
12775      Branch: maint-5.005/perl
12776            ! perl.h proto.h taint.c win32/GenCAPI.pl win32/Makefile
12777            ! win32/config.bc win32/config.gc win32/config.vc
12778            ! win32/config_sh.PL win32/makedef.pl
12779 ____________________________________________________________________________
12780 [  2509] By: jhi                                   on 1998/12/28  13:00:31
12781     Log: Kickstart AUTHORS and MAINTAIN.
12782  Branch: cfgperl
12783        + AUTHORS MAINTAIN
12784        ! MANIFEST
12785 ____________________________________________________________________________
12786 [  2508] By: jhi                                   on 1998/12/28  08:04:00
12787     Log: From: Nathan Torkington <gnat@frii.com>
12788          To: perlbug@perl.com
12789          Subject: [PATCH] perlxstut.pod fix
12790          Date: Sat, 26 Dec 1998 14:28:21 +1300 (NZDT)
12791          Message-ID: <13956.15285.933914.320849@localhost.frii.com>
12792  Branch: cfgperl
12793        ! pod/perlxstut.pod
12794 ____________________________________________________________________________
12795 [  2507] By: jhi                                   on 1998/12/28  07:59:00
12796     Log: From: abigail@fnx.com
12797          To: perlbug@perl.com
12798          Subject: [PATCH 5.005_02] Re: m// doc is buggy (was Re: m'$foo' is undocumented)
12799          Date: Wed, 23 Dec 1998 22:59:59 -0500 (EST)
12800          Message-ID: <19981224035959.16994.qmail@alexandra.wayne.fnx.com>
12801          (slightly modified, a part of the patch was rejected)
12802          (strange, I thought I had already submitted this one
12803          but Perforce disagrees with me...)
12804  Branch: cfgperl
12805        ! pod/perlop.pod
12806 ____________________________________________________________________________
12807 [  2506] By: jhi                                   on 1998/12/28  07:56:59
12808     Log: From: Artur <artur@vogon-solutions.com>
12809          To: perlbug@perl.com
12810          Subject: PATCH: perlmodlib.pod
12811          Date: Fri, 25 Dec 1998 00:48:39 +0000
12812          Message-ID: <3682E0E7.EBFB5D65@vogon-solutions.com>
12813  Branch: cfgperl
12814        ! pod/perlmodlib.pod pod/perlop.pod
12815 ____________________________________________________________________________
12816 [  2505] By: jhi                                   on 1998/12/28  07:46:06
12817     Log: From: abigail@fnx.com
12818          To: perl5-porters@perl.org (Perl Porters)
12819          Subject: [PATCH 5.005_02] Typo in documentation of pod2html.
12820          Date: Wed, 23 Dec 1998 22:32:07 -0500 (EST)
12821          Message-ID: <19981224033207.16751.qmail@alexandra.wayne.fnx.com>
12822  Branch: cfgperl
12823        ! pod/pod2html.PL
12824 ____________________________________________________________________________
12825 [  2504] By: jhi                                   on 1998/12/28  07:44:35
12826     Log: From: Jim Avera <avera@fjst.com>
12827          To: perlbug@perl.com
12828          Subject: perlbug bug - shows dates reversed
12829          Date: Wed, 23 Dec 1998 18:08:56 -0800 (PST)
12830          Message-Id: <199812240208.SAA27616@membrane.ssd.hal.com>
12831  Branch: cfgperl
12832        ! utils/perlbug.PL
12833 ____________________________________________________________________________
12834 [  2503] By: jhi                                   on 1998/12/28  07:41:39
12835     Log: From: jan.dubois@ibm.net (Jan Dubois)
12836          To: makemaker@franz.ww.TU-Berlin.DE, perl5-porters@perl.org
12837          Subject: [PATCH 5.005_03m1] subdirectory Makefiles should inherit CAPI setting from command line
12838          Date: Wed, 23 Dec 1998 21:26:38 +0100
12839          Message-ID: <36895086.8849224@smtp1.ibm.net>
12840  Branch: cfgperl
12841        ! lib/ExtUtils/MakeMaker.pm
12842 ____________________________________________________________________________
12843 [  2502] By: jhi                                   on 1998/12/28  07:39:20
12844     Log: From: Blair Zajac <bzajac@geostaff.com>
12845          To: perl5-porters@perl.org
12846          Subject: Tie::SubstrHash patch
12847          Date: Wed, 23 Dec 1998 17:13:32 -0800
12848          Message-ID: <3681953C.8B6A90AA@geostaff.com>
12849  Branch: cfgperl
12850        ! lib/Tie/SubstrHash.pm
12851 ____________________________________________________________________________
12852 [  2501] By: jhi                                   on 1998/12/28  07:37:16
12853     Log: From: Alan.Harder@Ebay.Sun.COM (Alan Harder)
12854          To: perlbug@perl.com
12855          Subject: perlfaq9 minor error
12856          Date: Wed, 23 Dec 1998 14:54:19 -0800
12857          Message-Id: <199812232254.OAA05986@moshpit.EBay.Sun.COM>
12858  Branch: cfgperl
12859        ! pod/perlfaq9.pod
12860 ____________________________________________________________________________
12861 [  2500] By: jhi                                   on 1998/12/23  10:38:18
12862     Log: More porting notes about filesystems, AmigaOS, and MiNT.
12863  Branch: cfgperl
12864        ! pod/perlport.pod
12865 ____________________________________________________________________________
12866 [  2499] By: jhi                                   on 1998/12/22  09:26:49
12867     Log: Add few MSG_ and uio constants.
12868  Branch: cfgperl
12869        ! ext/Socket/Socket.pm ext/Socket/Socket.xs iperlsys.h
12870 ____________________________________________________________________________
12871 [  2498] By: jhi                                   on 1998/12/22  08:39:30
12872     Log: Slight recoding of util.c:repeatcpy() to circumnavigate
12873          a Digital C compiler optimizer bug that broke the 'x'
12874          operator under certain circumstances.  See t/op/repeat.t
12875          test #20 for graphic details.  Reported in
12876          
12877          From: Gisle Aas <gisle@aas.no>
12878          To: Mark Martinec <Mark.Martinec@nsc.ijs.si>
12879          Cc: ach@xray.mpe.mpg.de, cpan-testers@perl.org, perl5-porters@perl.org
12880          Subject: Re: Digest-MD5-2.00 test fails on DEC Alpha - a patch
12881          Date: 18 Dec 1998 14:27:40 +0100
12882          Message-ID: <m37lvpa8c3.fsf@furu.g.aas.no>
12883          
12884          and discussed further in the thread
12885          
12886          From: Jarkko Hietaniemi <jhi@iki.fi>
12887          To: Gisle Aas <gisle@aas.no>
12888          Cc: Mark Martinec <Mark.Martinec@nsc.ijs.si>, ach@xray.mpe.mpg.de,
12889          cpan-testers@perl.org, perl5-porters@perl.org
12890          Subject: x operator broken in DEC Alpha for 8-bit characters (Re: Digest-MD5-2.00 test fails on DEC Alpha - a patch)
12891          Date: Fri, 18 Dec 1998 16:18:37 +0200 (EET)
12892          Message-ID: <13946.25661.193449.138023@alpha.hut.fi>
12893  Branch: cfgperl
12894        ! t/op/repeat.t util.c
12895 ____________________________________________________________________________
12896 [  2497] By: jhi                                   on 1998/12/21  14:18:57
12897     Log: Change #2483 update.
12898  Branch: cfgperl
12899        ! t/op/tr.t
12900 ____________________________________________________________________________
12901 [  2496] By: jhi                                   on 1998/12/21  14:07:41
12902     Log: Update on change #2493.
12903  Branch: cfgperl
12904        ! t/pragma/warn/op
12905 ____________________________________________________________________________
12906 [  2495] By: jhi                                   on 1998/12/21  13:52:00
12907     Log: Change #2487 aftershock.
12908  Branch: cfgperl
12909        ! warning.pl
12910 ____________________________________________________________________________
12911 [  2494] By: jhi                                   on 1998/12/21  12:35:00
12912     Log: From: Chris Nandor <pudge@pobox.com>
12913          To: perl5-porters@perl.org
12914          Subject: [PATCH] perlport.pod v1.37
12915          Date: Sat, 19 Dec 1998 12:54:34 -0500
12916          Message-Id: <v04020a03b2a194aaa676@[192.168.0.77]>
12917  Branch: cfgperl
12918        ! pod/perlport.pod
12919 ____________________________________________________________________________
12920 [  2493] By: jhi                                   on 1998/12/21  12:22:44
12921     Log: From: Mark-Jason Dominus <mjd@plover.com>
12922          To: perl5-porters@perl.com
12923          Subject: PATCH (5.005_02): Dejargonizing
12924          Date: Sun, 20 Dec 1998 14:35:20 -0500
12925          Message-ID: <19981220193520.11230.qmail@plover.com>
12926          
12927          From: Mark-Jason Dominus <mjd@plover.com>
12928          To: perl5-porters@perl.com
12929          Subject: PATCH (5.005_02): Spelling correction in warning message
12930          Date: Sun, 20 Dec 1998 13:51:30 -0500
12931          Message-ID: <19981220185130.11067.qmail@plover.com>
12932  Branch: cfgperl
12933        ! doio.c op.c
12934 ____________________________________________________________________________
12935 [  2492] By: jhi                                   on 1998/12/21  09:00:05
12936     Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
12937          To: perl5-porters@perl.org
12938          Subject: [PATCH 5.005_54] pp_next/pp_last/pp_redo problems
12939          Date: Sun, 20 Dec 1998 19:03:25 PST
12940          Message-ID: <19981221030326.27660.qmail@hotmail.com>
12941          
12942          (slightly reformatted)
12943  Branch: cfgperl
12944        ! ext/B/B/CC.pm
12945 ____________________________________________________________________________
12946 [  2491] By: nick                                  on 1998/12/20  14:21:29
12947     Log: Save _all_ GV's which have SV, AV or HV set.
12948  Branch: perl
12949        ! ext/B/B/C.pm
12950 ____________________________________________________________________________
12951 [  2490] By: jhi                                   on 1998/12/18  15:13:19
12952     Log: Add idea about generalising cpp symbol probing of Errno.
12953  Branch: cfgperl
12954        ! Todo
12955 ____________________________________________________________________________
12956 [  2489] By: jhi                                   on 1998/12/18  14:47:57
12957     Log: Address some of the issues of:
12958          
12959          From: Tom Christiansen <tchrist@jhereg.perl.com>
12960          To: perl-porters-active@jhereg.perl.com
12961          Subject: Undocumentation Issues for 5.005
12962          Date: Thu, 17 Dec 1998 14:46:24 -0700
12963          Message-Id: <199812172146.OAA05316@jhereg.perl.com>
12964  Branch: cfgperl
12965        ! pod/perl5005delta.pod
12966 ____________________________________________________________________________
12967 [  2488] By: jhi                                   on 1998/12/18  11:26:32
12968     Log: From: root <root@dubravka.in-berlin.de>
12969          To: perlbug@perl.com
12970          Cc: k@dubravka.in-berlin.de
12971          Subject: Please add no_modify to PERL_POLLUTE
12972          Date: Fri, 18 Dec 1998 10:45:52 +0100
12973          Message-Id: <199812180945.KAA05275@dubravka.in-berlin.de>
12974          
12975          (Really from Andreas König)
12976  Branch: cfgperl
12977        ! embed.pl
12978 ____________________________________________________________________________
12979 [  2487] By: jhi                                   on 1998/12/17  14:05:52
12980     Log: Some (by far not all) issues of the below message addressed.
12981          
12982          From: Tom Christiansen <tchrist@jhereg.perl.com>
12983          To: The Perl Porters Mailing List <perl5-porters@perl.org>
12984          Subject: important UNDOC issues for 5.005_54
12985          Date: Wed, 16 Dec 1998 21:14:53 -0700
12986          Message-Id: <199812170414.VAA25860@jhereg.perl.com>
12987  Branch: cfgperl
12988        ! lib/warning.pm pod/perl5005delta.pod pod/perldelta.pod
12989 ____________________________________________________________________________
12990 [  2486] By: jhi                                   on 1998/12/17  12:47:15
12991     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
12992          To: domo@computer.org
12993          Cc: jhi@iki.fi, perl5-porters@perl.org
12994          Subject: Re: stuff related to malloc.c
12995          Date: Wed, 16 Dec 1998 16:40:27 -0500 (EST)
12996          Message-Id: <199812162140.QAA04925@monk.mps.ohio-state.edu>
12997  Branch: cfgperl
12998        ! malloc.c
12999 ____________________________________________________________________________
13000 [  2485] By: jhi                                   on 1998/12/17  12:17:19
13001     Log: More porting notes.
13002  Branch: cfgperl
13003        ! Porting/pumpkin.pod
13004 ____________________________________________________________________________
13005 [  2484] By: jhi                                   on 1998/12/15  08:38:05
13006     Log: Undo #2386 and #2205.
13007  Branch: cfgperl
13008        ! pod/perlfunc.pod
13009 ____________________________________________________________________________
13010 [  2483] By: jhi                                   on 1998/12/14  17:58:35
13011     Log: lib was missing from @INC.
13012  Branch: cfgperl
13013        ! t/op/tr.t
13014 ____________________________________________________________________________
13015 [  2482] By: jhi                                   on 1998/12/14  17:52:42
13016     Log: Was missing use Text::Wrap.
13017  Branch: cfgperl
13018        ! t/lib/textfill.t
13019 ____________________________________________________________________________
13020 [  2481] By: jhi                                   on 1998/12/14  16:00:22
13021     Log: nlist.h not yet Configure-probed but DynaLoader Linux-hinted.
13022          
13023          From: Jonathan Roy <roy@idle.com>
13024          To: perl5-porters@perl.org
13025          Subject: nlist.h add to Configure checks?
13026          Date: Sun, 13 Dec 1998 22:22:49 -0500
13027          Message-Id: <4.1.19981213221847.00a3e100@pop-server.tampabay.rr.com>
13028  Branch: cfgperl
13029        + ext/DynaLoader/hints/linux.pl
13030        ! MANIFEST
13031 ____________________________________________________________________________
13032 [  2480] By: jhi                                   on 1998/12/14  15:02:44
13033     Log: Give up completely using nm in AIX.
13034          
13035          From: "Kurt D. Starsinic" <kstar@chapin.edu>
13036          To: Gurusamy Sarathy <gsar@engin.umich.edu>, Jarkko Hietaniemi <jhi@iki.fi>
13037          Cc: perl5-porters@perl.org
13038          Subject: [PATCH 5.005_54] AIX 4.3.1.0 fails to locate some functions
13039          Date: Thu, 10 Dec 1998 00:51:46 -0500
13040          Message-ID: <19981210005146.B29986@O2.chapin.edu>
13041  Branch: cfgperl
13042        ! hints/aix.sh
13043 ____________________________________________________________________________
13044 [  2479] By: jhi                                   on 1998/12/14  14:39:52
13045     Log: AIX' error messages are different.
13046          
13047          From: "Kurt D. Starsinic" <kstar@chapin.edu>
13048          To: Gurusamy Sarathy <gsar@engin.umich.edu>
13049          Cc: perl5-porters@perl.org
13050          Subject: [PATCH 5.005_54] AIX 4.1.3.0 fails pragma/warning.t
13051          Date: Thu, 10 Dec 1998 00:42:36 -0500
13052          Message-ID: <19981210004236.A29986@O2.chapin.edu>
13053          
13054          From: Michael Engel <engel@nms1.cc.huji.ac.il>
13055          To: perlbug@perl.com
13056          Subject: erroes in installing perl5*53 on IBM RS6000, aix 4.1
13057          Date: Mon, 14 Dec 1998 16:15:20 +0200 (IST)
13058          Message-ID: <Pine.A41.4.05_heb2.07.9812141609500.58712-300000@nms1.cc.huji.ac.il>
13059  Branch: cfgperl
13060        ! t/pragma/warn/doio
13061 ____________________________________________________________________________
13062 [  2475] By: jhi                                   on 1998/12/13  12:35:55
13063     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13064          To: jhi@iki.fi
13065          Cc: Carl_Adler@idx.com, perl5-porters@perl.org
13066          Subject: Re: stuff related to malloc.c
13067          Date: Sat, 12 Dec 1998 19:39:44 -0500 (EST)
13068          Message-Id: <199812130039.TAA21704@monk.mps.ohio-state.edu>
13069  Branch: cfgperl
13070        ! malloc.c
13071 ____________________________________________________________________________
13072 [  2474] By: jhi                                   on 1998/12/13  12:32:42
13073     Log: Some notes about porting issues.
13074  Branch: cfgperl
13075        ! Porting/pumpkin.pod
13076 ____________________________________________________________________________
13077 [  2473] By: jhi                                   on 1998/12/13  12:03:58
13078     Log: From: Laszlo Molnar <ml1050@freemail.c3.hu>
13079          To: Perl 5 Porters <perl5-porters@perl.org>
13080          Subject: [patch 5.005_02] dos-djgpp update
13081          Date: Sun, 13 Dec 1998 00:08:44 +0100
13082          Message-ID: <19981213000844.C264@beeblebrox>
13083  Branch: cfgperl
13084        ! djgpp/config.over
13085 ____________________________________________________________________________
13086 [  2472] By: gbarr                                 on 1998/12/12  17:12:28
13087     Log: undo changes to Exporter.pm from #2312
13088  Branch: maint-5.005/perl
13089        ! lib/Exporter.pm
13090 ____________________________________________________________________________
13091 [  2465] By: jhi                                   on 1998/12/12  12:31:21
13092     Log: Document that qw() taints.
13093          
13094          From: Christian Burger <burger@terra.mpikg-teltow.mpg.de> 
13095          To: perlbug@perl.com 
13096          Subject: taint problems
13097          Date: Sun, 1 Nov 1998 22:28:41 +0100 (MET) 
13098          Message-Id: <199811012128.WAA23381@terra.mpikg-teltow.mpg.de>
13099  Branch: cfgperl
13100        ! pod/perlop.pod
13101 ____________________________________________________________________________
13102 [  2464] By: jhi                                   on 1998/12/11  14:09:51
13103     Log: From: Horst von Brand <vonbrand@sleipnir.valparaiso.cl>
13104          To: dist-users@foretune.co.jp
13105          Subject: (dist-users 871) dist-3.0@70 generates lots of main() without type
13106          Date: Mon, 07 Dec 1998 20:13:04 -0400
13107          Message-Id: <199812072313.UAA06181@sleipnir.valparaiso.cl>
13108  Branch: cfgperl
13109        ! Configure
13110 ____________________________________________________________________________
13111 [  2463] By: jhi                                   on 1998/12/11  13:29:54
13112     Log: MAXPATHLEN.
13113  Branch: cfgperl
13114        ! perl.h
13115 ____________________________________________________________________________
13116 [  2462] By: jhi                                   on 1998/12/11  08:37:58
13117     Log: From: Mark Kettenis <kettenis@phys.uva.nl>
13118          To: perl5-porters@perl.org
13119          Subject: [PATCH]5.005_54 (CONFIG) Added support for GNU/Hurd
13120          Date: Thu, 10 Dec 1998 22:00:57 +0100 (CET)
13121          Message-Id: <199812102100.WAA00097@delius.kettenis.nl>
13122  Branch: cfgperl
13123        + hints/gnu.sh
13124 ____________________________________________________________________________
13125 [  2461] By: nick                                  on 1998/12/10  21:00:50
13126     Log: Date: Wed, 09 Dec 1998 22:16:50 PST
13127          From: Vishal Bhatia <vishalb@hotmail.com>
13128          1. Fixes the bug  reported by  Robin Barker <rmb1@cise.npl.co.uk> 
13129          2. Fixes the bug  regarding return value of c-functions generated out 
13130          of perl subs. ( Just includes the patch I sent earlier)
13131          3. Incorporates the other changes that need to be done to get CC.pm
13132          use ISA search for packages and methods on the same lines as C.pm
13133          
13134          Vishal would appreciate comments about B::Stackobj changes from 
13135          someone knowing that module well.
13136  Branch: perl
13137        ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
13138 ____________________________________________________________________________
13139 [  2460] By: jhi                                   on 1998/12/08  08:11:27
13140     Log: Integrate from mainperl.
13141  Branch: cfgperl
13142       !> Changes ext/B/B.pm ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm
13143       !> ext/B/B/Deparse.pm perl.h pod/perl.pod pod/perl5005delta.pod
13144       !> pod/perldiag.pod pod/perlfunc.pod pp_sys.c t/lib/io_unix.t
13145       !> toke.c util.c
13146 ____________________________________________________________________________
13147 [  2459] By: jhi                                   on 1998/12/07  07:50:11
13148     Log: From: hansm@icgroup.nl 
13149          Subject: Not OK: perl 5.00503 +MAINT_TRIAL_1 on OPENSTEP-Mach 4_1 (UNINSTALLED)
13150          Reply-To: hansmu@xs4all.nl 
13151          To: perlbug@perl.com 
13152          Date: Sun, 6 Dec 98 22:19:54 +0100 
13153          Message-Id: <9812062116.AA26445@icgned.icgroup.nl> 
13154  Branch: cfgperl
13155        ! util.c
13156 ____________________________________________________________________________
13157 [  2458] By: gsar                                  on 1998/12/07  06:00:55
13158     Log: fix dup lexical
13159  Branch: perl
13160        ! ext/B/B/Deparse.pm t/lib/io_unix.t
13161 ____________________________________________________________________________
13162 [  2457] By: gsar                                  on 1998/12/06  14:38:59
13163     Log: mention limit on line numbers reported by diagnostics
13164  Branch: perl
13165        ! pod/perl.pod toke.c
13166 ____________________________________________________________________________
13167 [  2456] By: gsar                                  on 1998/12/06  13:49:02
13168     Log: branch perldelta.pod
13169  Branch: maint-5.005/perl
13170       +> pod/perldelta.pod
13171 ____________________________________________________________________________
13172 [  2455] By: gsar                                  on 1998/12/06  13:47:21
13173     Log: clobber perldelta.pod to reestablish branch from perl5005delta.pod
13174  Branch: maint-5.005/perl
13175        - pod/perldelta.pod
13176 ____________________________________________________________________________
13177 [  2454] By: gsar                                  on 1998/12/06  13:35:31
13178     Log: fix outdated/incorrect info about arbitrary limits
13179  Branch: perl
13180        ! Changes perl.h pod/perl.pod pod/perl5005delta.pod
13181        ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c util.c
13182 ____________________________________________________________________________
13183 [  2453] By: nick                                  on 1998/12/05  16:14:42
13184     Log: Avoid hard-coding op numbers
13185          Update CC.pm to save %INC, and to co-exist with new C.pm
13186  Branch: perl
13187        ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm
13188 ____________________________________________________________________________
13189 [  2452] By: nick                                  on 1998/12/05  10:44:28
13190     Log: B.xs had its own code to calculate hash() which differed from
13191          PERL_HASH in hv.h - so all saved HV's were mangled - including %INC
13192          which meant that run-time require was re-done.
13193          Removed some debug from C.pm
13194  Branch: perl
13195        ! ext/B/B.xs ext/B/B/C.pm
13196 ____________________________________________________________________________
13197 [  2451] By: nick                                  on 1998/12/04  21:58:49
13198     Log: Snapshot of re-worked B::C which compiles Tk apps at least as
13199          well as _54, but with pre-scan for classes and save the ISA scheme.
13200  Branch: perl
13201        ! ext/B/B/C.pm
13202 ____________________________________________________________________________
13203 [  2450] By: nick                                  on 1998/12/04  17:58:44
13204     Log: Vishal Bhatia's patch as a basis.
13205  Branch: perl
13206        ! ext/B/B/C.pm ext/B/B/CC.pm
13207 ____________________________________________________________________________
13208 [  2449] By: jhi                                   on 1998/12/04  16:39:21
13209     Log: Integrate from mainperl.
13210  Branch: cfgperl
13211       !> t/op/goto.t t/op/tr.t
13212 ____________________________________________________________________________
13213 [  2448] By: gsar                                  on 1998/12/04  06:06:49
13214     Log: tweak test for UTEST
13215  Branch: perl
13216        ! t/op/tr.t
13217 ____________________________________________________________________________
13218 [  2444] By: jhi                                   on 1998/12/03  14:37:22
13219     Log: s/\bthe the\b/the/g *.pod
13220  Branch: cfgperl
13221        ! pod/perlfaq8.pod pod/perlfunc.pod pod/perlguts.pod
13222 ____________________________________________________________________________
13223 [  2443] By: jhi                                   on 1998/12/03  13:39:53
13224     Log: Change#2441 aftermath.
13225  Branch: cfgperl
13226        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
13227        ! config_h.SH thread.h vms/subconfigure.com
13228 ____________________________________________________________________________
13229 [  2441] By: jhi                                   on 1998/12/03  08:15:13
13230     Log: From: Dan Sugalski <sugalskd@osshe.edu>
13231          To: perl5-porters@perl.org, vmsperl@cor.newman.upenn.edu
13232          Subject: [PATCH 5.005_54]Initial VMS patches
13233          Date: 3 Dec 1998 01:05:55 +0200
13234          Message-ID: <MLIST_3.0.6.32.19981202141057.0339a7f0@ous.edu>
13235          
13236          The patch to config_h.SH requires more study because
13237          metaconfig needs to agree.
13238  Branch: cfgperl
13239        ! config_h.SH configure.com global.sym lib/ExtUtils/MM_VMS.pm
13240        ! t/lib/textfill.t t/pragma/warning.t vms/descrip_mms.template
13241        ! vms/gen_shrfls.pl vms/subconfigure.com vms/vmsish.h
13242 ____________________________________________________________________________
13243 [  2440] By: gsar                                  on 1998/12/03  01:32:16
13244     Log: add failed check-in of goto.t from change#1867
13245  Branch: perl
13246        ! t/op/goto.t
13247 ____________________________________________________________________________
13248 [  2437] By: jhi                                   on 1998/12/02  18:03:51
13249     Log: Fix most of the bad L<> links of
13250          
13251          From: Tom Christiansen <tchrist@jhereg.perl.com> 
13252          Subject: bad L<> links
13253          Reply-to: tchrist@perl.com 
13254          To: perlbug@jhereg.perl.com 
13255          Date: Tue, 11 Aug 1998 10:58:07 -0500 
13256          Message-Id: <199808111658.KAA00484@jhereg.perl.com> 
13257          
13258          The ones not fixed may require darker Pod::HTML magic,
13259          for example the perlguts.html#tags should work fine, IMHO.
13260  Branch: cfgperl
13261        ! pod/perl5005delta.pod pod/perlcall.pod pod/perldata.pod
13262        ! pod/perldiag.pod pod/perlfaq5.pod pod/perlfaq7.pod
13263        ! pod/perlfunc.pod pod/perlguts.pod pod/perllocale.pod
13264        ! pod/perlobj.pod pod/perlport.pod pod/perlsub.pod
13265        ! pod/perlvar.pod
13266 ____________________________________________________________________________
13267 [  2436] By: jhi                                   on 1998/12/02  16:35:04
13268     Log: One paste too many in #2345.
13269  Branch: cfgperl
13270        ! lib/Pod/Html.pm
13271 ____________________________________________________________________________
13272 [  2435] By: jhi                                   on 1998/12/02  16:32:33
13273     Log: Pod::Html and Pod::Text were not locale-savvy:
13274          for example in =head1 all non-ASCII-\w-runs were
13275          turned into underscores in NAME tags.  This could
13276          result in several NAME tags becoming identical.
13277          Reported by:
13278          
13279          From: Fyodor Krasnov <fyodor@aha.ru> 
13280          Subject: pod2html vs Russian Characters
13281          To: Tom.Christiansen@snn.aha.ru, tchrist@perl.com 
13282          Date: Tue, 24 Nov 1998 19:00:36 +0300 (MSK) 
13283          Message-Id: <199811241600.TAA05149@stat.aha.ru> 
13284  Branch: cfgperl
13285        ! lib/Pod/Html.pm lib/Pod/Text.pm
13286 ____________________________________________________________________________
13287 [  2434] By: jhi                                   on 1998/12/02  10:29:00
13288     Log: The real Mc5_54 integration.
13289  Branch: cfgperl
13290       !> Changes MANIFEST pod/perlhist.pod pp_hot.c
13291 ____________________________________________________________________________
13292 [  2433] By: jhi                                   on 1998/12/02  08:52:13
13293     Log: From: Andy Dougherty <doughera@lafayette.edu>
13294          To: Perl Porters <perl5-porters@perl.org>
13295          Subject: [PATCH 5.005_xx] Missing redirection of simple test program
13296          Date: Tue, 1 Dec 1998 13:40:12 -0500 (EST)
13297          Message-Id: <Pine.SUN.3.96.981201133546.4288K-100000@newton.phys>
13298  Branch: cfgperl
13299        ! Configure
13300 ____________________________________________________________________________
13301 [  2432] By: jhi                                   on 1998/12/02  08:49:47
13302     Log: From: Andy Dougherty <doughera@lafayette.edu>
13303          To: Perl Porters <perl5-porters@perl.org>
13304          Subject: [PATCH 5.005_xx] erroneous 'none' in lddlflags
13305          Date: Tue, 1 Dec 1998 12:50:27 -0500 (EST)
13306          Message-Id: <Pine.SUN.3.96.981201124929.4288H-100000@newton.phys>
13307  Branch: cfgperl
13308        ! Configure
13309 ____________________________________________________________________________
13310 [  2431] By: jhi                                   on 1998/12/01  16:11:50
13311     Log: From: achampio@lehman.com (Alan Champion)
13312          Subject: Not OK: perl 5.00503 +MAINT_TRIAL_1 on sun4-solaris 2.3 (UNINSTALLED)
13313          To: perlbug@perl.com
13314          Date: 1 Dec 1998 17:36:33 +0200
13315          Message-ID: <MLIST_9812011518.AA00005@lonhpov1.lehman.com>
13316          
13317          Skip NIS includes.
13318  Branch: cfgperl
13319        ! t/op/pwent.t
13320 ____________________________________________________________________________
13321 [  2430] By: gsar                                  on 1998/12/01  12:12:50
13322     Log: 5.005_54, as released
13323  Branch: perl
13324        ! Changes MANIFEST pod/perlhist.pod pp_hot.c
13325 ____________________________________________________________________________
13326 [  2429] By: jhi                                   on 1998/12/01  11:28:39
13327     Log: From: Anton Berezin <tobez@plab.ku.dk>
13328          To: perl5-porters@perl.org
13329          Subject: [PATCH 5.005_54] Configure - hints/freebsd.sh signal handler type
13330          Date: 30 Nov 1998 19:46:24 +0100
13331          Message-ID: <864srhhvcv.fsf@lion.plab.ku.dk>
13332  Branch: cfgperl
13333        ! hints/freebsd.sh
13334 ____________________________________________________________________________
13335 [  2428] By: jhi                                   on 1998/12/01  11:08:16
13336     Log: Integrate from _54 mainperl modulo the NetBSD ifdef in util.c.
13337  Branch: cfgperl
13338       +> (branch 30 files)
13339       !> (integrate 71 files)
13340 ____________________________________________________________________________
13341 [  2427] By: jhi                                   on 1998/12/01  10:51:37
13342     Log: Default to accepting a hinted $randfunc even when $csym
13343          does not find it.  (the previous defaylt behaviour was not
13344          to accept).
13345  Branch: cfgperl
13346        ! Configure
13347 ____________________________________________________________________________
13348 [  2426] By: jhi                                   on 1998/12/01  10:13:03
13349     Log: Separated the [:foo:] parsing to its own function.
13350          Passes all tests.
13351  Branch: cfgperl
13352        ! regcomp.c
13353 ____________________________________________________________________________
13354 [  2425] By: jhi                                   on 1998/12/01  08:22:49
13355     Log: Typo in comments.
13356  Branch: cfgperl
13357        ! regexec.c
13358 ____________________________________________________________________________
13359 [  2424] By: jhi                                   on 1998/12/01  08:21:38
13360     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13361          Subject: [PATCH 5.005_*] Debugger 'v' command
13362          To: perl5-porters@perl.org (Mailing list Perl5)
13363          Date: 1 Dec 1998 07:55:11 +0200
13364          Message-ID: <MLIST_199812010534.AAA21371@monk.mps.ohio-state.edu>
13365  Branch: cfgperl
13366        ! lib/perl5db.pl
13367 ____________________________________________________________________________
13368 [  2423] By: jhi                                   on 1998/12/01  08:19:08
13369     Log: From: pvhp@forte.com (Peter Prymmer)
13370          Subject: [PATCH 5.005_03t1 && 5.005_54]dll linkage side decks for OS/390
13371          To: perl5-porters@perl.org
13372          Date: 1 Dec 1998 07:27:11 +0200
13373          Message-ID: <MLIST_9812010508.AA07791@forte.com>
13374  Branch: cfgperl
13375        ! hints/os390.sh
13376 ____________________________________________________________________________
13377 [  2417] By: jhi                                   on 1998/11/30  08:14:00
13378     Log: s/SCM_CREDENTIALSS/SCM_CREDENTIAL/
13379  Branch: cfgperl
13380        ! ext/Socket/Socket.xs
13381 ____________________________________________________________________________
13382 [  2416] By: jhi                                   on 1998/11/30  08:00:15
13383     Log: Undo #2395, seems more like a problem in netbsd-current.
13384  Branch: cfgperl
13385        ! util.c
13386
13387 ----------------
13388 Version 5.005_54
13389 ----------------
13390
13391 ____________________________________________________________________________
13392 [  2414] By: gsar                                  on 1998/11/30  02:23:55
13393     Log: more JPL tweaks
13394  Branch: perl
13395        - jpl/JNI/MANIFEST jpl/PerlInterpreter/Makefile
13396        ! Changes MANIFEST jpl/JNI/JNI.pm jpl/README
13397 ____________________________________________________________________________
13398 [  2413] By: gsar                                  on 1998/11/30  01:35:56
13399     Log: stub bin/jpl that just runs JPL::Compile::files()
13400  Branch: perl
13401        + jpl/bin/jpl
13402 ____________________________________________________________________________
13403 [  2412] By: gsar                                  on 1998/11/30  01:32:14
13404     Log: delete symlink
13405  Branch: perl
13406        - jpl/bin/jpl
13407 ____________________________________________________________________________
13408 [  2410] By: gsar                                  on 1998/11/30  01:30:44
13409     Log: branch jpl from perlext to perl
13410  Branch: perl
13411       +> (branch 30 files)
13412 ____________________________________________________________________________
13413 [  2407] By: gsar                                  on 1998/11/30  01:24:53
13414     Log: JPL tweaks to build with 5.005
13415  Branch: perlext
13416        ! jpl/JNI/JNI.xs jpl/JNI/typemap jpl/JPL/Compile.pm
13417        ! jpl/PerlInterpreter/PerlInterpreter.c jpl/README
13418 ____________________________________________________________________________
13419 [  2406] By: gsar                                  on 1998/11/30  00:55:54
13420     Log: integrate changes#2273,2274,2288,2291 from maint-5.004
13421  Branch: perl
13422        ! Porting/patchls doio.c lib/Sys/Syslog.pm t/op/die_exit.t
13423 ____________________________________________________________________________
13424 [  2405] By: gsar                                  on 1998/11/30  00:28:55
13425     Log: patchlevel up to 54
13426  Branch: perl
13427        ! patchlevel.h win32/Makefile win32/config_H.bc
13428        ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
13429 ____________________________________________________________________________
13430 [  2403] By: gsar                                  on 1998/11/29  23:35:50
13431     Log: integrate cfgperl changes into mainline
13432  Branch: perl
13433       !> Configure Porting/Glossary Porting/config.sh Porting/config_H
13434       !> config_h.SH pod/perlfunc.pod t/op/grent.t t/op/pwent.t util.c
13435 ____________________________________________________________________________
13436 [  2402] By: gsar                                  on 1998/11/29  23:08:42
13437     Log: sync Text::Wrap version number
13438  Branch: perl
13439        ! lib/Text/Wrap.pm
13440 ____________________________________________________________________________
13441 [  2401] By: gsar                                  on 1998/11/29  22:56:21
13442     Log: textfill.t tweak
13443  Branch: perl
13444        ! t/lib/textfill.t
13445 ____________________________________________________________________________
13446 [  2400] By: gsar                                  on 1998/11/29  22:50:41
13447     Log: update to Text::Wrap 98.112901 from David Muir Sharnoff
13448          <muir@idiom.com>
13449  Branch: perl
13450        + t/lib/textfill.t
13451        ! MANIFEST lib/Text/Wrap.pm
13452 ____________________________________________________________________________
13453 [  2399] By: gsar                                  on 1998/11/29  22:28:05
13454     Log: updated to Text::Wrap 98.112801 from CPAN; one published change
13455          has happened without the authors knowledge or consent; the subversive
13456          version (which is in 5.00502) breaks one of the tests in the
13457          authors testsuite; attempts are being made to find a fix that
13458          avoids breaking code already running with the 5.005_02 version
13459          From:    David Muir Sharnoff <muir@idiom.com>
13460          Date:    Sat, 28 Nov 1998 04:34:17 PST
13461          Message-Id: <199811281234.EAA03082@idiom.com>
13462          Subject: Updated Text::Wrap, Time::ParseDate, File::Flock
13463  Branch: perl
13464        ! lib/Text/Wrap.pm t/lib/textwrap.t
13465 ____________________________________________________________________________
13466 [  2397] By: nick                                  on 1998/11/29  20:13:58
13467     Log: Update docs and English.pm for $^C
13468  Branch: perl
13469        ! lib/English.pm pod/perlvar.pod
13470 ____________________________________________________________________________
13471 [  2396] By: jhi                                   on 1998/11/29  20:13:03
13472     Log: Mirror #2384.
13473  Branch: cfgperl
13474        ! t/op/pwent.t
13475 ____________________________________________________________________________
13476 [  2395] By: jhi                                   on 1998/11/29  19:59:12
13477     Log: Newer NetBSDs don't have NSIG in <sys/signal.h>, they need <signal.h>.
13478  Branch: cfgperl
13479        ! util.c
13480 ____________________________________________________________________________
13481 [  2394] By: gsar                                  on 1998/11/29  19:49:08
13482     Log: updated perlreftut.pod
13483  Branch: perl
13484        ! pod/perlreftut.pod
13485 ____________________________________________________________________________
13486 [  2393] By: gsar                                  on 1998/11/29  19:31:56
13487     Log: misc tweaks
13488  Branch: perl
13489        ! ext/IO/Makefile.PL lib/Test.pm t/lib/io_poll.t t/op/sort.t
13490 ____________________________________________________________________________
13491 [  2392] By: gsar                                  on 1998/11/29  19:31:18
13492     Log: notes about -DPERL_POLLUTE
13493  Branch: perl
13494        ! INSTALL pod/perldelta.pod win32/Makefile win32/makefile.mk
13495 ____________________________________________________________________________
13496 [  2391] By: gsar                                  on 1998/11/29  19:13:52
13497     Log: explain various win32 build caveats more clearly
13498  Branch: perl
13499        ! README.win32 win32/Makefile win32/makefile.mk
13500 ____________________________________________________________________________
13501 [  2390] By: gsar                                  on 1998/11/29  16:51:59
13502     Log: remove I_POLL detection (Configure will do that now)
13503  Branch: perl
13504        ! ext/IO/Makefile.PL
13505 ____________________________________________________________________________
13506 [  2389] By: jhi                                   on 1998/11/29  16:39:16
13507     Log: Add I_POLL for IO 1.20.
13508  Branch: cfgperl
13509        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
13510        ! config_h.SH
13511 ____________________________________________________________________________
13512 [  2388] By: gsar                                  on 1998/11/29  16:23:30
13513     Log: add p4desc (augments 'p4 describe' output with diffs for new files)
13514  Branch: perl
13515        + Porting/p4desc
13516        ! MANIFEST
13517 ____________________________________________________________________________
13518 [  2387] By: gsar                                  on 1998/11/29  16:08:03
13519     Log: another threads reliability fix: serialize writes to thr->threadsv
13520          avoid most uses of PL_na (which is much more inefficient than a
13521          simple local); update docs to suit; PL_na now being thr->Tna may
13522          be a minor compatibility issue for extensions--will require dTHR
13523          outside of XSUBs (those get automatic dTHR)
13524  Branch: perl
13525        ! XSUB.h djgpp/djgpp.c doio.c doop.c dump.c ext/B/B.xs
13526        ! ext/DB_File/DB_File.xs ext/DynaLoader/dl_next.xs
13527        ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs ext/Thread/Thread.xs
13528        ! ext/attrs/attrs.xs gv.c malloc.c mg.c op.c
13529        ! os2/OS2/REXX/REXX.xs os2/os2.c perl.c perly.c perly.y
13530        ! pod/perlcall.pod pod/perlembed.pod pod/perlguts.pod
13531        ! pod/perlxs.pod pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c run.c sv.c
13532        ! t/op/pwent.t taint.c toke.c universal.c vmesa/vmesa.c
13533        ! vms/ext/Stdio/Stdio.xs vms/perly_c.vms vms/vms.c win32/win32.c
13534 ____________________________________________________________________________
13535 [  2386] By: jhi                                   on 1998/11/29  15:40:42
13536     Log: Tune the "if" entry.
13537  Branch: cfgperl
13538        ! pod/perlfunc.pod
13539 ____________________________________________________________________________
13540 [  2385] By: gsar                                  on 1998/11/29  12:40:28
13541     Log: various fixes for race conditions under threads: mutex locks based
13542          on PL_threadnum were seriously flawed, since it means more than one
13543          thread could enter the critical region; PL_na was global instead of
13544          thread-local; child thread could finish and free thr structures
13545          before Thread->new() got around to creating the Thread object;
13546          cv_clone() needed locking, as it mucks with PL_comppad and other
13547          global data; new_struct_thread() needed to lock template-thread's
13548          mutex while copying its data
13549  Branch: perl
13550        ! embedvar.h ext/Thread/Thread.xs gv.c op.c perl.c perlvars.h
13551        ! pp_hot.c thrdvar.h thread.h util.c win32/win32thread.c
13552 ____________________________________________________________________________
13553 [  2384] By: gsar                                  on 1998/11/29  10:54:38
13554     Log: s/warn/print/ on multiply defined groups
13555  Branch: perl
13556        ! t/op/grent.t
13557 ____________________________________________________________________________
13558 [  2383] By: gsar                                  on 1998/11/29  10:48:39
13559     Log: backout change#2334
13560  Branch: perl
13561        ! pod/perlfunc.pod pp_hot.c sv.c thrdvar.h
13562 ____________________________________________________________________________
13563 [  2382] By: jhi                                   on 1998/11/29  10:33:40
13564     Log: Better NetInfo behaviour.
13565  Branch: cfgperl
13566        ! t/op/grent.t t/op/pwent.t
13567 ____________________________________________________________________________
13568 [  2381] By: jhi                                   on 1998/11/29  10:08:15
13569     Log: Integrate from mainperl.
13570  Branch: cfgperl
13571       +> ext/IO/ChangeLog ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/Poll.pm
13572       +> ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
13573       +> ext/IO/poll.c ext/IO/poll.h pod/perlreftut.pod
13574       +> t/lib/io_const.t t/lib/io_dir.t t/lib/io_multihomed.t
13575       +> t/lib/io_poll.t t/lib/io_unix.t
13576       !> (integrate 58 files)
13577 ____________________________________________________________________________
13578 [  2380] By: gsar                                  on 1998/11/29  08:22:49
13579     Log: prefer IO::Handle for IO if FileHandle:: is empty (as suggested by
13580          Tim Bunce)
13581  Branch: perl
13582        ! gv.c
13583 ____________________________________________________________________________
13584 [  2379] By: gsar                                  on 1998/11/29  07:06:43
13585     Log: fix for pat.t failure under USE_THREADS
13586  Branch: perl
13587        ! pp_ctl.c regexec.c
13588 ____________________________________________________________________________
13589 [  2378] By: nick                                  on 1998/11/28  22:46:57
13590     Log: More C.pm tweaks
13591          Save globs even if we have saved cv itself before - may be imported.
13592          
13593          While we don't save "bootstrap" CV we need to provide a stub,
13594          so that if we require it later we don't fall through and attempt
13595          to DynaLoad module again.
13596          
13597          Attempt to save %INC so that "require" does not reload things
13598          we have compiled-in (does not work right yet - seems to be due
13599          to PL_incgv being created in perl_parse() current scheme setting 
13600          GvHV() is "better" than saving the glob, but still does not 
13601          work as I expect). 
13602  Branch: perl
13603        ! ext/B/B/C.pm
13604 ____________________________________________________________________________
13605 [  2377] By: gsar                                  on 1998/11/28  22:30:38
13606     Log: various tweaks; result passes all tests for normal build on Solaris;
13607          fails two pat.t tests under USE_THREADS; io_poll.t test#3 fails on
13608          win32 due to lack of select() that works on non-socket fds
13609  Branch: perl
13610        ! ext/IO/poll.c regcomp.c regexec.c scope.c
13611        ! t/lib/io_multihomed.t win32/makefile.mk
13612 ____________________________________________________________________________
13613 [  2376] By: gsar                                  on 1998/11/28  20:44:39
13614     Log: add $config_args to perl -V display (suggested by Ilya Zakharevich)
13615  Branch: perl
13616        ! myconfig
13617 ____________________________________________________________________________
13618 [  2375] By: gsar                                  on 1998/11/28  20:42:58
13619     Log: integrate cfgperl changes into mainline
13620  Branch: perl
13621       !> Configure ext/POSIX/hints/dynixptx.pl myconfig t/op/grent.t
13622       !> t/op/pwent.t t/op/undef.t t/pragma/locale.t util.c
13623 ____________________________________________________________________________
13624 [  2374] By: gsar                                  on 1998/11/28  20:02:03
13625     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13626          Date: Thu, 5 Nov 1998 02:21:12 -0500 (EST)
13627          Message-Id: <199811050721.CAA27998@monk.mps.ohio-state.edu>
13628          Subject: [PATCH 5.00553] Yet another OS/2 patch
13629  Branch: perl
13630        ! os2/Changes os2/Makefile.SHs os2/os2.c t/pragma/warn/op
13631 ____________________________________________________________________________
13632 [  2373] By: gsar                                  on 1998/11/28  19:30:06
13633     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13634          Date: Sat, 28 Nov 1998 01:51:56 -0500 (EST)
13635          Message-Id: <199811280651.BAA18095@monk.mps.ohio-state.edu>
13636          Subject: [PATCH 5.005_53] Change $#+
13637  Branch: perl
13638        ! mg.c pod/perlvar.pod t/op/pat.t
13639 ____________________________________________________________________________
13640 [  2372] By: gsar                                  on 1998/11/28  19:28:00
13641     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13642          Date: Sat, 28 Nov 1998 00:33:17 -0500 (EST)
13643          Message-Id: <199811280533.AAA25654@monk.mps.ohio-state.edu>
13644          Subject: [PATCH 5.005_53] Finishing off SNOBOL: $1 in (?{})
13645  Branch: perl
13646        ! embedvar.h mg.c objXSUB.h perl.c regexec.c t/op/pat.t
13647        ! thrdvar.h
13648 ____________________________________________________________________________
13649 [  2371] By: gsar                                  on 1998/11/28  19:23:53
13650     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13651          Date: Fri, 27 Nov 1998 16:16:48 -0500 (EST)
13652          Message-Id: <199811272116.QAA03502@monk.mps.ohio-state.edu>
13653          Subject: [PATCH 5.005_53] better -Mre=debugcolor
13654  Branch: perl
13655        ! embedvar.h objXSUB.h regexec.c thrdvar.h
13656 ____________________________________________________________________________
13657 [  2370] By: gsar                                  on 1998/11/28  19:21:17
13658     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13659          Date: Fri, 27 Nov 1998 15:22:19 -0500 (EST)
13660          Message-Id: <199811272022.PAA17874@monk.mps.ohio-state.edu>
13661          Subject: [PATCH 5.005_*] regcolors
13662  Branch: perl
13663        ! embed.h global.sym objXSUB.h proto.h regcomp.c regexec.c
13664 ____________________________________________________________________________
13665 [  2369] By: gsar                                  on 1998/11/28  19:00:15
13666     Log: allow final period in a file (not followed by a newline) to
13667          terminate format spec
13668  Branch: perl
13669        ! toke.c
13670 ____________________________________________________________________________
13671 [  2368] By: gsar                                  on 1998/11/28  18:58:25
13672     Log: Liblist tweak suggested by Swen Thuemmler <Swen.Thuemmler@paderlinx.de>;
13673          add C<$Config{installarchlib}/CORE> to the default locations searched
13674          on win32
13675  Branch: perl
13676        ! lib/ExtUtils/Liblist.pm
13677 ____________________________________________________________________________
13678 [  2367] By: gsar                                  on 1998/11/28  18:46:05
13679     Log: applied suggested patch with PERL_OBJECT tweaks
13680          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13681          Date: Thu, 26 Nov 1998 02:46:20 -0500 (EST)
13682          Message-Id: <199811260746.CAA23164@monk.mps.ohio-state.edu>
13683          Subject: [PATCH 5.005_53] Enable $_ and pos() inside (?{ CODE }) in RExen
13684  Branch: perl
13685        ! embed.h embed.pl embedvar.h objXSUB.h pp_ctl.c proto.h
13686        ! regexec.c t/op/pat.t thrdvar.h
13687 ____________________________________________________________________________
13688 [  2366] By: gsar                                  on 1998/11/28  18:38:34
13689     Log: additional documentation for qr//
13690          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13691          Message-Id: <199811260751.CAA24560@monk.mps.ohio-state.edu>
13692          Date: Thu, 26 Nov 1998 02:51:09 -0500 (EST)
13693          Subject: [PATCH 5.005_*] Documentation (fwd)
13694  Branch: perl
13695        ! pod/perlfunc.pod pod/perlop.pod pod/perlpod.pod
13696 ____________________________________________________________________________
13697 [  2365] By: gsar                                  on 1998/11/28  18:35:35
13698     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13699          Date: Wed, 25 Nov 1998 23:33:45 -0500 (EST)
13700          Message-Id: <199811260433.XAA29281@monk.mps.ohio-state.edu>
13701          Subject: [PATCH 5.005_*] Fix \G in REx without //g
13702  Branch: perl
13703        ! cop.h embedvar.h objXSUB.h pp.c pp_ctl.c pp_hot.c regexec.c
13704        ! regexp.h t/op/pat.t thrdvar.h
13705 ____________________________________________________________________________
13706 [  2364] By: gsar                                  on 1998/11/28  18:24:20
13707     Log: update Test.pm to Test-1.12; tweak 're' detection
13708  Branch: perl
13709        ! lib/Test.pm
13710 ____________________________________________________________________________
13711 [  2363] By: gsar                                  on 1998/11/28  18:12:04
13712     Log: avoid command-line quoting portability problems in lex_assign.t
13713  Branch: perl
13714        ! t/op/lex_assign.t
13715 ____________________________________________________________________________
13716 [  2362] By: gsar                                  on 1998/11/28  18:08:50
13717     Log: From: John Tobey <jtobey@channel1.com>
13718          Date: Thu, 19 Nov 1998 14:14:15 -0500 (EST)
13719          Message-Id: <m0zgZWx-000FOgC@feynman.localnet>
13720          Subject: PATCH: document English.pm sawampersand and thread issues
13721  Branch: perl
13722        ! lib/English.pm pod/perlvar.pod
13723 ____________________________________________________________________________
13724 [  2361] By: gsar                                  on 1998/11/28  18:03:04
13725     Log: fix uninitialized warnings
13726          From: Brian Callaghan <callagh@itginc.com>
13727          Date: Thu, 19 Nov 1998 17:49:10 -0800
13728          Message-Id: <3654CA96.B64FCAEB@itginc.com>
13729          Subject: Complete.pm patch (version 1.1)
13730  Branch: perl
13731        ! lib/Term/Complete.pm
13732 ____________________________________________________________________________
13733 [  2360] By: gsar                                  on 1998/11/28  17:59:16
13734     Log: s/Array/List/ suggested by John Tobey
13735  Branch: perl
13736        ! pod/perldata.pod
13737 ____________________________________________________________________________
13738 [  2359] By: gsar                                  on 1998/11/28  17:47:48
13739     Log: update tie() entry in perlfunc to reflect TIEARRAY and TIEHANDLE
13740  Branch: perl
13741        ! lib/Tie/Handle.pm pod/perlfunc.pod
13742 ____________________________________________________________________________
13743 [  2358] By: jhi                                   on 1998/11/28  17:23:15
13744     Log: Revamp the locale tests.
13745          (0) Instead of rewiring a few locales scan for them.
13746          (1) Bogus test #101 removed.
13747          (2) All the locales are checked, the lists of failed
13748          and non-failed ones are displayed.
13749          (3) The test #103 is again 'active' so that it may fail.
13750          (4) To balance (3) a hopefully pacifying message is shown
13751          if the #103 fails.
13752  Branch: cfgperl
13753        ! t/pragma/locale.t
13754 ____________________________________________________________________________
13755 [  2357] By: gsar                                  on 1998/11/28  17:21:07
13756     Log: add perlreftut.pod
13757  Branch: perl
13758        + pod/perlreftut.pod
13759        ! MANIFEST pod/Makefile pod/buildtoc pod/perl.pod
13760        ! pod/perlref.pod pod/roffitall vms/descrip_mms.template
13761        ! win32/pod.mak
13762 ____________________________________________________________________________
13763 [  2356] By: jhi                                   on 1998/11/28  16:58:01
13764     Log: Change #2346 fallout.
13765  Branch: cfgperl
13766        ! t/op/undef.t
13767 ____________________________________________________________________________
13768 [  2355] By: gsar                                  on 1998/11/28  16:46:43
13769     Log: IO.xs tweaks; avoid coredump in io_xs.t; remove newCONSTSUB();
13770          ANSI prototypes
13771  Branch: perl
13772        ! ext/IO/IO.xs
13773 ____________________________________________________________________________
13774 [  2354] By: gsar                                  on 1998/11/28  16:08:07
13775     Log: add IO-1.20; mess with t/lib/io_*.t in an attempt to
13776          keep platform hacks that aren't in the 1.20 dist; add new files
13777          to MANIFEST; hack Makefile.PL; result hasn't been tested
13778          anywhere
13779  Branch: perl
13780        + ext/IO/ChangeLog ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/Poll.pm
13781        + ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
13782        + ext/IO/poll.c ext/IO/poll.h t/lib/io_const.t t/lib/io_dir.t
13783        + t/lib/io_multihomed.t t/lib/io_poll.t t/lib/io_unix.t
13784        ! MANIFEST ext/IO/IO.pm ext/IO/IO.xs ext/IO/Makefile.PL
13785        ! ext/IO/README ext/IO/lib/IO/File.pm ext/IO/lib/IO/Handle.pm
13786        ! ext/IO/lib/IO/Pipe.pm ext/IO/lib/IO/Seekable.pm
13787        ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
13788        ! t/lib/io_sock.t t/lib/io_udp.t
13789 ____________________________________________________________________________
13790 [  2353] By: jhi                                   on 1998/11/28  15:51:03
13791     Log: Locale collation, ctype, and numeric, were initialized wrong
13792          (if LC_ALL or LANG were unset, so were the collation/ctype/numeric),
13793          as reported by
13794          
13795          From: Ilya.Sandler@etak.com (Ilya Sandler)
13796          Subject: a bug in locale handling: LC_COLLATE ignored sometimes
13797          To: perlbug@perl.com
13798          Date: 25 Nov 1998 04:53:52 +0200
13799          Message-ID: <MLIST_199811250226.SAA12590@axi001.etak.sw>
13800  Branch: cfgperl
13801        ! util.c
13802 ____________________________________________________________________________
13803 [  2352] By: nick                                  on 1998/11/28  15:21:59
13804     Log: Implement $^C to allow perl access to -c flag - I think this 
13805          was agreed once...
13806  Branch: perl
13807        ! gv.c mg.c
13808 ____________________________________________________________________________
13809 [  2351] By: jhi                                   on 1998/11/28  15:14:24
13810     Log: Change #2251 fixup.
13811  Branch: cfgperl
13812        ! myconfig
13813 ____________________________________________________________________________
13814 [  2350] By: jhi                                   on 1998/11/28  14:58:19
13815     Log: Integrate from mainperl.
13816  Branch: cfgperl
13817       +> ext/Devel/Peek/Changes ext/Devel/Peek/Makefile.PL
13818       +> ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
13819       +> pod/perl5005delta.pod
13820       !> (integrate 49 files)
13821 ____________________________________________________________________________
13822 [  2349] By: jhi                                   on 1998/11/28  14:27:36
13823     Log: Passwd and group file groveling.
13824  Branch: cfgperl
13825        ! t/op/grent.t t/op/pwent.t
13826 ____________________________________________________________________________
13827 [  2348] By: gsar                                  on 1998/11/28  14:09:50
13828     Log: more conservative version of changes#2345,2346,2347; those break
13829          C<defined(@{"foo::ISA"})> which seems to be extensively used in
13830          the libs :-(
13831  Branch: perl
13832        ! pp.c t/op/method.t
13833 ____________________________________________________________________________
13834 [  2347] By: gsar                                  on 1998/11/28  13:36:08
13835     Log: tweak bogus test
13836  Branch: perl
13837        ! t/op/method.t
13838 ____________________________________________________________________________
13839 [  2346] By: gsar                                  on 1998/11/28  13:20:34
13840     Log: test cases for previous change
13841  Branch: perl
13842        ! t/op/undef.t
13843 ____________________________________________________________________________
13844 [  2345] By: gsar                                  on 1998/11/28  13:07:17
13845     Log: fix typo in pp_defined() causing C<defined %tied> to fail
13846  Branch: perl
13847        ! pp.c
13848 ____________________________________________________________________________
13849 [  2344] By: gsar                                  on 1998/11/28  13:03:29
13850     Log: s/comment/comment_t/ tweak (suggested by John Gorman
13851          <jgorman@webbysoft.com>)
13852  Branch: perl
13853        ! ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
13854 ____________________________________________________________________________
13855 [  2343] By: gsar                                  on 1998/11/28  12:52:40
13856     Log: add (stub) perldelta.pod
13857  Branch: perl
13858        + pod/perldelta.pod
13859 ____________________________________________________________________________
13860 [  2342] By: gsar                                  on 1998/11/28  12:49:26
13861     Log: rename perldelta.pod to perl5005delta.pod in preparation for
13862          starting a new one
13863  Branch: perl
13864       +> pod/perl5005delta.pod
13865        - pod/perldelta.pod
13866        ! MANIFEST pod/perl.pod
13867 ____________________________________________________________________________
13868 [  2341] By: gsar                                  on 1998/11/28  12:41:55
13869     Log: fix MALLOC_LOCK #define
13870  Branch: perl
13871        ! malloc.c
13872 ____________________________________________________________________________
13873 [  2340] By: gsar                                  on 1998/11/28  12:18:23
13874     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13875          Date: Sun, 15 Nov 1998 20:25:50 -0500 (EST)
13876          Message-Id: <199811160125.UAA05268@monk.mps.ohio-state.edu>
13877          Subject: [PATCH 5.005_53] OS/2 events get closer to Perl
13878  Branch: perl
13879        ! os2/Changes os2/os2.c os2/os2.sym os2/os2ish.h
13880 ____________________________________________________________________________
13881 [  2339] By: jhi                                   on 1998/11/28  11:59:01
13882     Log: Add -lm to dynix/ptx POSIX hints.
13883          From: "Martin J. Bligh" <mbligh@sequent.com>
13884          To: jhi@iki.fi
13885          Subject: Re: Making Perl work on DYNIX/ptx
13886          Date: Wed, 25 Nov 1998 10:34:41 -0800
13887          Message-ID: <1457015007.911990081@w-186d219.rhe.sequent.com>
13888  Branch: cfgperl
13889        ! ext/POSIX/hints/dynixptx.pl
13890 ____________________________________________________________________________
13891 [  2338] By: jhi                                   on 1998/11/28  11:57:19
13892     Log: Detypo.
13893  Branch: cfgperl
13894        ! lib/filetest.pm
13895 ____________________________________________________________________________
13896 [  2337] By: jhi                                   on 1998/11/28  11:56:29
13897     Log: Better LD_LIBRARY_PATH instructions for Bourneists.
13898  Branch: cfgperl
13899        ! Configure
13900 ____________________________________________________________________________
13901 [  2336] By: gsar                                  on 1998/11/28  11:41:14
13902     Log: teach CPAN.pm to ignore beta perl distributions when looking for
13903          modules
13904          From: root@dogberry.rutgers.edu (root)
13905          Date: Thu, 12 Nov 1998 23:08:39 -0500
13906          Message-Id: <199811130408.XAA10578@dogberry.rutgers.edu>
13907          Subject: recompile tries getting a perl distribution
13908  Branch: perl
13909        ! lib/CPAN.pm
13910 ____________________________________________________________________________
13911 [  2335] By: gsar                                  on 1998/11/28  11:27:46
13912     Log: make $1 et al readonly under threads; make C<undef $1> fail like
13913          C<$1 = undef> does
13914  Branch: perl
13915        ! op.c pp.c t/op/undef.t
13916 ____________________________________________________________________________
13917 [  2334] By: gsar                                  on 1998/11/28  10:24:52
13918     Log: s/Regexp/re/ and clarify policy on lowercased object namespaces
13919  Branch: perl
13920        ! pod/perlfunc.pod pp_hot.c sv.c thrdvar.h
13921 ____________________________________________________________________________
13922 [  2333] By: gsar                                  on 1998/11/28  09:36:40
13923     Log: document changed PERL_HASH()
13924  Branch: perl
13925        ! pod/perlfunc.pod pod/perlguts.pod
13926 ____________________________________________________________________________
13927 [  2332] By: nick                                  on 1998/11/27  21:10:27
13928     Log: Handle INIT list in C.pm
13929          1. Provide init_av() from B.xs
13930          2. Export it in B.pm
13931          3. Use it in C.pm
13932          Also disable some pruning in savecv() which seems to undo
13933          my previous patch.
13934          Experimental feature - save pathnames of .so files in easily 
13935          grep-able form for use in wrapper to feed to linker.  
13936  Branch: perl
13937        ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm
13938 ____________________________________________________________________________
13939 [  2327] By: gsar                                  on 1998/11/27  15:12:01
13940     Log: integrate change#2315 from maint-5.005
13941  Branch: perl
13942        ! t/op/sort.t
13943       !> op.c sv.c
13944 ____________________________________________________________________________
13945 [  2326] By: gsar                                  on 1998/11/27  15:00:42
13946     Log: integrate changes#2304,2305,2306,2308 from maint-5.005
13947  Branch: perl
13948       !> ext/DynaLoader/dl_mpeix.xs installperl lib/ExtUtils/MM_Unix.pm
13949       !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
13950       !> lib/ExtUtils/typemap
13951 ____________________________________________________________________________
13952 [  2325] By: gsar                                  on 1998/11/27  14:46:18
13953     Log: malloc bugfix and documentation from Ilya Zakharevich
13954          Date: Tue, 24 Nov 1998 17:24:55 -0500 (EST)
13955          Message-Id: <199811242224.RAA22618@monk.mps.ohio-state.edu>
13956          Subject: [PATCH 5.005_*] Re: Internal coredump
13957          --
13958          Date: Thu, 26 Nov 1998 03:06:10 -0500 (EST)
13959          Message-Id: <199811260806.DAA28913@monk.mps.ohio-state.edu>
13960          Subject: [PATCH 5.005_*] malloc.c documentation
13961  Branch: perl
13962        ! malloc.c
13963 ____________________________________________________________________________
13964 [  2324] By: gsar                                  on 1998/11/27  14:41:38
13965     Log: B::C tweaks to allow Tk compiles from Nick Ing-Simmons
13966  Branch: perl
13967        ! ext/B/B/C.pm
13968 ____________________________________________________________________________
13969 [  2323] By: gsar                                  on 1998/11/27  14:33:44
13970     Log: From: maeda@src.ricoh.co.jp
13971          Date: Tue, 24 Nov 1998 10:37:45 +0900
13972          Message-Id: <199811240137.KAA05867@luna.src.ricoh.co.jp>
13973          Subject: format "..." bug
13974  Branch: perl
13975        ! pp_ctl.c t/op/write.t
13976 ____________________________________________________________________________
13977 [  2322] By: gsar                                  on 1998/11/27  14:20:12
13978     Log: add ext/Devel/Peek
13979          From: jan.dubois@ibm.net (Jan Dubois)
13980          Date: Mon, 23 Nov 1998 00:48:11 +0100
13981          Message-ID: <36589ec9.49964585@smtp1.ibm.net>
13982          Subject: [PATCH 5.005_53] Devel::Peek integration
13983  Branch: perl
13984        + ext/Devel/Peek/Changes ext/Devel/Peek/Makefile.PL
13985        + ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
13986        ! MANIFEST dump.c embed.h embedvar.h global.sym intrpvar.h
13987        ! objXSUB.h perl.c perl.h proto.h sv.c sv.h thrdvar.h
13988        ! win32/GenCAPI.pl win32/Makefile win32/makefile.mk
13989 ____________________________________________________________________________
13990 [  2321] By: gsar                                  on 1998/11/27  13:03:08
13991     Log: ensure 'make regen_headers' even without perl installed
13992          (suggested by Ilya Zakharevich)
13993  Branch: perl
13994        ! bytecode.pl warning.pl
13995 ____________________________________________________________________________
13996 [  2320] By: gsar                                  on 1998/11/27  12:58:36
13997     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
13998          Date: Mon, 9 Nov 1998 19:03:25 -0500 (EST)
13999          Message-Id: <199811100003.TAA05815@monk.mps.ohio-state.edu>
14000          Subject: [PATCH 5.005_*] Cosmetic malloc patch
14001  Branch: perl
14002        ! malloc.c
14003 ____________________________________________________________________________
14004 [  2319] By: gsar                                  on 1998/11/27  12:56:13
14005     Log: eliminate dup hunk from integration
14006  Branch: perl
14007        ! lib/filetest.pm perl.h
14008 ____________________________________________________________________________
14009 [  2318] By: gsar                                  on 1998/11/27  12:50:08
14010     Log: integrate cfgperl changes into mainline
14011  Branch: perl
14012       +> ext/DB_File/hints/dynixptx.pl ext/POSIX/hints/dynixptx.pl
14013        ! pod/perlfaq4.pod
14014       !> (integrate 30 files)
14015 ____________________________________________________________________________
14016 [  2317] By: jhi                                   on 1998/11/27  11:38:13
14017     Log: C<-x>.
14018  Branch: cfgperl
14019        ! lib/filetest.pm
14020 ____________________________________________________________________________
14021 [  2316] By: jhi                                   on 1998/11/27  11:10:22
14022     Log: Integrate from mainperl.
14023  Branch: cfgperl
14024       !> XSUB.h embed.h embed.pl embedvar.h ext/Thread/Thread.xs
14025       !> iperlsys.h mg.c objXSUB.h op.c pp_ctl.c pp_sys.c proto.h
14026       !> t/comp/package.t t/lib/dumper.t t/pragma/warn/pp_ctl
14027       !> universal.c util.c win32/GenCAPI.pl win32/win32.h
14028       !> win32/win32sck.c
14029 ____________________________________________________________________________
14030 [  2315] By: gbarr                                 on 1998/11/27  05:16:50
14031     Log: integrate change#2246 from mainline, while still allowing
14032          C<sort $globref @foo>
14033          
14034          allow C<sort $coderef @foo>
14035  Branch: maint-5.005/perl
14036        ! op.c sv.c
14037       !> t/op/sort.t
14038 ____________________________________________________________________________
14039 [  2308] By: gbarr                                 on 1998/11/27  00:11:44
14040     Log: Updates for MPE/iX DynaLoader and installperl, via private mail
14041          forwarded by Jarkko Hietaniemi from Mark Bixby
14042  Branch: maint-5.005/perl
14043        ! ext/DynaLoader/dl_mpeix.xs installperl
14044 ____________________________________________________________________________
14045 [  2306] By: gbarr                                 on 1998/11/26  23:44:47
14046     Log: Allow PL_FILES to have multiple targets from one source by allowing
14047          an array ref as the value in the hash
14048  Branch: maint-5.005/perl
14049        ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
14050        ! lib/ExtUtils/MakeMaker.pm
14051 ____________________________________________________________________________
14052 [  2305] By: gbarr                                 on 1998/11/26  23:38:06
14053     Log: fix unsigned variables to use SvUV and sv_setuv
14054  Branch: maint-5.005/perl
14055        ! lib/ExtUtils/typemap
14056 ____________________________________________________________________________
14057 [  2304] By: gbarr                                 on 1998/11/26  23:36:17
14058     Log: Fix embeded \n in ABSTRACT and <> in AUTHOR
14059  Branch: maint-5.005/perl
14060        ! lib/ExtUtils/MM_Unix.pm
14061 ____________________________________________________________________________
14062 [  2301] By: gsar                                  on 1998/11/26  10:16:54
14063     Log: fix PL_defoutgv leak under threads
14064  Branch: perl
14065        ! ext/Thread/Thread.xs
14066 ____________________________________________________________________________
14067 [  2300] By: gsar                                  on 1998/11/26  09:04:44
14068     Log: properly free temporaries created by threads
14069  Branch: perl
14070        ! ext/Thread/Thread.xs
14071 ____________________________________________________________________________
14072 [  2299] By: gsar                                  on 1998/11/26  06:51:16
14073     Log: fix C<if (...) { package Foo; ... }> misoptimization that fails
14074          to set the package for the block properly
14075  Branch: perl
14076        ! op.c t/comp/package.t t/lib/dumper.t
14077 ____________________________________________________________________________
14078 [  2298] By: nick                                  on 1998/11/24  22:04:20
14079     Log: Part-1 of tweaks to allow Tk to be "compiled"
14080          Make XS_UNIVERSAL_xxx non-static so they can be found in libperl.
14081          (May also need attention to exports etc. - to follow.)
14082  Branch: perl
14083        ! universal.c
14084 ____________________________________________________________________________
14085 [  2294] By: jhi                                   on 1998/11/23  10:44:26
14086     Log: The new socket tests need in some platforms
14087          to #include <sys/types.h>.
14088  Branch: cfgperl
14089        ! Configure
14090 ____________________________________________________________________________
14091 [  2293] By: jhi                                   on 1998/11/23  10:33:42
14092     Log: From: Gerben Wierda <G.C.Th.Wierda@AWT.nl>
14093          To: Jarkko Hietaniemi <jhi@cc.hut.fi>
14094          Subject: Re: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
14095          Date: Mon, 23 Nov 1998 10:07:04 +0100
14096          Message-Id: <9811230907.AA06484@AWT.nl>
14097          
14098          NeXTstep NetInfo uses nidump to get the user/group databases.
14099  Branch: cfgperl
14100        ! t/op/grent.t t/op/pwent.t
14101 ____________________________________________________________________________
14102 [  2291] By: TimBunce                              on 1998/11/22  22:23:09
14103     Log: Updated Porting/patchls utility.
14104  Branch: maint-5.004/perl
14105        ! Porting/patchls
14106 ____________________________________________________________________________
14107 [  2288] By: TimBunce                              on 1998/11/22  21:46:11
14108     Log: Title:  "Buglet in Sys::Syslog.pm (with fix)"
14109          From:  Henrik Tougaard <ht.000@foa.dk>
14110          Msg-ID:  <Pine.OSF.3.95.981117092651.1492C-100000@sula.pensam.dk>
14111          Files:  lib/Sys/Syslog.pm
14112  Branch: maint-5.004/perl
14113        ! lib/Sys/Syslog.pm
14114 ____________________________________________________________________________
14115 [  2286] By: jhi                                   on 1998/11/22  19:08:42
14116     Log: Change#2284 aid: allow also for plain old MSG_ and SCM_ #defines.
14117  Branch: cfgperl
14118        ! ext/Socket/Socket.xs
14119 ____________________________________________________________________________
14120 [  2285] By: jhi                                   on 1998/11/22  18:21:07
14121     Log: MSG_PROXY for GNU/Hurd (previously we believed that
14122          all GNU libc platforms have MSG_PROXY.  Untrue).
14123          In fact this ended up as a major MSG_* and SCM_*
14124          update.  The MSG_XXX known to be enums in some
14125          versions of the glibc are now probed for and respective
14126          HAS_MSG_XXX are defined.  While I was at it I noticed
14127          SCM_RIGHTS being similarly an enum.  This reminded me of
14128          an ancient discussion in perl5-porters:
14129          http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/9612/msg01017.html
14130          The BSD socket interface has a nifty feature for passing
14131          file descriptors and credentials--via sockets.  It may be
14132          too late to add this functionality to the CORE but
14133          at least Configure now probes for the functions,
14134          structs, and includes, defining the appropriate
14135          HAS_YYY and I_ZZZ, and the Socket extension exports
14136          the constants, in case somebody wants to write an
14137          extension for this interface.
14138  Branch: cfgperl
14139        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14140        ! config_h.SH ext/Socket/Socket.pm ext/Socket/Socket.xs
14141        ! iperlsys.h
14142 ____________________________________________________________________________
14143 [  2284] By: jhi                                   on 1998/11/22  18:13:21
14144     Log: perlhist.pod 1.54, containing 5_53.
14145  Branch: cfgperl
14146        ! pod/perlhist.pod
14147 ____________________________________________________________________________
14148 [  2274] By: TimBunce                              on 1998/11/22  16:25:46
14149     Log: Preserve errno around fcntl(fd,F_SETFD,fd > maxsysfd) in do_open()
14150  Branch: maint-5.004/perl
14151        ! doio.c
14152 ____________________________________________________________________________
14153 [  2273] By: TimBunce                              on 1998/11/22  16:17:43
14154     Log: Improve op/die_exit.t test for implicit close changing $!
14155  Branch: maint-5.004/perl
14156        ! t/op/die_exit.t
14157 ____________________________________________________________________________
14158 [  2268] By: jhi                                   on 1998/11/22  14:44:11
14159     Log: Fix thinko.
14160  Branch: cfgperl
14161        ! hints/dynixptx.sh
14162 ____________________________________________________________________________
14163 [  2267] By: jhi                                   on 1998/11/22  13:19:41
14164     Log: Document the d_socket override.
14165  Branch: cfgperl
14166        ! hints/dynixptx.sh
14167 ____________________________________________________________________________
14168 [  2266] By: jhi                                   on 1998/11/22  12:12:29
14169     Log: From: John Tobey <jtobey@channel1.com>
14170          Subject: [PATCH] perlfaq typos
14171          To: perl5-porters@perl.com
14172          Date: 22 Nov 1998 04:25:15 +0200
14173          Message-ID: <MLIST_m0zhPeF-000FOgC@feynman.localnet>
14174  Branch: cfgperl
14175        ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
14176        ! pod/perlfaq7.pod pod/perlfaq8.pod
14177 ____________________________________________________________________________
14178 [  2265] By: jhi                                   on 1998/11/22  12:06:29
14179     Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
14180          Subject: DB_File 1.61 patch for 5.005_53 & 5.005_02
14181          Newsgroups: hut.lists.perl5-porters
14182          To: gsar@engin.umich.edu (Gurusamy Sarathy)
14183          Cc: perl5-porters@perl.org (Perl5 Porters)
14184          Date: 20 Nov 1998 12:20:41 +0200
14185  Branch: cfgperl
14186        ! ext/DB_File/Changes ext/DB_File/DB_File.pm
14187        ! ext/DB_File/DB_File.xs
14188 ____________________________________________________________________________
14189 [  2264] By: jhi                                   on 1998/11/22  11:55:09
14190     Log: NeXTstep /etc/group and /etc/passwd are used only at boot time,
14191          From: Gerben Wierda <G.C.Th.Wierda@AWT.nl>
14192          Subject: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
14193          To: perlbug@perl.com
14194          Date: 20 Nov 1998 18:39:06 +0200
14195          Lines: 47
14196          Message-ID: <MLIST_9811201533.AA22148@AWT.nl>
14197  Branch: cfgperl
14198        ! t/op/grent.t t/op/pwent.t
14199 ____________________________________________________________________________
14200 [  2263] By: jhi                                   on 1998/11/22  11:42:59
14201     Log: Permission testing is tricky when we have too much power.
14202          Problem reported in
14203          From: Gerben Wierda <G.C.Th.Wierda@AWT.nl>
14204          Subject: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
14205          To: perlbug@perl.com
14206          Date: 20 Nov 1998 18:39:06 +0200
14207          Message-ID: <MLIST_9811201533.AA22148@AWT.nl>
14208  Branch: cfgperl
14209        ! t/op/filetest.t
14210 ____________________________________________________________________________
14211 [  2262] By: gsar                                  on 1998/11/22  11:37:02
14212     Log: fix broken CAPI generation
14213  Branch: perl
14214        ! win32/GenCAPI.pl
14215 ____________________________________________________________________________
14216 [  2261] By: jhi                                   on 1998/11/22  11:17:00
14217     Log: -x should be C<-x>, reported by Gerben Wierda.
14218  Branch: cfgperl
14219        ! pod/perlfunc.pod
14220 ____________________________________________________________________________
14221 [  2260] By: gsar                                  on 1998/11/22  11:12:02
14222     Log: phase 2 of PERL_OBJECT cleanup; objXSUB.h autogeneration
14223  Branch: perl
14224        ! XSUB.h embed.h embed.pl embedvar.h iperlsys.h objXSUB.h
14225        ! proto.h
14226 ____________________________________________________________________________
14227 [  2259] By: jhi                                   on 1998/11/22  11:06:40
14228     Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
14229          Subject: Re: [PATCH] Re: pod2man bug in date generated line
14230          To: Albert Dvornik <bert@genscan.com>, "Larry W. Virden" <lvirden@cas.org>
14231          Cc: perlbug@perl.com
14232          Date: 20 Nov 1998 21:30:17 +0200
14233          Message-ID: <MLIST_19981120131523.A464@O2.chapin.edu>
14234  Branch: cfgperl
14235        ! pod/pod2man.PL
14236 ____________________________________________________________________________
14237 [  2256] By: jhi                                   on 1998/11/21  10:44:01
14238     Log: From: Thomas Bowditch <bowditch@inmet.com>
14239          Subject: Benchmark.pm suggestion
14240          To: jhi@iki.fi, Tim.Bunce@ig.co.uk
14241          Date: Fri, 20 Nov 1998 17:43:46 -0500
14242          Message-Id: <199811202243.RAA26252@harp.camb.inmet.com>
14243          
14244          Added timesum().
14245  Branch: cfgperl
14246        ! lib/Benchmark.pm
14247 ____________________________________________________________________________
14248 [  2255] By: gsar                                  on 1998/11/21  08:45:06
14249     Log: another win32 portability fix: make sysread() and syswrite()
14250          work on sockets
14251  Branch: perl
14252        ! pp_sys.c win32/win32.h
14253 ____________________________________________________________________________
14254 [  2254] By: gsar                                  on 1998/11/21  07:49:06
14255     Log: win32_recvfrom() compatibility fix
14256  Branch: perl
14257        ! win32/win32sck.c
14258 ____________________________________________________________________________
14259 [  2253] By: jhi                                   on 1998/11/20  08:22:06
14260     Log: From: Mark Bixby <markb@spock.dis.cccd.edu>
14261          To: jhi@iki.fi
14262          Subject: MPE/iX Perl 5.005_02 oops
14263          Date: Thu, 19 Nov 1998 17:10:45 -0800 (PST)
14264          Message-Id: <199811200110.RAA07395@spock.dis.cccd.edu>
14265  Branch: cfgperl
14266        ! ext/DynaLoader/dl_mpeix.xs installperl
14267 ____________________________________________________________________________
14268 [  2252] By: gsar                                  on 1998/11/19  17:38:03
14269     Log: mess_sv tweak for change#2249
14270  Branch: perl
14271        ! util.c
14272 ____________________________________________________________________________
14273 [  2251] By: jhi                                   on 1998/11/18  12:32:19
14274     Log: Display use64bits and usemultiplicity but only if necessary.
14275  Branch: cfgperl
14276        ! myconfig
14277 ____________________________________________________________________________
14278 [  2250] By: jhi                                   on 1998/11/18  12:26:50
14279     Log: From: Horst von Brand <vonbrand@sleipnir.valparaiso.cl> 
14280          Subject: pp.c uses 'unsigned Quad_t'
14281          To: perlbug@perl.com 
14282          Date: Sun, 15 Nov 1998 20:57:05 -0300 
14283          Message-Id: <199811152357.UAA12768@sleipnir.valparaiso.cl>
14284  Branch: cfgperl
14285        ! perl.h pp.c
14286 ____________________________________________________________________________
14287 [  2249] By: gsar                                  on 1998/11/18  05:43:11
14288     Log: use PL_mess_sv only during global destruction (fixes problems with
14289          overlapping invocations of form()/warn()/die()/croak() trampling on
14290          each other's messages)
14291  Branch: perl
14292        ! mg.c util.c
14293 ____________________________________________________________________________
14294 [  2248] By: gsar                                  on 1998/11/18  05:39:36
14295     Log: tweak change#2245 to skip previous message if any
14296  Branch: perl
14297        ! pp_ctl.c t/pragma/warn/pp_ctl
14298 ____________________________________________________________________________
14299 [  2247] By: jhi                                   on 1998/11/17  11:46:56
14300     Log: Integrate from mainperl.
14301  Branch: cfgperl
14302       !> (integrate 26 files)
14303 ____________________________________________________________________________
14304 [  2246] By: gsar                                  on 1998/11/17  09:41:10
14305     Log: allow C<sort $coderef @foo>
14306  Branch: perl
14307        ! op.c t/op/sort.t t/pragma/overload.t
14308 ____________________________________________________________________________
14309 [  2245] By: gsar                                  on 1998/11/17  08:28:26
14310     Log: propagate failures in DESTROY() as (optional) warnings
14311  Branch: perl
14312        ! pod/perldiag.pod pp_ctl.c t/pragma/warn/pp_ctl
14313 ____________________________________________________________________________
14314 [  2244] By: gsar                                  on 1998/11/17  07:43:08
14315     Log: ensure PL_dirty is reinit-ed properly under -DMULTIPLICITY
14316  Branch: perl
14317        ! perl.c thrdvar.h
14318 ____________________________________________________________________________
14319 [  2243] By: gsar                                  on 1998/11/17  07:40:09
14320     Log: sort WARN_FOO symbols to avoid hash traversal order dependency
14321  Branch: perl
14322        ! lib/warning.pm warning.h warning.pl
14323 ____________________________________________________________________________
14324 [  2242] By: gsar                                  on 1998/11/17  06:32:39
14325     Log: fix skipspace() to properly account for newlines in eval''-ed
14326          strings (caused bogus line numbers in diagnostics and debugger)
14327  Branch: perl
14328        ! t/pragma/warn/pp_ctl t/pragma/warn/toke toke.c
14329 ____________________________________________________________________________
14330 [  2241] By: gsar                                  on 1998/11/17  03:48:12
14331     Log: s/Perl_utf8skip/PL_utf8skip/g
14332  Branch: perl
14333        ! embed.h embed.pl global.sym globvar.sym regexec.c utf8.h
14334 ____________________________________________________________________________
14335 [  2240] By: gsar                                  on 1998/11/14  06:09:06
14336     Log: rework op/groups.t
14337  Branch: perl
14338        ! t/op/filetest.t t/op/groups.t
14339 ____________________________________________________________________________
14340 [  2235] By: gsar                                  on 1998/11/14  00:17:05
14341     Log: catch a neophyte trap: open(<FH>), close(<FH>) etc.
14342  Branch: perl
14343        ! op.c
14344 ____________________________________________________________________________
14345 [  2234] By: gsar                                  on 1998/11/14  00:14:02
14346     Log: update Changes
14347  Branch: perl
14348        ! Changes win32/config.bc win32/config.gc win32/config.vc
14349 ____________________________________________________________________________
14350 [  2233] By: gsar                                  on 1998/11/13  09:43:03
14351     Log: doc tweak
14352  Branch: perl
14353        ! README.win32
14354 ____________________________________________________________________________
14355 [  2230] By: jhi                                   on 1998/11/12  17:07:45
14356     Log: Allow hints file override for d_socket
14357          (based on Sequent-induced change #2229).
14358  Branch: cfgperl
14359        ! Configure
14360 ____________________________________________________________________________
14361 [  2229] By: jhi                                   on 1998/11/12  16:32:33
14362     Log: 
14363          From: "Martin J. Bligh" <mbligh@sequent.com>
14364          To: jhi@iki.fi
14365          cc: gbarr@ti.com, gbarr@pobox.com, gsar@umich.edu
14366          Subject: Re: Making Perl work on DYNIX/ptx
14367          Date: Tue, 10 Nov 1998 16:24:26 -0800
14368          Message-ID: <181999655.910715066@w-186d219.rhe.sequent.com>
14369  Branch: cfgperl
14370        ! hints/dynixptx.sh
14371 ____________________________________________________________________________
14372 [  2228] By: jhi                                   on 1998/11/12  11:40:37
14373     Log: From: "Martin J. Bligh" <mbligh@sequent.com>
14374          Message-ID: <187803647.910720870@w-186d219.rhe.sequent.com>
14375          To: jhi@iki.fi
14376          cc: gbarr@ti.com, gbarr@pobox.com, gsar@umich.edu
14377          Subject: Re: Making Perl work on DYNIX/ptx
14378          Date: Tue, 10 Nov 1998 18:01:10 -0800
14379  Branch: cfgperl
14380        + ext/DB_File/hints/dynixptx.pl ext/POSIX/hints/dynixptx.pl
14381 ____________________________________________________________________________
14382 [  2227] By: jhi                                   on 1998/11/12  11:17:42
14383     Log: Integrate from mainperl.
14384  Branch: cfgperl
14385       !> Changes XSUB.h av.c embed.h embed.pl embedvar.h
14386       !> ext/IPC/SysV/Msg.pm global.sym hv.c lib/Text/Wrap.pm objXSUB.h
14387       !> perl.c perl.h pod/perlfunc.pod pod/perlvar.pod pp_sys.c
14388       !> proto.h regexec.c t/op/array.t util.c win32/makedef.pl
14389       !> win32/win32.c x2p/s2p.PL
14390 ____________________________________________________________________________
14391 [  2226] By: gsar                                  on 1998/11/11  21:05:42
14392     Log: provide -DPERL_POLLUTE
14393  Branch: perl
14394        ! embed.pl embedvar.h
14395 ____________________________________________________________________________
14396 [  2225] By: jhi                                   on 1998/11/09  07:45:12
14397     Log: From: Hans Mulder <hansm@icgroup.nl>
14398          To: Ilya Zakharevich <ilya@math.ohio-state.edu>
14399          Cc: gsar@engin.umich.edu (Gurusamy Sarathy), jhi@iki.fi,
14400          perl5-porters@perl.org
14401          Subject: Re: [PATCH] Re: Not OK: perl 5.00553 on OPENSTEP-Mach 4_1
14402          (UNINSTALLED)
14403          Date: Sun,  8 Nov 98 22:20:23 +0100
14404          Message-Id: <9811082119.AA11802@icgned.icgroup.nl>
14405  Branch: cfgperl
14406        ! malloc.c perl.h
14407 ____________________________________________________________________________
14408 [  2224] By: gsar                                  on 1998/11/09  03:13:14
14409     Log: avoid endless loops in Text::Wrap (from a suggestion by Lupe
14410          Christoph <lupe@alanya.m.isar.de>)
14411  Branch: perl
14412        ! lib/Text/Wrap.pm
14413 ____________________________________________________________________________
14414 [  2223] By: gsar                                  on 1998/11/09  02:09:06
14415     Log: fix misplaced brace in s2p (as suggested by Lionel Fourquaux
14416          <lionel.fourquaux@wanadoo.fr>)
14417  Branch: perl
14418        ! x2p/s2p.PL
14419 ____________________________________________________________________________
14420 [  2222] By: gsar                                  on 1998/11/09  01:56:24
14421     Log: patches from Hugo van der Sanden <hv@crypt.compulink.co.uk>
14422          Date: Wed, 04 Nov 1998 12:19:44 +0000
14423          Message-Id: <199811041219.MAA05451@crypt.compulink.co.uk>
14424          Subject: [PATCH] Re: [5.005_53] read overflow? 
14425          --
14426          Date: Wed, 04 Nov 1998 13:15:18 +0000
14427          Message-Id: <199811041315.NAA05711@crypt.compulink.co.uk>
14428          Subject: [PATCH 5.005_53] perl -V fix
14429  Branch: perl
14430        ! perl.c regexec.c
14431 ____________________________________________________________________________
14432 [  2221] By: gsar                                  on 1998/11/09  01:34:56
14433     Log: From: jan.dubois@ibm.net (Jan Dubois)
14434          Date: Sun, 01 Nov 1998 00:05:01 +0100
14435          Message-ID: <364294bd.18052307@smtp1.ibm.net>
14436          Subject: [PATCH v5.5.53, WIN32] PL_block_type undefined unless DEBUGGING
14437  Branch: perl
14438        ! Changes win32/makedef.pl
14439 ____________________________________________________________________________
14440 [  2220] By: gsar                                  on 1998/11/08  21:13:07
14441     Log: integrate changes#2120,2168,2218 from maint-5.005;
14442          add new vtbls; s/\bvtbl_/PL_vtbl_/; remove trailing comma in
14443          enum; make regen_headers
14444  Branch: perl
14445        ! XSUB.h embed.h embedvar.h ext/IPC/SysV/Msg.pm global.sym
14446        ! objXSUB.h perl.h pod/perlfunc.pod proto.h util.c win32/win32.c
14447 ____________________________________________________________________________
14448 [  2219] By: gsar                                  on 1998/11/08  19:42:57
14449     Log: integrate cfgperl changes into mainline
14450  Branch: perl
14451       +> README.vmesa
14452       !> Configure MANIFEST Porting/Glossary Porting/config.sh
14453       !> Porting/config_H config_h.SH ext/Thread/Thread.xs
14454       !> hints/hpux.sh hints/vmesa.sh lib/Math/Complex.pm malloc.c
14455       !> perl.h pod/perlfunc.pod pod/perllocale.pod pod/perlport.pod
14456       !> pp_sys.c sv.c t/lib/complex.t t/op/groups.t t/op/lex_assign.t
14457       !> thread.h vms/subconfigure.com vos/config.h
14458 ____________________________________________________________________________
14459 [  2218] By: gbarr                                 on 1998/11/08  16:48:44
14460     Log: From: Graham Barr <gbarr@ti.com>
14461          Date: Mon, 2 Nov 1998 07:38:52 -0600
14462          Message-ID: <19981102073852.A12751@asic.sc.ti.com>
14463          Subject: [PATCH 5.005_*] Re: IPC::Msg 1.03
14464  Branch: maint-5.005/perl
14465        ! ext/IPC/SysV/Msg.pm
14466 ____________________________________________________________________________
14467 [  2215] By: gsar                                  on 1998/11/08  02:52:52
14468     Log: set close-on-exec bit on pipe() FDs
14469  Branch: perl
14470        ! pod/perlfunc.pod pod/perlvar.pod pp_sys.c
14471 ____________________________________________________________________________
14472 [  2214] By: gsar                                  on 1998/11/08  02:27:57
14473     Log: typo in newHVhv()
14474  Branch: perl
14475        ! hv.c
14476 ____________________________________________________________________________
14477 [  2211] By: jhi                                   on 1998/11/07  21:14:18
14478     Log: Finalize the Mach CThreads support.
14479          
14480          From: Hans Mulder <hansm@icgroup.nl>
14481          Date: Sat,  7 Nov 98 22:06:20 +0100
14482          To: Gurusamy Sarathy <gsar@engin.umich.edu>
14483          Cc: jhi@iki.fi, perl5-porters@perl.org
14484          Subject: [PATCH] Re: Not OK: perl 5.00553 on OPENSTEP-Mach 4_1 (UNINSTALLED) 
14485          Message-Id: <9811072105.AA07794@icgned.icgroup.nl>
14486  Branch: cfgperl
14487        ! malloc.c perl.h
14488 ____________________________________________________________________________
14489 [  2210] By: gsar                                  on 1998/11/06  20:36:50
14490     Log: fix AvREALISH bogusness
14491  Branch: perl
14492        ! av.c t/op/array.t
14493 ____________________________________________________________________________
14494 [  2209] By: jhi                                   on 1998/11/06  08:05:31
14495     Log: Renamed malloc.c ASSERT() macro to P_ASSERT() because
14496          ASSERT() causes problems in {NeXTStep,OpenStep}.
14497          
14498          From: Hans Mulder <hansm@icgroup.nl>
14499          To: Jarkko Hietaniemi <jhi@cc.hut.fi>
14500          Subject: Re: Not OK: perl 5.00553 on OPENSTEP-Mach 4_1 (UNINSTALLED)
14501          Date: Fri,  6 Nov 98 01:27:41 +0100
14502          Message-Id: <9811060025.AA27389@icgned.icgroup.nl>
14503          
14504          and
14505          
14506          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14507          Subject: Re: ASSERT() in malloc.c
14508          To: jhi@iki.fi
14509          Date: Fri, 6 Nov 1998 02:59:29 -0500 (EST)
14510          Message-Id: <199811060759.CAA18915@monk.mps.ohio-state.edu>
14511  Branch: cfgperl
14512        ! malloc.c
14513 ____________________________________________________________________________
14514 [  2208] By: jhi                                   on 1998/11/06  07:55:38
14515     Log: Mach CThreads needs #include <mach/cthreads.h>.
14516  Branch: cfgperl
14517        ! perl.h
14518 ____________________________________________________________________________
14519 [  2206] By: jhi                                   on 1998/11/05  14:54:52
14520     Log: PERL_BADLANG wrongly documented.
14521          
14522          From: ts <decoux@moulon.inra.fr>
14523          To: jhi@cc.hut.fi
14524          Subject: Re: Locale warning messages
14525          Date: Thu, 5 Nov 1998 14:34:19 +0100 (MET)
14526          Message-Id: <199811051334.OAA24863@moulon.inra.fr>
14527          
14528          and
14529          
14530          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14531          Subject: Re: PERL_BADLANG
14532          To: jhi@iki.fi
14533          Subject: Re: PERL_BADLANG
14534          Date: Thu, 5 Nov 1998 09:49:00 -0500 (EST)
14535          Message-Id: <199811051449.JAA04238@monk.mps.ohio-state.edu>
14536  Branch: cfgperl
14537        ! pod/perllocale.pod
14538 ____________________________________________________________________________
14539 [  2205] By: jhi                                   on 1998/11/05  14:24:33
14540     Log: Document all the control flow keywords in perlfunc
14541          so that "perlfunc -f while" works.
14542  Branch: cfgperl
14543        ! pod/perlfunc.pod
14544 ____________________________________________________________________________
14545 [  2204] By: jhi                                   on 1998/11/05  12:46:02
14546     Log: Configure update.  Remove last trace of PTHREADS_CREATED_JOINABLE
14547          (from vos/config.h).  Update Porting/{Glossary,config*}.
14548  Branch: cfgperl
14549        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
14550        ! config_h.SH vos/config.h
14551 ____________________________________________________________________________
14552 [  2203] By: jhi                                   on 1998/11/05  08:34:39
14553     Log: VM/ESA and VMS sig_num_init (change#2101) catchup.
14554  Branch: cfgperl
14555        ! hints/vmesa.sh vms/subconfigure.com
14556 ____________________________________________________________________________
14557 [  2202] By: jhi                                   on 1998/11/05  08:03:20
14558     Log: Integrate from mainperl.
14559  Branch: cfgperl
14560       !> Changes cop.h doop.c gv.c mg.c perl.c pp_ctl.c sv.c util.c
14561       !> win32/Makefile win32/makefile.mk win32/win32.c
14562 ____________________________________________________________________________
14563 [  2201] By: gsar                                  on 1998/11/05  04:40:44
14564     Log: another POPSTACK victim
14565  Branch: perl
14566        ! cop.h sv.c
14567 ____________________________________________________________________________
14568 [  2196] By: gsar                                  on 1998/11/05  02:07:54
14569     Log: fix a location affected by change#2191, add note about POPSTACK
14570  Branch: perl
14571        ! cop.h gv.c pp_ctl.c
14572 ____________________________________________________________________________
14573 [  2195] By: gsar                                  on 1998/11/05  02:04:45
14574     Log: makefile notes
14575  Branch: perl
14576        ! win32/Makefile win32/makefile.mk
14577 ____________________________________________________________________________
14578 [  2192] By: gsar                                  on 1998/11/04  23:48:53
14579     Log: indeterminate order-of-evaluation fixes
14580  Branch: perl
14581        ! mg.c
14582 ____________________________________________________________________________
14583 [  2191] By: gsar                                  on 1998/11/04  23:02:16
14584     Log: refetch local stack pointer in POPSTACK
14585  Branch: perl
14586        ! cop.h perl.c
14587 ____________________________________________________________________________
14588 [  2190] By: jhi                                   on 1998/11/04  08:50:40
14589     Log: Configure update.
14590          Sequent DYNIX/ptx updates: osvers=$4 (instead of $3) of uname -a,
14591          
14592          From: Andy Dougherty <doughera@lafcol.lafayette.edu>
14593          To: Martin Bligh <mbligh@sequent.com>
14594          Cc: Jarkko Hietaniemi <jhi@iki.fi>
14595          Subject: Re: Perl 5's configure on DYNIX/ptx
14596          Message-Id: <Pine.SUN.3.96.981103090824.5533B-100000@newton.phys>
14597          Date: Tue, 3 Nov 1998 09:35:26 -0500 (EST)
14598          
14599          find sockets also from libsocket, not just libnet.
14600          OS390: $compile_ok instead of $compile for <inttypes.h>,
14601          
14602          From: pvhp@forte.com (Peter Prymmer)
14603          To: Thomas.Dorner@start.de, jhi@iki.fi, neale@VMA.TABNSW.COM.AU
14604          Subject: _53 not OK on os390 but looking better than ever
14605          Date: Tue, 3 Nov 98 17:33:22 PST
14606          Message-Id: <9811040133.AA09450@forte.com>
14607  Branch: cfgperl
14608        ! Configure
14609 ____________________________________________________________________________
14610 [  2189] By: jhi                                   on 1998/11/04  07:43:58
14611     Log: sysio.t failure: fix undefined order of evaluation, from
14612          
14613          From: Spider Boardman <spider@web.zk3.dec.com>
14614          Subject: Not OK: perl 5.00553 on alpha-thread 5.0 [PATCH]
14615          To: perlbug@perl.com
14616          Date: 4 Nov 1998 01:22:30 +0200
14617          Message-ID: <MLIST_199811032227.RAA143892@web.zk3.dec.com>
14618  Branch: cfgperl
14619        ! pp_sys.c
14620 ____________________________________________________________________________
14621 [  2188] By: gsar                                  on 1998/11/04  02:59:16
14622     Log: fix return value of win32_pclose()
14623  Branch: perl
14624        ! win32/win32.c
14625 ____________________________________________________________________________
14626 [  2187] By: gsar                                  on 1998/11/04  02:56:34
14627     Log: s/sv_upgrade/SvUPGRADE/ a couple of places
14628  Branch: perl
14629        ! Changes doop.c gv.c util.c
14630 ____________________________________________________________________________
14631 [  2186] By: jhi                                   on 1998/11/03  08:17:52
14632     Log: Document quads in pack.
14633  Branch: cfgperl
14634        ! pod/perlfunc.pod
14635 ____________________________________________________________________________
14636 [  2185] By: jhi                                   on 1998/11/03  07:49:35
14637     Log: (IV) vs (I32) vs I_V()
14638          
14639          Subject: [PATCH 5.005_53] Reverting typecast in sv_upgrade()
14640          From: Anton Berezin <tobez@plab.ku.dk> 
14641          To: "p5p" <perl5-porters@perl.org> 
14642          Date: 01 Nov 1998 15:09:11 +0100 
14643          Message-ID: <86hfwjtshk.fsf@lion.plab.ku.dk>
14644          
14645          and
14646          
14647          From: Andy Dougherty <doughera@lafcol.lafayette.edu> 
14648          Date: Mon, 2 Nov 1998 10:17:34 -0500 (EST) 
14649          Message-Id: <Pine.SUN.3.96.981102101433.4479B-100000@newton.phys>
14650  Branch: cfgperl
14651        ! sv.c
14652 ____________________________________________________________________________
14653 [  2184] By: jhi                                   on 1998/11/03  07:42:46
14654     Log: VM/ESA updates.
14655  Branch: cfgperl
14656        + README.vmesa
14657        ! MANIFEST pod/perlfunc.pod pod/perlport.pod
14658 ____________________________________________________________________________
14659 [  2183] By: jhi                                   on 1998/11/02  12:58:13
14660     Log: The id(1)-parsing is real fun.
14661  Branch: cfgperl
14662        ! t/op/groups.t
14663 ____________________________________________________________________________
14664 [  2182] By: jhi                                   on 1998/11/02  12:07:43
14665     Log: Decommission the symlink test.
14666  Branch: cfgperl
14667        ! t/op/lex_assign.t
14668 ____________________________________________________________________________
14669 [  2181] By: jhi                                   on 1998/11/02  12:03:08
14670     Log: Replace ATTR_JOINABLE with true Configure probe
14671          for PTHREAD_CREATE_JOINABLE (or equivalent:
14672          PTHREAD_CREATE_UNDETACHED or __UNDETACHED).
14673          Remove ATTR_JOINABLE itself: Thread.xs uses
14674          PTHREAD_CREATE_JOINABLE (or equivalent) directly.
14675          
14676          Really scan for <mach/cthreads.h> only if usethreads.
14677  Branch: cfgperl
14678        ! Configure config_h.SH ext/Thread/Thread.xs thread.h
14679 ____________________________________________________________________________
14680 [  2180] By: jhi                                   on 1998/11/02  11:07:34
14681     Log: In HP-UX 10.X usethreads only if the required files are present.
14682  Branch: cfgperl
14683        ! hints/hpux.sh
14684 ____________________________________________________________________________
14685 [  2179] By: jhi                                   on 1998/11/02  09:10:33
14686     Log: Prefer groups(1).
14687          id -Gn can be broken.
14688          id -a can save the day.
14689  Branch: cfgperl
14690        ! t/op/groups.t
14691 ____________________________________________________________________________
14692 [  2178] By: jhi                                   on 1998/11/02  08:35:29
14693     Log: Detrail enum comma.
14694  Branch: cfgperl
14695        ! perl.h
14696 ____________________________________________________________________________
14697 [  2177] By: jhi                                   on 1998/11/02  08:24:12
14698     Log: 0**0 = 1, from
14699          
14700          From: d-lewart@uiuc.edu (Daniel S. Lewart)
14701          Subject: Math::Complex 0**0 patches
14702          Date: Sun, 1 Nov 1998 19:21:48 -0600 (CST)
14703          Message-Id: <199811020121.TAA28310@staff2.cso.uiuc.edu>
14704          To: jhi@iki.fi (Jarkko Hietaniemi),
14705          Raphael_Manfredi@grenoble.hp.com (Raphael Manfredi)
14706  Branch: cfgperl
14707        ! lib/Math/Complex.pm t/lib/complex.t
14708 ____________________________________________________________________________
14709 [  2168] By: gbarr                                 on 1998/11/01  01:58:58
14710     Log: From: jan.dubois@ibm.net (Jan Dubois)   
14711          Date: Fri, 09 Oct 1998 23:28:31 +0200
14712          Message-ID: <36217b7f.3193091@smtp1.ibm.net>
14713          Subject: [PATCH 5.005_02] Allow XS access to vtbl_*s when compiled with PERL_OBJECT
14714  Branch: maint-5.005/perl
14715        ! XSUB.h
14716 ____________________________________________________________________________
14717 [  2164] By: jhi                                   on 1998/10/31  15:50:02
14718     Log: Integrate from mainperl.
14719  Branch: cfgperl
14720       +> t/op/lex_assign.t
14721       !> (integrate 45 files)
14722
14723 ----------------
14724 Version 5.005_53
14725 ----------------
14726
14727 ____________________________________________________________________________
14728 [  2163] By: gsar                                  on 1998/10/31  11:31:12
14729     Log: bump patchlevel; other minor fixes for clean build and test on
14730          Solaris and win32
14731  Branch: perl
14732        ! Changes ext/Data/Dumper/Dumper.xs patchlevel.h pp.h sv.c
14733        ! t/lib/dumper.t t/op/groups.t t/op/lex_assign.t
14734        ! t/pragma/warn/regexec win32/Makefile win32/config_H.bc
14735        ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
14736        ! x2p/a2p.c
14737 ____________________________________________________________________________
14738 [  2162] By: gsar                                  on 1998/10/31  09:40:31
14739     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14740          Date: Fri, 30 Oct 1998 18:36:20 -0500 (EST)
14741          Message-Id: <199810302336.SAA17336@monk.mps.ohio-state.edu>
14742          Subject: Re: [PATCH 5.00552] Overloaded <> and deref again
14743  Branch: perl
14744        ! pp.h
14745 ____________________________________________________________________________
14746 [  2161] By: gsar                                  on 1998/10/31  09:39:13
14747     Log: From: Albert Dvornik <bert@genscan.com>
14748          Date: 30 Oct 1998 17:50:04 -0500
14749          Message-Id: <tqd879vf4z.fsf@puma.genscan.com>
14750          Subject: [PATCH perl5.00[45]] a2p: make sprintf less greedy without -o
14751  Branch: perl
14752        ! x2p/Makefile.SH x2p/a2p.c x2p/a2p.pod x2p/a2p.y x2p/a2py.c
14753 ____________________________________________________________________________
14754 [  2160] By: gsar                                  on 1998/10/31  09:35:03
14755     Log: fix for bugs in -x mode
14756          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14757          Date: Sat, 31 Oct 1998 00:30:57 -0500 (EST)
14758          Message-Id: <199810310530.AAA22277@monk.mps.ohio-state.edu>
14759          Subject: [PATCH 5.00552] Fix h2xs
14760  Branch: perl
14761        ! utils/h2xs.PL
14762 ____________________________________________________________________________
14763 [  2159] By: gsar                                  on 1998/10/31  09:31:36
14764     Log: Data::Dumper update
14765  Branch: perl
14766        ! ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm
14767        ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/Todo
14768 ____________________________________________________________________________
14769 [  2153] By: gsar                                  on 1998/10/30  21:40:09
14770     Log: add testsuite portion of patch
14771          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14772          Date: Thu, 29 Oct 1998 23:20:01 -0500 (EST)
14773          Message-Id: <199810300420.XAA25651@monk.mps.ohio-state.edu>
14774          Subject: [PATCH 5.00321 ;-)] 87% speedup
14775  Branch: perl
14776        + t/op/lex_assign.t
14777        ! MANIFEST
14778 ____________________________________________________________________________
14779 [  2152] By: gsar                                  on 1998/10/30  21:08:11
14780     Log: mention the C<$SIG{CHLD} = 'IGNORE'> special case
14781  Branch: perl
14782        ! pod/perlfunc.pod pod/perlipc.pod pod/perlvar.pod
14783 ____________________________________________________________________________
14784 [  2151] By: gsar                                  on 1998/10/30  20:18:09
14785     Log: From: Mark-Jason Dominus <mjd@plover.com>
14786          Date: Fri, 30 Oct 1998 14:24:23 EST
14787          Message-Id: <19981030192423.27276.qmail@plover.com>
14788          Subject: PATCH: (5.005_02)  a2p should use `chomp' instead of `chop'
14789  Branch: perl
14790        ! x2p/walk.c
14791 ____________________________________________________________________________
14792 [  2150] By: gsar                                  on 1998/10/30  20:08:57
14793     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14794          Date: Thu, 29 Oct 1998 22:04:54 -0500 (EST)
14795          Message-Id: <199810300304.WAA23291@monk.mps.ohio-state.edu>
14796          Subject: [PATCH 5.00552] Overloaded <> and deref again
14797  Branch: perl
14798        ! gv.c lib/overload.pm perl.h pp.c pp.h pp_hot.c pp_sys.c sv.c
14799        ! t/pragma/overload.t toke.c
14800 ____________________________________________________________________________
14801 [  2149] By: gsar                                  on 1998/10/30  19:38:15
14802     Log: From: Roderick Schertler <roderick@argon.org>
14803          Date: Thu, 29 Oct 1998 14:50:18 -0500
14804          Message-ID: <17625.909690618@eeyore.ibcinc.com>
14805          Subject: patch for daemonization docs in perlipc
14806  Branch: perl
14807        ! pod/perlipc.pod
14808 ____________________________________________________________________________
14809 [  2148] By: gsar                                  on 1998/10/30  19:36:07
14810     Log: From: Anton Berezin <tobez@plab.ku.dk>
14811          Date: 29 Oct 1998 17:06:25 +0100
14812          Message-ID: <86pvbbuzcu.fsf@lion.plab.ku.dk>
14813          Subject: [PATCH 5.005_52] win32_opendir() fails on empty drives
14814  Branch: perl
14815        ! win32/win32.c
14816 ____________________________________________________________________________
14817 [  2147] By: gsar                                  on 1998/10/30  19:31:37
14818     Log: tweaked version of suggested patch
14819          From: Anton Berezin <tobez@plab.ku.dk>
14820          Date: 29 Oct 1998 14:48:54 +0100
14821          Message-ID: <86yapzv5q1.fsf@lion.plab.ku.dk>
14822          Subject: [PATCH 5.005_52] One more problem with win32_stat and MSVC
14823  Branch: perl
14824        ! win32/win32.c
14825 ____________________________________________________________________________
14826 [  2146] By: gsar                                  on 1998/10/30  19:03:50
14827     Log: hand-apply whitespace-mutiliated patch
14828          From: "vishal bhatia" <vishalb@hotmail.com>
14829          Date: Wed, 28 Oct 1998 23:45:32 PST
14830          Message-ID: <19981029074534.2334.qmail@hotmail.com>
14831          Subject: [PATCH 5.005_52]Compiling modules,more bugfixes for B
14832  Branch: perl
14833        ! ext/B/B/C.pm ext/B/B/CC.pm
14834 ____________________________________________________________________________
14835 [  2145] By: gsar                                  on 1998/10/30  18:46:58
14836     Log: remaining PL_foo stragglers
14837  Branch: perl
14838        ! doio.c ext/B/B.pm ext/IPC/SysV/SysV.xs ext/Opcode/Opcode.pm
14839        ! op.h os2/os2.c vms/gen_shrfls.pl
14840 ____________________________________________________________________________
14841 [  2144] By: gsar                                  on 1998/10/30  17:38:36
14842     Log: integrate cfgperl tweaks into mainline
14843  Branch: perl
14844       !> Makefile.SH README.posix-bc doio.c ext/POSIX/POSIX.xs proto.h
14845       !> t/op/misc.t t/pragma/subs.t t/pragma/warning.t
14846 ____________________________________________________________________________
14847 [  2143] By: jhi                                   on 1998/10/30  13:27:39
14848     Log: There can be multiple yacc/bison errors.
14849  Branch: cfgperl
14850        ! t/op/misc.t t/pragma/subs.t t/pragma/warning.t
14851 ____________________________________________________________________________
14852 [  2142] By: jhi                                   on 1998/10/30  13:18:43
14853     Log: README.posix-bc update.
14854  Branch: cfgperl
14855        ! README.posix-bc
14856 ____________________________________________________________________________
14857 [  2141] By: jhi                                   on 1998/10/30  09:12:59
14858     Log: #2133 fallout.
14859  Branch: cfgperl
14860        ! doio.c ext/POSIX/POSIX.xs
14861 ____________________________________________________________________________
14862 [  2140] By: jhi                                   on 1998/10/30  08:43:18
14863     Log: Integrate from mainperl.
14864  Branch: cfgperl
14865       +> globvar.sym pp.sym
14866        - objpp.h thread.sym
14867       !> (integrate 61 files)
14868 ____________________________________________________________________________
14869 [  2133] By: gsar                                  on 1998/10/30  02:51:39
14870     Log: phase 1 of somewhat major rearrangement of PERL_OBJECT stuff
14871          (objpp.h is gone, embed.pl now does some of that); objXSUB.h
14872          should soon be automated also; the global variables that
14873          escaped the PL_foo conversion are now reined in; renamed
14874          MAGIC in regcomp.h to REG_MAGIC to avoid collision with the
14875          type of same name; duplicated lists of pp_things in various
14876          places is now gone; result has only been tested on win32
14877  Branch: perl
14878        + globvar.sym pp.sym
14879        - objpp.h thread.sym
14880        ! MANIFEST Makefile.SH av.c bytecode.h byterun.h cop.h doio.c
14881        ! doop.c dump.c embed.h embed.pl embedvar.h ext/B/B.xs
14882        ! ext/POSIX/POSIX.xs ext/Thread/Thread.xs global.sym globals.c
14883        ! gv.c malloc.c mg.c objXSUB.h op.c opcode.h opcode.pl perl.c
14884        ! perl.h perl_exp.SH perlvars.h perly.c pod/perlguts.pod pp.c
14885        ! pp.h pp_ctl.c pp_hot.c pp_proto.h pp_sys.c proto.h regcomp.c
14886        ! regcomp.h regcomp.pl regcomp.sym regexec.c regnodes.h run.c
14887        ! scope.c sv.c t/op/filetest.t taint.c thrdvar.h toke.c util.c
14888        ! win32/Makefile win32/config.bc win32/config.gc win32/config.vc
14889        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
14890        ! win32/makedef.pl win32/makefile.mk win32/perlhost.h
14891 ____________________________________________________________________________
14892 [  2130] By: jhi                                   on 1998/10/29  15:31:26
14893     Log: Pure bison yylex() proto was broken.
14894  Branch: cfgperl
14895        ! proto.h
14896 ____________________________________________________________________________
14897 [  2126] By: jhi                                   on 1998/10/29  08:35:54
14898     Log: Integrate mainperl.
14899  Branch: cfgperl
14900       !> INSTALL README.cygwin32 cygwin32/gcc2 cygwin32/ld2
14901       !> lib/ExtUtils/MakeMaker.pm lib/perl5db.pl malloc.c pp.c
14902       !> pp_ctl.c proto.h regexec.c t/pragma/overload.t
14903       !> t/pragma/warn/doio toke.c win32/makefile.mk
14904 ____________________________________________________________________________
14905 [  2125] By: jhi                                   on 1998/10/29  08:32:38
14906     Log: EBCDIC Makefile.SH iteration converges.  Hopefully.
14907  Branch: cfgperl
14908        ! Makefile.SH
14909 ____________________________________________________________________________
14910 [  2124] By: jhi                                   on 1998/10/29  08:06:44
14911     Log: EBCDIC Makefile.SH tuneup.
14912  Branch: cfgperl
14913        ! Makefile.SH
14914 ____________________________________________________________________________
14915 [  2119] By: gsar                                  on 1998/10/28  23:24:04
14916     Log: remove doubled hunk from integration
14917  Branch: perl
14918        ! pp.c
14919 ____________________________________________________________________________
14920 [  2118] By: gsar                                  on 1998/10/28  22:03:31
14921     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14922          Date: Wed, 28 Oct 1998 01:23:27 -0500 (EST)
14923          Message-Id: <199810280623.BAA06968@monk.mps.ohio-state.edu>
14924          Subject: [PATCH 5.00552] Minor debugger tweaks
14925  Branch: perl
14926        ! lib/perl5db.pl
14927 ____________________________________________________________________________
14928 [  2117] By: gsar                                  on 1998/10/28  22:02:30
14929     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
14930          Date: Wed, 28 Oct 1998 01:20:33 -0500 (EST)
14931          Message-Id: <199810280620.BAA06893@monk.mps.ohio-state.edu>
14932          Subject: [PATCH 5.00552] Make sort respect overloading
14933  Branch: perl
14934        ! pp_ctl.c proto.h t/pragma/overload.t
14935 ____________________________________________________________________________
14936 [  2116] By: gsar                                  on 1998/10/28  21:51:11
14937     Log: MM patches from Ilya Zakharevich
14938          Date: Wed, 28 Oct 1998 01:27:04 -0500 (EST)
14939          Message-Id: <199810280627.BAA07053@monk.mps.ohio-state.edu>
14940          Subject: [PATCH 5.00552] Make MakeMaker more verbose
14941          --
14942          Date: Wed, 28 Oct 1998 01:25:36 -0500 (EST)
14943          Message-Id: <199810280625.BAA06980@monk.mps.ohio-state.edu>
14944          Subject: [PATCH 5.00552] Make MakeMaker ignore errors in kid Makefile.PL
14945  Branch: perl
14946        ! lib/ExtUtils/MakeMaker.pm
14947 ____________________________________________________________________________
14948 [  2115] By: gsar                                  on 1998/10/28  21:46:19
14949     Log: add explicit references to perl source path in ld2 and gcc2
14950  Branch: perl
14951        ! README.cygwin32 cygwin32/gcc2 cygwin32/ld2
14952 ____________________________________________________________________________
14953 [  2114] By: gsar                                  on 1998/10/28  21:39:56
14954     Log: From: Andy Dougherty <doughera@lafcol.lafayette.edu>
14955          Date: Tue, 27 Oct 1998 10:40:41 -0500 (EST)
14956          Message-Id: <Pine.SUN.3.96.981027103726.28498E-100000@newton.phys>
14957          Subject: [PATCH] Re: Problems with: Creating an installable tar archive
14958  Branch: perl
14959        ! INSTALL
14960 ____________________________________________________________________________
14961 [  2113] By: gsar                                  on 1998/10/28  21:21:16
14962     Log: integrate cfgperl into mainline
14963  Branch: perl
14964       +> t/op/filetest.t
14965       !> Configure MANIFEST Makefile.SH config_h.SH perl.h perly.y
14966       !> perly_c.diff pp.c proto.h t/comp/require.t t/io/pipe.t
14967       !> t/op/groups.t t/op/misc.t t/pragma/subs.t t/pragma/warning.t
14968       !> thread.h toke.c vmesa/Makefile
14969 ____________________________________________________________________________
14970 [  2112] By: gsar                                  on 1998/10/28  21:14:18
14971     Log: minor cleanup
14972  Branch: perl
14973        ! malloc.c regexec.c t/pragma/warn/doio win32/makefile.mk
14974 ____________________________________________________________________________
14975 [  2111] By: gsar                                  on 1998/10/28  18:52:10
14976     Log: smarter C<$SIG{FOO} = BAREWORD;> warning
14977  Branch: perl
14978        ! toke.c
14979 ____________________________________________________________________________
14980 [  2110] By: jhi                                   on 1998/10/28  15:07:54
14981     Log: posix-bc doesn't want to regenerate a2p.h from a2p.y.
14982  Branch: cfgperl
14983        ! Makefile.SH
14984 ____________________________________________________________________________
14985 [  2109] By: jhi                                   on 1998/10/28  13:39:54
14986     Log: a2p.y needs to generate also y.tab.h.
14987  Branch: cfgperl
14988        ! Makefile.SH
14989 ____________________________________________________________________________
14990 [  2108] By: jhi                                   on 1998/10/28  10:33:36
14991     Log: The "parse error" must be converted to "syntax error",
14992          just matching it aint' enough.
14993  Branch: cfgperl
14994        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
14995        ! t/pragma/warning.t
14996 ____________________________________________________________________________
14997 [  2107] By: jhi                                   on 1998/10/28  10:23:05
14998     Log: Regen sig_n{ame,umber}* if slightest doubt.
14999  Branch: cfgperl
15000        ! Configure
15001 ____________________________________________________________________________
15002 [  2106] By: jhi                                   on 1998/10/28  08:44:49
15003     Log: Bison says 'parse error', not 'parser error'.
15004  Branch: cfgperl
15005        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
15006        ! t/pragma/warning.t
15007 ____________________________________________________________________________
15008 [  2105] By: jhi                                   on 1998/10/28  08:42:09
15009     Log: yylex() parametrization.
15010  Branch: cfgperl
15011        ! proto.h toke.c
15012 ____________________________________________________________________________
15013 [  2104] By: jhi                                   on 1998/10/28  08:25:09
15014     Log: Bring in #2102.
15015  Branch: cfgperl
15016        ! pp.c
15017 ____________________________________________________________________________
15018 [  2103] By: jhi                                   on 1998/10/28  08:22:04
15019     Log: From: Dominic Dunlop <domo@vo.lu>
15020          Subject: [PATCH 5.005_02]  Re: perl5.004_04 testing problem
15021          Date: 27 Oct 1998 20:47:25 +0200
15022          Message-ID: <MLIST_v03110700b25b7dc95bbc@[212.24.192.87]>
15023  Branch: cfgperl
15024        ! t/op/groups.t
15025 ____________________________________________________________________________
15026 [  2102] By: larry                                 on 1998/10/27  18:58:55
15027     Log: utf8 change to quotemeta broke EBCDIC
15028  Branch: perl
15029        ! pp.c
15030 ____________________________________________________________________________
15031 [  2101] By: jhi                                   on 1998/10/27  12:55:34
15032     Log: $Config{sig_num_init}.
15033          Also, a new approach to the 'pthreads-created-joinable': drop
15034          it and use {PTHREAD_CREATE_{JOINABLE,UNDETACHED},__UNDETACHED}
15035          directly. (See also #2096).
15036  Branch: cfgperl
15037        ! Configure config_h.SH
15038 ____________________________________________________________________________
15039 [  2100] By: jhi                                   on 1998/10/27  10:48:55
15040     Log: Regenerated perly_c.diff.
15041  Branch: cfgperl
15042        ! perly_c.diff
15043 ____________________________________________________________________________
15044 [  2099] By: jhi                                   on 1998/10/27  08:42:25
15045     Log: First the mangler was Netscape, then it was me.
15046  Branch: cfgperl
15047        ! vmesa/Makefile
15048 ____________________________________________________________________________
15049 [  2098] By: jhi                                   on 1998/10/27  08:34:40
15050     Log: `id -Gn` might be available where `groups` is not.
15051  Branch: cfgperl
15052        ! t/op/groups.t
15053 ____________________________________________________________________________
15054 [  2097] By: jhi                                   on 1998/10/27  08:05:17
15055     Log: Netscape had mangled the tabs.
15056  Branch: cfgperl
15057        ! vmesa/Makefile
15058 ____________________________________________________________________________
15059 [  2096] By: jhi                                   on 1998/10/27  08:03:05
15060     Log: ATTR_JOINABLE logic, based on (private email)
15061          
15062          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
15063          Subject: Some little diffs
15064          Message-ID: <36350969.DA33E7B4@mailbox.tabnsw.com.au>
15065          Date: Tue, 27 Oct 1998 13:44:42 +1300
15066  Branch: cfgperl
15067        ! thread.h
15068 ____________________________________________________________________________
15069 [  2095] By: jhi                                   on 1998/10/27  07:56:57
15070     Log: Mach cthreads support based on:
15071          
15072          From: brie@corp.home.net (Brian Harrison)
15073          Subject: perl5.005_02 patch for mthreads
15074          To: perl5-porters@perl.org
15075          Date: 24 Oct 1998 01:01:55 +0300
15076          Message-ID: <MLIST_Pine.GSO.4.04.9810231410220.11111-200000@sulaco.eos.home.net>
15077          
15078          Pthread yield probe (dejavu)
15079          Cosmetic nanochange for the union semun output.
15080          Better inttypes.h probe.
15081          Undo the 'void *' $selecttype probe from #1971 because
15082          it breaks the $selectminbits test.
15083  Branch: cfgperl
15084        ! Configure config_h.SH perl.h thread.h
15085 ____________________________________________________________________________
15086 [  2094] By: jhi                                   on 1998/10/26  13:02:07
15087     Log: Also posix-bc wants to reyacc.
15088  Branch: cfgperl
15089        ! Makefile.SH
15090 ____________________________________________________________________________
15091 [  2093] By: jhi                                   on 1998/10/26  10:17:21
15092     Log: Removed !(*s & 0x80) from pp_quotemeta(), introduced after
15093          5_02 and really breaking things in non-ASCII worlds.
15094  Branch: cfgperl
15095        ! pp.c
15096 ____________________________________________________________________________
15097 [  2092] By: jhi                                   on 1998/10/26  09:08:00
15098     Log: More robustness.
15099  Branch: cfgperl
15100        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
15101        ! t/pragma/warning.t
15102 ____________________________________________________________________________
15103 [  2091] By: jhi                                   on 1998/10/26  08:47:32
15104     Log: s/YYLEXPARAM/PERL_YYLEX_PARAM_DECL/g
15105          Bison really wants YYLEX_PARAM.
15106  Branch: cfgperl
15107        ! perly.y proto.h toke.c
15108 ____________________________________________________________________________
15109 [  2090] By: jhi                                   on 1998/10/26  08:21:25
15110     Log: s/YYLEX_PARAM/YYLEXPARAM/
15111  Branch: cfgperl
15112        ! perly.y
15113 ____________________________________________________________________________
15114 [  2089] By: jhi                                   on 1998/10/26  08:17:33
15115     Log: Indicate skipped subtests.
15116  Branch: cfgperl
15117        ! t/io/pipe.t
15118 ____________________________________________________________________________
15119 [  2088] By: jhi                                   on 1998/10/26  08:11:36
15120     Log: Integrate from mainperl.
15121  Branch: cfgperl
15122       !> (integrate 54 files)
15123 ____________________________________________________________________________
15124 [  2087] By: jhi                                   on 1998/10/26  08:08:02
15125     Log: Add test for filetests.
15126  Branch: cfgperl
15127        + t/op/filetest.t
15128        ! MANIFEST
15129 ____________________________________________________________________________
15130 [  2086] By: gsar                                  on 1998/10/26  02:44:44
15131     Log: various win32 tweaks; disable new xs_cpp section (it creates
15132          ambiguous inference graph for %.xs --> %.o)
15133  Branch: perl
15134        ! ext/Thread/Thread.xs gv.c lib/ExtUtils/MakeMaker.pm mg.c pp.c
15135        ! pp_hot.c proto.h win32/GenCAPI.pl win32/Makefile
15136        ! win32/config.gc win32/config_H.gc win32/makedef.pl
15137        ! win32/makefile.mk win32/win32.h
15138 ____________________________________________________________________________
15139 [  2085] By: gsar                                  on 1998/10/26  00:50:02
15140     Log: sanity-check $Config{drand01} in rand.t
15141  Branch: perl
15142        ! t/op/rand.t win32/config.bc win32/config.gc win32/config.vc
15143        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
15144 ____________________________________________________________________________
15145 [  2078] By: gsar                                  on 1998/10/25  10:22:04
15146     Log: update win32/config*.?c
15147  Branch: perl
15148        ! Changes win32/config.bc win32/config.gc win32/config.vc
15149        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
15150 ____________________________________________________________________________
15151 [  2077] By: gsar                                  on 1998/10/25  08:39:25
15152     Log: From: Graham Barr <gbarr@pobox.com>
15153          Date: Sat, 24 Oct 1998 21:45:50 -0500
15154          Message-ID: <19981024214550.C508@pobox.com>
15155          Subject: Re: die with a reference  should use overload "" operator
15156  Branch: perl
15157        ! pp_ctl.c
15158 ____________________________________________________________________________
15159 [  2076] By: gsar                                  on 1998/10/25  08:37:49
15160     Log: From: Graham Barr <gbarr@pobox.com>
15161          Date: Sat, 24 Oct 1998 12:45:21 -0500
15162          Message-ID: <19981024124521.C512@pobox.com>
15163          Subject: [PATCH 5.005_02] Re: Auto-incrementing tied scalar causes SEGV
15164  Branch: perl
15165        ! sv.c
15166 ____________________________________________________________________________
15167 [  2075] By: gsar                                  on 1998/10/25  08:24:09
15168     Log: fix C<print $n += 5;> etc.
15169  Branch: perl
15170        ! toke.c
15171 ____________________________________________________________________________
15172 [  2074] By: gsar                                  on 1998/10/25  08:12:28
15173     Log: list builtins with portability caveats
15174          From: Jarkko Hietaniemi <jhi@iki.fi>
15175          Date: Fri, 23 Oct 1998 14:05:23 +0300 (EET DST)
15176          Message-Id: <199810231105.OAA02411@alpha.hut.fi>
15177          Subject: [PATCH] 5.005_02 and 5.005_52: perlfunc.pod and perlport.pod
15178  Branch: perl
15179        ! pod/perlfunc.pod
15180 ____________________________________________________________________________
15181 [  2073] By: gsar                                  on 1998/10/25  07:55:43
15182     Log: fix stack overrun in file test operators
15183  Branch: perl
15184        ! pp_sys.c
15185 ____________________________________________________________________________
15186 [  2072] By: gsar                                  on 1998/10/25  07:29:45
15187     Log: implement C<goto &func> and other fixes (via private mail)
15188          From:    "vishal bhatia" <vishalb@hotmail.com>
15189          Date:    Wed, 21 Oct 1998 22:59:03 PDT
15190          Message-Id: <19981022055904.20083.qmail@hotmail.com>
15191          Subject: [PATCH 5.005_52] More fixes for B
15192  Branch: perl
15193        ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm
15194 ____________________________________________________________________________
15195 [  2071] By: gsar                                  on 1998/10/25  07:14:41
15196     Log: From: Graham Barr <gbarr@pobox.com>
15197          Date: Sat, 17 Oct 1998 20:42:41 -0500
15198          Message-ID: <19981017204241.G510@pobox.com>
15199          Subject: Re: taint checking for: use lib "$ENV{'EVIL'}"
15200  Branch: perl
15201        ! pp_ctl.c
15202 ____________________________________________________________________________
15203 [  2070] By: gsar                                  on 1998/10/25  07:07:29
15204     Log: avoid bogus line number in XSUB redefined warnings
15205  Branch: perl
15206        ! op.c
15207 ____________________________________________________________________________
15208 [  2069] By: gsar                                  on 1998/10/25  06:59:03
15209     Log: From: Martijn Koster <mak@excitecorp.com>
15210          Date: Wed, 21 Oct 1998 13:12:03 +0100
15211          Message-ID: <19981021131203.A15661@excitecorp.com>
15212          Subject: File::Path::mkpath reports the wrong error
15213  Branch: perl
15214        ! lib/File/Path.pm
15215 ____________________________________________________________________________
15216 [  2068] By: gsar                                  on 1998/10/25  06:54:43
15217     Log: From: Zachary Miller <zcmiller@simon.er.usgs.gov>
15218          Date: Tue, 20 Oct 1998 20:52:20 -0500
15219          Message-Id: <199810210152.UAA07792@simon.er.usgs.gov>
15220          Subject: Exporter.pm's export_to_level() argument handling buggy
15221  Branch: perl
15222        ! lib/Exporter.pm
15223 ____________________________________________________________________________
15224 [  2067] By: gsar                                  on 1998/10/25  06:50:19
15225     Log: From: jan.dubois@ibm.net (Jan Dubois)
15226          Date: Wed, 21 Oct 1998 00:55:51 +0200
15227          Message-ID: <36380269.55370608@smtp1.ibm.net>
15228          Subject: Make _really_ sure Dynaloader.xs code is initialized only once
15229  Branch: perl
15230        ! ext/DynaLoader/DynaLoader_pm.PL
15231 ____________________________________________________________________________
15232 [  2066] By: gsar                                  on 1998/10/25  06:48:19
15233     Log: recognize '%' as a shell metachar for win32
15234          From: jan.dubois@ibm.net (Jan Dubois)
15235          Date: Tue, 20 Oct 1998 21:57:35 +0200
15236          Message-ID: <3636ea31.49170453@smtp1.ibm.net>
15237          Subject: [PATCH 5.005_02, Win32]  Re: %ENV% not expanded in backquotes?
15238  Branch: perl
15239        ! win32/win32.c
15240 ____________________________________________________________________________
15241 [  2065] By: gsar                                  on 1998/10/25  06:46:30
15242     Log: remove FAST_SV_GETS remnant (as suggested by Gisle Aas)
15243  Branch: perl
15244        ! sv.c
15245 ____________________________________________________________________________
15246 [  2064] By: gsar                                  on 1998/10/25  06:45:09
15247     Log: From: Gisle Aas <gisle@aas.no>
15248          Date: 20 Oct 1998 14:24:44 +0200
15249          Message-ID: <m34sszctf7.fsf@furu.g.aas.no>
15250          Subject: ord() and unpack("U*",...) should not be negative
15251  Branch: perl
15252        ! pp.c
15253 ____________________________________________________________________________
15254 [  2063] By: gsar                                  on 1998/10/25  06:42:29
15255     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
15256          Date: Sun, 18 Oct 1998 23:20:57 -0400 (EDT)
15257          Message-Id: <199810190320.XAA28249@monk.mps.ohio-state.edu>
15258          Subject: [PATCH 5.005_*] Improve sbrk() on OS/2
15259  Branch: perl
15260        ! os2/os2.c
15261 ____________________________________________________________________________
15262 [  2062] By: gsar                                  on 1998/10/25  06:41:26
15263     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
15264          Date: Sun, 18 Oct 1998 23:10:29 -0400 (EDT)
15265          Message-Id: <199810190310.XAA28102@monk.mps.ohio-state.edu>
15266          Subject: [PATCH 5.005_*] Speed up aassign
15267  Branch: perl
15268        ! pp_hot.c
15269 ____________________________________________________________________________
15270 [  2061] By: gsar                                  on 1998/10/25  06:39:04
15271     Log: From: Graham Barr <gbarr@pobox.com>
15272          Date: Sat, 17 Oct 1998 22:22:02 -0500
15273          Message-ID: <19981017222202.J510@pobox.com>
15274          Subject: Re: '*' prototype does not allow bareword with strict
15275  Branch: perl
15276        ! toke.c
15277 ____________________________________________________________________________
15278 [  2060] By: gsar                                  on 1998/10/25  06:37:34
15279     Log: handle '::' in section names properly
15280          From: Graham Barr <gbarr@pobox.com>
15281          Date: Sat, 17 Oct 1998 12:57:54 -0500
15282          Message-ID: <19981017125754.C510@pobox.com>
15283          Subject: Re: pod2html
15284  Branch: perl
15285        ! lib/Pod/Html.pm
15286 ____________________________________________________________________________
15287 [  2059] By: gsar                                  on 1998/10/25  06:33:43
15288     Log: integrate changes#1982,2014,2021 (from maint-5.005)
15289  Branch: perl
15290       !> av.c doop.c ext/POSIX/POSIX.xs hv.c lib/ExtUtils/MakeMaker.pm
15291       !> mg.c mg.h pp.c pp_hot.c pp_sys.c scope.c t/op/tie.t
15292 ____________________________________________________________________________
15293 [  2058] By: gsar                                  on 1998/10/25  05:44:17
15294     Log: allow more win32 symbol exports (suggested by Jan Dubois)
15295  Branch: perl
15296        ! win32/makedef.pl
15297 ____________________________________________________________________________
15298 [  2057] By: gsar                                  on 1998/10/25  05:40:40
15299     Log: integrate change#2053 from maint-5.005
15300  Branch: perl
15301       !> cop.h t/cmd/while.t
15302 ____________________________________________________________________________
15303 [  2056] By: gsar                                  on 1998/10/25  05:16:41
15304     Log: commented version of a patch suggested by Drago Goricanec
15305          From: Jarkko Hietaniemi <jhi@cc.hut.fi>
15306          Date: 16 Oct 1998 15:24:45 +0300
15307          Message-ID: <oeeogrc1ype.fsf@alpha.hut.fi>
15308          Subject: Re: [PATCH 5.005_52] Linux select fails with more than 32 FDs
15309  Branch: perl
15310        ! pp_sys.c
15311 ____________________________________________________________________________
15312 [  2055] By: gsar                                  on 1998/10/25  05:11:03
15313     Log: include eof() in description of buffering caveats
15314          From: Anton Berezin <tobez@plab.ku.dk>
15315          Date: Fri, 16 Oct 1998 19:22:41 +0200 (CEST)
15316          Message-Id: <199810161722.TAA28813@lion.plab.ku.dk>
15317          Subject: [DOCPATCH] pod/perlfunc.pod
15318  Branch: perl
15319        ! pod/perlfunc.pod
15320 ____________________________________________________________________________
15321 [  2054] By: gsar                                  on 1998/10/25  05:07:42
15322     Log: disallow 'x' in hex numbers (except leading '0x')
15323          From: Gisle Aas <gisle@aas.no>
15324          Date: 16 Oct 1998 16:33:12 +0200
15325          Message-ID: <m3n26wtw47.fsf@furu.g.aas.no>
15326          Subject: Re: [PATCH 5.005_52] 'x' is not a legal hex digit
15327  Branch: perl
15328        ! perlvars.h t/op/oct.t util.c
15329 ____________________________________________________________________________
15330 [  2052] By: gsar                                  on 1998/10/25  04:49:04
15331     Log: avoid the circular refcnt logic in magic_mutexfree()
15332  Branch: perl
15333        ! mg.c pp.c pp_hot.c
15334 ____________________________________________________________________________
15335 [  2051] By: gsar                                  on 1998/10/25  04:35:07
15336     Log: properly restore PL_rsfp_filters after require
15337  Branch: perl
15338        ! embed.h global.sym objXSUB.h objpp.h pp_ctl.c proto.h scope.c
15339        ! scope.h
15340 ____________________________________________________________________________
15341 [  2050] By: gsar                                  on 1998/10/25  02:42:32
15342     Log: integrate cfgperl changes back into mainline
15343  Branch: perl
15344       +> README.posix-bc hints/posix-bc.sh hints/vmesa.sh
15345       +> vmesa/Makefile vmesa/vmesa.c vmesa/vmesaish.h
15346       !> (integrate 33 files)
15347 ____________________________________________________________________________
15348 [  2049] By: gsar                                  on 1998/10/25  01:30:48
15349     Log: avoid "mysterious" compile-time failures without messages
15350  Branch: perl
15351        ! gv.c
15352 ____________________________________________________________________________
15353 [  2041] By: gsar                                  on 1998/10/23  21:11:56
15354     Log: checkin jpl under //depot/perlext/jpl/...
15355  Branch: perlext
15356        + jpl/JNI/Changes jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/MANIFEST
15357        + jpl/JNI/Makefile.PL jpl/JNI/test.pl jpl/JNI/typemap
15358        + jpl/JPL/AutoLoader.pm jpl/JPL/Class.pm jpl/JPL/Compile.pm
15359        + jpl/JPL/Makefile.PL jpl/JPL_Rolo/JPL_Rolo.jpl
15360        + jpl/JPL_Rolo/Makefile.PL jpl/JPL_Rolo/README
15361        + jpl/JPL_Rolo/cardfile jpl/PerlInterpreter/Makefile
15362        + jpl/PerlInterpreter/Makefile.PL
15363        + jpl/PerlInterpreter/PerlInterpreter.c
15364        + jpl/PerlInterpreter/PerlInterpreter.h
15365        + jpl/PerlInterpreter/PerlInterpreter.java jpl/README
15366        + jpl/Sample/Makefile.PL jpl/Sample/Sample.jpl
15367        + jpl/Test/Makefile.PL jpl/Test/Test.jpl jpl/bin/jpl
15368        + jpl/get_jdk/README jpl/get_jdk/get_jdk.pl
15369        + jpl/get_jdk/jdk_hosts jpl/install-jpl
15370 ____________________________________________________________________________
15371 [  2040] By: larry                                 on 1998/10/23  19:31:42
15372     Log: chr(0xFFFFFFFF) didn't translate to utf8 character
15373  Branch: perl
15374        ! pp.c
15375 ____________________________________________________________________________
15376 [  2039] By: larry                                 on 1998/10/23  18:48:34
15377     Log: tr///d does not seem to work
15378  Branch: perl
15379        ! lib/utf8_heavy.pl
15380 ____________________________________________________________________________
15381 [  2038] By: larry                                 on 1998/10/23  18:00:41
15382     Log: Program with utf8 identifiers fails to compile
15383  Branch: perl
15384        ! doop.c gv.c op.c pp.c pp_hot.c toke.c
15385 ____________________________________________________________________________
15386 [  2037] By: jhi                                   on 1998/10/23  14:04:51
15387     Log: Test suite portability:
15388          - posix-bc does not write to broken pipes
15389          - filehand #11 only iff we have fork
15390          - warning.t can now match $expected using regular expressions
15391  Branch: cfgperl
15392        ! t/io/pipe.t t/lib/filehand.t t/pragma/warn/doio
15393        ! t/pragma/warning.t
15394 ____________________________________________________________________________
15395 [  2036] By: jhi                                   on 1998/10/23  12:12:07
15396     Log: yacc clarification.
15397  Branch: cfgperl
15398        ! README.posix-bc
15399 ____________________________________________________________________________
15400 [  2035] By: jhi                                   on 1998/10/23  12:09:59
15401     Log: Some C compilers get upset about 8-bit characters in /* comments. */
15402  Branch: cfgperl
15403        ! mg.c
15404 ____________________________________________________________________________
15405 [  2034] By: jhi                                   on 1998/10/22  09:11:52
15406     Log: Configure update: both for pthread_yield more robust
15407          testing (all variants of pthread_attr_getdetachstate()) --
15408          and because Configure was broken in major way! About 1000
15409          last lines were truncated.
15410  Branch: cfgperl
15411        ! Configure
15412 ____________________________________________________________________________
15413 [  2033] By: jhi                                   on 1998/10/22  07:47:10
15414     Log: DJGPP feedback for #2028.
15415  Branch: cfgperl
15416        ! thread.h
15417 ____________________________________________________________________________
15418 [  2032] By: jhi                                   on 1998/10/21  13:03:57
15419     Log: yielding, the saga continues.
15420  Branch: cfgperl
15421        ! Configure config_h.SH
15422       !> av.c lib/constant.pm op.c pod/perldiag.pod pp_ctl.c
15423       !> t/op/goto.t t/pragma/constant.t
15424 ____________________________________________________________________________
15425 [  2031] By: jhi                                   on 1998/10/21  09:15:42
15426     Log: VM/ESA feedback for #2028.
15427  Branch: cfgperl
15428        ! Configure config_h.SH thread.h
15429 ____________________________________________________________________________
15430 [  2030] By: gsar                                  on 1998/10/21  04:22:53
15431     Log: fix handling of mayhaps-extended @_ in goto &sub
15432  Branch: perl
15433        ! av.c pp_ctl.c t/op/goto.t
15434 ____________________________________________________________________________
15435 [  2029] By: gsar                                  on 1998/10/21  00:54:14
15436     Log: restore sanity to "constant" references
15437  Branch: perl
15438        ! lib/constant.pm op.c pod/perldiag.pod t/pragma/constant.t
15439 ____________________________________________________________________________
15440 [  2028] By: jhi                                   on 1998/10/20  15:01:20
15441     Log: OLD_PTHREADS_API reorganizing.
15442  Branch: cfgperl
15443        ! dosish.h ext/Thread/Thread.xs perl.h thread.h util.c
15444        ! vmesa/vmesaish.h
15445 ____________________________________________________________________________
15446 [  2027] By: jhi                                   on 1998/10/20  14:14:51
15447     Log: #2026 fallout.
15448  Branch: cfgperl
15449        ! Makefile.SH
15450 ____________________________________________________________________________
15451 [  2026] By: jhi                                   on 1998/10/20  11:47:21
15452     Log: VM/ESA update.
15453  Branch: cfgperl
15454        ! Makefile.SH vmesa/vmesa.c vmesa/vmesaish.h
15455 ____________________________________________________________________________
15456 [  2025] By: jhi                                   on 1998/10/20  08:20:56
15457     Log: 64-bitness, based on
15458          
15459          From: Scott Henry <scotth@sgi.com>
15460          To: perl-64bit@perl.org
15461          Message-ID: <yd8u30zyerl.fsf@hoshi.engr.sgi.com>
15462          Subject: Re: Configure problems/questions...
15463          Date: 19 Oct 1998 22:38:06 -0700
15464  Branch: cfgperl
15465        ! hints/irix_6.sh perl.h
15466 ____________________________________________________________________________
15467 [  2024] By: jhi                                   on 1998/10/20  08:09:07
15468     Log: Add lseeksize.
15469  Branch: cfgperl
15470        ! config_h.SH
15471 ____________________________________________________________________________
15472 [  2023] By: jhi                                   on 1998/10/20  08:08:33
15473     Log: Mumble about _yields() only when threaded.
15474  Branch: cfgperl
15475        ! Configure
15476 ____________________________________________________________________________
15477 [  2022] By: jhi                                   on 1998/10/20  07:46:26
15478     Log: Thinko at PTHREADS_CREATED_JOINABLE.
15479  Branch: cfgperl
15480        ! thread.h
15481 ____________________________________________________________________________
15482 [  2021] By: gbarr                                 on 1998/10/20  01:25:23
15483     Log: From: Chip Salzenberg <chip@perlsupport.com>
15484          Date: Tue, 6 Oct 1998 13:33:05 -0400
15485          Message-ID: <19981006133305.A2348@perlsupport.com>
15486          Subject: [PATCH] 5.005_02: Eliminate leak on self-ties
15487  Branch: maint-5.005/perl
15488        ! av.c doop.c hv.c mg.c mg.h pp.c pp_hot.c pp_sys.c scope.c
15489        ! t/op/tie.t
15490 ____________________________________________________________________________
15491 [  2020] By: jhi                                   on 1998/10/19  09:15:53
15492     Log: YIELD more robustly.
15493  Branch: cfgperl
15494        ! thread.h
15495 ____________________________________________________________________________
15496 [  2019] By: jhi                                   on 1998/10/19  08:48:33
15497     Log: VM/ESA (and OS390) are in between of OLD_PTHREADS_API and
15498          the 'new' one (just like DJGPP, it seems).
15499  Branch: cfgperl
15500        ! thread.h
15501 ____________________________________________________________________________
15502 [  2018] By: jhi                                   on 1998/10/19  07:02:44
15503     Log: vmesaish.h doesn't exclude unixish.h.
15504  Branch: cfgperl
15505        ! perl.h
15506 ____________________________________________________________________________
15507 [  2017] By: jhi                                   on 1998/10/19  06:44:19
15508     Log: 1<<$randbits is not good for randbits=48.
15509  Branch: cfgperl
15510        ! t/op/rand.t
15511 ____________________________________________________________________________
15512 [  2016] By: jhi                                   on 1998/10/19  06:39:47
15513     Log: Make #2012 glob pattern more portable.
15514  Branch: cfgperl
15515        ! Makefile.SH
15516 ____________________________________________________________________________
15517 [  2014] By: gbarr                                 on 1998/10/17  20:31:42
15518     Log: Fix POSIX::sigprocmask not to check type of $old parameter
15519          as it is output only
15520  Branch: maint-5.005/perl
15521        ! ext/POSIX/POSIX.xs
15522 ____________________________________________________________________________
15523 [  2012] By: jhi                                   on 1998/10/17  15:04:23
15524     Log: clean numbered core dumps and t/tmp[0-9]*.
15525  Branch: cfgperl
15526        ! Makefile.SH
15527 ____________________________________________________________________________
15528 [  2011] By: jhi                                   on 1998/10/17  14:59:15
15529     Log: More robust yacc/bison failure output handling.
15530  Branch: cfgperl
15531        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
15532 ____________________________________________________________________________
15533 [  2010] By: jhi                                   on 1998/10/17  14:51:05
15534     Log: BC2000 POSIX update.
15535  Branch: cfgperl
15536        ! MANIFEST
15537 ____________________________________________________________________________
15538 [  2009] By: jhi                                   on 1998/10/17  14:49:46
15539     Log: POSIX BC2000 port from perl-mvs:
15540          
15541          Subject: Ported perl 5.005.02 to BS2000 / POSIX
15542          From: Dorner Thomas <Thomas.Dorner@start.de> 
15543          Date: Tue, 29 Sep 1998 13:29:36 +0100 
15544          Message-ID: <9CE47B416A24D2118BC40000F84009B20B72C5@start.de> 
15545  Branch: cfgperl
15546        + README.posix-bc hints/posix-bc.sh
15547        ! Configure MANIFEST perl.c perly.y proto.h t/lib/cgi-html.t
15548        ! t/op/magic.t t/op/pack.t t/op/quotemeta.t t/op/subst.t toke.c
15549        ! unixish.h
15550 ____________________________________________________________________________
15551 [  2008] By: jhi                                   on 1998/10/17  14:07:49
15552     Log: VM/ESA-update.
15553  Branch: cfgperl
15554        ! MANIFEST
15555 ____________________________________________________________________________
15556 [  2007] By: jhi                                   on 1998/10/17  13:55:34
15557     Log: Forgot few S_I* imports.
15558  Branch: cfgperl
15559        ! t/lib/ipc_sysv.t
15560 ____________________________________________________________________________
15561 [  2006] By: jhi                                   on 1998/10/17  13:43:54
15562     Log: The VM/ESA port essentials, based on
15563          
15564          perl-mvs:
15565          
15566          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
15567          Subject: Re: Can't find Data/Dumper.pm
15568          Date: Mon, 28 Sep 1998 07:40:49 +1300
15569          Message-ID: <360E86B0.23847AF4@mailbox.tabnsw.com.au>
15570          
15571          private email:
15572          
15573          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
15574          Subject: Re: Perl thread problems in VM/ESA
15575          Date: Thu, 15 Oct 1998 07:18:35 +1300
15576          Message-ID: <3624EAFA.16163A2B@mailbox.tabnsw.com.au>
15577          
15578          and private email:
15579          
15580          From: Neale Ferguson <NEALE@PUCC.PRINCETON.EDU>
15581          Subject:  perl archive
15582          Date:  Sun, 11 Oct 1998 19:28:54 EDT
15583          Message-Id: <19981011233112Z67215-26626+1513@outbound.Princeton.EDU>
15584          which gave a pointer to
15585          
15586          http://pucc.princeton.edu/~neale/perl.tar
15587          
15588          (based on Perl 5.005_51)
15589  Branch: cfgperl
15590        + hints/vmesa.sh vmesa/Makefile vmesa/vmesa.c vmesa/vmesaish.h
15591        ! ext/Errno/Errno_pm.PL perl.c perl.h perly.y pp_sys.c
15592        ! t/io/pipe.t t/lib/cgi-html.t t/lib/ipc_sysv.t t/op/magic.t
15593        ! t/op/pack.t t/op/quotemeta.t t/op/subst.t util.c x2p/a2p.h
15594 ____________________________________________________________________________
15595 [  2005] By: jhi                                   on 1998/10/17  13:17:19
15596     Log: Integrate mainperl.
15597  Branch: cfgperl
15598       !> Porting/genlog ext/B/B/CC.pm ext/POSIX/POSIX.pm
15599       !> lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker.pm
15600       !> lib/Term/Complete.pm op.c opcode.h opcode.pl os2/Makefile.SHs
15601       !> os2/os2.c pod/perlfunc.pod pod/perlxs.pod pp.c sv.c
15602       !> t/op/grent.t t/op/sysio.t t/op/tiehandle.t toke.c
15603       !> utils/perldoc.PL vms/ext/Stdio/Stdio.pm win32/Makefile
15604       !> win32/makefile.mk
15605 ____________________________________________________________________________
15606 [  2004] By: jhi                                   on 1998/10/17  11:19:06
15607     Log: Removed an extra ' from the int64_t test.
15608  Branch: cfgperl
15609        ! Configure
15610 ____________________________________________________________________________
15611 [  2003] By: gsar                                  on 1998/10/17  04:11:40
15612     Log: silence -w noises (suggested by Greg Bacon)
15613  Branch: perl
15614        ! lib/Term/Complete.pm
15615 ____________________________________________________________________________
15616 [  2002] By: gsar                                  on 1998/10/17  04:07:48
15617     Log: From: Gisle Aas <gisle@aas.no>
15618          Date: 14 Oct 1998 15:53:14 +0200
15619          Message-ID: <m3g1cr9rn9.fsf@furu.g.aas.no>
15620          Subject: Re: chr(0xFFFF_FFFF) and "\x{10_FFFF}" [PATCH 5.005_52]
15621  Branch: perl
15622        ! util.c
15623 ____________________________________________________________________________
15624 [  2001] By: gsar                                  on 1998/10/17  04:06:10
15625     Log: From: Gisle Aas <gisle@aas.no>
15626          Date: 14 Oct 1998 15:17:44 +0200
15627          Message-ID: <m3iuhn9taf.fsf@furu.g.aas.no>
15628          Subject: [PATCH 5.005_52] Core dump from "Missing right brace on \x{}"
15629  Branch: perl
15630        ! toke.c
15631 ____________________________________________________________________________
15632 [  2000] By: gsar                                  on 1998/10/17  03:06:33
15633     Log: From: Gisle Aas <gisle@aas.no>
15634          Date: 14 Oct 1998 00:38:06 +0200
15635          Message-ID: <m3iuhonl4h.fsf@furu.g.aas.no>
15636          Subject: [PATCH 5.005_52] utf8 substr can access memory outside PVX buffer
15637  Branch: perl
15638        ! sv.c
15639 ____________________________________________________________________________
15640 [  1999] By: gsar                                  on 1998/10/17  03:04:48
15641     Log: From: Dan Sugalski <sugalskd@osshe.edu>
15642          Date: Tue, 13 Oct 1998 15:10:57 -0700
15643          Message-Id: <3.0.6.32.19981013151057.00a947a0@ous.edu>
15644          Subject: [PATCH 5.004/5.005/5.006]Doc patch to VMS::Stdio module
15645  Branch: perl
15646        ! vms/ext/Stdio/Stdio.pm
15647 ____________________________________________________________________________
15648 [  1998] By: gsar                                  on 1998/10/17  03:00:40
15649     Log: skip readonly vars and unref references when doing a reset()
15650  Branch: perl
15651        ! sv.c
15652 ____________________________________________________________________________
15653 [  1997] By: gsar                                  on 1998/10/17  02:49:19
15654     Log: fix buggy treatment of large checksums on unicode strings
15655          From: Gisle Aas <gisle@aas.no>
15656          Date: 13 Oct 1998 21:35:39 +0200
15657          Message-ID: <m31zocp850.fsf@furu.g.aas.no>
15658          Subject: unpack("%48U*",...)  [PATCH 5.005_52]
15659  Branch: perl
15660        ! pp.c
15661 ____________________________________________________________________________
15662 [  1996] By: gsar                                  on 1998/10/17  02:43:22
15663     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
15664          Date: Tue, 13 Oct 1998 04:46:00 -0400 (EDT)
15665          Message-Id: <199810130846.EAA00769@monk.mps.ohio-state.edu>
15666          Subject: [PATCH 5.005_52] Memory overrun in os2.c
15667  Branch: perl
15668        ! os2/Makefile.SHs os2/os2.c
15669 ____________________________________________________________________________
15670 [  1995] By: gsar                                  on 1998/10/17  02:42:01
15671     Log: clarify section name rules for typemaps
15672  Branch: perl
15673        ! pod/perlxs.pod
15674 ____________________________________________________________________________
15675 [  1994] By: gsar                                  on 1998/10/17  02:33:02
15676     Log: whitespace-proof grent.t
15677  Branch: perl
15678        ! t/op/grent.t
15679 ____________________________________________________________________________
15680 [  1993] By: gsar                                  on 1998/10/17  02:27:29
15681     Log: fix bug in B::CC::pp_sassign()
15682          From: "vishal bhatia" <vishalb@hotmail.com>
15683          Date: Sun, 11 Oct 1998 18:41:38 PDT
15684          Message-ID: <19981012014139.19614.qmail@hotmail.com>
15685          Subject: B::CC problems with pp_sassign routine
15686  Branch: perl
15687        ! ext/B/B/CC.pm
15688 ____________________________________________________________________________
15689 [  1992] By: gsar                                  on 1998/10/17  02:17:49
15690     Log: applied suggested patch with small doc tweak
15691          From: Gisle Aas <gisle@aas.no>
15692          Date: 11 Oct 1998 12:53:13 +0200
15693          Message-ID: <m3u31bfjza.fsf@furu.g.aas.no>
15694          Subject: Re: [PATCH 5.005_52] Optional syswrite LENGTH argument
15695  Branch: perl
15696        ! opcode.h opcode.pl pod/perlfunc.pod pp_sys.c t/op/sysio.t
15697        ! t/op/tiehandle.t
15698 ____________________________________________________________________________
15699 [  1991] By: gsar                                  on 1998/10/17  02:08:30
15700     Log: apply non-conflicting parts from suggested patch
15701          From: jan.dubois@ibm.net (Jan Dubois)
15702          Date: Sat, 10 Oct 1998 13:15:45 +0200
15703          Message-ID: <36223ed7.18279374@smtp1.ibm.net>
15704          Subject: [PATCH 5.005_52] Still more MakeMaker  patches
15705  Branch: perl
15706        ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker.pm
15707 ____________________________________________________________________________
15708 [  1990] By: gsar                                  on 1998/10/17  02:01:24
15709     Log: provide option to enable optimization with VC (suggested by Jan
15710          Dubois)
15711  Branch: perl
15712        ! win32/Makefile win32/makefile.mk
15713 ____________________________________________________________________________
15714 [  1989] By: gsar                                  on 1998/10/17  01:55:27
15715     Log: Rhapsody DR2 has bsd/ctypes.h, not objc/NXCType.h (suggested by
15716          Dave Leppik <dleppik@gage.com>
15717  Branch: perl
15718        ! perl.h
15719 ____________________________________________________________________________
15720 [  1988] By: gsar                                  on 1998/10/17  01:49:05
15721     Log: stray typo found by Hugo van der Sanden
15722  Branch: perl
15723        ! op.c
15724 ____________________________________________________________________________
15725 [  1987] By: gsar                                  on 1998/10/17  01:45:52
15726     Log: perldoc pod update
15727          From: Daniel Grisinger <dgris@perrin.dimensional.com>
15728          Date: 06 Oct 1998 23:56:51 -0600
15729          Message-ID: <m3g1d0kj8c.fsf@perrin.dimensional.com>
15730          Subject: [PATCH _02 and _52] perldoc
15731  Branch: perl
15732        ! utils/perldoc.PL
15733 ____________________________________________________________________________
15734 [  1986] By: gsar                                  on 1998/10/17  01:41:40
15735     Log: qualify names of builtins
15736  Branch: perl
15737        ! ext/POSIX/POSIX.pm
15738 ____________________________________________________________________________
15739 [  1982] By: gbarr                                 on 1998/10/17  00:20:57
15740     Log: From: Jochen Wiedmann <joe@ispsoft.de>
15741          Date: Thu, 17 Sep 1998 17:16:06 +0200
15742          Message-ID: <360127B6.E44564A@ispsoft.de>
15743          Subject: [PATCH] ExtUtils::MakeMaker::prompt cannot return 0
15744  Branch: maint-5.005/perl
15745        ! lib/ExtUtils/MakeMaker.pm
15746 ____________________________________________________________________________
15747 [  1978] By: gsar                                  on 1998/10/16  01:58:58
15748     Log: integrate cfgperl mods into mainline
15749  Branch: perl
15750       +> ext/DynaLoader/dl_vmesa.xs
15751        ! Porting/genlog
15752       !> Configure MANIFEST Makefile.SH config_h.SH
15753       !> ext/Thread/Thread.xs gv.c hints/hpux.sh hints/irix_6.sh
15754       !> hints/linux.sh hints/os390.sh op.c t/op/pat.t thread.h
15755       !> x2p/Makefile.SH
15756 ____________________________________________________________________________
15757 [  1976] By: gsar                                  on 1998/10/16  00:10:52
15758     Log: stray tweak
15759  Branch: perl
15760        ! op.c
15761 ____________________________________________________________________________
15762 [  1975] By: gsar                                  on 1998/10/15  23:54:38
15763     Log: propagate typeness of lexicals while cloning them
15764  Branch: perl
15765        ! op.c
15766 ____________________________________________________________________________
15767 [  1974] By: gsar                                  on 1998/10/15  23:53:25
15768     Log: s/last/first/ typo in append_list()
15769  Branch: perl
15770        ! op.c
15771 ____________________________________________________________________________
15772 [  1973] By: gsar                                  on 1998/10/15  20:06:17
15773     Log: nuke confperl branch and contents
15774  Branch: confperl
15775        - (delete 1284 files)
15776 ____________________________________________________________________________
15777 [  1972] By: jhi                                   on 1998/10/15  07:07:35
15778     Log: Test #162 had been added but the "print 1..161" had not been updated.
15779  Branch: cfgperl
15780        ! t/op/pat.t
15781 ____________________________________________________________________________
15782 [  1971] By: gsar                                  on 1998/10/15  03:09:58
15783     Log: check in all confperl changes as of change#1964 into cfgperl
15784  Branch: cfgperl
15785        + ext/DynaLoader/dl_vmesa.xs
15786        ! Configure MANIFEST Makefile.SH config_h.SH
15787        ! ext/Thread/Thread.xs gv.c hints/hpux.sh hints/irix_6.sh
15788        ! hints/linux.sh hints/os390.sh op.c thread.h x2p/Makefile.SH
15789 ____________________________________________________________________________
15790 [  1970] By: gsar                                  on 1998/10/15  03:05:59
15791     Log: integrate mainline to get tr.t
15792  Branch: cfgperl
15793       +> t/op/tr.t
15794 ____________________________________________________________________________
15795 [  1969] By: gsar                                  on 1998/10/15  03:04:17
15796     Log: add missing tr.t to repository
15797  Branch: perl
15798        + t/op/tr.t
15799 ____________________________________________________________________________
15800 [  1968] By: gsar                                  on 1998/10/15  03:02:43
15801     Log: create cfgperl branch
15802  Branch: cfgperl
15803       +> (branch 1282 files)
15804 ____________________________________________________________________________
15805 [  1967] By: gsar                                  on 1998/10/15  02:46:08
15806     Log: correct bugs exposed in MM_Unix.pm by commenting out Selfloader
15807          (MAN3PODS cannot be set to ' '; stray stricture violation)
15808  Branch: perl
15809        ! ext/B/Makefile.PL ext/DB_File/Makefile.PL
15810        ! ext/Data/Dumper/Makefile.PL ext/DynaLoader/Makefile.PL
15811        ! ext/Errno/Makefile.PL ext/Fcntl/Makefile.PL
15812        ! ext/GDBM_File/Makefile.PL ext/IO/Makefile.PL
15813        ! ext/IPC/SysV/Makefile.PL ext/NDBM_File/Makefile.PL
15814        ! ext/ODBM_File/Makefile.PL ext/Opcode/Makefile.PL
15815        ! ext/POSIX/Makefile.PL ext/SDBM_File/Makefile.PL
15816        ! ext/Socket/Makefile.PL ext/Thread/Makefile.PL
15817        ! ext/attrs/Makefile.PL ext/re/Makefile.PL
15818        ! lib/ExtUtils/MM_Unix.pm
15819 ____________________________________________________________________________
15820 [  1966] By: gsar                                  on 1998/10/15  02:19:03
15821     Log: tweak to make fix in change#1944 behave correctly for closures
15822          created within eval''
15823  Branch: perl
15824        ! op.c t/op/eval.t
15825 ____________________________________________________________________________
15826 [  1965] By: gsar                                  on 1998/10/14  23:22:41
15827     Log: use better numbers for exitstatus test
15828  Branch: perl
15829        ! t/op/die_exit.t
15830 ____________________________________________________________________________
15831 [  1964] By: jhi                                   on 1998/10/14  17:25:41
15832     Log: Add VM/ESA dynaloading (uses <dll.h>).
15833  Branch: confperl
15834        + ext/DynaLoader/dl_vmesa.xs
15835        ! MANIFEST
15836 ____________________________________________________________________________
15837 [  1963] By: jhi                                   on 1998/10/14  17:17:10
15838     Log: Remove a2p.loadmap in 'clean' target.
15839  Branch: confperl
15840        ! x2p/Makefile.SH
15841 ____________________________________________________________________________
15842 [  1962] By: jhi                                   on 1998/10/14  17:13:11
15843     Log: VM/ESA produces also .prelmaps. (No, not .perlmaps...)
15844  Branch: confperl
15845        ! Makefile.SH
15846 ____________________________________________________________________________
15847 [  1961] By: jhi                                   on 1998/10/14  16:27:39
15848     Log: VM/ESA creates executable.loadmaps.
15849  Branch: confperl
15850        ! Makefile.SH
15851 ____________________________________________________________________________
15852 [  1960] By: jhi                                   on 1998/10/14  15:37:39
15853     Log: Introduce SCHED_YIELD (one of sched_yield(),
15854          pthread_yield(), or pthread_yield(NULL)).
15855          YIELD is then defined using SCHED_YIELD unless
15856          a platform-specific YIELD has already been defined.
15857          
15858          Support pthread_attr_setdetachstate(pthread_attr_t*, int*).
15859          
15860          The need for pthread_yield(NULL) and pthread_attr_setdet...
15861          introduced by (private email)
15862          
15863          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
15864          Date: Sat, 10 Oct 1998 21:08:15 +1300
15865          Message-ID: <361F15EE.47376EC@mailbox.tabnsw.com.au>
15866          Subject: Re: Perl thread problems in VM/ESA
15867          
15868          Better select() protoprobe (for AIX), from (private email)
15869          From: Andy Dougherty <doughera@lafcol.lafayette.edu>
15870          Date: Fri, 2 Oct 1998 14:52:25 -0400 (EDT)
15871          Message-Id: <Pine.SUN.3.96.981002144601.11832D-100000@newton.phys>
15872          Subject: AIX select (fwd)
15873          From: Lars Hecking <lhecking@nmrc.ucc.ie>
15874          To: Andy Dougherty <doughera@lafcol.lafayette.edu>
15875          Date: Fri, 2 Oct 1998 10:40:01 +0100
15876          Subject: AIX select
15877          
15878          Linux-avoid-so.X.Y, based on
15879          From: "Kurt D. Starsinic" <kstar@chapin.edu>
15880          Date: Tue, 13 Oct 1998 15:55:07 -0400
15881          Message-ID: <19981013155507.B4004@O2.chapin.edu>
15882          Subject: Re: [PATCH 5.005_52] [Was: Re: How can Debian accomodate new installation ?]
15883  Branch: confperl
15884        ! Configure config_h.SH ext/Thread/Thread.xs hints/linux.sh
15885        ! thread.h
15886 ____________________________________________________________________________
15887 [  1959] By: jhi                                   on 1998/10/14  12:51:26
15888     Log: Some old pthread implementations have
15889          pthread_attr_setdetachstate(pthread_attr_t*, int*).
15890  Branch: confperl
15891        ! ext/Thread/Thread.xs
15892 ____________________________________________________________________________
15893 [  1958] By: jhi                                   on 1998/10/14  12:41:11
15894     Log: SCHED_YIELD and ATTR_JOINABLE fixes.  Thread.xs and Configure
15895          counterparts will follow soon.
15896  Branch: confperl
15897        ! thread.h
15898 ____________________________________________________________________________
15899 [  1957] By: jhi                                   on 1998/10/14  12:38:11
15900     Log: Add tr.t (MANIFEST already knew about it, strange)
15901  Branch: confperl
15902        + t/op/tr.t
15903 ____________________________________________________________________________
15904 [  1956] By: jhi                                   on 1998/10/14  12:24:35
15905     Log: Mutexen should be initialized only once.
15906  Branch: confperl
15907        ! gv.c op.c
15908 ____________________________________________________________________________
15909 [  1955] By: jhi                                   on 1998/10/14  12:19:38
15910     Log: os390 has its own cppstdin.
15911  Branch: confperl
15912        ! hints/os390.sh
15913 ____________________________________________________________________________
15914 [  1954] By: jhi                                   on 1998/10/14  12:15:06
15915     Log: Integrate with mainperl.
15916  Branch: confperl
15917       !> (integrate 1280 files)
15918 ____________________________________________________________________________
15919 [  1953] By: jhi                                   on 1998/10/14  11:48:08
15920     Log: Removed duplicate CMA threads code for HPUX 10.X.
15921          (probably residue of patch(1) being too understanding)
15922          Enhanced 64-bit settings. (redo change#1940)
15923  Branch: confperl
15924        ! hints/hpux.sh
15925 ____________________________________________________________________________
15926 [  1952] By: jhi                                   on 1998/10/14  11:45:16
15927     Log: (redo change#1949) Detypo in the d_open64 warning about
15928          the impending WHOA.
15929  Branch: confperl
15930        ! hints/irix_6.sh
15931 ____________________________________________________________________________
15932 [  1951] By: jhi                                   on 1998/10/14  10:54:16
15933     Log: Mutexen should only be inited once, after they have been New()ed.
15934  Branch: confperl
15935        ! gv.c op.c
15936 ____________________________________________________________________________
15937 [  1950] By: jhi                                   on 1998/10/14  10:41:43
15938     Log: Own cppstdin.
15939  Branch: confperl
15940        ! hints/os390.sh
15941 ____________________________________________________________________________
15942 [  1949] By: jhi                                   on 1998/10/14  10:34:23
15943     Log: Detypo in the d_open64 warning about the impending WHOA.
15944  Branch: confperl
15945        ! hints/irix_6.sh
15946 ____________________________________________________________________________
15947 [  1948] By: gsar                                  on 1998/10/14  05:38:01
15948     Log: two typos
15949  Branch: perl
15950        ! pp_hot.c t/op/eval.t
15951 ____________________________________________________________________________
15952 [  1947] By: gsar                                  on 1998/10/14  05:37:10
15953     Log: let docatch() pass the buck when restartop turns out to be null,
15954          making exceptions in BEGIN{} propagate as expected
15955  Branch: perl
15956        ! pp_ctl.c t/op/misc.t
15957 ____________________________________________________________________________
15958 [  1946] By: gsar                                  on 1998/10/13  03:41:49
15959     Log: add missing file from change#1943
15960  Branch: perl
15961        ! proto.h
15962 ____________________________________________________________________________
15963 [  1945] By: gsar                                  on 1998/10/13  03:32:02
15964     Log: defer "deep recursion" warnings until CXt_SUB context is properly
15965          set up
15966  Branch: perl
15967        ! pp_hot.c t/pragma/warn/pp_hot
15968 ____________________________________________________________________________
15969 [  1944] By: gsar                                  on 1998/10/13  03:15:50
15970     Log: change#1614 merely disabled earlier fix (doh!); undo it and properly
15971          fixup the cop_seq value that must be seen by lexical lookups that
15972          emanate within eval''
15973  Branch: perl
15974        ! cop.h op.c pp_ctl.c pp_hot.c scope.c t/op/eval.t
15975 ____________________________________________________________________________
15976 [  1943] By: gsar                                  on 1998/10/13  02:06:09
15977     Log: ensure recursive attempts to findlex()icals know enough about where
15978          the last eval'' context was encountered
15979  Branch: perl
15980        ! op.c t/op/eval.t
15981 ____________________________________________________________________________
15982 [  1942] By: gsar                                  on 1998/10/13  02:01:24
15983     Log: force copy of substrings when matching against temporaries
15984  Branch: perl
15985        ! pp_hot.c t/op/pat.t
15986 ____________________________________________________________________________
15987 [  1941] By: gsar                                  on 1998/10/13  01:49:16
15988     Log: don't longjmp() in pp_goto() (regressive bug from old single-stack
15989          implementation)
15990  Branch: perl
15991        ! pp_ctl.c t/op/runlevel.t
15992 ____________________________________________________________________________
15993 [  1940] By: jhi                                   on 1998/10/12  09:57:44
15994     Log: Removed duplicate CMA threads code for HPUX 10.X.
15995          (probably residue of patch(1) being too understanding)
15996          Enhanced 64-bit settings.
15997  Branch: confperl
15998        ! hints/hpux.sh
15999 ____________________________________________________________________________
16000 [  1939] By: jhi                                   on 1998/10/12  09:53:11
16001     Log: Initial sync from mainline perl.
16002  Branch: confperl
16003        + (add 1282 files)
16004 ____________________________________________________________________________
16005 [  1937] By: gsar                                  on 1998/10/06  21:16:34
16006     Log: fix $/ init for USE_THREADS
16007  Branch: perl
16008        ! perl.c
16009 ____________________________________________________________________________
16010 [  1936] By: gsar                                  on 1998/10/06  07:19:39
16011     Log: fix globals caught by change#1927; builds and tests on Solaris
16012  Branch: perl
16013        ! Changes mg.c op.c perl.c pp_ctl.c regcomp.c utf8.c utf8.h
16014        ! warning.h warning.pl
16015 ____________________________________________________________________________
16016 [  1935] By: gsar                                  on 1998/10/06  06:50:35
16017     Log: add test for previous fix
16018  Branch: perl
16019        ! ext/Thread/create.t
16020 ____________________________________________________________________________
16021 [  1934] By: gsar                                  on 1998/10/06  06:37:36
16022     Log: fix USE_THREADS coredump due to uninitialized PL_hv_fetch_ent_mh
16023  Branch: perl
16024        ! util.c
16025 ____________________________________________________________________________
16026 [  1933] By: gsar                                  on 1998/10/06  05:04:20
16027     Log: undo bogus part of change#1903 (as pointed out by Larry)
16028  Branch: perl
16029        ! pp_ctl.c
16030 ____________________________________________________________________________
16031 [  1932] By: gsar                                  on 1998/10/06  04:21:31
16032     Log: added tweaked version of suggested patch
16033          From: jan.dubois@ibm.net (Jan Dubois)
16034          Date: Sat, 03 Oct 1998 19:04:48 +0200
16035          Message-ID: <361d54b2.36841294@smtp1.ibm.net>
16036          Subject: [PATCH 5.005_52] More MakeMaker  patches
16037  Branch: perl
16038        ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
16039        ! lib/ExtUtils/Mkbootstrap.pm lib/ExtUtils/Mksymlists.pm
16040 ____________________________________________________________________________
16041 [  1931] By: gsar                                  on 1998/10/06  04:04:33
16042     Log: use cpp symbols instead of hardwired constants
16043          From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
16044          Date: Mon, 05 Oct 1998 09:23:33 +0100
16045          Message-Id: <199810050823.JAA00891@crypt.compulink.co.uk>
16046          Subject: [PATCH 5.005_52] By the numbers (resend)
16047  Branch: perl
16048        ! op.c
16049 ____________________________________________________________________________
16050 [  1930] By: gsar                                  on 1998/10/06  04:01:55
16051     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16052          Message-Id: <199810050637.CAA07781@monk.mps.ohio-state.edu>
16053          Date: Mon, 5 Oct 1998 02:37:43 -0400 (EDT)
16054          Subject: [PATCH 5.005_52] Cumulative OS/2-related patch
16055  Branch: perl
16056        ! Makefile.SH hints/os2.sh lib/ExtUtils/MM_OS2.pm mg.c
16057        ! os2/Changes os2/Makefile.SHs os2/os2.c perl_exp.SH util.c
16058 ____________________________________________________________________________
16059 [  1929] By: gsar                                  on 1998/10/06  03:50:36
16060     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16061          Date: Mon, 5 Oct 1998 02:39:00 -0400 (EDT)
16062          Message-Id: <199810050639.CAA07803@monk.mps.ohio-state.edu>
16063          Subject: [PATCH 5.00552] Minor test improvement
16064  Branch: perl
16065        ! t/op/magic.t
16066 ____________________________________________________________________________
16067 [  1928] By: gsar                                  on 1998/10/06  03:49:03
16068     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16069          Date: Mon, 5 Oct 1998 02:38:23 -0400 (EDT)
16070          Message-Id: <199810050638.CAA07792@monk.mps.ohio-state.edu>
16071          Subject: [PATCH 5.00552] emacs/ptags inprovements
16072  Branch: perl
16073        ! emacs/ptags
16074 ____________________________________________________________________________
16075 [  1927] By: gsar                                  on 1998/10/06  03:47:44
16076     Log: disable C<#define dirty PL_dirty> et al.
16077  Branch: perl
16078        ! embed.pl embedvar.h
16079 ____________________________________________________________________________
16080 [  1926] By: gsar                                  on 1998/10/06  03:43:32
16081     Log: From: Mark-Jason Dominus <mjd@plover.com>
16082          Date: Sun, 04 Oct 1998 14:48:11 -0400
16083          Message-ID: <19981004184811.16048.qmail@plover.com>
16084          Subject: PATCH: perldoc -f does not locate -e, -r, -x, etc.
16085  Branch: perl
16086        ! utils/perldoc.PL
16087 ____________________________________________________________________________
16088 [  1925] By: gsar                                  on 1998/10/06  03:27:35
16089     Log: disable USE_THREADS when PERL_OBJECT is enabled
16090  Branch: perl
16091        ! win32/Makefile win32/makefile.mk
16092 ____________________________________________________________________________
16093 [  1924] By: gsar                                  on 1998/10/06  03:26:54
16094     Log: remove spurious unused conflicting globals (PL_yy{v,s}sp)
16095  Branch: perl
16096        ! Makefile.SH Todo-5.005 embedvar.h perlvars.h perly.c toke.c
16097        ! vms/perly_c.vms
16098 ____________________________________________________________________________
16099 [  1923] By: gsar                                  on 1998/10/03  05:19:56
16100     Log: make C<use> recognize C<require> overrides; allow C<do EXPR> to be
16101          overridden
16102  Branch: perl
16103        ! embed.h global.sym objXSUB.h objpp.h op.c perly.c perly.y
16104        ! proto.h vms/perly_c.vms
16105 ____________________________________________________________________________
16106 [  1922] By: gsar                                  on 1998/10/03  03:59:50
16107     Log: suppress manifypods leak in extensions
16108  Branch: perl
16109        ! ext/Errno/Makefile.PL ext/IPC/SysV/Makefile.PL pod/pod2man.PL
16110 ____________________________________________________________________________
16111 [  1921] By: gsar                                  on 1998/10/02  22:30:15
16112     Log: os390 fixes (suggested by Peter Prymmer)
16113  Branch: perl
16114        ! Makefile.SH regcomp.c
16115 ____________________________________________________________________________
16116 [  1920] By: gsar                                  on 1998/10/02  21:41:19
16117     Log: squelch undef warnings
16118          From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
16119          Date: Fri, 02 Oct 1998 11:01:14 +0100
16120          Message-Id: <199810021001.LAA19214@crypt.compulink.co.uk>
16121          Subject: [PATCH] Re: Apparent bug in Math::BigInt 
16122  Branch: perl
16123        ! Changes lib/Math/BigInt.pm
16124 ____________________________________________________________________________
16125 [  1919] By: gsar                                  on 1998/10/02  04:59:13
16126     Log: add note to INSTALL about ANSI C
16127  Branch: perl
16128        ! INSTALL
16129 ____________________________________________________________________________
16130 [  1918] By: gsar                                  on 1998/10/02  04:21:10
16131     Log: tolerate spaces when fixing up __cplusplus output by old h2xs
16132          From: jan.dubois@ibm.net (Jan Dubois)
16133          Date: Wed, 30 Sep 1998 23:35:30 +0200
16134          Message-ID: <3619a1e8.12336659@smtp1.ibm.net>
16135          Subject: [PATCH 5.005_52]: xsubpp and PERL_OBJECT
16136  Branch: perl
16137        ! lib/ExtUtils/xsubpp
16138 ____________________________________________________________________________
16139 [  1917] By: gsar                                  on 1998/10/02  04:16:02
16140     Log: From: Jarkko Hietaniemi <jhi@iki.fi>
16141          Date: Thu, 1 Oct 1998 11:37:26 +0300 (EET DST)
16142          Message-Id: <199810010837.LAA31371@alpha.hut.fi>
16143          Subject: Re: Configure test for selectbits busted
16144  Branch: perl
16145        ! Configure
16146 ____________________________________________________________________________
16147 [  1916] By: gsar                                  on 1998/10/02  04:14:17
16148     Log: From: Dan Sugalski <sugalskd@osshe.edu>
16149          Date: Wed, 30 Sep 1998 17:15:20 -0700
16150          Message-Id: <3.0.6.32.19980930171520.00b22eb0@ous.edu>
16151          Subject: [PATCH 5.005_02]VMS config tweaks
16152  Branch: perl
16153        ! vms/descrip_mms.template vms/subconfigure.com
16154 ____________________________________________________________________________
16155 [  1915] By: gsar                                  on 1998/10/02  04:10:47
16156     Log: use Off_t to permit 64-bit seek()
16157          From: Scott Henry <scotth@sgi.com>
16158          Date: 29 Sep 1998 17:38:46 -0700
16159          Message-ID: <yd8lnn2zb6x.fsf_-_@hoshi.engr.sgi.com>
16160          Subject: Re: [PATCH] 5.005_02: Configure "Massive Attack"
16161          --
16162          Date: 28 Sep 1998 18:55:37 -0700
16163          Message-ID: <yd8ogrz1y3q.fsf@hoshi.engr.sgi.com>
16164          Subject: Re: [PATCH] 5.005_51: Configure "Massive Attack"
16165  Branch: perl
16166        ! doio.c pp_sys.c proto.h sv.c
16167 ____________________________________________________________________________
16168 [  1914] By: gsar                                  on 1998/10/02  04:05:36
16169     Log: normalize tm struct passed to strftime() with mktime()
16170          From: Spider Boardman <spider@orb.nashua.nh.us>
16171          Date: Wed, 30 Sep 1998 15:12:09 -0400
16172          Message-Id: <199809301912.PAA26119@Orb.Nashua.NH.US>
16173          Subject: [PATCH 5.005_52] Re: POSIX::strftime returns incorrect date 
16174  Branch: perl
16175        ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
16176 ____________________________________________________________________________
16177 [  1913] By: gsar                                  on 1998/10/02  03:59:46
16178     Log: don't try to run foo_SH.orig etc.
16179  Branch: perl
16180        ! Configure
16181 ____________________________________________________________________________
16182 [  1912] By: gsar                                  on 1998/10/02  03:45:37
16183     Log: make warning about glob process failure optional
16184  Branch: perl
16185        ! pod/perldiag.pod pp_hot.c
16186 ____________________________________________________________________________
16187 [  1911] By: gsar                                  on 1998/10/02  02:52:21
16188     Log: document yet another RE diagnostic, make it consistent with REG_INFTY
16189          From: Dominic Dunlop <domo@vo.lu>
16190          Date: Tue, 29 Sep 1998 21:06:30 +0000
16191          Message-Id: <v03110700b236f60b1375@[212.24.192.106]>
16192          Subject: [PATCH 5.005_52] Fix hard-coded "matches null string many times" limit
16193          --
16194          Date: Wed, 30 Sep 1998 11:46:44 +0000
16195          Message-Id: <v03110702b237beb04830@[212.24.192.74]>
16196          Subject: [PATCH 5.005_52] Add "Strange *+?{} ..." to perldiag
16197  Branch: perl
16198        ! pod/perldiag.pod regcomp.c
16199 ____________________________________________________________________________
16200 [  1910] By: gsar                                  on 1998/10/02  02:48:48
16201     Log: minor Configure tweaks (via private mail)
16202          From: Jarkko Hietaniemi <jhi@iki.fi>
16203          Date: Wed, 30 Sep 1998 02:25:06 +0300 (EET DST)
16204          Message-Id: <199809292325.CAA19737@alpha.hut.fi>
16205          Subject: [PATCH] 5.005_52: the drizzle continues
16206  Branch: perl
16207        ! Configure config_h.SH handy.h
16208 ____________________________________________________________________________
16209 [  1909] By: gsar                                  on 1998/10/02  02:46:39
16210     Log: update SCO hints for dynamic loading
16211          From: Andy Dougherty <doughera@lafcol.lafayette.edu>
16212          Date: Mon, 28 Sep 1998 16:50:38 -0400 (EDT)
16213          Message-Id: <Pine.SUN.3.96.980928164648.8130E-100000@newton.phys>
16214          Subject: [PATCH 5.004_04-MAINT_TRIAL_5 and 5.005_xx] Re: Perl on SCO_SV
16215          --
16216          Date: Tue, 29 Sep 1998 16:48:55 -0400 (EDT)
16217          Message-Id: <Pine.SUN.3.96.980929164612.8634A-100000@newton.phys>
16218          Subject: Re: [PATCH 5.004_04-MAINT_TRIAL_5 and 5.005_xx] Re: Perl on SCO_SV
16219  Branch: perl
16220        ! hints/sco.sh
16221 ____________________________________________________________________________
16222 [  1908] By: gsar                                  on 1998/10/02  02:33:39
16223     Log: make File::Find work when wanted() is autoloaded or a symbolic ref
16224  Branch: perl
16225        ! lib/File/Find.pm
16226 ____________________________________________________________________________
16227 [  1907] By: gsar                                  on 1998/10/02  02:21:52
16228     Log: applied patches, but retained old behavior for win32 (where compilers
16229          can't read from stdin at all)
16230          From: Graham Barr <gbarr@ti.com>
16231          Date: Mon, 28 Sep 1998 09:41:49 -0500
16232          Message-ID: <19980928094149.B26576@asic.sc.ti.com>
16233          Subject: Re: 5.005_51 Errno invokes cpprun incorrectly
16234          --
16235          Date: Tue, 29 Sep 1998 12:35:43 -0500
16236          Message-ID: <19980929123543.Z26576@asic.sc.ti.com>
16237          Subject: Re: 5.005_51 Errno invokes cpprun incorrectly
16238  Branch: perl
16239        ! ext/Errno/Errno_pm.PL
16240 ____________________________________________________________________________
16241 [  1906] By: gsar                                  on 1998/10/02  02:02:19
16242     Log: tolerate whitespace in /etc/group entries (suggested by Jarkko
16243          Hietaniemi)
16244  Branch: perl
16245        ! t/op/grent.t
16246 ____________________________________________________________________________
16247 [  1905] By: gsar                                  on 1998/10/02  01:59:56
16248     Log: win32 caveats about truncate()
16249  Branch: perl
16250        ! pod/perlport.pod
16251 ____________________________________________________________________________
16252 [  1904] By: gsar                                  on 1998/10/02  01:53:25
16253     Log: various Configure and hints updates (prefer drand48() or random()
16254          over rand(); add -Dusemultiplicity; enhanced 64-bitness);  patch
16255          applied modulo SCO hints superceded by later patch
16256          From: Jarkko Hietaniemi <jhi@iki.fi>
16257          Date: Tue, 29 Sep 1998 00:56:33 +0300 (EET DST)
16258          Message-Id: <199809282156.AAA18615@alpha.hut.fi>
16259          Subject: [PATCH] 5.005_52: Configure et al:
16260  Branch: perl
16261        + ext/IPC/SysV/hints/next_3.pl
16262        ! Configure INSTALL MANIFEST config_h.SH ext/IPC/SysV/SysV.xs
16263        ! hints/dec_osf.sh hints/irix_6.sh hints/next_3.sh
16264        ! hints/solaris_2.sh perl.h pod/perldiag.pod pp.c pp_sys.c
16265 ____________________________________________________________________________
16266 [  1903] By: gsar                                  on 1998/10/02  01:42:37
16267     Log: fixes for bugs in /RE/p        from Hugo van der Sanden
16268          Date: Mon, 28 Sep 1998 17:41:49 +0100
16269          Message-Id: <199809281641.RAA02450@crypt.compulink.co.uk>
16270          Subject: [PATCH 5.005_52] Re: More on ?p 
16271          --
16272          Date: Thu, 01 Oct 1998 09:10:58 +0100
16273          Message-Id: <199810010810.JAA16426@crypt.compulink.co.uk>
16274          Subject: [PATCH 5.005_52] ?p fix
16275          --
16276          Date: Thu, 01 Oct 1998 10:45:56 +0100
16277          Message-Id: <199810010945.KAA16733@crypt.compulink.co.uk>
16278          Subject: [PATCH 5.005_52] more on ?p
16279  Branch: perl
16280        ! pp_ctl.c
16281 ____________________________________________________________________________
16282 [  1902] By: gsar                                  on 1998/10/02  01:36:14
16283     Log: From: Kenneth Duda <kjd@cisco.com>
16284          Date: Sun, 27 Sep 1998 20:22:12 -0700 (PDT)
16285          Message-Id: <199809280322.UAA01261@scorpion.cisco.com>
16286          Subject: writemain dies when there are more than 4000 characters of extensions
16287  Branch: perl
16288        ! writemain.SH
16289 ____________________________________________________________________________
16290 [  1901] By: gsar                                  on 1998/10/02  01:33:16
16291     Log: tweak run_byacc recipe
16292  Branch: perl
16293        ! Makefile.SH Porting/pumpkin.pod
16294 ____________________________________________________________________________
16295 [  1900] By: gsar                                  on 1998/10/02  01:02:09
16296     Log: use SETERRNO() to reset errno (suggested by Charles Bailey)
16297  Branch: perl
16298        ! perl.h pp_ctl.c
16299 ____________________________________________________________________________
16300 [  1899] By: gsar                                  on 1998/09/28  20:46:30
16301     Log: fix various 5.00552 mishaps (fixes suggested by Jan Dubois,
16302          Kurt Starsinic, Spider Boardman, Dan Sugalski and Albert
16303          Dvornik)
16304  Branch: perl
16305        ! hints/irix_6.sh lib/ExtUtils/MakeMaker.pm mg.c scope.c
16306 ____________________________________________________________________________
16307 [  1898] By: gsar                                  on 1998/09/28  20:42:52
16308     Log: flush unsubmitted 5.00552 change
16309  Branch: perl
16310        ! MANIFEST
16311 ____________________________________________________________________________
16312 [  1897] By: gsar                                  on 1998/09/27  04:43:06
16313     Log: run vms_yfix.pl
16314  Branch: perl
16315        ! vms/perly_c.vms
16316 ____________________________________________________________________________
16317 [  1896] By: gsar                                  on 1998/09/27  03:38:55
16318     Log: small tweak on last change
16319  Branch: perl
16320        ! win32/win32.c
16321 ____________________________________________________________________________
16322 [  1895] By: gsar                                  on 1998/09/27  03:17:17
16323     Log: fix win32_stat() to do the right thing for share names
16324  Branch: perl
16325        ! win32/win32.c
16326 ____________________________________________________________________________
16327 [  1891] By: larry                                 on 1998/09/25  18:50:40
16328     Log: Fixed apostrophe problem from Mark Knutsen.
16329  Branch: perl
16330        ! sv.h
16331
16332 ----------------
16333 Version 5.005_52
16334 ----------------
16335
16336 ____________________________________________________________________________
16337 [  1890] By: gsar                                  on 1998/09/25  10:25:00
16338     Log: update template config.sh, add new config vars to win32 stuff
16339  Branch: perl
16340        ! Changes Porting/config.sh Porting/config_H config_h.SH objpp.h
16341        ! pp_sys.c proto.h win32/config.bc win32/config.gc
16342        ! win32/config.vc win32/config_H.bc win32/config_H.gc
16343        ! win32/config_H.vc win32/win32.h
16344 ____________________________________________________________________________
16345 [  1889] By: gsar                                  on 1998/09/25  07:13:13
16346     Log: big Configure update from Jarkko: sync metaconfig units; d_statblks fix
16347          for Linux; hpux CMA-threads hints; ELF support for FreeBSD; beginnings
16348          of full-fledged 64-bit support (including support for: fseeko/ftello,
16349          Quad_t aka long long, hpux and irix 64-bits hints, new 64-bit constants
16350          in Fcntl)
16351          From: Jarkko Hietaniemi <jhi@iki.fi>
16352          Date: Fri, 11 Sep 1998 23:56:11 +0300 (EET DST)
16353          Message-Id: <199809112056.XAA04720@alpha.hut.fi>
16354          Subject: [PATCH] 5.005_51: Configure "Massive Attack"
16355          --
16356          From: Jarkko Hietaniemi <jhi@cc.hut.fi>
16357          Date: 12 Sep 1998 09:44:25 +0300
16358          Message-ID: <oeeaf45bzjq.fsf@alpha.hut.fi>
16359          Subject: Re: [PATCH] 5.005_51: Configure "Massive Attack"
16360  Branch: perl
16361        + lib/filetest.pm
16362        ! Configure MANIFEST Makefile.SH config_h.SH doio.c embedvar.h
16363        ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs handy.h hints/dec_osf.sh
16364        ! hints/freebsd.sh hints/hpux.sh hints/irix_6.sh objXSUB.h
16365        ! perl.c perl.h perl_exp.SH perlio.c perlvars.h pod/perldiag.pod
16366        ! pod/perlfunc.pod pp_sys.c proto.h win32/GenCAPI.pl
16367        ! win32/makedef.pl
16368 ____________________________________________________________________________
16369 [  1888] By: gsar                                  on 1998/09/25  06:27:12
16370     Log: bump patchlevel to 52; other little tweaks for threads, win32 builds
16371  Branch: perl
16372        ! doop.c mg.c patchlevel.h regexec.c win32/Makefile
16373        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
16374        ! win32/makedef.pl win32/makefile.mk win32/win32.c
16375 ____________________________________________________________________________
16376 [  1887] By: gsar                                  on 1998/09/25  04:50:49
16377     Log: win32.c tweak
16378  Branch: perl
16379        ! win32/win32.c
16380 ____________________________________________________________________________
16381 [  1886] By: gsar                                  on 1998/09/25  04:47:32
16382     Log: s/MAKEMAKEROPT/PERL_MM_OPT/
16383  Branch: perl
16384        ! lib/ExtUtils/MakeMaker.pm
16385 ____________________________________________________________________________
16386 [  1885] By: gsar                                  on 1998/09/25  04:05:09
16387     Log: From: Dominic Dunlop <domo@vo.lu>
16388          Date: Thu, 10 Sep 1998 11:02:46 +0000
16389          Message-Id: <v03110703b21d581d7ef1@[212.24.192.107]>
16390          Subject: MM_Unix::canonpath erroneously turns leading // into /
16391  Branch: perl
16392        ! lib/ExtUtils/MM_Unix.pm
16393 ____________________________________________________________________________
16394 [  1884] By: gsar                                  on 1998/09/25  03:06:10
16395     Log: temporarily disable perl malloc for a2p until we clean up
16396          conflicting malloc() declarations everywhere
16397  Branch: perl
16398        ! x2p/Makefile.SH
16399 ____________________________________________________________________________
16400 [  1883] By: gsar                                  on 1998/09/25  02:27:00
16401     Log: remove obsolete win32/bin/*.pl
16402  Branch: perl
16403        - win32/bin/network.pl win32/bin/webget.pl win32/bin/www.pl
16404        ! Changes MANIFEST win32/Makefile win32/makefile.mk
16405 ____________________________________________________________________________
16406 [  1882] By: gsar                                  on 1998/09/25  02:04:43
16407     Log: missing file in last submit
16408  Branch: perl
16409        ! proto.h
16410 ____________________________________________________________________________
16411 [  1881] By: gsar                                  on 1998/09/25  01:56:54
16412     Log: serial access to PL_x[inpr]v_root for USE_THREADS
16413  Branch: perl
16414        ! sv.c
16415 ____________________________________________________________________________
16416 [  1880] By: gsar                                  on 1998/09/25  01:19:38
16417     Log: lock sv_mutex in new_he() and del_he() for USE_THREADS
16418          From: Drago Goricanec <drago@king.otsd.ts.fujitsu.co.jp>
16419          Date: Thu, 24 Sep 1998 22:01:09 +0900
16420          Message-Id: <19980924220109J.drago@otsd.ts.fujitsu.co.jp>
16421          Subject: [PATCH 5.005_51] Re: Perl 5.005_51 not yet multi Thread safe 
16422  Branch: perl
16423        ! hv.c proto.h
16424 ____________________________________________________________________________
16425 [  1879] By: gsar                                  on 1998/09/25  00:20:07
16426     Log: tweaks to enable PERL_OBJECT to build & test on win32
16427  Branch: perl
16428        ! Changes doop.c mg.c objpp.h proto.h regexec.c util.c
16429        ! win32/GenCAPI.pl
16430 ____________________________________________________________________________
16431 [  1878] By: gsar                                  on 1998/09/25  00:13:36
16432     Log: fix change#1861, which breaks default boot_xxx symbol generation
16433  Branch: perl
16434        ! lib/ExtUtils/Mksymlists.pm
16435 ____________________________________________________________________________
16436 [  1877] By: gsar                                  on 1998/09/24  10:29:54
16437     Log: two tweaks for clean build and test on Solaris
16438  Branch: perl
16439        ! op.c t/op/subst.t
16440 ____________________________________________________________________________
16441 [  1876] By: gsar                                  on 1998/09/24  09:04:43
16442     Log: From: Colin Kuskie <ckuskie@cadence.com>
16443          Date: Wed, 26 Aug 1998 14:53:01 -0700 (PDT)
16444          Message-ID: <Pine.GSO.3.96.980826143507.3258K-100000@pdxmail.cadence.com>
16445          Subject: [PATCH 5.005_51] perlform.pod
16446  Branch: perl
16447        ! pod/perlform.pod
16448 ____________________________________________________________________________
16449 [  1875] By: gsar                                  on 1998/09/24  08:47:47
16450     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16451          Date: Tue, 25 Aug 1998 15:35:58 -0400 (EDT)
16452          Message-Id: <199808251935.PAA11384@monk.mps.ohio-state.edu>
16453          Subject: Re: problem with (?p{}) [PATCH 5.005_5*]
16454  Branch: perl
16455        ! regexec.c
16456 ____________________________________________________________________________
16457 [  1874] By: gsar                                  on 1998/09/24  08:44:55
16458     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16459          Date: Tue, 25 Aug 1998 14:56:06 -0400 (EDT)
16460          Message-Id: <199808251856.OAA10825@monk.mps.ohio-state.edu>
16461          Subject: Re: your Regexp.patch dated 21.8 [PATCH]
16462  Branch: perl
16463        ! toke.c
16464 ____________________________________________________________________________
16465 [  1873] By: gsar                                  on 1998/09/24  08:39:41
16466     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16467          Date: Tue, 25 Aug 1998 04:29:49 -0400 (EDT)
16468          Message-Id: <199808250829.EAA02470@monk.mps.ohio-state.edu>
16469          Subject: [PATCH 5.005_*] Extraneous warning for (?()A|B)
16470  Branch: perl
16471        ! Changes regcomp.c
16472 ____________________________________________________________________________
16473 [  1872] By: gsar                                  on 1998/09/24  08:37:00
16474     Log: From: Krishna Sethuraman <krishpl@shamu.engr.sgi.com>
16475          Date: Sun, 23 Aug 1998 23:18:38 PDT
16476          Message-Id: <199808240618.XAA05329@shamu.engr.sgi.com>
16477          Subject: new irix_6.sh hints file
16478  Branch: perl
16479        ! hints/irix_6.sh
16480 ____________________________________________________________________________
16481 [  1871] By: gsar                                  on 1998/09/24  07:26:37
16482     Log: correct FSF address in various places
16483  Branch: perl
16484        ! Copying README ext/B/README lib/Getopt/Long.pm
16485 ____________________________________________________________________________
16486 [  1870] By: gsar                                  on 1998/09/24  07:11:56
16487     Log: From:    Dan Sugalski <sugalskd@osshe.edu>
16488          Date:    Fri, 14 Aug 1998 09:20:16 PDT
16489          Message-Id: <3.0.5.32.19980814092016.00b37dc0@ous.edu>
16490          Subject: [PATCH 5.005_02] (and _5x I expect) VMS config procedure patch
16491  Branch: perl
16492        ! configure.com
16493 ____________________________________________________________________________
16494 [  1869] By: gsar                                  on 1998/09/24  06:55:59
16495     Log: use STRICT_ALIGNMENT on IRIX to allow usemymalloc=y again
16496          From:    Scott Henry <scotth@sgi.com>
16497          Date:    13 Aug 1998 09:52:15 PDT
16498          Message-Id: <yd8pve46czk.fsf@hoshi.engr.sgi.com>
16499          Subject: [PATCH] Irix USE_LONG_LONG/malloc.c incompatibility (was...)
16500  Branch: perl
16501        ! hints/irix_6.sh
16502 ____________________________________________________________________________
16503 [  1868] By: gsar                                  on 1998/09/24  06:51:23
16504     Log: From:    Nathan Torkington <gnat@frii.com>
16505          Date:    Thu, 13 Aug 1998 10:59:48 MDT
16506          Message-Id: <199808131659.KAA06179@prometheus.frii.com>
16507          Subject: [PATCH] 5.005_02 perlfunc.pod, improve umask entry
16508  Branch: perl
16509        ! pod/perlfunc.pod
16510 ____________________________________________________________________________
16511 [  1867] By: gsar                                  on 1998/09/24  06:45:13
16512     Log: make C<goto &sub> AUTOLOAD-aware (autouse now works for modules
16513          that are autoloaded)
16514  Branch: perl
16515        ! pp_ctl.c
16516 ____________________________________________________________________________
16517 [  1866] By: gsar                                  on 1998/09/24  05:21:19
16518     Log: grandfather deprecated "$$<digit>" no more
16519  Branch: perl
16520        ! pod/perldiag.pod toke.c
16521 ____________________________________________________________________________
16522 [  1865] By: gsar                                  on 1998/09/24  04:52:48
16523     Log: tweak PERL_HASH() to h=h+(h>>5) in order to improve distribution of
16524          low bits (suggested by Ilya Zakharevich)
16525  Branch: perl
16526        ! hv.h
16527 ____________________________________________________________________________
16528 [  1864] By: gsar                                  on 1998/09/24  04:29:14
16529     Log: move yyglobal decls from perly.c to perlvars.h, regen headers, tweak
16530          perly_c.diff
16531  Branch: perl
16532        ! embed.h embedvar.h global.sym perlvars.h perly.c perly.h
16533        ! perly_c.diff toke.c
16534 ____________________________________________________________________________
16535 [  1863] By: gsar                                  on 1998/09/24  03:36:30
16536     Log: provide locked access to string table for USE_THREADS
16537  Branch: perl
16538        ! embedvar.h hv.c intrpvar.h objXSUB.h perl.c thread.h
16539 ____________________________________________________________________________
16540 [  1862] By: gsar                                  on 1998/09/24  03:30:32
16541     Log: remove bogus warn()
16542  Branch: perl
16543        ! embed.pl
16544 ____________________________________________________________________________
16545 [  1861] By: gsar                                  on 1998/09/24  02:58:51
16546     Log: applied suggested patch, adapted for all platforms
16547          From: jan.dubois@ibm.net (Jan Dubois)
16548          Date: Sun, 20 Sep 1998 12:56:38 +0200
16549          Message-ID: <3604de0c.12319885@smtp1.ibm.net>
16550          Subject: [New PATCH 5.005_02] Support Mksymlists FUNCLIST argument in MakeMaker
16551  Branch: perl
16552        ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
16553        ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
16554        ! lib/ExtUtils/MakeMaker.pm
16555 ____________________________________________________________________________
16556 [  1860] By: gsar                                  on 1998/09/24  02:16:14
16557     Log: upgrade to CPAN-1.40
16558  Branch: perl
16559        ! Changes lib/CPAN.pm lib/CPAN/FirstTime.pm
16560 ____________________________________________________________________________
16561 [  1859] By: gsar                                  on 1998/09/24  02:08:59
16562     Log: use $ENV{MAKEMAKEROPT} to set default command line args
16563  Branch: perl
16564        ! lib/ExtUtils/MakeMaker.pm
16565 ____________________________________________________________________________
16566 [  1857] By: gsar                                  on 1998/09/23  10:58:36
16567     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16568          Date: Tue, 22 Sep 1998 17:30:16 -0400 (EDT)
16569          Message-Id: <199809222130.RAA17034@monk.mps.ohio-state.edu>
16570          Subject: More verbose Test::Harness [PATCH]
16571  Branch: perl
16572        ! lib/Test/Harness.pm
16573 ____________________________________________________________________________
16574 [  1856] By: gsar                                  on 1998/09/23  10:56:24
16575     Log: update hints for OPENSTEP 4.2 on i386
16576          From: Gerben Wierda <Gerben_Wierda@RnA.nl>
16577          Date: Sun, 20 Sep 1998 01:03:18 +0200
16578          Message-Id: <9809192303.AA29190@Spike>
16579          Subject: Perl 5.005_02 compilation problems
16580  Branch: perl
16581        ! hints/next_4.sh
16582 ____________________________________________________________________________
16583 [  1855] By: gsar                                  on 1998/09/23  10:52:27
16584     Log: reset errno after C<require> search (as suggested by Larry)
16585  Branch: perl
16586        ! pp_ctl.c
16587 ____________________________________________________________________________
16588 [  1854] By: gsar                                  on 1998/09/23  10:50:26
16589     Log: misc pod tweaks
16590  Branch: perl
16591        ! pod/perldelta.pod pod/perldiag.pod pod/perlport.pod
16592 ____________________________________________________________________________
16593 [  1853] By: gsar                                  on 1998/09/23  10:46:06
16594     Log: make Pod/Html.pm handle the --title option properly (as suggested
16595          by gml4410@ggr.co.uk)
16596  Branch: perl
16597        ! lib/Pod/Html.pm
16598 ____________________________________________________________________________
16599 [  1852] By: gsar                                  on 1998/09/23  10:41:39
16600     Log: SSNEW() API for allocating memory on the savestack
16601          From: Albert Dvornik <bert@genscan.com>
16602          Date: 17 Sep 1998 19:23:07 -0400
16603          Message-Id: <tqemtae338.fsf@puma.genscan.com>
16604          Subject: [PATCH 5.005_51] (was: why SAVEDESTRUCTOR()...)
16605  Branch: perl
16606        ! Changes Changes5.005 embed.h global.sym mg.c objXSUB.h objpp.h
16607        ! perl.h proto.h scope.c scope.h t/io/tell.t
16608 ____________________________________________________________________________
16609 [  1851] By: gsar                                  on 1998/09/23  10:37:05
16610     Log: From: Jochen Wiedmann <joe@ispsoft.de>
16611          Date: Thu, 17 Sep 1998 17:16:06 +0200
16612          Message-ID: <360127B6.E44564A@ispsoft.de>
16613          Subject: [PATCH] ExtUtils::MakeMaker::prompt cannot return 0
16614  Branch: perl
16615        ! lib/ExtUtils/MakeMaker.pm
16616 ____________________________________________________________________________
16617 [  1850] By: gsar                                  on 1998/09/23  10:33:05
16618     Log: From: andreas.koenig@kulturbox.de (Andreas J. Koenig)
16619          Date: 15 Sep 1998 01:32:31 +0200
16620          Message-ID: <sfchfya46eo.fsf@dubravka.in-berlin.de>
16621          Subject: Re: [PATCH] MakeMaker "test" target doesn't depend on "all"
16622  Branch: perl
16623        ! lib/ExtUtils/MM_Unix.pm
16624 ____________________________________________________________________________
16625 [  1849] By: gsar                                  on 1998/09/23  10:29:04
16626     Log: From: Charles Bailey <BAILEY@newman.upenn.edu>
16627          Date: Sat, 12 Sep 1998 19:25:32 -0400 (EDT)
16628          Message-id: <01J1QBJUAY1I002KOW@cor.newman.upenn.edu>
16629          Subject: Re: extralibs.ld problem in MM_VMS.pm
16630  Branch: perl
16631        ! lib/ExtUtils/MM_VMS.pm
16632 ____________________________________________________________________________
16633 [  1848] By: gsar                                  on 1998/09/23  10:25:24
16634     Log: From: Roderick Schertler <roderick@argon.org>
16635          Date: 11 Sep 1998 16:19:21 -0400
16636          Message-ID: <pzyarqpfli.fsf@eeyore.ibcinc.com>
16637          Subject: Re: Open2 and memory leaks
16638  Branch: perl
16639        ! lib/IPC/Open3.pm
16640 ____________________________________________________________________________
16641 [  1847] By: gsar                                  on 1998/09/23  10:18:31
16642     Log: From: Roderick Schertler <roderick@argon.org>
16643          Date: Wed, 09 Sep 1998 23:52:48 -0400
16644          Message-ID: <20567.905399568@eeyore.ibcinc.com>
16645          Subject: seed srand from /dev/urandom when possible
16646  Branch: perl
16647        ! pod/perlfunc.pod pp.c
16648 ____________________________________________________________________________
16649 [  1846] By: gsar                                  on 1998/09/23  10:12:22
16650     Log: From: Roderick Schertler <roderick@argon.org>
16651          Date: Thu, 10 Sep 1998 00:32:17 -0400
16652          Message-ID: <21142.905401937@eeyore.ibcinc.com>
16653          Subject: doc update for crypt()'s salt
16654  Branch: perl
16655        ! pod/perlfunc.pod
16656 ____________________________________________________________________________
16657 [  1845] By: gsar                                  on 1998/09/23  10:09:23
16658     Log: fix h2ph handling of C<#error "foo">
16659          From: SAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>
16660          Date: Thu, 10 Sep 1998 09:59:33 +0900
16661          Message-Id: <19980910095933N.ksakai@netwk.ntt-at.co.jp>
16662          Subject: [5.005_02] h2ph problem
16663  Branch: perl
16664        ! utils/h2ph.PL
16665 ____________________________________________________________________________
16666 [  1844] By: gsar                                  on 1998/09/23  10:06:13
16667     Log: plug strictly private function leaks in API listing
16668  Branch: perl
16669        ! pod/perlguts.pod
16670 ____________________________________________________________________________
16671 [  1843] By: gsar                                  on 1998/09/23  10:02:57
16672     Log: hide symbol for static build
16673          From: Dominic Dunlop <domo@vo.lu>
16674          Date: Tue, 8 Sep 1998 21:40:46 +0000
16675          Message-Id: <v03110700b21b52db318d@[212.24.192.111]>
16676          Subject: Not OK: perl 5.00551 on powerpc-machten 4.1.1 [PATCH]
16677  Branch: perl
16678        ! regcomp.c
16679 ____________________________________________________________________________
16680 [  1842] By: gsar                                  on 1998/09/23  09:52:46
16681     Log: define PUT_svindex(), PUT_opindex()
16682  Branch: perl
16683        ! ext/B/B/Assembler.pm
16684 ____________________________________________________________________________
16685 [  1841] By: gsar                                  on 1998/09/23  09:44:25
16686     Log: From: Dominic Dunlop <domo@vo.lu>
16687          Date: Tue, 8 Sep 1998 15:34:53 +0000
16688          Message-Id: <v03110701b21afbdc7cfb@[212.24.192.76]>
16689          Subject: [PATCH 5.005_51] Eliminate pragma/warn-regexec test dependence on REG_INFTY value
16690  Branch: perl
16691        ! t/pragma/warn/regexec
16692 ____________________________________________________________________________
16693 [  1840] By: gsar                                  on 1998/09/23  09:42:17
16694     Log: pl2bat tweak from Tye McQueen <tye@metronet.com>
16695  Branch: perl
16696        ! win32/bin/pl2bat.pl
16697 ____________________________________________________________________________
16698 [  1839] By: gsar                                  on 1998/09/23  09:38:18
16699     Log: From: Drago Goricanec <drago@raptor.otsd.ts.fujitsu.co.jp>
16700          Date: Mon, 7 Sep 1998 17:36:09 +0900
16701          Message-Id: <199809070836.RAA14631@raptor.otsd.ts.fujitsu.co.jp>
16702          Subject: Thread::cond_wait bug in 5.005.51 causes deadlock
16703  Branch: perl
16704        ! ext/Thread/Thread.xs
16705 ____________________________________________________________________________
16706 [  1838] By: gsar                                  on 1998/09/23  09:21:11
16707     Log: From: "Green, Paul" <pgreen@seussnt.stratus.com>
16708          Date: Thu, 10 Sep 1998 00:02:07 -0400
16709          Message-ID: <646CD0392810D211B04A00A024BF26FB1022EB@terminator.sw.stratus.com>
16710          Subject: RE: [PATCH] 5.005_02 and 5.005_51: Stratus VOS port
16711  Branch: perl
16712        + README.vos vos/Changes vos/build.cm vos/compile_perl.cm
16713        + vos/config.h vos/config_h.SH_orig vos/perl.bind
16714        + vos/test_vos_dummies.c vos/vos_dummies.c vos/vosish.h
16715        ! MANIFEST perl.c perl.h pod/perlport.pod
16716 ____________________________________________________________________________
16717 [  1837] By: gsar                                  on 1998/09/23  08:45:58
16718     Log: (via private mail)
16719          From: Charles Bailey <BAILEY@newman.upenn.edu>
16720          Date: Sat, 05 Sep 1998 01:23:58 -0400 (EDT)
16721          Message-id: <01J1FH7R43NS002F14@cor.newman.upenn.edu>
16722          Subject: [Patch 5.005_02] Miscellaneous VMS cleanup
16723  Branch: perl
16724        ! Changes Changes5.005 README.vms ext/DynaLoader/dl_vms.xs
16725        ! lib/Cwd.pm lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
16726        ! lib/ExtUtils/Mksymlists.pm lib/File/Copy.pm lib/File/Path.pm
16727        ! lib/File/Spec.pm pod/perldiag.pod pod/perlfaq1.pod
16728        ! pod/perlport.pod pod/perlrun.pod vms/ext/DCLsym/0README.txt
16729        ! vms/ext/DCLsym/DCLsym.pm vms/ext/DCLsym/DCLsym.xs
16730        ! vms/ext/Filespec.pm vms/ext/XSSymSet.pm vms/gen_shrfls.pl
16731        ! vms/mms2make.pl vms/perly_c.vms vms/sockadapt.c
16732        ! vms/sockadapt.h vms/test.com vms/vms.c vms/vms_yfix.pl
16733        ! vms/writemain.pl
16734 ____________________________________________________________________________
16735 [  1836] By: gsar                                  on 1998/09/23  08:17:42
16736     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16737          Date: Sat, 5 Sep 1998 00:14:51 -0400 (EDT)
16738          Message-Id: <199809050414.AAA19801@monk.mps.ohio-state.edu>
16739          Subject: [PATCH 5.005_*] OS/2 spawning typos
16740  Branch: perl
16741        ! os2/os2.c
16742 ____________________________________________________________________________
16743 [  1835] By: gsar                                  on 1998/09/23  08:09:55
16744     Log: warn on C<my($foo,$foo)>
16745  Branch: perl
16746        ! op.c pod/perldiag.pod
16747 ____________________________________________________________________________
16748 [  1834] By: gsar                                  on 1998/09/23  07:35:56
16749     Log: From: pvhp@forte.com (Peter Prymmer)
16750          Date: Fri, 4 Sep 98 13:27:41 PDT
16751          Message-Id: <9809042027.AA04463@forte.com>
16752          Subject: [PATCH 5.005_02 && 5.005_51] general updates to README.vms
16753  Branch: perl
16754        ! README.vms
16755 ____________________________________________________________________________
16756 [  1833] By: gsar                                  on 1998/09/23  07:27:34
16757     Log: From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
16758          Date: Wed, 2 Sep 1998 10:06:49 -0700 (PDT)
16759          Message-Id: <199809021706.KAA26349@xfiles.intercon.hp.com>
16760          Subject: PATCH: 5.005_02 hint/hpux.sh
16761  Branch: perl
16762        ! hints/hpux.sh
16763 ____________________________________________________________________________
16764 [  1832] By: gsar                                  on 1998/09/23  07:22:40
16765     Log: fix (some) installhtml bugs
16766          From: Larry Parmelee <parmelee@CS.Cornell.EDU>
16767          Date: Tue, 1 Sep 1998 12:43:40 -0400 (EDT)
16768          Message-Id: <199809011643.MAA05702@sundown.cs.cornell.edu>
16769          Subject: installhtml script needs work
16770  Branch: perl
16771        ! installhtml
16772 ____________________________________________________________________________
16773 [  1831] By: gsar                                  on 1998/09/23  07:19:30
16774     Log: document 'U' magic with examples
16775          From: Alan Burlison <Alan.Burlison@UK.Sun.com>
16776          Date: Tue, 1 Sep 1998 15:54:06 +0100 (BST)
16777          Message-Id: <199809011455.PAA00631@sale-wts>
16778          Subject: Re: Looking for some XS MAGIC examples...
16779  Branch: perl
16780        ! pod/perlguts.pod
16781 ____________________________________________________________________________
16782 [  1830] By: gsar                                  on 1998/09/23  07:16:43
16783     Log: From: pvhp@forte.com (Peter Prymmer)
16784          Date: Mon, 31 Aug 98 17:13:49 PDT
16785          Message-Id: <9809010013.AA06737@forte.com>
16786          Subject: [PATCH: 5.005_02; yet another system configuration tip for OS/390]
16787  Branch: perl
16788        ! README.os390
16789 ____________________________________________________________________________
16790 [  1829] By: gsar                                  on 1998/09/23  07:15:08
16791     Log: fix problematic typecast in filter_del()
16792          From: Mark P Lutz <tecmpl1@triton.ca.boeing.com>
16793          Date: Mon, 31 Aug 1998 21:13:11 GMT
16794          Message-Id: <199808312113.VAA53356@triton.ca.boeing.com>
16795          Subject: perl5.005_02 does not build on Cray T90
16796  Branch: perl
16797        ! toke.c
16798 ____________________________________________________________________________
16799 [  1828] By: gsar                                  on 1998/09/23  07:11:34
16800     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16801          Date: Mon, 31 Aug 1998 14:52:10 -0400 (EDT)
16802          Message-Id: <199808311852.OAA24676@monk.mps.ohio-state.edu>
16803          Subject: [PATCH 5.005_5*] (?>) broken in RE
16804  Branch: perl
16805        ! regexec.c t/op/re_tests
16806 ____________________________________________________________________________
16807 [  1827] By: gsar                                  on 1998/09/23  07:09:50
16808     Log: U/WIN testsuite patches from Joe Buehler <jhpb@hekimian.com>
16809  Branch: perl
16810        ! t/op/grent.t t/op/groups.t
16811 ____________________________________________________________________________
16812 [  1826] By: gsar                                  on 1998/09/23  07:03:16
16813     Log: From: Jarkko Hietaniemi <jhi@iki.fi>
16814          Date: Wed, 12 Aug 1998 22:41:37 +0300 (EET DST)
16815          Message-Id: <199808121941.WAA06263@alpha.hut.fi>
16816          Subject: [PATCH] 5.004_50 or 5.005_02: get rid of interp.sym because not even AIX needs it
16817  Branch: perl
16818        - interp.sym
16819        ! MANIFEST Makefile.SH embed.pl perl_exp.SH
16820 ____________________________________________________________________________
16821 [  1825] By: gsar                                  on 1998/09/23  06:56:40
16822     Log: re-introduce change#1703
16823  Branch: perl
16824        ! ext/re/re.pm pod/perlre.pod regcomp.c regexec.c thrdvar.h
16825 ____________________________________________________________________________
16826 [  1824] By: gsar                                  on 1998/09/23  06:44:19
16827     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16828          Date: Sat, 29 Aug 1998 17:38:30 -0400 (EDT)
16829          Message-Id: <199808292138.RAA18359@monk.mps.ohio-state.edu>
16830          Subject: [PATCH 5.005_*] Protect debugger from nonlocal exits
16831  Branch: perl
16832        ! lib/perl5db.pl
16833 ____________________________________________________________________________
16834 [  1823] By: gsar                                  on 1998/09/23  06:41:34
16835         Log: From: Joe Buehler <jhpb@hekimian.com>
16836              Date: 29 Aug 1998 17:13:28 -0400
16837              Message-ID: <yd37lzro5jb.fsf@pandora.hekimian.com>
16838              Subject: patches for perl 5.005_51 under U/WIN
16839      Branch: perl
16840            + hints/uwin.sh
16841            ! Configure installman lib/ExtUtils/MM_Unix.pm makedepend.SH
16842            ! t/lib/posix.t
16843 ____________________________________________________________________________
16844 [  1822] By: gsar                                  on 1998/09/23  06:36:59
16845         Log: add missing C<no utf8;> tweak from Larry
16846      Branch: perl
16847            ! t/op/subst.t
16848 ____________________________________________________________________________
16849 [  1821] By: gsar                                  on 1998/09/23  06:27:51
16850         Log: s/runops/CALLRUNOPS/
16851      Branch: perl
16852            ! cc_runtime.h
16853 ____________________________________________________________________________
16854 [  1820] By: gsar                                  on 1998/09/23  06:24:49
16855         Log: rename t/pragma/warn-* to t/pragma/warn/*, be 8.3-friendly
16856      Branch: perl
16857           +> t/pragma/warn/1global t/pragma/warn/2use t/pragma/warn/3both
16858           +> t/pragma/warn/4lint t/pragma/warn/5nolint t/pragma/warn/doio
16859           +> t/pragma/warn/gv t/pragma/warn/mg t/pragma/warn/op
16860           +> t/pragma/warn/perl t/pragma/warn/perly t/pragma/warn/pp
16861           +> t/pragma/warn/pp_ctl t/pragma/warn/pp_hot t/pragma/warn/pp_sys
16862           +> t/pragma/warn/regcomp t/pragma/warn/regexec t/pragma/warn/sv
16863           +> t/pragma/warn/taint t/pragma/warn/toke t/pragma/warn/universal
16864           +> t/pragma/warn/util
16865            - t/pragma/warn-1global t/pragma/warn-2use t/pragma/warn-3both
16866            - t/pragma/warn-4lint t/pragma/warn-5nolint t/pragma/warn-doio
16867            - t/pragma/warn-gv t/pragma/warn-mg t/pragma/warn-op
16868            - t/pragma/warn-perl t/pragma/warn-perly t/pragma/warn-pp
16869            - t/pragma/warn-pp_ctl t/pragma/warn-pp_hot t/pragma/warn-pp_sys
16870            - t/pragma/warn-regcomp t/pragma/warn-regexec t/pragma/warn-sv
16871            - t/pragma/warn-taint t/pragma/warn-toke t/pragma/warn-universal
16872            - t/pragma/warn-util
16873            ! MANIFEST t/pragma/warning.t
16874 ____________________________________________________________________________
16875 [  1819] By: gsar                                  on 1998/09/23  06:08:46
16876         Log: make \(%foo) return refs to values (not copies of values)
16877              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
16878              Date: Fri, 28 Aug 1998 20:46:10 -0700 (PDT)
16879              Message-ID: <13799.30680.47765.352558@fre-76-120.reshall.berkeley.edu>
16880              --
16881              From: Roderick Schertler <roderick@argon.org>
16882              Date: Sat, 29 Aug 1998 00:58:33 -0400
16883              Message-ID: <29894.904366713@eeyore.ibcinc.com>
16884              Subject: Re: \(%x) problems
16885      Branch: perl
16886            ! doop.c pod/perlref.pod
16887 ____________________________________________________________________________
16888 [  1818] By: gsar                                  on 1998/09/23  06:05:08
16889         Log: make h2xs generate ANSI prototypes
16890      Branch: perl
16891            ! utils/h2xs.PL
16892 ____________________________________________________________________________
16893 [  1817] By: gsar                                  on 1998/09/23  05:57:16
16894         Log: updated usethreads hints for hpux 10.X
16895              From: Matthew T Harden <mthard@mthard1.monsanto.com>
16896              Date: Fri, 28 Aug 1998 14:10:42 GMT
16897              Message-Id: <199808281410.AA11058@mthard1.monsanto.com>
16898              Subject: Re: OK: perl 5.00502 on PA-RISC1.1-thread 10.20 (UNINSTALLED)
16899      Branch: perl
16900            ! hints/hpux.sh perl.h
16901 ____________________________________________________________________________
16902 [  1816] By: gsar                                  on 1998/09/23  05:53:31
16903         Log: don't create empty directories in installperl
16904              From: Robin Barker <rmb1@cise.npl.co.uk>
16905              Date: Fri, 21 Aug 1998 11:29:24 +0100 (BST)
16906              Message-Id: <199808211029.LAA00551@cyclone.cise.npl.co.uk>
16907              Subject: [PATCH 5.005_02] install: empty dirs
16908      Branch: perl
16909            ! installperl
16910 ____________________________________________________________________________
16911 [  1815] By: gsar                                  on 1998/09/23  05:50:36
16912         Log: make behavior of /(a{3})+/ like /(aaa)+/ w.r.t where it matches
16913              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16914              Date: Fri, 21 Aug 1998 05:41:02 -0400 (EDT)
16915              Message-Id: <199808210941.FAA16467@monk.mps.ohio-state.edu>
16916              Subject: Re: your mail
16917      Branch: perl
16918            ! regexec.c t/op/re_tests
16919 ____________________________________________________________________________
16920 [  1814] By: gsar                                  on 1998/09/23  05:45:17
16921         Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
16922              Date: Thu, 20 Aug 1998 20:59:03 -0400
16923              Message-ID: <19980820205903.A12908@O2.chapin.edu>
16924              Subject: [PATCH] h2ph misquotes #error directives
16925      Branch: perl
16926            ! t/lib/h2ph.pht utils/h2ph.PL
16927 ____________________________________________________________________________
16928 [  1813] By: gsar                                  on 1998/09/23  05:42:41
16929         Log: patch to support computed regular subexpressions
16930              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
16931              Date: Thu, 20 Aug 1998 15:19:50 -0400 (EDT)
16932              Message-Id: <199808201919.PAA04692@monk.mps.ohio-state.edu>
16933              Subject: [5.005_5* PATCH] Postponed RE - now!
16934      Branch: perl
16935            ! embedvar.h objXSUB.h pod/perlre.pod regcomp.c regexec.c
16936            ! t/op/pat.t t/op/re_tests thrdvar.h toke.c
16937 ____________________________________________________________________________
16938 [  1812] By: gsar                                  on 1998/09/23  05:26:26
16939         Log: better CR-handling on shebang line and in formats (fixed variant of
16940              patch suggested by Igor Sysoev <igor@nitek.ru>)
16941      Branch: perl
16942            ! perl.c toke.c
16943 ____________________________________________________________________________
16944 [  1811] By: gsar                                  on 1998/09/23  04:35:46
16945         Log: document non-loopish blocks better
16946              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
16947              Date: Tue, 18 Aug 1998 12:28:36 +0100
16948              Message-Id: <E0z8jwK-00057Z-00@ursa.cus.cam.ac.uk>
16949              Subject: Re: next in do {} while block gives error message
16950      Branch: perl
16951            ! pod/perlfunc.pod
16952 ____________________________________________________________________________
16953 [  1810] By: gsar                                  on 1998/09/23  04:12:05
16954         Log: fix bogus integerization of pop()'s return value
16955              From: Gurusamy Sarathy <gsar@engin.umich.edu>
16956              Date: Sat, 15 Aug 1998 23:27:54 -0400
16957              Message-Id: <199808160327.XAA05186@aatma.engin.umich.edu>
16958              Subject: Re: Complex expression does integer arithmetic 
16959      Branch: perl
16960            ! opcode.h opcode.pl
16961 ____________________________________________________________________________
16962 [  1809] By: gsar                                  on 1998/09/23  04:09:43
16963         Log: tweak README.win32
16964      Branch: perl
16965            ! README.win32
16966 ____________________________________________________________________________
16967 [  1808] By: gsar                                  on 1998/09/23  03:40:57
16968         Log: better diagnostic for do{} used as lvalue
16969      Branch: perl
16970            ! op.c pod/perlport.pod
16971 ____________________________________________________________________________
16972 [  1807] By: gsar                                  on 1998/09/23  03:38:30
16973         Log: enable PERL_SBRK_VIA_MALLOC on OPENSTEP-Mach
16974              From: hansm@icgroup.nl
16975              Date: Tue, 11 Aug 98 21:08:51 +0200
16976              Message-Id: <9808111907.AA21903@icgned.icgroup.nl>
16977              Subject: Not OK: perl 5.00551 on OPENSTEP-Mach 4_1 (UNINSTALLED)
16978      Branch: perl
16979            ! malloc.c
16980 ____________________________________________________________________________
16981 [  1806] By: gsar                                  on 1998/09/23  03:36:08
16982         Log: support make written in perl (aka "pmake") on win32
16983      Branch: perl
16984            ! lib/ExtUtils/MM_Win32.pm
16985 ____________________________________________________________________________
16986 [  1805] By: gsar                                  on 1998/09/23  03:30:07
16987         Log: fix mismatched UV/U32 types for to_utf8_*()
16988      Branch: perl
16989            ! utf8.c
16990 ____________________________________________________________________________
16991 [  1804] By: gsar                                  on 1998/09/23  03:22:22
16992         Log: From: Laszlo Molnar <molnarl@cdata.tvnet.hu>
16993              Date: Sun, 9 Aug 1998 22:38:23 +0200
16994              Message-ID: <19980809223823.A215@cdata.tvnet.hu>
16995              Subject: [PATCH 5.5002] dos-djgpp update
16996      Branch: perl
16997            ! t/io/fs.t
16998 ____________________________________________________________________________
16999 [  1803] By: gsar                                  on 1998/09/23  03:20:13
17000         Log: apply minimal variant of patch (sent via private mail)
17001              From: jarkko.hietaniemi@research.nokia.com (Jarkko Hietaniemi)
17002              Date: Wed, 12 Aug 1998 15:42:35 +0300
17003              Message-Id: <199808121242.PAA29761@comanche.spices>
17004              Subject: [PATCH] 5.004_02 or 5.005_51: fix regexp and tr character ranges in non-ASCII lands
17005      Branch: perl
17006            ! MANIFEST perl.h pod/perllocale.pod pod/perlop.pod
17007            ! pod/perlre.pod regcomp.c t/pragma/locale.t toke.c
17008 ____________________________________________________________________________
17009 [  1802] By: gsar                                  on 1998/09/23  03:03:39
17010         Log: adjust searchdict.t for EBCDIC (still needs documenting)
17011              From: pvhp@forte.com (Peter Prymmer)
17012              Date: Thu, 6 Aug 98 18:09:39 PDT
17013              Message-Id: <9808070109.AA06158@forte.com>
17014              Subject: [PATCH 5.005_02-TRIAL2] potential modification to t/lib/searchdict.t
17015      Branch: perl
17016            ! README.os390 t/lib/searchdict.t
17017 ____________________________________________________________________________
17018 [  1801] By: gsar                                  on 1998/09/23  02:54:15
17019         Log: silence redefined warning for XS(INIT) {}
17020      Branch: perl
17021            ! op.c
17022 ____________________________________________________________________________
17023 [  1800] By: gsar                                  on 1998/09/23  02:42:23
17024         Log: support match indices via special variables @- and @+
17025              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
17026              Date: Tue, 21 Jul 1998 23:00:35 -0400 (EDT)
17027              Message-Id: <199807220300.XAA16081@monk.mps.ohio-state.edu>
17028              Subject: [PATCH 5.004_76] @- and @+
17029      Branch: perl
17030            ! av.c embed.h global.sym gv.c mg.c objXSUB.h objpp.h perl.h
17031            ! pod/perlvar.pod proto.h regnodes.h sv.c t/op/pat.t toke.c
17032 ____________________________________________________________________________
17033 [  1799] By: gsar                                  on 1998/09/23  01:44:31
17034         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
17035              Date: Tue, 11 Aug 1998 18:43:29 -0400 (EDT)
17036              Message-Id: <199808112243.SAA14243@monk.mps.ohio-state.edu>
17037              Subject: Re: Segmentation fault for /a*abc?xyz+pqr{3}ab{2,}xy{4,5}pq{0,6}AB{0,}zz/
17038      Branch: perl
17039            ! regcomp.c t/op/re_tests
17040 ____________________________________________________________________________
17041 [  1798] By: gsar                                  on 1998/09/23  01:39:23
17042         Log: integrate maint-5.005 changes (except conflicting change#1794)
17043      Branch: perl
17044            ! Changes
17045           !> objXSUB.h op.c pod/perlfunc.pod pp.c regcomp.c t/op/re_tests
17046           !> toke.c util.c win32/config.bc win32/config.gc win32/config.vc
17047           !> win32/win32.h
17048 ____________________________________________________________________________
17049 [  1797] By: gsar                                  on 1998/09/23  01:32:36
17050         Log: add note to win32/Makefile about setting CCHOME
17051      Branch: perl
17052            ! win32/Makefile win32/makefile.mk
17053 ____________________________________________________________________________
17054 [  1796] By: gsar                                  on 1998/09/23  01:31:32
17055         Log: perl.pod tweak
17056      Branch: perl
17057            ! pod/perl.pod
17058 ____________________________________________________________________________
17059 [  1795] By: gsar                                  on 1998/09/21  20:34:10
17060         Log: make xsubpp generate well-formed code with CAPI && !PERL_OBJECT
17061      Branch: perl
17062            ! lib/ExtUtils/xsubpp
17063 ____________________________________________________________________________
17064 [  1789] By: gsar                                  on 1998/09/18  18:01:37
17065         Log: delay freeing itervar so C<for $i (@a) { return($i) }> works
17066      Branch: perl
17067            ! cop.h t/cmd/for.t
17068 ____________________________________________________________________________
17069 [  1788] By: gsar                                  on 1998/09/17  02:19:11
17070         Log: resync win32/config.?c with Porting/config.sh to pick up apiversion
17071      Branch: perl
17072            ! win32/config.bc win32/config.gc win32/config.vc
17073 ____________________________________________________________________________
17074 [  1787] By: gsar                                  on 1998/09/17  01:45:14
17075         Log: suppress bogus warning on C<sub x {} x()>
17076      Branch: perl
17077            ! toke.c
17078 ____________________________________________________________________________
17079 [  1786] By: gsar                                  on 1998/09/17  01:42:51
17080         Log: ntohl typo in objXSUB.h
17081      Branch: perl
17082            ! objXSUB.h
17083 ____________________________________________________________________________
17084 [  1785] By: gsar                                  on 1998/09/17  01:41:48
17085         Log: fill gaps in sig_* entries in win32/config.?c
17086      Branch: perl
17087            ! win32/config.bc win32/config.gc win32/config.vc
17088 ____________________________________________________________________________
17089 [  1781] By: larry                                 on 1998/09/05  23:48:24
17090         Log: tr/// logic was hosed under utf8
17091      Branch: perl
17092            ! doop.c op.c op.h pp.c proto.h
17093 ____________________________________________________________________________
17094 [  1780] By: larry                                 on 1998/09/05  23:44:16
17095         Log: several new tests needed tweaking to work under utf8
17096      Branch: perl
17097            ! t/comp/require.t t/op/pack.t t/op/substr.t
17098 ____________________________________________________________________________
17099 [  1779] By: larry                                 on 1998/09/05  23:41:42
17100         Log: index() applied BM optimization to wrong argument
17101      Branch: perl
17102            ! op.c util.c
17103 ____________________________________________________________________________
17104 [  1778] By: larry                                 on 1998/09/05  23:38:29
17105         Log: Implicit require during compile reset line numbering
17106      Branch: perl
17107            ! pp_ctl.c
17108
17109 ----------------
17110 Version 5.005_51
17111 ----------------
17112
17113 ____________________________________________________________________________
17114 [  1777] By: gsar                                  on 1998/08/10  07:02:38
17115         Log: various tweaks: fix signed vs. unsigned problems that prevented C++
17116              builds; add sundry PERL_OBJECT scaffolding to get it to build; fix
17117              lexical warning testsuite for win32
17118      Branch: perl
17119            ! Changes doop.c embed.h global.sym objXSUB.h objpp.h op.c
17120            ! pod/perlhist.pod pp.c pp_hot.c proto.h regcomp.c regexec.c
17121            ! sv.c t/pragma/warn-doio t/pragma/warn-mg t/pragma/warn-op
17122            ! t/pragma/warn-regexec toke.c utf8.c win32/GenCAPI.pl
17123            ! win32/Makefile win32/makefile.mk
17124 ____________________________________________________________________________
17125 [  1776] By: gsar                                  on 1998/08/09  17:53:48
17126         Log: fix coredump with MULTIPLICITY (ckWARN() needs early curcop init)
17127      Branch: perl
17128            ! Changes MANIFEST perl.c pod/perlhist.pod
17129 ____________________________________________________________________________
17130 [  1775] By: gsar                                  on 1998/08/09  14:35:33
17131         Log: tweak warning test
17132      Branch: perl
17133            ! t/pragma/warn-toke
17134 ____________________________________________________________________________
17135 [  1774] By: gsar                                  on 1998/08/09  14:13:46
17136         Log: add missing dTHR; notes for test failures due to small stacksize
17137      Branch: perl
17138            ! doio.c gv.c op.c sv.c t/pragma/warn-mg t/pragma/warn-regexec
17139            ! toke.c universal.c util.c
17140 ____________________________________________________________________________
17141 [  1773] By: gsar                                  on 1998/08/09  11:31:53
17142         Log: lexical warnings; tweaks to places that didn't apply correctly
17143              From:    pmarquess@bfsec.bt.co.uk (Paul Marquess)
17144              Date:    Wed, 29 Jul 1998 09:28:45 BST
17145              Message-Id: <9807290828.AA26286@claudius.bfsec.bt.co.uk>
17146              Subject: lexical warnings patch for 5.005_50
17147      Branch: perl
17148            + README.lexwarn lib/warning.pm t/pragma/warn-2use
17149            + t/pragma/warn-3both t/pragma/warn-4lint t/pragma/warn-5nolint
17150            + t/pragma/warn-doio t/pragma/warn-gv t/pragma/warn-mg
17151            + t/pragma/warn-op t/pragma/warn-perl t/pragma/warn-perly
17152            + t/pragma/warn-pp t/pragma/warn-pp_ctl t/pragma/warn-pp_hot
17153            + t/pragma/warn-pp_sys t/pragma/warn-regcomp
17154            + t/pragma/warn-regexec t/pragma/warn-sv t/pragma/warn-taint
17155            + t/pragma/warn-toke t/pragma/warn-universal t/pragma/warn-util
17156            + warning.h warning.pl
17157            ! Changes MANIFEST Makefile.SH cop.h doio.c global.sym gv.c
17158            ! lib/diagnostics.pm mg.c op.c op.h perl.c perl.h pp.c pp_ctl.c
17159            ! pp_hot.c pp_sys.c proto.h regcomp.c regexec.c sv.c t/op/tie.t
17160            ! t/pragma/warn-1global t/pragma/warning.t taint.c toke.c
17161            ! universal.c util.c
17162 ____________________________________________________________________________
17163 [  1772] By: gsar                                  on 1998/08/08  23:06:00
17164         Log: bump patchlevel to 5.005_51
17165      Branch: perl
17166            ! patchlevel.h win32/Makefile win32/config_H.bc
17167            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
17168 ____________________________________________________________________________
17169 [  1771] By: gsar                                  on 1998/08/08  23:01:57
17170         Log: fix bogus warning on "\x{123}"
17171              From: pmarquess@claudius.bfsec.bt.co.uk (Paul Marquess)
17172              Date: Mon, 27 Jul 1998 06:16:15 +0100 (BST)
17173              Message-Id: <9807270534.AA11102@claudius.bfsec.bt.co.uk>
17174              Subject: [5.005_50 PATCH] Some unicode problems
17175      Branch: perl
17176            ! regcomp.c toke.c
17177 ____________________________________________________________________________
17178 [  1770] By: gsar                                  on 1998/08/08  22:56:55
17179         Log: hide dup symbol for static build of ext/re
17180              From: Dominic Dunlop <domo@ppp72.vo.lu>
17181              Date: Wed, 29 Jul 1998 11:09:56 +0100 (WET DST)
17182              Message-Id: <199807291009.LAA08935@ppp72.vo.lu>
17183              Subject: Not OK: perl 5.00550 on powerpc-machten 4.1 [BOGUS PATCH]
17184      Branch: perl
17185            ! regcomp.c
17186 ____________________________________________________________________________
17187 [  1769] By: gsar                                  on 1998/08/08  22:45:06
17188         Log: fix double free on -Mutf8 -e '$b=uc("")'
17189              From: larry@wall.org (Larry Wall)
17190              Date: Fri, 7 Aug 1998 14:42:43 -0700
17191              Message-Id: <199808072142.OAA14920@wall.org>
17192              Subject: [PATCH 5.005_50]: uc("") and lc("") under utf8 fails
17193      Branch: perl
17194            ! pp.c
17195 ____________________________________________________________________________
17196 [  1768] By: gsar                                  on 1998/08/08  22:42:29
17197         Log: substr() assumes utf8 without say-so
17198              From: larry@wall.org (Larry Wall)
17199              Date: Fri, 7 Aug 1998 12:25:12 -0700
17200              Message-Id: <199808071925.MAA13436@wall.org>
17201              Subject: [PATCH 5.005_50] substr bug?
17202      Branch: perl
17203            ! pp.c
17204 ____________________________________________________________________________
17205 [  1767] By: gsar                                  on 1998/08/08  22:38:25
17206         Log: fix intolerance of SWASHes for blank lines
17207              From: Gisle Aas <aas@sn.no>
17208              Date: 06 Aug 1998 23:28:57 +0200
17209              Message-ID: <m3emutkdeu.fsf@furu.g.aas.no>
17210              Subject: Re: Re[2]: another joyride begins
17211      Branch: perl
17212            ! lib/utf8_heavy.pl
17213 ____________________________________________________________________________
17214 [  1766] By: gsar                                  on 1998/08/08  22:33:10
17215         Log: utf8 doc tweak
17216              From: Gisle Aas <aas@sn.no>
17217              Date: 05 Aug 1998 00:41:04 +0200
17218              Message-ID: <m3yat4wetb.fsf@furu.g.aas.no>
17219              Subject: Matching clumps
17220      Branch: perl
17221            ! lib/utf8.pm
17222 ____________________________________________________________________________
17223 [  1765] By: gsar                                  on 1998/08/08  22:31:37
17224         Log: kill bogus warning from -we 'use utf8; $_="\x{FF}"'
17225              From: Gisle Aas <aas@sn.no>
17226              Date: 04 Aug 1998 22:56:11 +0200
17227              Message-ID: <m3yat4sbys.fsf@furu.g.aas.no>
17228              Subject: Re: another joyride begins
17229      Branch: perl
17230            ! lib/utf8_heavy.pl
17231 ____________________________________________________________________________
17232 [  1764] By: gsar                                  on 1998/08/08  22:28:43
17233         Log: From: larry@wall.org (Larry Wall)
17234              Date: Tue, 4 Aug 1998 17:04:51 -0700
17235              Message-Id: <199808050004.RAA22592@wall.org>
17236              Subject: [PATCH 5.005_50] \pX not implemented!
17237      Branch: perl
17238            ! regcomp.c
17239 ____________________________________________________________________________
17240 [  1763] By: gsar                                  on 1998/08/08  22:27:15
17241         Log: From: Stephen McCamant <alias@mcs.com>
17242              Date: Sun,  2 Aug 1998 16:33:18 -0500 (CDT)
17243              Message-ID: <13764.55116.921952.837027@alias-2.pr.mcs.net>
17244              Subject: [PATCH] Eliminate superfluous RV2p[AH]Vs in oops[AH]V()
17245      Branch: perl
17246            ! op.c
17247 ____________________________________________________________________________
17248 [  1762] By: gsar                                  on 1998/08/08  22:26:09
17249         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
17250              Date: Sun, 2 Aug 1998 22:05:28 +0300 (EET DST)
17251              Message-Id: <199808021905.WAA10592@alpha.hut.fi>
17252              Subject: [PATCH] 5.005_02-TRIAL1 or 5.004_05-MAINT_TRIAL_5: t/op/{pw,gr}ent.t
17253      Branch: perl
17254            + t/op/grent.t t/op/pwent.t
17255            ! MANIFEST
17256 ____________________________________________________________________________
17257 [  1761] By: gsar                                  on 1998/08/08  22:21:52
17258         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
17259              Date: Thu, 30 Jul 1998 19:23:56 -0400 (EDT)
17260              Message-Id: <199807302323.TAA21175@monk.mps.ohio-state.edu>
17261              Subject: [5.005_50 PATCH] misprint in RE engine
17262      Branch: perl
17263            ! regexec.c t/op/re_tests
17264 ____________________________________________________________________________
17265 [  1760] By: gsar                                  on 1998/08/08  22:18:54
17266         Log: integrate maint-5.005 changes into mainline
17267      Branch: perl
17268           +> Porting/fixCORE README.os390 ebcdic.c win32/des_fcrypt.patch
17269           !> (integrate 138 files)
17270 ____________________________________________________________________________
17271 [  1672] By: gsar                                  on 1998/07/27  18:35:28
17272         Log: create new Changes
17273      Branch: perl
17274            + Changes
17275            ! Changes5.005 MANIFEST
17276 ____________________________________________________________________________
17277 [  1671] By: gsar                                  on 1998/07/27  18:30:57
17278         Log: rename Changes --> Changes5.005
17279      Branch: perl
17280           +> Changes5.005
17281            - Changes
17282 ____________________________________________________________________________
17283 [  1670] By: gsar                                  on 1998/07/27  18:10:14
17284         Log: integrate 5.005_01 changes from maint
17285      Branch: perl
17286            ! Changes
17287           !> README.win32 pod/perldelta.pod proto.h toke.c win32/GenCAPI.pl
17288           !> win32/win32.c
17289 ____________________________________________________________________________
17290 [  1667] By: nick                                  on 1998/07/26  14:31:01
17291         Log: Add dTHR so that it compiles miniperl in threaded mode
17292      Branch: perl
17293            ! doop.c mg.c regcomp.c regexec.c
17294 ____________________________________________________________________________
17295 [  1666] By: nick                                  on 1998/07/26  13:01:10
17296         Log: Resolve ansiperl against mainline (@1648?)
17297              Unclear that change number has "taken".
17298      Branch: ansiperl
17299           +> (branch 169 files)
17300            - ObjXSub.h XSLock.h compat3.sym fixvars pod/perld4.pod
17301           !> (integrate 131 files)
17302
17303 ----------------
17304 Version 5.005_50
17305 ----------------
17306
17307 ____________________________________________________________________________
17308 [  1665] By: gsar                                  on 1998/07/26  05:38:48
17309         Log: add trailing newline to file
17310      Branch: perl
17311            ! Changes lib/unicode/blocks.txt
17312 ____________________________________________________________________________
17313 [  1664] By: gsar                                  on 1998/07/26  05:08:48
17314         Log: integrate proto.h additions from maint-5.005
17315      Branch: perl
17316           !> pod/perlhist.pod proto.h
17317 ____________________________________________________________________________
17318 [  1663] By: gsar                                  on 1998/07/26  05:07:05
17319         Log: add new files to MANIFEST; add missing prototypes to proto.h;
17320              s/PL_utf8skip/utf8skip/ for now, or we end up with Perl_PL_;
17321              add typecasts to silence warnings; tweaks for win32 builds
17322      Branch: perl
17323            ! MANIFEST embed.h global.sym proto.h regexec.c toke.c utf8.h
17324            ! win32/Makefile win32/makefile.mk
17325 ____________________________________________________________________________
17326 [  1662] By: gsar                                  on 1998/07/26  05:01:52
17327         Log: add missing sv_*_mg() prototypes in proto.h, update perlhist.pod
17328      Branch: maint-5.005/perl
17329            ! pod/perlhist.pod proto.h
17330 ____________________________________________________________________________
17331 [  1661] By: gsar                                  on 1998/07/26  02:52:48
17332         Log: up patchlevel to 5.005_50
17333      Branch: perl
17334            ! Changes patchlevel.h win32/Makefile win32/config_H.bc
17335            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
17336 ____________________________________________________________________________
17337 [  1660] By: gsar                                  on 1998/07/26  02:43:57
17338         Log: integrate utfperl
17339      Branch: perl
17340           +> (branch 162 files)
17341           !> (integrate 29 files)
17342 ____________________________________________________________________________
17343 [  1659] By: gsar                                  on 1998/07/26  02:38:22
17344         Log: integrate maint-5.005 changes
17345      Branch: perl
17346           !> Changes README.vms djgpp/fixpmain emacs/ptags hints/beos.sh
17347           !> lib/Math/BigInt.pm pod/perldelta.pod pod/perlmodinstall.pod
17348           !> pod/perltoc.pod pp_sys.c t/lib/bigintpm.t
17349           !> vms/descrip_mms.template vms/subconfigure.com
17350 ____________________________________________________________________________
17351 [  1658] By: gsar                                  on 1998/07/26  02:23:46
17352         Log: VMS patches from Dan Sugalski <sugalskd@osshe.edu>
17353              Date: Fri, 24 Jul 1998 11:38:25 -0700
17354              Message-Id: <3.0.5.32.19980724113825.00a067b0@ous.edu>
17355              Subject: [PATCH 5.005] version number problem with VMS (Corrected)
17356              --
17357              Date: Fri, 24 Jul 1998 12:30:36 -0700
17358              Message-Id: <3.0.5.32.19980724123036.009f0390@ous.edu>
17359              Subject: [PATCH 5.005]Tweaks to README.vms
17360              --
17361              Date: Sat, 25 Jul 1998 17:56:55 -0700 (PDT)
17362              Message-ID: <Pine.GSO.3.96.980725175626.15740D-100000@netserve.ous.edu>
17363              Subject: [PATCH 5.005] Final build cleanup patch
17364      Branch: maint-5.005/perl
17365            ! README.vms vms/descrip_mms.template vms/subconfigure.com
17366 ____________________________________________________________________________
17367 [  1657] By: gsar                                  on 1998/07/26  02:19:50
17368         Log: another platform where pp_sselect() needs a whole fd_set buffer
17369              From: Lupe Christoph <lupe@alanya.m.isar.de>
17370              Date: Sat, 25 Jul 1998 19:49:33 +0200 (MET DST)
17371              Message-Id: <199807251749.TAA22347@alanya.m.isar.de>
17372              Subject: Patch for Not OK: perl 5.005 on i86pc-solaris-thread 2.6
17373      Branch: maint-5.005/perl
17374            ! pp_sys.c
17375 ____________________________________________________________________________
17376 [  1656] By: gsar                                  on 1998/07/26  02:12:46
17377         Log: fix problem building modules on dos-djgpp
17378              From: Laszlo Molnar <molnarl@cdata.tvnet.hu>
17379              Date: Sat, 25 Jul 1998 00:53:39 +0200
17380              Message-ID: <19980725005339.C222@cdata.tvnet.hu>
17381              Subject: [PATCH 5.005] dos-djgpp and modules problem
17382      Branch: maint-5.005/perl
17383            ! djgpp/fixpmain
17384 ____________________________________________________________________________
17385 [  1655] By: gsar                                  on 1998/07/26  02:11:09
17386         Log: From: Tom Spindler <dogcow@home.merit.edu>
17387              Date: Wed, 22 Jul 1998 16:11:07 -0400
17388              Message-ID: <19980722161107.A16813@home.merit.edu>
17389              Subject: [PATCH 5.005] BeOS tweak
17390      Branch: maint-5.005/perl
17391            ! hints/beos.sh
17392 ____________________________________________________________________________
17393 [  1654] By: gsar                                  on 1998/07/26  02:09:29
17394         Log: various pod tweaks
17395      Branch: maint-5.005/perl
17396            ! Changes pod/perldelta.pod pod/perlmodinstall.pod
17397            ! pod/perltoc.pod
17398 ____________________________________________________________________________
17399 [  1653] By: gsar                                  on 1998/07/26  02:05:46
17400         Log: fix emacs/ptags for PL_* changes
17401              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
17402              Date: Fri, 24 Jul 1998 03:12:35 -0400 (EDT)
17403              Message-Id: <199807240712.DAA04204@monk.mps.ohio-state.edu>
17404              Subject: [PATCH 5.004_76] Yet better ptags
17405      Branch: maint-5.005/perl
17406            ! emacs/ptags
17407 ____________________________________________________________________________
17408 [  1652] By: gsar                                  on 1998/07/26  02:03:01
17409         Log: fix behavior of <=> on bigints
17410              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
17411              Message-Id: <E0yzlfF-0004kz-00@taurus.cus.cam.ac.uk>
17412              Date: Fri, 24 Jul 1998 18:29:53 +0100
17413              Subject: [PATCH] Re: Math::BigInt <=> op is not correct.
17414      Branch: maint-5.005/perl
17415            ! lib/Math/BigInt.pm t/lib/bigintpm.t
17416 ____________________________________________________________________________
17417 [  1651] By: larry                                 on 1998/07/24  05:44:33
17418         Log: Here are the long-expected Unicode/UTF-8 modifications.
17419      Branch: utfperl
17420            + lib/unicode/ArabLink.pl lib/unicode/ArabLnkGrp.pl
17421            + lib/unicode/Bidirectional.pl lib/unicode/Block.pl
17422            + lib/unicode/Category.pl lib/unicode/CombiningClass.pl
17423            + lib/unicode/Decomposition.pl
17424            + lib/unicode/In/AlphabeticPresentationForms.pl
17425            + lib/unicode/In/Arabic.pl
17426            + lib/unicode/In/ArabicPresentationForms-A.pl
17427            + lib/unicode/In/ArabicPresentationForms-B.pl
17428            + lib/unicode/In/Armenian.pl lib/unicode/In/Arrows.pl
17429            + lib/unicode/In/BasicLatin.pl lib/unicode/In/Bengali.pl
17430            + lib/unicode/In/BlockElements.pl lib/unicode/In/Bopomofo.pl
17431            + lib/unicode/In/BoxDrawing.pl
17432            + lib/unicode/In/CJKCompatibility.pl
17433            + lib/unicode/In/CJKCompatibilityForms.pl
17434            + lib/unicode/In/CJKCompatibilityIdeographs.pl
17435            + lib/unicode/In/CJKSymbolsandPunctuation.pl
17436            + lib/unicode/In/CJKUnifiedIdeographs.pl
17437            + lib/unicode/In/CombiningDiacriticalMarks.pl
17438            + lib/unicode/In/CombiningHalfMarks.pl
17439            + lib/unicode/In/CombiningMarksforSymbols.pl
17440            + lib/unicode/In/ControlPictures.pl
17441            + lib/unicode/In/CurrencySymbols.pl lib/unicode/In/Cyrillic.pl
17442            + lib/unicode/In/Devanagari.pl lib/unicode/In/Dingbats.pl
17443            + lib/unicode/In/EnclosedAlphanumerics.pl
17444            + lib/unicode/In/EnclosedCJKLettersandMonths.pl
17445            + lib/unicode/In/GeneralPunctuation.pl
17446            + lib/unicode/In/GeometricShapes.pl lib/unicode/In/Georgian.pl
17447            + lib/unicode/In/Greek.pl lib/unicode/In/GreekExtended.pl
17448            + lib/unicode/In/Gujarati.pl lib/unicode/In/Gurmukhi.pl
17449            + lib/unicode/In/HalfwidthandFullwidthForms.pl
17450            + lib/unicode/In/HangulCompatibilityJamo.pl
17451            + lib/unicode/In/HangulJamo.pl lib/unicode/In/HangulSyllables.pl
17452            + lib/unicode/In/Hebrew.pl
17453            + lib/unicode/In/HighPrivateUseSurrogates.pl
17454            + lib/unicode/In/HighSurrogates.pl lib/unicode/In/Hiragana.pl
17455            + lib/unicode/In/IPAExtensions.pl lib/unicode/In/Kanbun.pl
17456            + lib/unicode/In/Kannada.pl lib/unicode/In/Katakana.pl
17457            + lib/unicode/In/Lao.pl lib/unicode/In/Latin-1Supplement.pl
17458            + lib/unicode/In/LatinExtended-A.pl
17459            + lib/unicode/In/LatinExtended-B.pl
17460            + lib/unicode/In/LatinExtendedAdditional.pl
17461            + lib/unicode/In/LetterlikeSymbols.pl
17462            + lib/unicode/In/LowSurrogates.pl lib/unicode/In/Malayalam.pl
17463            + lib/unicode/In/MathematicalOperators.pl
17464            + lib/unicode/In/MiscellaneousSymbols.pl
17465            + lib/unicode/In/MiscellaneousTechnical.pl
17466            + lib/unicode/In/NumberForms.pl
17467            + lib/unicode/In/OpticalCharacterRecognition.pl
17468            + lib/unicode/In/Oriya.pl lib/unicode/In/PrivateUse.pl
17469            + lib/unicode/In/SmallFormVariants.pl
17470            + lib/unicode/In/SpacingModifierLetters.pl
17471            + lib/unicode/In/Specials.pl
17472            + lib/unicode/In/SuperscriptsandSubscripts.pl
17473            + lib/unicode/In/Tamil.pl lib/unicode/In/Telugu.pl
17474            + lib/unicode/In/Thai.pl lib/unicode/In/Tibetan.pl
17475            + lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
17476            + lib/unicode/Is/BidiAN.pl lib/unicode/Is/BidiB.pl
17477            + lib/unicode/Is/BidiCS.pl lib/unicode/Is/BidiEN.pl
17478            + lib/unicode/Is/BidiES.pl lib/unicode/Is/BidiET.pl
17479            + lib/unicode/Is/BidiL.pl lib/unicode/Is/BidiON.pl
17480            + lib/unicode/Is/BidiR.pl lib/unicode/Is/BidiS.pl
17481            + lib/unicode/Is/BidiWS.pl lib/unicode/Is/C.pl
17482            + lib/unicode/Is/Cc.pl lib/unicode/Is/Cn.pl lib/unicode/Is/Co.pl
17483            + lib/unicode/Is/DCcircle.pl lib/unicode/Is/DCcompat.pl
17484            + lib/unicode/Is/DCfinal.pl lib/unicode/Is/DCfont.pl
17485            + lib/unicode/Is/DCinital.pl lib/unicode/Is/DCinitial.pl
17486            + lib/unicode/Is/DCisolated.pl lib/unicode/Is/DCnarrow.pl
17487            + lib/unicode/Is/DCnoBreak.pl lib/unicode/Is/DCsmall.pl
17488            + lib/unicode/Is/DCsquare.pl lib/unicode/Is/DCsub.pl
17489            + lib/unicode/Is/DCsuper.pl lib/unicode/Is/DCvertical.pl
17490            + lib/unicode/Is/DCwide.pl lib/unicode/Is/DecoCanon.pl
17491            + lib/unicode/Is/DecoCompat.pl lib/unicode/Is/Digit.pl
17492            + lib/unicode/Is/L.pl lib/unicode/Is/Ll.pl lib/unicode/Is/Lm.pl
17493            + lib/unicode/Is/Lo.pl lib/unicode/Is/Lower.pl
17494            + lib/unicode/Is/Lt.pl lib/unicode/Is/Lu.pl lib/unicode/Is/M.pl
17495            + lib/unicode/Is/Mc.pl lib/unicode/Is/Mirrored.pl
17496            + lib/unicode/Is/Mn.pl lib/unicode/Is/N.pl lib/unicode/Is/Nd.pl
17497            + lib/unicode/Is/No.pl lib/unicode/Is/P.pl lib/unicode/Is/Pd.pl
17498            + lib/unicode/Is/Pe.pl lib/unicode/Is/Po.pl
17499            + lib/unicode/Is/Print.pl lib/unicode/Is/Ps.pl
17500            + lib/unicode/Is/S.pl lib/unicode/Is/Sc.pl lib/unicode/Is/Sm.pl
17501            + lib/unicode/Is/So.pl lib/unicode/Is/Space.pl
17502            + lib/unicode/Is/Upper.pl lib/unicode/Is/Z.pl
17503            + lib/unicode/Is/Zl.pl lib/unicode/Is/Zp.pl lib/unicode/Is/Zs.pl
17504            + lib/unicode/JamoShort.pl lib/unicode/Makefile
17505            + lib/unicode/Name.pl lib/unicode/Number.pl
17506            + lib/unicode/To/Digit.pl lib/unicode/To/Lower.pl
17507            + lib/unicode/To/Title.pl lib/unicode/To/Upper.pl
17508            + lib/unicode/UnicodeData-Latest.txt lib/unicode/arabshp.txt
17509            + lib/unicode/blocks.txt lib/unicode/index2.txt
17510            + lib/unicode/jamo2.txt lib/unicode/mktables.PL
17511            + lib/unicode/names2.txt lib/unicode/props2.txt
17512            + lib/unicode/readme.txt lib/utf8.pm lib/utf8_heavy.pl t/UTEST
17513            + utf8.c utf8.h
17514            ! Makefile.SH doop.c embed.h embedvar.h global.sym handy.h mg.c
17515            ! op.c op.h perl.h perlvars.h pod/perlfunc.pod pod/perlop.pod
17516            ! pod/perlre.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
17517            ! regcomp.h regcomp.sym regexec.c regexp.h regnodes.h sv.c
17518            ! t/op/vec.t toke.c util.c vms/vmsish.h
17519 ____________________________________________________________________________
17520 [  1650] By: gsar                                  on 1998/07/24  04:06:48
17521         Log: create utfperl branch
17522      Branch: utfperl
17523           +> (branch 1079 files)
17524 ____________________________________________________________________________
17525 [  1649] By: gsar                                  on 1998/07/24  03:56:56
17526         Log: create maint-5.005 branch
17527      Branch: maint-5.005/perl
17528           +> (branch 1079 files)
17529 ____________________________________________________________________________
17530 [  1648] By: gsar                                  on 1998/07/24  03:36:35
17531         Log: un-checked-in 5.005 Changes  (this is 5.005 *exactly*)
17532      Branch: perl
17533            ! Changes
17534