somewhat untested PERL_OBJECT cleanups (C++isms mostly
[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       <molnarl@cdata.tvnet.hu>
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_58        Development release working toward 5.006
79 ----------------
80
81 ____________________________________________________________________________
82 [  3549] By: gsar                                  on 1999/06/24  22:41:17
83         Log: avoid race condition in the CAPI extension bootstrap handler
84      Branch: perl
85            ! lib/ExtUtils/xsubpp win32/GenCAPI.pl
86 ____________________________________________________________________________
87 [  3548] By: gsar                                  on 1999/06/24  22:39:53
88         Log: sanity check to cover the case when perl is installed into the
89              X:\ (drive root)
90      Branch: perl
91            ! win32/win32.c
92 ____________________________________________________________________________
93 [  3547] By: gsar                                  on 1999/06/22  19:30:32
94         Log: tweak RefHash to make intent clearer (suggested by John Dlugosz)
95      Branch: perl
96            ! lib/Tie/RefHash.pm
97 ____________________________________________________________________________
98 [  3544] By: jhi                                   on 1999/06/18  19:24:28
99         Log: Tidy up #3542 and #3543. 
100      Branch: cfgperl
101            ! t/pragma/locale.t util.c
102 ____________________________________________________________________________
103 [  3543] By: jhi                                   on 1999/06/18  10:28:45
104         Log: Spice up locale.t.
105      Branch: cfgperl
106            ! t/pragma/locale.t
107 ____________________________________________________________________________
108 [  3542] By: jhi                                   on 1999/06/17  22:42:03
109         Log: Fixed two long-standing locale bugs.
110              
111              Both problems were related to numeric locale which
112              controls the radix character aka the decimal separator.
113              (1) printf (and sprintf) were resetting the numeric locale to C.
114              (2) Using locale-numerically formatted floating point
115              numbers (e.g. "1,23") together with -w caused warnings about
116              "isn't numeric".  The operations were working fine, though,
117              because atof() was using the local locale.
118              Both problems reported by Stefan Vogtner.
119              
120              Introduced a wrapper for atof() that attempts to convert
121              the string both ways.  This helps Perl to understand
122              numbers like this "4.56" even when using a local locale
123              makes atof() understand only numbers like this "7,89".
124              
125              Remaining related problems, both of which existed before
126              this patch and continue to exist after this patch:
127              (a) The behaviour of print() is _not_ as documented by perllocale.
128              Instead of always using the C locale, print() does use the
129              local locale, just like the *printf() do.  This may be fixable
130              now that switching to-and-fro between locales has been made
131              more consistent, but fixing print() would change existing
132              behaviour.  perllocale is not changed by this patch.
133              (b) If a number has been stringified (say, via "$number") under
134              a local locale, the cached string value persists even under
135              "no locale".  This may or may not be a problem: operations
136              work fine because the original number is still there, but
137              that the string form keeps its locale-ish outlook may be
138              somewhat confusing.
139      Branch: cfgperl
140            ! dump.c embed.h embed.pl embedvar.h global.sym intrpvar.h mg.c
141            ! objXSUB.h op.c perl.c perl.h perlvars.h pp.c pp_ctl.c
142            ! pp_proto.h pp_sys.c proto.h sv.c t/pragma/locale.t toke.c
143            ! util.c
144 ____________________________________________________________________________
145 [  3541] By: jhi                                   on 1999/06/17  20:00:16
146         Log: Integrate from mainperl.
147      Branch: cfgperl
148           !> ext/Data/Dumper/Dumper.pm op.c
149 ____________________________________________________________________________
150 [  3540] By: gsar                                  on 1999/06/16  16:49:55
151         Log: dump C<0> as such, not C<'0'>
152      Branch: perl
153            ! ext/Data/Dumper/Dumper.pm
154 ____________________________________________________________________________
155 [  3539] By: gsar                                  on 1999/06/13  04:04:40
156         Log: fix coredumper in change#3498
157      Branch: perl
158            ! op.c
159 ____________________________________________________________________________
160 [  3538] By: jhi                                   on 1999/06/12  22:01:26
161         Log: Integrate from mainperl.
162      Branch: cfgperl
163           +> lib/caller.pm
164           !> (integrate 36 files)
165 ____________________________________________________________________________
166 [  3537] By: gsar                                  on 1999/06/12  06:43:03
167         Log: EXTERN_C declarations for global arrays in various
168              headers, so perl can be built even in C++ mode; win32
169              build fixups; regen headers
170      Branch: perl
171            ! XSUB.h embedvar.h ext/B/B.xs objXSUB.h opcode.h opcode.pl
172            ! perl.h regcomp.h regexec.c utf8.h win32/win32.c win32/win32.h
173 ____________________________________________________________________________
174 [  3536] By: gsar                                  on 1999/06/12  06:38:21
175         Log: caller.pm typos
176      Branch: perl
177            ! lib/caller.pm
178 ____________________________________________________________________________
179 [  3535] By: gsar                                  on 1999/06/11  23:13:54
180         Log: various little tweaks; most globals are now in intrpvar.h, ninterps
181              is temporarily gone
182      Branch: perl
183            ! embed.pl intrpvar.h os2/os2.c perl.c perlvars.h
184            ! pod/perldelta.pod proto.h win32/perllib.c
185 ____________________________________________________________________________
186 [  3534] By: gsar                                  on 1999/06/11  20:41:51
187         Log: implement C<use caller 'encoding'>
188      Branch: perl
189            + lib/caller.pm
190            ! MANIFEST perl.h pod/perldelta.pod pod/perlfunc.pod pp_ctl.c
191 ____________________________________________________________________________
192 [  3533] By: gsar                                  on 1999/06/11  16:51:04
193         Log: truncate() has a peculiar exemption from strict barewords, even
194              though it has a non-filehandle prototype
195      Branch: perl
196            ! op.c t/io/fs.t
197 ____________________________________________________________________________
198 [  3532] By: gsar                                  on 1999/06/11  09:09:16
199         Log: GDBM tweak
200      Branch: perl
201            ! ext/GDBM_File/GDBM_File.xs ext/GDBM_File/typemap
202 ____________________________________________________________________________
203 [  3531] By: gsar                                  on 1999/06/10  23:34:19
204         Log: part of the platform changes for IMPLICIT_CONTEXT
205      Branch: perl
206            ! djgpp/djgpp.c jpl/JNI/JNI.xs jpl/JNI/typemap
207            ! jpl/PerlInterpreter/PerlInterpreter.c
208            ! jpl/PerlInterpreter/PerlInterpreter.h
209            ! os2/OS2/ExtAttr/ExtAttr.xs os2/OS2/PrfDB/PrfDB.xs
210            ! os2/OS2/Process/Process.xs os2/OS2/REXX/REXX.xs perl.h
211 ____________________________________________________________________________
212 [  3530] By: jhi                                   on 1999/06/10  20:55:56
213         Log: Integrate from mainperl.
214      Branch: cfgperl
215           !> ext/DB_File/DB_File.xs ext/DB_File/typemap
216 ____________________________________________________________________________
217 [  3529] By: gsar                                  on 1999/06/10  20:40:01
218         Log: DB_File tweaks for IMPLICIT CONTEXT
219      Branch: perl
220            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
221 ____________________________________________________________________________
222 [  3528] By: jhi                                   on 1999/06/10  10:18:15
223         Log: Integrate from mainperl.
224      Branch: cfgperl
225           !> (integrate 105 files)
226 ____________________________________________________________________________
227 [  3527] By: gsar                                  on 1999/06/10  09:30:35
228         Log: most globals are now interpreter local; locale initialization
229              was too early, defer it until interpreter is allocated and
230              initialized; multiple interpreters should now be
231              concurrency-safe (untested)
232      Branch: perl
233            ! embedvar.h intrpvar.h malloc.c miniperlmain.c perl.c perl.h
234            ! perlvars.h
235 ____________________________________________________________________________
236 [  3526] By: gsar                                  on 1999/06/10  08:38:00
237         Log: fix small nits
238      Branch: perl
239            ! cc_runtime.h ext/B/B/CC.pm run.c
240 ____________________________________________________________________________
241 [  3525] By: gsar                                  on 1999/06/10  04:41:38
242         Log: win32 build fixes
243      Branch: perl
244            ! bytecode.pl dosish.h embed.h embed.pl ext/B/B.xs
245            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
246            ! ext/ByteLoader/byterun.h ext/SDBM_File/sdbm/sdbm.c globals.c
247            ! mg.c objXSUB.h op.h perl.c perl.h pp_sys.c proto.h sv.c util.c
248            ! win32/Makefile win32/config_H.bc win32/config_H.gc
249            ! win32/config_H.vc win32/config_h.PL win32/dl_win32.xs
250            ! win32/makedef.pl win32/makefile.mk win32/perllib.c
251            ! win32/win32.c win32/win32.h win32/win32sck.c
252            ! win32/win32thread.c win32/win32thread.h
253 ____________________________________________________________________________
254 [  3524] By: gsar                                  on 1999/06/09  18:03:01
255         Log: more complete support for implicit thread/interpreter pointer,
256              enabled via -DPERL_IMPLICIT_CONTEXT (all changes are noops
257              without that enabled):
258              - USE_THREADS now enables PERL_IMPLICIT_CONTEXT, so dTHR
259              is a noop; tests pass on Solaris; should be faster now!
260              - MULTIPLICITY has been tested with and without
261              PERL_IMPLICIT_CONTEXT on Solaris
262              - improved function database now merged with embed.pl
263              - everything except the varargs functions have foo(a,b,c) macros
264              to provide compatibility
265              - varargs functions default to compatibility variants that
266              get the context pointer using dTHX
267              - there should be almost no source compatibility issues as a
268              result of all this
269              - dl_foo.xs changes other than dl_dlopen.xs untested
270              - still needs documentation, fixups for win32 etc
271              Next step: migrate most non-mutex variables from perlvars.h
272              to intrpvar.h
273      Branch: perl
274            - proto.pl
275            ! MANIFEST XSUB.h av.c bytecode.pl cv.h doio.c doop.c dump.c
276            ! ebcdic.c embed.h embed.pl embedvar.h ext/B/B.xs ext/B/typemap
277            ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
278            ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h
279            ! ext/Data/Dumper/Dumper.xs ext/Devel/Peek/Peek.xs
280            ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs
281            ! ext/DynaLoader/dl_cygwin32.xs ext/DynaLoader/dl_dld.xs
282            ! ext/DynaLoader/dl_dlopen.xs ext/DynaLoader/dl_hpux.xs
283            ! ext/DynaLoader/dl_mpeix.xs ext/DynaLoader/dl_next.xs
284            ! ext/DynaLoader/dl_none.xs ext/DynaLoader/dl_rhapsody.xs
285            ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs
286            ! ext/DynaLoader/dlutils.c ext/Opcode/Opcode.xs
287            ! ext/POSIX/POSIX.xs ext/Thread/Thread.xs ext/re/re.xs
288            ! global.sym globals.c gv.c hv.c lib/ExtUtils/typemap
289            ! lib/ExtUtils/xsubpp malloc.c mg.c mg.h miniperlmain.c
290            ! objXSUB.h op.c opcode.h opcode.pl perl.c perl.h perlio.c
291            ! perlsfio.h perly.c pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c
292            ! proto.h regcomp.c regcomp.h regexec.c run.c scope.c scope.h
293            ! sv.c taint.c thrdvar.h thread.h toke.c universal.c utf8.c
294            ! util.c win32/Makefile win32/makefile.mk writemain.SH
295 ____________________________________________________________________________
296 [  3523] By: gsar                                  on 1999/06/07  05:24:13
297         Log: missed a file
298      Branch: perl
299            + proto.pl
300            ! MANIFEST
301 ____________________________________________________________________________
302 [  3522] By: gsar                                  on 1999/06/07  05:18:34
303         Log: initial stub implementation of implicit thread/this
304              pointer    argument; builds/tests on Solaris, win32
305              hasn't been fixed up yet; proto.h, global.sym and
306              static function decls are now generated from a common
307              database in proto.pl; some inconsistently named
308              perl_foo() things are now Perl_foo(), compatibility
309              #defines provided; perl_foo() (lowercase 'p') reserved
310              for functions that take an explicit context argument;
311              next step: generate #define foo(a,b) Perl_foo(aTHX_ a,b)
312      Branch: perl
313            ! XSUB.h av.c cop.h deb.c doio.c doop.c dump.c ebcdic.c embed.h
314            ! embed.pl ext/POSIX/POSIX.xs global.sym globals.c gv.c gv.h
315            ! hv.c malloc.c mg.c miniperlmain.c objXSUB.h op.c opcode.h
316            ! opcode.pl perl.c perl.h perl_exp.SH perlio.c perly.c perly.y
317            ! pp.c pp.sym pp_ctl.c pp_hot.c pp_proto.h pp_sys.c proto.h
318            ! regcomp.c regexec.c run.c scope.c scope.h sv.c taint.c toke.c
319            ! universal.c utf8.c util.c
320 ____________________________________________________________________________
321 [  3521] By: gsar                                  on 1999/06/04  23:00:22
322         Log: clean up some stray "global" symbols
323      Branch: perl
324            ! embed.h embed.pl global.sym objXSUB.h opcode.pl pp.sym
325            ! pp_proto.h proto.h
326 ____________________________________________________________________________
327 [  3520] By: jhi                                   on 1999/06/02  21:33:28
328         Log: Integrate from mainperl.
329      Branch: cfgperl
330           !> (integrate 94 files)
331 ____________________________________________________________________________
332 [  3519] By: gsar                                  on 1999/06/02  07:16:10
333         Log: avoid dereferencing null pointer from getpwent() et al
334      Branch: perl
335            ! pp_sys.c
336 ____________________________________________________________________________
337 [  3518] By: gsar                                  on 1999/06/02  04:47:10
338         Log: remove _() non-ansism
339      Branch: perl
340            ! Porting/config_H XSUB.h config_h.SH cv.h doio.c doop.c
341            ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/byteperl.c
342            ! ext/ByteLoader/ByteLoader.xs ext/Data/Dumper/Dumper.xs
343            ! ext/DynaLoader/dl_beos.xs ext/DynaLoader/dl_dlopen.xs
344            ! ext/DynaLoader/dl_vmesa.xs ext/IO/poll.h ext/IPC/SysV/SysV.xs
345            ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs ext/Thread/Thread.xs
346            ! ext/re/re.xs handy.h hv.c iperlsys.h
347            ! jpl/PerlInterpreter/PerlInterpreter.c lib/ExtUtils/Embed.pm
348            ! malloc.c mg.c mg.h minimod.pl miniperlmain.c op.c op.h
349            ! opcode.h opcode.pl os2/POSIX.mkfifo perl.c perl.h
350            ! plan9/config.plan9 pod/perlembed.pod pod/perlguts.pod pp.c
351            ! pp_ctl.c pp_hot.c pp_sys.c proto.h regcomp.c regexec.c run.c
352            ! scope.h sv.c sv.h thread.h toke.c util.c vms/sockadapt.h
353            ! vms/vmsish.h vms/writemain.pl vos/config.h
354            ! vos/config_h.SH_orig win32/GenCAPI.pl win32/config_H.bc
355            ! win32/config_H.gc win32/config_H.vc win32/makemain.pl
356            ! win32/perllib.c win32/runperl.c win32/win32.h
357            ! win32/win32thread.h writemain.SH x2p/a2p.c x2p/a2p.h x2p/a2p.y
358            ! x2p/hash.h x2p/str.h x2p/util.h x2p/walk.c
359 ____________________________________________________________________________
360 [  3517] By: gsar                                  on 1999/06/02  02:17:51
361         Log: missed a few files
362      Branch: perl
363            ! ext/POSIX/POSIX.xs jpl/JNI/JNI.xs
364 ____________________________________________________________________________
365 [  3516] By: gsar                                  on 1999/06/02  01:37:33
366         Log: integrate cfgperl contents into mainline
367      Branch: perl
368           +> ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
369           +> ext/ByteLoader/byterun.h
370            - bytecode.h byterun.c byterun.h
371            ! Changes
372           !> (integrate 58 files)
373 ____________________________________________________________________________
374 [  3515] By: gsar                                  on 1999/06/02  00:48:50
375         Log: remove stray K&R-isms
376      Branch: perl
377            ! ext/SDBM_File/sdbm/dba.c ext/SDBM_File/sdbm/dbd.c
378            ! ext/SDBM_File/sdbm/dbe.c ext/SDBM_File/sdbm/dbm.c
379            ! ext/SDBM_File/sdbm/dbu.c mg.c op.c pp_ctl.c pp_sys.c sv.c
380            ! toke.c util.c win32/win32.c x2p/hash.c
381 ____________________________________________________________________________
382 [  3514] By: gsar                                  on 1999/06/01  15:55:55
383         Log: change#3447 didn't do enough to exempt Foo->bar(qw/.../) from
384              strict 'subs'
385      Branch: perl
386            ! op.c t/pragma/strict-subs
387 ____________________________________________________________________________
388 [  3513] By: jhi                                   on 1999/06/01  07:17:05
389         Log: Patch applying of #3499 had gone awry.
390      Branch: cfgperl
391            ! ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.h
392 ____________________________________________________________________________
393 [  3512] By: gsar                                  on 1999/05/31  19:21:30
394         Log: tighter -help output
395      Branch: perl
396            ! perl.c
397 ____________________________________________________________________________
398 [  3511] By: gsar                                  on 1999/05/31  17:18:23
399         Log: fix memory leak in C<eval 'return sub {...}'>
400      Branch: perl
401            ! embed.h embed.pl objXSUB.h pp_ctl.c proto.h
402 ____________________________________________________________________________
403 [  3510] By: gsar                                  on 1999/05/31  14:11:46
404         Log: tweak C++isms
405      Branch: perl
406            ! win32/dl_win32.xs win32/win32.c
407 ____________________________________________________________________________
408 [  3509] By: jhi                                   on 1999/05/30  13:02:26
409         Log: Cleanup of #3488.
410      Branch: cfgperl
411            ! Configure config_h.SH
412 ____________________________________________________________________________
413 [  3508] By: jhi                                   on 1999/05/30  11:16:01
414         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
415              To: Mailing list Perl5 <perl5-porters@perl.org>
416              Subject: [PATCH 5.005_57] Teach Socket and io_unix.t the syntax of OS/2
417              Date: Sat, 29 May 1999 20:18:13 -0400
418              Message-ID: <19990529201813.B9489@monk.mps.ohio-state.edu>
419      Branch: cfgperl
420            ! ext/Socket/Socket.xs os2/os2ish.h t/lib/io_unix.t
421 ____________________________________________________________________________
422 [  3507] By: jhi                                   on 1999/05/29  20:05:40
423         Log: From: Mark-Jason Dominus <mjd@plover.com>
424              To: perl5-porters@perl.com
425              Subject: PATCH (5.005_57): Document use of `SPECIAL' flag for `pushre':
426              Date: Sat, 29 May 1999 14:45:10 -0400
427              Message-ID: <19990529184510.27557.qmail@plover.com>
428      Branch: cfgperl
429            ! op.h
430 ____________________________________________________________________________
431 [  3506] By: gsar                                  on 1999/05/29  16:49:39
432         Log: avoid gv_check() recursive pit
433      Branch: perl
434            ! gv.c
435 ____________________________________________________________________________
436 [  3505] By: jhi                                   on 1999/05/29  11:38:16
437         Log: From: jan.dubois@ibm.net (Jan Dubois)
438              To: Gurusamy Sarathy <gsar@activestate.com>
439              Cc: perl5-porters@perl.org
440              Subject: [PATCH 5.005_57]Safeguard against unimplemented functions in pwuid.t and grent.t
441              Date: Sat, 29 May 1999 08:46:22 +0200
442              Message-ID: <374f8007.2016008@smtp1.ibm.net>
443      Branch: cfgperl
444            ! t/op/grent.t t/op/pwent.t
445 ____________________________________________________________________________
446 [  3504] By: jhi                                   on 1999/05/29  11:07:10
447         Log: QNX needs <sys/select.h> to define fd_set.
448              
449              From: Norton Allen <allen@huarp.harvard.edu>
450              To: perl5-porters@perl.org
451              Subject: [19990526.016] Not OK: perl 5.00503 on x86-qnx 424
452              Date:  Wed, 26 May 1999 13:51:27 -0400 (EDT)
453              Message-Id:  <199905261751.NAA20966@bottesini.harvard.edu>
454      Branch: cfgperl
455            ! ext/IO/poll.c
456 ____________________________________________________________________________
457 [  3503] By: jhi                                   on 1999/05/29  10:53:31
458         Log: From: jan.dubois@ibm.net (Jan Dubois)
459              To: Gurusamy Sarathy <gsar@activestate.com>, perl5-porters@perl.org
460              Subject: [PATCH all versions] (was Re: Unitialized Value Complaints in Math::BigFloat)
461              Date: Fri, 28 May 1999 20:14:35 +0200
462              Message-ID: <3751daa4.7188847@smtp1.ibm.net>
463      Branch: cfgperl
464            ! lib/Math/BigFloat.pm
465 ____________________________________________________________________________
466 [  3502] By: jhi                                   on 1999/05/29  10:44:44
467         Log: Make Configure support the change #3367,
468              SysV shadow passwords.
469      Branch: cfgperl
470            ! Configure config_h.SH pp_sys.c
471 ____________________________________________________________________________
472 [  3501] By: gsar                                  on 1999/05/28  21:22:23
473         Log: add wide versions of win32 system calls (first step in
474              globalization); delayload winsock for performance if compiling
475              with VC 6.0
476      Branch: perl
477            ! win32/Makefile win32/dl_win32.xs win32/makefile.mk
478            ! win32/win32.c win32/win32.h
479 ____________________________________________________________________________
480 [  3500] By: jhi                                   on 1999/05/28  21:17:24
481         Log: The new t/lib/io_linenum.t was using stricture
482              before @INC was set up.
483      Branch: cfgperl
484            ! t/lib/io_linenum.t
485 ____________________________________________________________________________
486 [  3499] By: jhi                                   on 1999/05/28  17:13:23
487         Log: From: Tom Hughes <tom@compton.nu>
488              To: perl5-porters@perl.org
489              Subject: [PATCH 5.005_57] ByteLoader mark 2
490              Date: Wed, 26 May 1999 23:59:49 +0100
491              Message-ID: <bf337a0849.tom@compton.compton.nu>
492              
493              plus resolve tiny conflict with #3479
494              plus regen_headers.
495      Branch: cfgperl
496            + ext/ByteLoader/bytecode.h ext/ByteLoader/byterun.c
497            + ext/ByteLoader/byterun.h
498            - bytecode.h byterun.c byterun.h
499            ! MANIFEST Makefile.SH bytecode.pl embed.h embedvar.h ext/B/B.pm
500            ! ext/B/B.xs ext/B/B/Bytecode.pm ext/B/Makefile.PL
501            ! ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
502            ! ext/ByteLoader/Makefile.PL global.sym intrpvar.h objXSUB.h
503            ! perl.h perlvars.h proto.h util.c utils/Makefile
504 ____________________________________________________________________________
505 [  3498] By: jhi                                   on 1999/05/28  16:53:04
506         Log: From: Mark-Jason Dominus <mjd@plover.com>
507              To: perl5-porters@perl.com
508              Subject: PATCH (5.005_57): defined(@a) now deprecated
509              Date: Thu, 27 May 1999 16:05:44 -0400
510              Message-ID: <19990527200544.13330.qmail@plover.com>
511      Branch: cfgperl
512            ! lib/Carp.pm op.c opcode.h opcode.pl pod/perldelta.pod
513            ! pod/perldiag.pod pod/perlfunc.pod pp_proto.h t/pragma/warn/op
514 ____________________________________________________________________________
515 [  3497] By: jhi                                   on 1999/05/28  16:50:54
516         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
517              To: perl5-porters@perl.org (Mailing list Perl5)
518              Subject: [PATCH 5.00557] Cosmetic OS/2-related patches
519              Date: Fri, 28 May 1999 12:13:00 -0400 (EDT)
520              Message-Id: <199905281613.MAA02048@monk.mps.ohio-state.edu>
521      Branch: cfgperl
522            ! MANIFEST Makefile.SH ext/POSIX/POSIX.xs hints/os2.sh
523            ! os2/Makefile.SHs t/io/pipe.t t/lib/io_sock.t
524 ____________________________________________________________________________
525 [  3496] By: jhi                                   on 1999/05/28  16:48:39
526         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
527              To: perl5-porters@perl.org (Mailing list Perl5)
528              Subject: [PATCH 5.00557] Required OS/2-related patches
529              Date: Fri, 28 May 1999 12:11:48 -0400 (EDT)
530              Message-Id: <199905281611.MAA02037@monk.mps.ohio-state.edu>
531      Branch: cfgperl
532            ! os2/os2.c t/lib/bigfloatpm.t t/lib/io_unix.t t/op/groups.t
533            ! t/op/stat.t util.c
534 ____________________________________________________________________________
535 [  3495] By: jhi                                   on 1999/05/28  16:45:56
536         Log: From: Paul Johnson <pjcj@transeda.com>
537              To: perl5-porters <perl5-porters@perl.org>
538              Subject: [PATCH 5.005_57] Provide more useful test okay percentage
539              Date: Fri, 28 May 1999 15:13:54 +0100
540              Message-ID: <19990528151354.B289@west-tip.transeda.com>
541      Branch: cfgperl
542            ! t/TEST
543 ____________________________________________________________________________
544 [  3494] By: jhi                                   on 1999/05/28  16:44:34
545         Log: From: Paul Johnson <pjcj@transeda.com>
546              To: perl5-porters <perl5-porters@perl.org>
547              Subject: [PATCH 5.005_57] Fixes related to working local $.
548              Date: Fri, 28 May 1999 15:11:18 +0100
549              Message-ID: <19990528151118.A289@west-tip.transeda.com>
550      Branch: cfgperl
551            ! ext/IO/lib/IO/Handle.pm pod/perlvar.pod t/lib/io_linenum.t
552 ____________________________________________________________________________
553 [  3493] By: gsar                                  on 1999/05/28  16:37:26
554         Log: change#3449 wasn't doing enough
555      Branch: perl
556            ! op.c t/comp/proto.t
557 ____________________________________________________________________________
558 [  3492] By: jhi                                   on 1999/05/28  08:12:23
559         Log: From: paul.marquess@bt.com
560              To: doughera@lafayette.edu
561              Cc: perl5-porters@perl.org
562              Subject: RE: [19990527.002] DBM Filters in _57 cause problems in NDBM_File
563              Date: Thu, 27 May 1999 23:31:38 +0100
564              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6C03@mbtlipnt02.btlabs.bt.co.uk>
565              
566              Had to be applied manually; some mailer had munged the patch slightly.
567      Branch: cfgperl
568            ! ext/NDBM_File/NDBM_File.xs
569 ____________________________________________________________________________
570 [  3491] By: jhi                                   on 1999/05/28  07:51:17
571         Log: From: "Vishal Bhatia" <vishalb@my-deja.com>
572              To: perl5-porters@perl.org
573              Subject: [PATCH 5.005_57] fixing eval in the compiler
574              Date: Thu, 27 May 1999 07:56:54 -0700
575              Message-ID: <JDIKFDKKLGHHBAAA@my-deja.com>
576      Branch: cfgperl
577            ! cc_runtime.h scope.h
578 ____________________________________________________________________________
579 [  3490] By: jhi                                   on 1999/05/28  07:47:06
580         Log: From: Andy Dougherty <doughera@lafayette.edu>
581              To: perlbug@perl.com
582              Cc: Jarkko Hietaniemi <jhi@iki.fi>
583              Subject: [PATCH] Configure updates for ISC 4.1
584              Date: Thu, 27 May 1999 15:19:21 -0400 (EDT)
585              Message-Id: <Pine.GSU.4.05.9905271513500.22115-100000@newton.phys>
586      Branch: cfgperl
587            ! Configure config_h.SH
588 ____________________________________________________________________________
589 [  3489] By: jhi                                   on 1999/05/28  07:39:17
590         Log: Integrate from mainperl.
591      Branch: cfgperl
592           !> malloc.c win32/makedef.pl win32/win32.c
593 ____________________________________________________________________________
594 [  3488] By: jhi                                   on 1999/05/27  16:57:19
595         Log: From: Andy Dougherty <doughera@lafayette.edu>
596              To: Perl Porters <perl5-porters@perl.org>
597              Subject: [PATCH] Re: 5.005_57 NOT OK on SunOS 4.1.3
598              Date: Thu, 27 May 1999 12:26:28 -0400 (EDT)
599              Message-Id: <Pine.GSU.4.05.9905271120230.22115-100000@newton.phys>
600      Branch: cfgperl
601            ! Configure config_h.SH hints/sunos_4_1.sh util.c
602 ____________________________________________________________________________
603 [  3487] By: gsar                                  on 1999/05/27  03:56:20
604         Log: make win32_spawnvp() inherit standard handles even when they
605              may be redirected
606      Branch: perl
607            ! win32/win32.c
608 ____________________________________________________________________________
609 [  3486] By: jhi                                   on 1999/05/26  19:55:52
610         Log: From: Andy Dougherty <doughera@lafayette.edu>
611              To: perl5-porters@perl.org
612              Subject: Re: BUG -> [19990526.004] perl5.005_57 error in util.c on sun4-solaris2.6
613              Date: Wed, 26 May 1999 14:49:52 -0400 (EDT)
614              Message-Id: <Pine.GSU.4.05.9905261448310.19172-100000@newton.phys>
615      Branch: cfgperl
616            ! util.c
617 ____________________________________________________________________________
618 [  3485] By: chip                                  on 1999/05/26  17:19:11
619         Log: Look for Linux FILE structure in libio.h, for glibc-2.1.
620      Branch: maint-5.004/perl
621            ! Configure
622 ____________________________________________________________________________
623 [  3484] By: gsar                                  on 1999/05/26  01:56:28
624         Log: fix missing exported symbol
625      Branch: perl
626            ! malloc.c win32/makedef.pl
627 ____________________________________________________________________________
628 [  3483] By: jhi                                   on 1999/05/25  23:08:07
629         Log: Configure -Dopenbsd_distribution to build for the OpenBSD tree.
630              
631              From: "Todd C. Miller" <Todd.Miller@courtesan.com>
632              To: perlbug@perl.com
633              Subject: OpenBSD hints file update
634              Date: Tue, 25 May 1999 12:12:38 -0600 (MDT)
635              Message-Id: <199905251812.MAA06032@xerxes.courtesan.com>
636      Branch: cfgperl
637            ! hints/openbsd.sh
638 ____________________________________________________________________________
639 [  3482] By: jhi                                   on 1999/05/25  23:01:25
640         Log: From: Tom Hughes <tom@compton.nu>
641              To: perl5-porters@perl.org
642              Subject: [PATCH 5.005_57] Make Configure recognise glibc 2.1 stdio
643              Date: Tue, 25 May 1999 23:10:23 +0100
644              Message-ID: <1ed7f10749.tom@compton.compton.nu>
645      Branch: cfgperl
646            ! Configure config_h.SH
647 ____________________________________________________________________________
648 [  3481] By: jhi                                   on 1999/05/25  22:31:50
649         Log: 3479, 3480, 3481 seems logical.
650      Branch: cfgperl
651           !> hints/aix.sh
652 ____________________________________________________________________________
653 [  3480] By: jhi                                   on 1999/05/25  22:13:39
654         Log: The change #3479 wasn't perfect.
655      Branch: perl
656            ! hints/aix.sh
657 ____________________________________________________________________________
658 [  3479] By: jhi                                   on 1999/05/25  21:59:21
659         Log: Cures for _57 in AIX 4.1.5.0.
660              (1) The lddlflags lost its -lc by change #3660
661              (and the politeness of change #3257).
662              (2) optype_size must end up in perl.exp (as PL_optype_size).
663              Added it to perlvars.h, fixed bytecode.pl,
664              regen'ed the relevant headers.
665      Branch: cfgperl
666            ! bytecode.h bytecode.pl byterun.h embed.h embedvar.h objXSUB.h
667            ! perlvars.h
668      Branch: perl
669            ! hints/aix.sh
670 ____________________________________________________________________________
671 [  3478] By: jhi                                   on 1999/05/25  20:13:47
672         Log: Integrate from mainperl.
673      Branch: cfgperl
674           +> pod/perltootc.pod
675           !> (integrate 101 files)
676 ____________________________________________________________________________
677 [  3477] By: gsar                                  on 1999/05/25  10:43:48
678         Log: here be 5.005_57
679      Branch: perl
680            ! Changes MANIFEST Porting/makerel
681           !> Changes5.005
682
683 ----------------
684 Version 5.005_57
685 ----------------
686
687 ____________________________________________________________________________
688 [  3476] By: gsar                                  on 1999/05/25  09:23:43
689         Log: up patchlevel &c
690      Branch: perl
691            ! Changes patchlevel.h pod/perlhist.pod win32/Makefile
692            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
693            ! win32/makefile.mk
694 ____________________________________________________________________________
695 [  3475] By: gsar                                  on 1999/05/25  09:14:51
696         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
697              Date: Tue, 25 May 1999 02:42:23 -0400 (EDT)
698              Message-Id: <199905250642.CAA06208@monk.mps.ohio-state.edu>
699              Subject: [PATCH 5.005_56] REx engine improvements
700      Branch: perl
701            ! embedvar.h mg.c objXSUB.h pp.c pp_ctl.c pp_hot.c regcomp.c
702            ! regexec.c regexp.h t/op/pat.t t/op/re_tests t/op/regexp.t
703            ! thrdvar.h util.c
704 ____________________________________________________________________________
705 [  3474] By: gsar                                  on 1999/05/25  08:39:56
706         Log: test case for change#3470
707      Branch: perl
708            ! t/lib/bigintpm.t
709 ____________________________________________________________________________
710 [  3473] By: gsar                                  on 1999/05/25  08:36:52
711         Log: perlport 1.43 update from Chris Nandor and Tom Christiansen
712      Branch: perl
713            ! Changes pod/perlport.pod
714 ____________________________________________________________________________
715 [  3472] By: gsar                                  on 1999/05/25  08:28:57
716         Log: assorted tweaks
717      Branch: perl
718            ! doio.c iperlsys.h win32/config.bc win32/config.gc
719            ! win32/config.vc win32/config_H.bc win32/config_H.gc
720            ! win32/config_H.vc win32/makedef.pl
721 ____________________________________________________________________________
722 [  3471] By: gsar                                  on 1999/05/25  06:06:04
723         Log: perlref update from Tom Christiansen
724      Branch: perl
725            ! pod/perlref.pod
726 ____________________________________________________________________________
727 [  3470] By: gsar                                  on 1999/05/25  06:03:27
728         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
729              Date: Mon, 24 May 1999 17:43:56 -0400
730              Message-ID: <19990524174356.A1944@monk.mps.ohio-state.edu>
731              Subject: [PATCH 5.005_*] hv.c calling negative malloc()
732      Branch: perl
733            ! hv.c
734 ____________________________________________________________________________
735 [  3469] By: gsar                                  on 1999/05/25  05:59:22
736         Log: avoid temporary files that have a constant name (from a suggestion
737              by Anthony J. Lill <ajlill@ajlc.waterloo.on.ca>)
738      Branch: perl
739            ! lib/ExtUtils/MM_Unix.pm
740 ____________________________________________________________________________
741 [  3468] By: gsar                                  on 1999/05/25  05:54:29
742         Log: From: pvhp@forte.com (Peter Prymmer)
743              Date: Mon, 24 May 99 11:20:25 PDT
744              Message-Id: <9905241820.AA28071@forte.com>
745              Subject: [PATCH: _56 and _03]EBCDIC %HTML_Escapes for Pod::Text, plus sync patch.
746      Branch: perl
747            ! lib/Pod/Text.pm
748 ____________________________________________________________________________
749 [  3467] By: gsar                                  on 1999/05/25  04:08:50
750         Log: fix glob() bug that resulted in missing symlinks that don't point
751              anywhere
752      Branch: perl
753            ! pp_hot.c
754 ____________________________________________________________________________
755 [  3466] By: gsar                                  on 1999/05/25  03:00:00
756         Log: avoid enumerating @INC contents in diagnostic if @INC was never
757              searched
758      Branch: perl
759            ! pod/perldiag.pod pp_ctl.c
760 ____________________________________________________________________________
761 [  3465] By: gsar                                  on 1999/05/25  02:24:08
762         Log: add caveat about close(PIPE) carelessness
763      Branch: perl
764            ! pod/perlfunc.pod
765 ____________________________________________________________________________
766 [  3464] By: gsar                                  on 1999/05/24  23:55:53
767         Log: fix bogus line numbers for void context warnings
768              (change#2548 was overeager)
769      Branch: perl
770            ! op.c
771 ____________________________________________________________________________
772 [  3463] By: gsar                                  on 1999/05/24  23:31:58
773         Log: change#3455 had a typo
774      Branch: perl
775            ! pp_ctl.c
776 ____________________________________________________________________________
777 [  3462] By: gsar                                  on 1999/05/24  17:32:20
778         Log: more pod updates from Tom Christiansen; regen perltoc
779      Branch: perl
780            ! pod/perl.pod pod/perldelta.pod pod/perlmod.pod pod/perlobj.pod
781            ! pod/perlre.pod pod/perltoc.pod pod/perlvar.pod
782 ____________________________________________________________________________
783 [  3461] By: gsar                                  on 1999/05/24  07:41:32
784         Log: perlmod notes from Damian Conway (via Tom Christiansen)
785      Branch: perl
786            ! pod/perlmod.pod
787 ____________________________________________________________________________
788 [  3460] By: gsar                                  on 1999/05/24  07:24:11
789         Log: major pod update from Tom Christiansen
790      Branch: perl
791            + pod/perltootc.pod
792            ! MANIFEST lib/Pod/Functions.pm pod/Makefile pod/buildtoc
793            ! pod/perl.pod pod/perl5004delta.pod pod/perlcall.pod
794            ! pod/perldata.pod pod/perldebug.pod pod/perldelta.pod
795            ! pod/perldsc.pod pod/perlfunc.pod pod/perlipc.pod
796            ! pod/perllol.pod pod/perlmod.pod pod/perlmodinstall.pod
797            ! pod/perlmodlib.pod pod/perlobj.pod pod/perlop.pod
798            ! pod/perlopentut.pod pod/perlpod.pod pod/perlport.pod
799            ! pod/perlre.pod pod/perlref.pod pod/perlrun.pod pod/perlsec.pod
800            ! pod/perlsub.pod pod/perlsyn.pod pod/perlthrtut.pod
801            ! pod/perltie.pod pod/perltrap.pod pod/perlvar.pod
802            ! pod/perlxs.pod pod/pod2man.PL
803 ____________________________________________________________________________
804 [  3459] By: gsar                                  on 1999/05/24  06:26:48
805         Log: perlfaq update from Tom Christiansen
806      Branch: perl
807            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
808            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
809            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
810            ! pod/perlfaq9.pod
811 ____________________________________________________________________________
812 [  3458] By: gsar                                  on 1999/05/24  05:55:11
813         Log: updated to v1.50 from CPAN
814      Branch: perl
815            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
816 ____________________________________________________________________________
817 [  3457] By: gsar                                  on 1999/05/24  05:46:20
818         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
819              Date: Sun, 23 May 1999 16:35:07 +0100
820              Message-Id: <199905231535.QAA00032@crypt.compulink.co.uk>
821              Subject: [PATCH 5.005_56] name PL_in_eval bits
822      Branch: perl
823            ! cop.h op.c perl.c pp_ctl.c toke.c util.c
824 ____________________________________________________________________________
825 [  3456] By: gsar                                  on 1999/05/24  05:18:06
826         Log: make -t mode the default on emacs/dumb terminals
827      Branch: perl
828            ! Changes utils/perldoc.PL
829 ____________________________________________________________________________
830 [  3455] By: gsar                                  on 1999/05/24  05:05:19
831         Log: return 0 rather than "" when scalar grep has nothing to iterate
832              on (brings behavior in line with documentation)
833      Branch: perl
834            ! pp_ctl.c
835 ____________________________________________________________________________
836 [  3454] By: gsar                                  on 1999/05/24  04:52:52
837         Log: From: Tim Jenness <t.jenness@jach.hawaii.edu>
838              Date: Thu, 20 May 1999 13:27:02 -1000
839              Message-Id: <E10kcDN-0007TA-00@lapaki>
840              Subject: Problem with MM_Unix in 5.005_03
841      Branch: perl
842            ! lib/ExtUtils/MM_Unix.pm
843 ____________________________________________________________________________
844 [  3453] By: gsar                                  on 1999/05/24  04:39:49
845         Log: avoid removing duplicates in user-generated warnings
846              From: byron@omix.com (Byron Brummer)
847              Date: Thu, 20 May 1999 04:01:17 -0700 (PDT)
848              Message-Id: <199905201101.EAA91175@thrush.omix.com>
849              Subject: [PATCH] Re: warn buffers/loses output in ?? - 5.005_03
850      Branch: perl
851            ! lib/diagnostics.pm
852 ____________________________________________________________________________
853 [  3452] By: gsar                                  on 1999/05/24  04:23:10
854         Log: straighten some code to avoid NeXT compiler bugs (from
855              Geoff Kuenning <geoff@cs.hmc.edu>)
856      Branch: perl
857            ! pp_ctl.c
858 ____________________________________________________________________________
859 [  3451] By: gsar                                  on 1999/05/24  03:03:05
860         Log: minor logic tweak for reserved word warning
861      Branch: perl
862            ! lib/Test/Harness.pm toke.c
863 ____________________________________________________________________________
864 [  3450] By: gsar                                  on 1999/05/24  02:34:20
865         Log: oops, some files missing in change#3449
866      Branch: perl
867            ! op.c op.h toke.c
868 ____________________________________________________________________________
869 [  3449] By: gsar                                  on 1999/05/24  02:33:12
870         Log: allow '*' prototype to autoquote even barewords that happen to be
871              function names; parens or ampersand continue to force the other
872              interpretation; makes C<sub Foo {'bar'} CORE::GLOBAL::require Foo;>
873              do the right thing, for example
874      Branch: perl
875            ! t/comp/proto.t
876 ____________________________________________________________________________
877 [  3448] By: gsar                                  on 1999/05/24  01:51:24
878         Log: remove vestiges of PL_last_proto
879      Branch: perl
880            ! embedvar.h intrpvar.h objXSUB.h
881 ____________________________________________________________________________
882 [  3447] By: gsar                                  on 1999/05/24  01:49:20
883         Log: redo change#2061 and parts of change#1169 with code in the
884              parser; PL_last_proto hackery gone, strict 'subs' in now
885              implemented in the optimizer where specifying the exceptional
886              cases is much more robust; '*' (bareword) prototype now works
887              reliably when used in second and subsequent arguments
888      Branch: perl
889            ! dump.c embed.h embed.pl objXSUB.h op.c op.h proto.h toke.c
890 ____________________________________________________________________________
891 [  3446] By: gsar                                  on 1999/05/23  05:00:55
892         Log: remove redundant part of change#1169 superceded by change#2061;
893              avoid "future reserved word" warning on prototypical bearwords
894      Branch: perl
895            ! t/lib/fatal.t toke.c
896 ____________________________________________________________________________
897 [  3445] By: gsar                                  on 1999/05/21  23:36:49
898         Log: s/isspace/isSPACE/g and make sure the CRT version is always
899              passed an unsigned char (fixes random occurrence of spaces in
900              arguments containing high-bit chars passed to spawned children,
901              on win32)
902      Branch: perl
903            ! ext/SDBM_File/sdbm/dbe.c win32/perlhost.h win32/win32.c
904 ____________________________________________________________________________
905 [  3444] By: gsar                                  on 1999/05/21  23:08:55
906         Log: integrate Configure changes from cfgperl
907      Branch: perl
908           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
909           !> config_h.SH
910 ____________________________________________________________________________
911 [  3443] By: jhi                                   on 1999/05/21  22:00:56
912         Log: Integrate from mainperl.
913      Branch: cfgperl
914           !> Changes doop.c ext/SDBM_File/sdbm/dba.c
915           !> ext/SDBM_File/sdbm/dbd.c ext/SDBM_File/sdbm/dbe.c os2/os2.c
916           !> perl.h pod/perldiag.pod pod/perlport.pod pp.c t/comp/proto.t
917           !> win32/perlhost.h win32/win32.c x2p/walk.c
918 ____________________________________________________________________________
919 [  3442] By: jhi                                   on 1999/05/21  21:59:46
920         Log: fflush.
921      Branch: cfgperl
922            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
923            ! config_h.SH
924 ____________________________________________________________________________
925 [  3441] By: gsar                                  on 1999/05/21  17:48:55
926         Log: integrate cfgperl changes
927      Branch: perl
928           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
929           !> config_h.SH hints/sunos_4_1.sh installperl
930 ____________________________________________________________________________
931 [  3440] By: gsar                                  on 1999/05/21  17:42:49
932         Log: test tweak
933      Branch: perl
934            ! t/comp/proto.t
935 ____________________________________________________________________________
936 [  3439] By: gsar                                  on 1999/05/21  17:31:26
937         Log: fix breakage when neither FFLUSH_ALL nor FFLUSH_NULL are #defined.
938              (Configure fflush(NULL) detection seems broken on Solaris, which
939              is why I hit the problem)
940      Branch: perl
941            ! Changes perl.h
942 ____________________________________________________________________________
943 [  3438] By: gsar                                  on 1999/05/20  16:41:01
944         Log: perlport 1.41 update from Chris Nandor <pudge@pobox.com>
945      Branch: perl
946            ! pod/perlport.pod
947 ____________________________________________________________________________
948 [  3437] By: jhi                                   on 1999/05/20  07:14:39
949         Log: Patches to fflushing in SunOS 4 from Andy Dougherty
950              (via private email).
951      Branch: cfgperl
952            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
953            ! config_h.SH hints/sunos_4_1.sh
954 ____________________________________________________________________________
955 [  3436] By: gsar                                  on 1999/05/20  05:18:26
956         Log: various little nits
957      Branch: perl
958            ! doop.c ext/SDBM_File/sdbm/dba.c ext/SDBM_File/sdbm/dbd.c
959            ! ext/SDBM_File/sdbm/dbe.c os2/os2.c pod/perldiag.pod pp.c
960            ! win32/perlhost.h win32/win32.c x2p/walk.c
961 ____________________________________________________________________________
962 [  3435] By: jhi                                   on 1999/05/18  16:25:49
963         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
964              To: perl5-porters@perl.org
965              Subject: installperl
966              Date: Fri, 14 May 1999 21:34:58 +0100
967              Message-Id: <199905142034.VAA00865@crypt.compulink.co.uk>
968      Branch: cfgperl
969            ! installperl
970 ____________________________________________________________________________
971 [  3434] By: jhi                                   on 1999/05/17  21:25:54
972         Log: Integrate from mainperl.
973      Branch: cfgperl
974           +> lib/ExtUtils/MM_Cygwin.pm
975            - cygwin32/impure_ptr.c
976           !> MANIFEST README.cygwin32 XSUB.h cygwin32/Makefile.SHs
977           !> cygwin32/perlld.in dosish.h ext/DynaLoader/dl_cygwin32.xs
978           !> ext/POSIX/POSIX.xs gv.c hints/cygwin32.sh installman
979           !> installperl perl.h pod/perldiag.pod pp.c pp_hot.c util.c
980           !> x2p/find2perl.PL
981 ____________________________________________________________________________
982 [  3433] By: gsar                                  on 1999/05/17  09:49:01
983         Log: integrate cfgperl changes into mainline
984      Branch: perl
985           !> Configure INSTALL config_h.SH configure.com embed.h
986           !> ext/Devel/Peek/Peek.xs ext/Socket/Socket.xs global.sym
987           !> hints/dec_osf.sh objXSUB.h perl.h pod/perldiag.pod proto.h
988           !> util.c
989 ____________________________________________________________________________
990 [  3432] By: gsar                                  on 1999/05/17  09:06:45
991         Log: emit more appropriate diagnostic for failed glob (variant
992              of patch suggested by Graham Barr)
993      Branch: perl
994            ! gv.c pod/perldiag.pod pp.c pp_hot.c
995 ____________________________________________________________________________
996 [  3431] By: gsar                                  on 1999/05/17  08:38:09
997         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
998              Date: Thu, 13 May 1999 22:18:43 -0600 (MDT)
999              Message-Id: <199905140418.WAA18826@xerxes.courtesan.com>
1000              Subject: find2perl does not grok the 'c' suffix to the -size argument
1001      Branch: perl
1002            ! x2p/find2perl.PL
1003 ____________________________________________________________________________
1004 [  3430] By: gsar                                  on 1999/05/17  08:26:21
1005         Log: additional cleanups for cygwin32 port
1006              From: "Fifer, Eric" <EFifer@sanwaint.com>
1007              Date: Wed, 12 May 1999 20:25:54 +0100
1008              Message-ID: <71E287AB0D94D111BBD600600849EC8185EDAF@POST>
1009              Subject: [PATCH]perl5.005_03 (CORE) cygwin32 port
1010      Branch: perl
1011            + lib/ExtUtils/MM_Cygwin.pm
1012            - cygwin32/impure_ptr.c
1013            ! MANIFEST README.cygwin32 XSUB.h cygwin32/Makefile.SHs
1014            ! cygwin32/perlld.in dosish.h ext/DynaLoader/dl_cygwin32.xs
1015            ! ext/POSIX/POSIX.xs hints/cygwin32.sh installman installperl
1016            ! perl.h util.c
1017 ____________________________________________________________________________
1018 [  3429] By: gsar                                  on 1999/05/17  08:01:04
1019         Log: From: Andy Dougherty <doughera@lafayette.edu>
1020              Date: Wed, 12 May 1999 11:44:11 -0400 (EDT)
1021              Message-Id: <Pine.GSU.4.05.9905121136520.25150-100000@newton.phys>
1022              Subject: [PATCH] (Was Re: SunOS4.1 compilation error)
1023      Branch: perl
1024            ! INSTALL
1025 ____________________________________________________________________________
1026 [  3428] By: jhi                                   on 1999/05/17  07:03:26
1027         Log: Integrate from mainperl modulo the Socket.xs change.
1028      Branch: cfgperl
1029           !> ext/Socket/Socket.xs op.c win32/include/sys/socket.h
1030           !> win32/win32.c win32/win32.h
1031 ____________________________________________________________________________
1032 [  3427] By: jhi                                   on 1999/05/16  22:09:11
1033         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1034              To: perl5-porters@perl.org (Mailing list Perl5)
1035              Subject: [PATCH 5.005_56] Devel::Peek::mstat not working
1036              Date: Sun, 16 May 1999 01:28:18 -0400 (EDT)
1037              Message-Id: <199905160528.BAA23376@monk.mps.ohio-state.edu>
1038      Branch: cfgperl
1039            ! ext/Devel/Peek/Peek.xs
1040 ____________________________________________________________________________
1041 [  3426] By: jhi                                   on 1999/05/16  22:07:11
1042         Log: From: Mark-Jason Dominus <mjd@plover.com>
1043              To: perl5-porters@perl.com
1044              Subject: DOC PATCH (5.005_55): Error message missing from perldiag.pod
1045              Date: Sat, 15 May 1999 12:43:47 -0400
1046              Message-ID: <19990515164348.7313.qmail@plover.com>
1047      Branch: cfgperl
1048            ! pod/perldiag.pod
1049 ____________________________________________________________________________
1050 [  3425] By: nick                                  on 1999/05/15  15:56:10
1051         Log: Mingw32 + w32api-0.1.5 tweaks
1052              - now more like other Win32 compilers
1053      Branch: perl
1054            ! ext/Socket/Socket.xs win32/include/sys/socket.h win32/win32.c
1055            ! win32/win32.h
1056 ____________________________________________________________________________
1057 [  3424] By: nick                                  on 1999/05/14  21:04:22
1058         Log: Experimental "slab" allocator for ops.
1059              To try it -DPL_OP_SLAB_ALLOC for op.c 
1060              This is for proof of concept only, it leaks memory 
1061              (ops are not free'd) so don't use in embedded apps.
1062              If this minimalist version does not show performance 
1063              gain then whole idea is worthless. 
1064              Nick see's approx 12% speed up vs perlmalloc running
1065              perl -Ilib -MCPAN -e '' 
1066              Solaris2.6, gcc-2.8.1 but numbers are not repeatable.
1067      Branch: perl
1068            ! op.c
1069 ____________________________________________________________________________
1070 [  3423] By: gsar                                  on 1999/05/14  19:55:04
1071         Log: on win32, look for "site/5.XXX/lib" if "site/5.XXXYY/lib" isn't
1072              found (brings sitelib intuition in line with privlib)
1073      Branch: perl
1074            ! win32/win32.c
1075 ____________________________________________________________________________
1076 [  3422] By: jhi                                   on 1999/05/14  08:08:01
1077         Log: From: pvhp@forte.com (Peter Prymmer)
1078              To: perl5-porters@perl.org, vmsperl@perl.org
1079              Subject: [PATCH: 5.005_56] add config.msg to VMS configure.com
1080              Date: Thu, 13 May 99 15:29:57 PDT
1081              Message-Id: <9905132229.AA15854@forte.com>
1082      Branch: cfgperl
1083            ! configure.com
1084 ____________________________________________________________________________
1085 [  3421] By: jhi                                   on 1999/05/14  07:34:20
1086         Log: Integrate from mainperl.
1087      Branch: cfgperl
1088           !> lib/ExtUtils/MM_Unix.pm win32/win32.c
1089 ____________________________________________________________________________
1090 [  3420] By: jhi                                   on 1999/05/14  07:33:26
1091         Log: Still fflushing.
1092      Branch: cfgperl
1093            ! Configure config_h.SH util.c
1094 ____________________________________________________________________________
1095 [  3419] By: gsar                                  on 1999/05/14  03:08:29
1096         Log: mortalize string allocations by win32_get_{priv,site}lib()
1097              (fixes small memory leak in interpreter)
1098      Branch: perl
1099            ! win32/win32.c
1100 ____________________________________________________________________________
1101 [  3418] By: gsar                                  on 1999/05/14  03:06:50
1102         Log: make win32_longname() preserve kind of slashes in argument
1103      Branch: perl
1104            ! win32/win32.c
1105 ____________________________________________________________________________
1106 [  3417] By: gsar                                  on 1999/05/14  03:04:44
1107         Log: canonicalize path for $(FULLPERL) and $(PERL) in MakeMaker
1108      Branch: perl
1109            ! lib/ExtUtils/MM_Unix.pm
1110 ____________________________________________________________________________
1111 [  3416] By: jhi                                   on 1999/05/13  21:18:06
1112         Log: Integrate from mainperl.
1113      Branch: cfgperl
1114           !> pp_ctl.c
1115 ____________________________________________________________________________
1116 [  3415] By: jhi                                   on 1999/05/13  21:16:49
1117         Log: Fixes from Andy Dougherty (via private email).
1118      Branch: cfgperl
1119            ! Configure config_h.SH
1120 ____________________________________________________________________________
1121 [  3414] By: nick                                  on 1999/05/13  20:04:26
1122         Log: valist vs va_list typo
1123      Branch: perl
1124            ! pp_ctl.c
1125 ____________________________________________________________________________
1126 [  3413] By: jhi                                   on 1999/05/13  15:04:05
1127         Log: From: Andy Dougherty <doughera@lafayette.edu>
1128              To: perlbug@perl.com
1129              Subject: [PATCH] (Was Re: SunOS4.1 compilation error)
1130              Date: Wed, 12 May 1999 11:44:11 -0400 (EDT)
1131              Message-Id: <Pine.GSU.4.05.9905121136520.25150-100000@newton.phys>
1132      Branch: cfgperl
1133            ! INSTALL
1134 ____________________________________________________________________________
1135 [  3412] By: jhi                                   on 1999/05/13  14:20:17
1136         Log: Integrate from mainperl.
1137      Branch: cfgperl
1138           !> pp_ctl.c
1139 ____________________________________________________________________________
1140 [  3411] By: gsar                                  on 1999/05/13  14:16:56
1141         Log: docatch_body() declaration mismatch
1142      Branch: perl
1143            ! pp_ctl.c
1144 ____________________________________________________________________________
1145 [  3410] By: jhi                                   on 1999/05/13  13:51:44
1146         Log: Add HAS_MEMCHR and make memchr into a cpp macro if it already isn't.
1147      Branch: cfgperl
1148            ! Configure config_h.SH perl.h
1149 ____________________________________________________________________________
1150 [  3409] By: jhi                                   on 1999/05/13  13:31:53
1151         Log: Still fflushing strong.
1152      Branch: cfgperl
1153            ! Configure config_h.SH embed.h global.sym objXSUB.h perl.h
1154            ! proto.h util.c
1155 ____________________________________________________________________________
1156 [  3408] By: jhi                                   on 1999/05/12  14:30:23
1157         Log: Integrate from mainperl.
1158      Branch: cfgperl
1159           !> (integrate 30 files)
1160 ____________________________________________________________________________
1161 [  3407] By: jhi                                   on 1999/05/12  12:28:31
1162         Log: Be tidier with fflush(NULL) testing.
1163      Branch: cfgperl
1164            ! Configure config_h.SH
1165 ____________________________________________________________________________
1166 [  3406] By: gsar                                  on 1999/05/12  11:26:03
1167         Log: better range-checking on list slices, with test
1168              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
1169              Date: Sun, 02 May 1999 17:02:53 +0100
1170              Message-Id: <199905021602.RAA13905@crypt.compulink.co.uk>
1171              Subject: Re: List slice of undefs returns 0 items 
1172      Branch: perl
1173            ! pp.c t/op/list.t
1174 ____________________________________________________________________________
1175 [  3405] By: gsar                                  on 1999/05/12  11:22:27
1176         Log: change#3397 needs test tweak
1177      Branch: perl
1178            ! Changes t/pragma/warn/sv
1179 ____________________________________________________________________________
1180 [  3404] By: gsar                                  on 1999/05/12  11:07:44
1181         Log: typo in change#3397
1182      Branch: perl
1183            ! doop.c
1184 ____________________________________________________________________________
1185 [  3403] By: gsar                                  on 1999/05/12  10:49:01
1186         Log: From: Stephen Zander <gibreel@pobox.com>
1187              Date: 12 May 1999 01:22:31 -0700
1188              Message-ID: <87u2tik88o.fsf@pooh.fire-swamp.net>
1189              Subject: Re: Test::Harness runs tainted tests with wrong library path
1190      Branch: perl
1191            ! lib/Test/Harness.pm
1192 ____________________________________________________________________________
1193 [  3402] By: gsar                                  on 1999/05/12  10:42:06
1194         Log: typo in change#3400
1195      Branch: perl
1196            ! ext/B/B/Deparse.pm
1197 ____________________________________________________________________________
1198 [  3401] By: jhi                                   on 1999/05/12  10:40:42
1199         Log: A better, shinier, and possibly even correctly working
1200              reincarnation of #3398.
1201      Branch: cfgperl
1202            ! Configure config_h.SH
1203 ____________________________________________________________________________
1204 [  3400] By: gsar                                  on 1999/05/12  10:40:11
1205         Log: deparse \&func() as \(&func()) for clarity
1206              From: Albert Dvornik <bert@genscan.com>
1207              Date: 11 May 1999 13:32:04 -0400
1208              Message-ID: <tqk8ufwm0b.fsf@puma.genscan.com>
1209              Subject: [PATCH 5.005_56] Deparse and \&func() (was Re: File::Find...)
1210      Branch: perl
1211            ! ext/B/B/Deparse.pm
1212 ____________________________________________________________________________
1213 [  3399] By: gsar                                  on 1999/05/12  10:36:02
1214         Log: more testsuite smarts (many of them courtesy Ilya)
1215      Branch: perl
1216            ! lib/Test/Harness.pm t/comp/cpp.t t/io/pipe.t t/lib/db-btree.t
1217            ! t/lib/db-hash.t t/lib/db-recno.t t/lib/gdbm.t
1218            ! t/lib/io_multihomed.t t/lib/io_pipe.t t/lib/io_sock.t
1219            ! t/lib/io_udp.t t/lib/io_unix.t t/lib/ipc_sysv.t t/lib/ndbm.t
1220            ! t/lib/odbm.t t/lib/thread.t t/op/exec.t t/op/fork.t
1221            ! t/op/grent.t t/op/groups.t t/op/nothread.t t/op/numconvert.t
1222            ! t/op/pwent.t
1223 ____________________________________________________________________________
1224 [  3398] By: jhi                                   on 1999/05/12  09:33:08
1225         Log: Detect whether fflush(NULL) works as per change #3352.
1226      Branch: cfgperl
1227            ! Configure config_h.SH perl.h
1228 ____________________________________________________________________________
1229 [  3397] By: gsar                                  on 1999/05/12  08:56:03
1230         Log: From: jan.dubois@ibm.net (Jan Dubois)
1231              Date: Wed, 12 May 1999 01:01:00 +0200
1232              Message-ID: <3741b5e8.20386944@smtp1.ibm.net>
1233              Subject: [PATCH 5.005_03] chop/chomp modify readonly values
1234      Branch: perl
1235            ! doop.c
1236 ____________________________________________________________________________
1237 [  3396] By: gsar                                  on 1999/05/12  08:23:27
1238         Log: opendir(D,"x:") on win32 opens cwd() for drive rather than root;
1239              stat() behaves similarly
1240      Branch: perl
1241            ! win32/win32.c
1242 ____________________________________________________________________________
1243 [  3395] By: jhi                                   on 1999/05/11  22:21:32
1244         Log: Redo parts of #3341 and #3358 that #3394 undid.
1245      Branch: cfgperl
1246            ! Configure config_h.SH
1247 ____________________________________________________________________________
1248 [  3394] By: jhi                                   on 1999/05/11  22:03:48
1249         Log: Add I_NETINET_TCP to help change #3391.
1250      Branch: cfgperl
1251            ! Configure config_h.SH ext/Socket/Socket.xs
1252 ____________________________________________________________________________
1253 [  3393] By: jhi                                   on 1999/05/11  21:44:59
1254         Log: Integrate from mainperl.
1255      Branch: cfgperl
1256           !> (integrate 55 files)
1257 ____________________________________________________________________________
1258 [  3392] By: gsar                                  on 1999/05/11  20:56:43
1259         Log: update embedvar.h
1260      Branch: perl
1261            ! embedvar.h ext/ByteLoader/ByteLoader.pm pod/perldelta.pod
1262 ____________________________________________________________________________
1263 [  3391] By: gsar                                  on 1999/05/11  16:32:05
1264         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
1265              Date: Tue, 11 May 1999 11:10:13 -0400 (EDT)
1266              Message-ID: <Pine.GSO.4.02.9905111106460.1418-100000@eq1062.wks.na.deuba.com>
1267              Subject: Socket IPPROTO_TCP [PATCH 5.005_5x]
1268      Branch: perl
1269            ! ext/Socket/Socket.pm ext/Socket/Socket.xs
1270 ____________________________________________________________________________
1271 [  3390] By: gsar                                  on 1999/05/11  15:27:40
1272         Log: display more frequent progress messages when STDOUT is a tty
1273      Branch: perl
1274            ! lib/Test/Harness.pm
1275 ____________________________________________________________________________
1276 [  3389] By: gsar                                  on 1999/05/11  14:40:58
1277         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1278              Date: Mon, 10 May 1999 02:07:01 -0400 (EDT)
1279              Message-Id: <199905100607.CAA26045@monk.mps.ohio-state.edu>
1280              Subject: [PATCH 5.005_53] Explanations by Test::Harness
1281      Branch: perl
1282            ! lib/Test/Harness.pm
1283 ____________________________________________________________________________
1284 [  3388] By: gsar                                  on 1999/05/11  14:08:14
1285         Log: avoid creating spurious subroutine stubs on failed subroutine
1286              call and other places of sv_2cv() misuse; fixes problems with
1287              failed subroutine calls "hiding" later attempts to lookup methods
1288              in base classes
1289      Branch: perl
1290            ! gv.c perl.c pod/perlguts.pod pp_hot.c sv.c t/op/method.t
1291 ____________________________________________________________________________
1292 [  3387] By: gsar                                  on 1999/05/11  09:34:13
1293         Log: various fixes for clean build and test on win32; configpm broken,
1294              needed to open myconfig.SH rather than myconfig; sundry adjustments
1295              to bytecode stuff; tweaks to DYNAMIC_ENV_FETCH code to make it
1296              work under win32; getenv_sv() changed to getenv_len() since SVs
1297              aren't visible in the lower echelons; remove bogus exports from
1298              config.sym; PERL_OBJECT-ness for C++ exception support; null out
1299              IoDIRP in filter_del() or sv_free() will attempt to close it
1300      Branch: perl
1301            ! Changes bytecode.pl byterun.c byterun.h configpm embed.h
1302            ! embed.pl ext/B/B/Asmdata.pm ext/ByteLoader/ByteLoader.xs
1303            ! ext/DynaLoader/dlutils.c global.sym hv.c iperlsys.h objXSUB.h
1304            ! op.c perl.c perl.h pp.c pp_ctl.c proto.h scope.c scope.h
1305            ! t/io/open.t t/op/magic.t toke.c util.c vms/vms.c vms/vmsish.h
1306            ! win32/GenCAPI.pl win32/Makefile win32/config.bc
1307            ! win32/config.gc win32/config.vc win32/makedef.pl
1308            ! win32/makefile.mk win32/perlhost.h win32/runperl.c
1309            ! win32/win32.c win32/win32.h
1310 ____________________________________________________________________________
1311 [  3386] By: gsar                                  on 1999/05/11  02:49:07
1312         Log: gutsupport for C++ exceptions
1313              From: Chip Salzenberg <chip@perlsupport.com>
1314              Date: Tue, 9 Mar 1999 11:51:57 -0500
1315              Message-ID: <19990309115157.E7911@perlsupport.com>
1316              Subject: [PATCH 5.005] Flexible Exceptions
1317      Branch: perl
1318            ! embed.h global.sym objXSUB.h perl.c perl.h pp_ctl.c proto.h
1319            ! scope.c scope.h thrdvar.h util.c
1320 ____________________________________________________________________________
1321 [  3385] By: gsar                                  on 1999/05/10  19:33:36
1322         Log: "weak" references internals, still needs perlguts documentation
1323              (somewhat modified version of patch suggested by Tuomas J. Lukka
1324              <lukka@fas.harvard.edu>)
1325      Branch: perl
1326            ! dump.c embed.h embed.pl global.sym mg.c objXSUB.h perl.h
1327            ! pod/perldiag.pod proto.h sv.c sv.h util.c
1328 ____________________________________________________________________________
1329 [  3384] By: jhi                                   on 1999/05/10  18:21:43
1330         Log: Circumnavigate Digital UNIX 4.0D miniperl core dump
1331              (due to QAR 56761) (the bug has been fixed in 4.0E or better)
1332      Branch: cfgperl
1333            ! INSTALL hints/dec_osf.sh
1334 ____________________________________________________________________________
1335 [  3381] By: jhi                                   on 1999/05/10  14:39:28
1336         Log: Integrate from mainperl.
1337      Branch: cfgperl
1338           +> cygwin32/Makefile.SHs cygwin32/build-instructions.READFIRST
1339           +> cygwin32/build-instructions.charles-wilson
1340           +> cygwin32/build-instructions.sebastien-barre
1341           +> cygwin32/build-instructions.steven-morlock
1342           +> cygwin32/build-instructions.steven-morlock2
1343           +> cygwin32/impure_ptr.c cygwin32/ld2.in cygwin32/perlld.in
1344           +> ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
1345           +> ext/ByteLoader/Makefile.PL pod/Win32.pod t/lib/io_linenum.t
1346           +> t/op/numconvert.t utils/perlbc.PL
1347            - cygwin32/cw32imp.h cygwin32/gcc2 cygwin32/ld2 cygwin32/perlgcc
1348            - cygwin32/perlld
1349           !> (integrate 105 files)
1350 ____________________________________________________________________________
1351 [  3380] By: gsar                                  on 1999/05/10  12:27:14
1352         Log: regen regnodes.h
1353      Branch: perl
1354            ! Changes regnodes.h
1355 ____________________________________________________________________________
1356 [  3379] By: gsar                                  on 1999/05/10  12:17:26
1357         Log: From: jan.dubois@ibm.net (Jan Dubois)
1358              Date: Sat, 01 May 1999 22:55:36 +0200
1359              Message-ID: <373067e9.56194713@smtp1.ibm.net>
1360              Subject: [PATCH 5.005_56] Win32 and VC++ 98 doesn't support CASTI
1361      Branch: perl
1362            ! pod/perlfunc.pod pod/perlop.pod win32/config.vc
1363            ! win32/config_H.vc
1364 ____________________________________________________________________________
1365 [  3378] By: gsar                                  on 1999/05/10  12:07:13
1366         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1367              Date: Fri, 30 Apr 1999 22:26:09 -0400 (EDT)
1368              Message-Id: <199905010226.WAA19127@monk.mps.ohio-state.edu>
1369              Subject: [PATCH 5.005_56] Self-consistent numeric conversion again
1370      Branch: perl
1371            + t/op/numconvert.t
1372            ! MANIFEST doio.c dump.c perl.h pp.c pp_hot.c sv.c sv.h toke.c
1373            ! util.c
1374 ____________________________________________________________________________
1375 [  3377] By: gsar                                  on 1999/05/10  11:39:48
1376         Log: pp_modulo comment tweak from Ilya
1377      Branch: perl
1378            ! pp.c
1379 ____________________________________________________________________________
1380 [  3376] By: gsar                                  on 1999/05/10  11:30:40
1381         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
1382              Date: Fri, 7 May 1999 11:31:00 -0400 (EDT)
1383              Message-ID: <Pine.GSO.4.02.9905071127100.1449-100000@eq1062.wks.na.deuba.com>
1384              Subject: Test.pm update [PATCH _56]
1385      Branch: perl
1386            ! lib/Test.pm
1387 ____________________________________________________________________________
1388 [  3375] By: gsar                                  on 1999/05/10  11:28:30
1389         Log: From: jan.dubois@ibm.net (Jan Dubois)
1390              Date: Fri, 07 May 1999 00:59:54 +0200
1391              Message-ID: <373318ae.19292461@smtp1.ibm.net>
1392              Subject: Re: Using existing memory for an SV's PV 
1393      Branch: perl
1394            ! sv.c
1395 ____________________________________________________________________________
1396 [  3374] By: gsar                                  on 1999/05/10  11:23:44
1397         Log: From: jan.dubois@ibm.net (Jan Dubois)
1398              Date: Fri, 07 May 1999 00:59:52 +0200
1399              Message-ID: <37321800.19118320@smtp1.ibm.net>
1400              Subject: [PATCH 5.005_56] Fix -Dm memory debugging for PERL_OBJECT
1401      Branch: perl
1402            ! perl.h
1403 ____________________________________________________________________________
1404 [  3373] By: gsar                                  on 1999/05/10  11:22:10
1405         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1406              Date: Thu, 6 May 1999 18:17:28 -0400
1407              Message-ID: <19990506181728.A12433@monk.mps.ohio-state.edu>
1408              Subject: Re: [PATCH 5.005_56] Make open(F,"command |") return correct err(no)
1409      Branch: perl
1410            ! doio.c embed.h global.sym objXSUB.h pod/perldiag.pod proto.h
1411            ! util.c
1412 ____________________________________________________________________________
1413 [  3372] By: gsar                                  on 1999/05/10  10:57:49
1414         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1415              Date: Thu, 6 May 1999 01:21:05 -0400 (EDT)
1416              Message-Id: <199905060521.BAA03485@monk.mps.ohio-state.edu>
1417              Subject: [PATCH 5.005_56] Cosmetic: data-driven REx-dump
1418      Branch: perl
1419            ! regcomp.c regcomp.pl
1420 ____________________________________________________________________________
1421 [  3371] By: gsar                                  on 1999/05/10  10:54:01
1422         Log: From: lane@duphy4.physics.drexel.edu
1423              Date: Tue, 04 May 1999 10:19:25 -0700
1424              Message-Id: <3.0.6.32.19990504101925.02ecde30@ous.edu>
1425              Subject: [PATCH 5.005.56] pod->html VMS fixes
1426      Branch: perl
1427            ! installhtml lib/Pod/Html.pm
1428 ____________________________________________________________________________
1429 [  3370] By: gsar                                  on 1999/05/10  10:45:52
1430         Log: testsuite nits
1431      Branch: perl
1432            ! t/lib/io_linenum.t t/op/filetest.t
1433 ____________________________________________________________________________
1434 [  3369] By: gsar                                  on 1999/05/10  10:35:22
1435         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1436              Date: Mon, 3 May 1999 22:38:50 -0400 (EDT)
1437              Message-Id: <199905040238.WAA01865@monk.mps.ohio-state.edu>
1438              Subject: [PATCH 5.005_53] Quickier thread-specific data on OS/2
1439      Branch: perl
1440            ! os2/os2ish.h os2/os2thread.h
1441 ____________________________________________________________________________
1442 [  3368] By: gsar                                  on 1999/05/10  10:00:11
1443         Log: From: Albert Dvornik <bert@genscan.com>
1444              Date: 03 May 1999 12:20:57 -0400
1445              Message-ID: <tqlnf6gm52.fsf@puma.genscan.com>
1446              Subject: [PATCH 5.005_56] do_sv_dump does dump (core) on IO handles
1447      Branch: perl
1448            ! dump.c
1449 ____________________________________________________________________________
1450 [  3367] By: gsar                                  on 1999/05/10  09:55:51
1451         Log: shadow password support for Solaris (needs Configure help to
1452              determine HAS_GETSPENT)
1453              From: "Patrick O'Brien" <pdo@cs.umd.edu>
1454              Date: Sat, 01 May 1999 19:41:17 -0400
1455              Message-Id: <199905012341.TAA23989@optimus.cs.umd.edu>
1456              Subject: getpwent() under solaris
1457      Branch: perl
1458            ! pp_sys.c
1459 ____________________________________________________________________________
1460 [  3366] By: gsar                                  on 1999/05/10  09:45:58
1461         Log: From: jan.dubois@ibm.net (Jan Dubois)
1462              Date: Sat, 01 May 1999 23:45:47 +0200
1463              Message-ID: <373373fb.59284266@smtp1.ibm.net>
1464              Subject: [PATCH 5.005_56] Add POLLUTE=1 option to MakeMaker
1465      Branch: perl
1466            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
1467            ! pod/perldelta.pod
1468 ____________________________________________________________________________
1469 [  3365] By: gsar                                  on 1999/05/10  09:34:22
1470         Log: test suite and fix input_line_number()
1471              From: Paul Johnson <pjcj@transeda.com>
1472              Date: Thu, 29 Apr 1999 06:28:14 +0100
1473              Message-ID: <19990429062814.A17906@west-tip.transeda.com>
1474              Subject: [PATCH] IO::Handle 1.20 (was Re: FAIL Gedcom-1.01 i86pc-solaris 2.6)
1475      Branch: perl
1476            + t/lib/io_linenum.t
1477            ! MANIFEST ext/IO/lib/IO/Handle.pm
1478 ____________________________________________________________________________
1479 [  3364] By: gsar                                  on 1999/05/10  09:20:56
1480         Log: fix overeager [:foo:] parsing
1481              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
1482              Date: Fri, 30 Apr 1999 09:26:18 +0100
1483              Message-Id: <199904300826.JAA01257@crypt.compulink.co.uk>
1484              Subject: [PATCH 5.005_{56,03}] Re: Regular expression difference b/n 5.004 & 5.005 
1485      Branch: perl
1486            ! regcomp.c t/op/re_tests
1487 ____________________________________________________________________________
1488 [  3363] By: gsar                                  on 1999/05/10  09:09:21
1489         Log: documentation for Win32 builtins (somewhat modified)
1490              From: jan.dubois@ibm.net (Jan Dubois)
1491              Date: Tue, 30 Mar 1999 08:05:03 +0200
1492              Message-ID: <37006783.1926460@smtp1.ibm.net>
1493              Subject: Re: Issues with build 509 
1494      Branch: perl
1495            + pod/Win32.pod
1496            ! MANIFEST
1497 ____________________________________________________________________________
1498 [  3362] By: gsar                                  on 1999/05/10  08:22:07
1499         Log: provide File::Copy::syscopy() via Win32::CopyFile() on win32
1500      Branch: perl
1501            ! lib/File/Copy.pm win32/win32.c
1502 ____________________________________________________________________________
1503 [  3361] By: gsar                                  on 1999/05/10  08:11:29
1504         Log: escape ampersands in <pre> sections
1505      Branch: perl
1506            ! Changes lib/Pod/Html.pm
1507 ____________________________________________________________________________
1508 [  3360] By: gsar                                  on 1999/05/10  08:04:14
1509         Log: AIX hints enhancements (threads build, SOCKS support)
1510              From: "David R. Favor" <dfavor@austin.ibm.com>
1511              Date: Wed, 28 Apr 1999 08:45:28 -0500
1512              Message-ID: <372710F8.B1F73BEB@austin.ibm.com>
1513              Subject: Working build for AIX + gcc + threading
1514      Branch: perl
1515            ! hints/aix.sh
1516 ____________________________________________________________________________
1517 [  3359] By: gsar                                  on 1999/05/10  07:49:26
1518         Log: more Compiler patches from Vishal Bhatia <vishalb@my-dejanews.com>
1519              Date: Tue, 27 Apr 1999 23:47:24 PDT
1520              Message-ID: <19990428064724.95244.qmail@hotmail.com>
1521              Subject: [PATCH 5.005_56] Saving Tied hashes ( C.pm)
1522              --
1523              Date: Thu, 29 Apr 1999 18:21:06 -0700
1524              Message-ID: <GEFPBFDJADFJBAAA@my-dejanews.com>
1525              Subject: [PATCH 5.005_56] double constants ( C.pm)
1526              --
1527              Date: Mon, 03 May 1999 20:21:31 PDT
1528              Message-ID: <19990504032131.81113.qmail@hotmail.com>
1529              Subject: [PATCH 5.005_56] Overloading implementation ( Compiler)
1530              --
1531              Date: Thu, 06 May 1999 17:57:09 -0700
1532              Message-ID: <FCJELBLAJBOBAAAA@my-dejanews.com>
1533              Subject: Stash.pm
1534      Branch: perl
1535            ! ext/B/B.pm ext/B/B.xs ext/B/B/Bblock.pm ext/B/B/C.pm
1536            ! ext/B/B/CC.pm ext/B/B/Stash.pm t/harness
1537 ____________________________________________________________________________
1538 [  3358] By: gsar                                  on 1999/05/10  04:39:15
1539         Log: cygwin32 update (untested adaptation of patch against 5.005_03)
1540              From: alexander smishlajev <als@turnhere.com>
1541              Date: Sun, 25 Apr 1999 14:58:29 +0300
1542              Message-ID: <37230365.5F68B460@turnhere.com>
1543              Subject: [PATCH]5.005_03 (CORE) cygwin32 port
1544      Branch: perl
1545            + cygwin32/Makefile.SHs cygwin32/build-instructions.READFIRST
1546            + cygwin32/build-instructions.charles-wilson
1547            + cygwin32/build-instructions.sebastien-barre
1548            + cygwin32/build-instructions.steven-morlock
1549            + cygwin32/build-instructions.steven-morlock2
1550            + cygwin32/impure_ptr.c cygwin32/ld2.in cygwin32/perlld.in
1551            - cygwin32/cw32imp.h cygwin32/gcc2 cygwin32/ld2 cygwin32/perlgcc
1552            - cygwin32/perlld
1553            ! Configure EXTERN.h MANIFEST Makefile.SH README.cygwin32 XSUB.h
1554            ! cflags.SH config_h.SH dosish.h ext/POSIX/Makefile.PL
1555            ! ext/SDBM_File/sdbm/pair.c hints/cygwin32.sh installperl
1556            ! lib/Cwd.pm lib/ExtUtils/MakeMaker.pm lib/perl5db.pl
1557            ! makedepend.SH perl.h perlvars.h pp_hot.c pp_sys.c regcomp.c
1558            ! t/io/fs.t t/io/tell.t t/lib/anydbm.t t/op/stat.t util.c
1559 ____________________________________________________________________________
1560 [  3357] By: gsar                                  on 1999/05/10  04:07:07
1561         Log: applied suggested patch, modulo already applied parts
1562              From: Charles Bailey <BAILEY@newman.upenn.edu>
1563              Date: Sat, 24 Apr 1999 20:12:43 -0400 (EDT)
1564              Message-id: <01JAF9UAV9XG002O0W@mail.newman.upenn.edu>
1565              Subject: [Patch 5.005_56] VMS consolidated patch #2
1566      Branch: perl
1567            ! configure.com t/op/filetest.t t/op/taint.t t/pragma/warn/doio
1568            ! t/pragma/warn/mg t/pragma/warn/pp_sys t/pragma/warn/sv
1569            ! vms/descrip_mms.template vms/ext/vmsish.t vms/perlvms.pod
1570            ! vms/subconfigure.com vms/test.com vms/vms.c
1571 ____________________________________________________________________________
1572 [  3356] By: gsar                                  on 1999/05/10  03:48:08
1573         Log: applied suggested patch, with win32 and PERL_OBJECT additions
1574              From: Tom Hughes <tom@compton.nu>
1575              Date: Sat, 24 Apr 1999 18:11:59 +0100
1576              Message-ID: <609bdff748.tom@compton.compton.nu>
1577              Subject: ByteLoader patch
1578      Branch: perl
1579            + ext/ByteLoader/ByteLoader.pm ext/ByteLoader/ByteLoader.xs
1580            + ext/ByteLoader/Makefile.PL utils/perlbc.PL
1581            ! MANIFEST bytecode.h bytecode.pl byterun.c byterun.h embed.h
1582            ! embed.pl ext/B/B.xs ext/B/B/Asmdata.pm ext/B/B/Bytecode.pm
1583            ! ext/B/B/Debug.pm objXSUB.h op.c pp_ctl.c proto.h
1584            ! utils/Makefile win32/Makefile win32/makefile.mk
1585 ____________________________________________________________________________
1586 [  3355] By: gsar                                  on 1999/05/10  03:22:49
1587         Log: document 'test' attribute (from Andreas Koenig)
1588      Branch: perl
1589            ! lib/ExtUtils/MakeMaker.pm
1590 ____________________________________________________________________________
1591 [  3354] By: gsar                                  on 1999/05/10  03:12:37
1592         Log: From: pmarquess@bfsec.bt.co.uk
1593              Date: Thu, 22 Apr 1999 23:12:08 +0100
1594              Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6B45@mbtlipnt02.btlabs.bt.co.uk>
1595              Subject: PATCH for small bug in scan_bin
1596      Branch: perl
1597            ! util.c
1598 ____________________________________________________________________________
1599 [  3353] By: gsar                                  on 1999/05/10  02:39:33
1600         Log: more bulletproof workaround for mangled paths (updates changes#3345,3350);
1601              provide Win32::GetLongPathName() to complement Win32::GetShortPathName()
1602      Branch: perl
1603            ! t/op/magic.t win32/makedef.pl win32/runperl.c win32/win32.c
1604            ! win32/win32iop.h
1605 ____________________________________________________________________________
1606 [  3352] By: gsar                                  on 1999/05/09  22:47:39
1607         Log: flush all open output buffers before fork(), exec(), system, qx//
1608              and pipe open() operations, simplifying buffering headaches faced
1609              by users; uses fflush(NULL), which may need Configure test
1610      Branch: perl
1611            ! perl.h pod/perldelta.pod pod/perlfunc.pod pod/perlipc.pod
1612            ! pp_sys.c util.c vmesa/vmesa.c vms/vms.c win32/win32.c
1613 ____________________________________________________________________________
1614 [  3351] By: gsar                                  on 1999/05/09  21:11:51
1615         Log: perlcc on win32 (correct version of fix suggested by Jean-Louis
1616              Leroy <jll@skynet.be>)
1617      Branch: perl
1618            ! utils/perlcc.PL
1619 ____________________________________________________________________________
1620 [  3350] By: gsar                                  on 1999/05/09  20:39:11
1621         Log: normalize $^X to full pathname on win32
1622      Branch: perl
1623            ! win32/runperl.c
1624 ____________________________________________________________________________
1625 [  3349] By: gsar                                  on 1999/05/09  20:23:07
1626         Log: allow readline($globref), <$globref> already works
1627      Branch: perl
1628            ! pp_hot.c
1629 ____________________________________________________________________________
1630 [  3348] By: gsar                                  on 1999/05/09  20:00:09
1631         Log: perldoc cleanups (variant of changes suggested by Christian Lemburg
1632              <lemburg@online-club.de>)
1633      Branch: perl
1634            ! utils/perldoc.PL
1635 ____________________________________________________________________________
1636 [  3347] By: gsar                                  on 1999/05/09  18:47:21
1637         Log: additions to Thread.pm docs from Tuomas J. Lukka
1638              <lukka@fas.harvard.edu>
1639      Branch: perl
1640            ! ext/Thread/Thread.pm
1641 ____________________________________________________________________________
1642 [  3346] By: gsar                                  on 1999/05/09  18:38:00
1643         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
1644              Date: Sat, 17 Apr 1999 02:46:13 -0700 (PDT)
1645              Message-ID: <14103.57454.614253.598264@fre-76-120.reshall.berkeley.edu>
1646              Subject: [PATCH _56] Re: pdt: Perl Development Tools? 
1647      Branch: perl
1648            ! ext/B/B/Xref.pm
1649 ____________________________________________________________________________
1650 [  3345] By: gsar                                  on 1999/05/09  18:22:43
1651         Log: work around mangled archname on win32 while finding privlib/sitelib;
1652              normalize lib paths to forward slashes internally
1653      Branch: perl
1654            ! win32/win32.c
1655 ____________________________________________________________________________
1656 [  3344] By: gsar                                  on 1999/05/09  03:20:06
1657         Log: fix typo in dbm filters that caused odbm.t to fail
1658      Branch: perl
1659            ! ext/ODBM_File/ODBM_File.xs t/lib/odbm.t
1660 ____________________________________________________________________________
1661 [  3343] By: gsar                                  on 1999/05/09  02:02:59
1662         Log: tweak test totals
1663      Branch: perl
1664            ! Changes t/lib/tie-stdhandle.t
1665 ____________________________________________________________________________
1666 [  3342] By: gsar                                  on 1999/05/09  01:42:06
1667         Log: import list propagation busted (pointed out by Ton Hospel
1668              <thospel@mail.dma.be>)
1669      Branch: perl
1670            ! lib/autouse.pm
1671 ____________________________________________________________________________
1672 [  3341] By: gsar                                  on 1999/05/09  00:54:18
1673         Log: hpux needs {SHLIB_PATH,LDOPTS} rather than LD_{LIBRARY,RUN}_PATH
1674              (as suggested by Eric Boehm <boehm@nortelnetworks.com>)
1675      Branch: perl
1676            ! Configure Makefile.SH
1677 ____________________________________________________________________________
1678 [  3340] By: gsar                                  on 1999/05/09  00:40:41
1679         Log: generate manpages for newly added utils
1680      Branch: perl
1681            ! installman
1682 ____________________________________________________________________________
1683 [  3339] By: gsar                                  on 1999/05/09  00:33:50
1684         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
1685              Date: Sun, 02 May 1999 17:59:24 +0100
1686              Message-Id: <199905021659.RAA14016@crypt.compulink.co.uk>
1687              Subject: [PATCH] Re: ptr to realloced memory in yylex
1688      Branch: perl
1689            ! toke.c
1690 ____________________________________________________________________________
1691 [  3338] By: jhi                                   on 1999/05/08  22:40:29
1692         Log: Remove CONFIG item, add Digital UNIX 'ld' bug.
1693      Branch: cfgperl
1694            ! INSTALL
1695 ____________________________________________________________________________
1696 [  3337] By: jhi                                   on 1999/05/08  22:22:26
1697         Log: Integrate from mainperl.
1698      Branch: cfgperl
1699           +> pod/perldbmfilter.pod t/io/open.t t/lib/tie-stdhandle.t
1700           !> (integrate 54 files)
1701 ____________________________________________________________________________
1702 [  3336] By: gsar                                  on 1999/05/08  21:48:22
1703         Log: make perldoc -f grok nested =items
1704      Branch: perl
1705            ! utils/perldoc.PL
1706 ____________________________________________________________________________
1707 [  3335] By: gsar                                  on 1999/05/08  19:48:11
1708         Log: allow AV/HV dereferences on pseudohashes ($ph->{foo}[1], etc.)
1709      Branch: perl
1710            ! op.c t/lib/fields.t
1711 ____________________________________________________________________________
1712 [  3334] By: gsar                                  on 1999/05/08  19:09:41
1713         Log: update test totals
1714      Branch: perl
1715            ! t/lib/bigintpm.t
1716 ____________________________________________________________________________
1717 [  3333] By: gsar                                  on 1999/05/08  16:56:02
1718         Log: mention unpack('pP',...) footshot (from Albert Dvornik <bert@genscan.com>)
1719      Branch: perl
1720            ! pod/perlfunc.pod
1721 ____________________________________________________________________________
1722 [  3332] By: gsar                                  on 1999/05/08  16:46:44
1723         Log: applied suggested patch, added tests
1724              From: William Mann <wmann@avici.com>
1725              Date: Mon, 12 Apr 1999 12:25:22 -0400 (EDT)
1726              Message-Id: <199904121625.MAA00983@hwsrv1.avici.com>
1727              Subject: BigInt.pm extensions for logical operations
1728      Branch: perl
1729            ! lib/Math/BigInt.pm pod/perldelta.pod t/lib/bigintpm.t
1730 ____________________________________________________________________________
1731 [  3331] By: gsar                                  on 1999/05/08  16:09:33
1732         Log: avoid temporary files named 'tmp'
1733      Branch: perl
1734            ! Makefile.SH pp.c
1735 ____________________________________________________________________________
1736 [  3330] By: nick                                  on 1999/05/08  14:16:30
1737         Log: Implement OPEN, EOF, SEEK, TELL, BINMODE and FILENO as TIEHANDLE methods.
1738              Provide Tie::StdHandle
1739              Basic update of docs.
1740      Branch: perl
1741            + t/lib/tie-stdhandle.t
1742            ! lib/Tie/Handle.pm pod/perltie.pod pp_sys.c
1743 ____________________________________________________________________________
1744 [  3329] By: nick                                  on 1999/05/08  12:03:45
1745         Log: Tweaks to open(my $fh,...) stuff
1746      Branch: perl
1747            ! op.c pp.c pp_sys.c t/io/open.t
1748 ____________________________________________________________________________
1749 [  3328] By: nick                                  on 1999/05/08  11:18:42
1750         Log: Bring SDBM_File.xs into line with new typemap
1751      Branch: perl
1752            ! ext/SDBM_File/SDBM_File.xs
1753 ____________________________________________________________________________
1754 [  3327] By: gsar                                  on 1999/05/08  00:07:11
1755         Log: add test case for AUTOLOAD reentrancy fix in change#3279
1756      Branch: perl
1757            ! t/lib/autoloader.t
1758 ____________________________________________________________________________
1759 [  3326] By: nick                                  on 1999/05/07  21:24:50
1760         Log: Implement open( my $fh, ...) and similar.
1761              Set flag in op.c for "constructor ops"
1762              In pp_rv2gv, if flag is set and arg is PADSV and uninit
1763              vivify as reference to a detached GV.
1764              (Name of GV is the pad name.)
1765              This scheme should "just work" for pipe/socket etc. too.
1766              
1767              #if 0 out the open(FH,undef) for now.
1768              Change t/io/open.t to test open(my $fh,...)
1769      Branch: perl
1770            ! op.c pp.c pp_sys.c t/io/open.t
1771 ____________________________________________________________________________
1772 [  3325] By: nick                                  on 1999/05/07  21:18:42
1773         Log: Correct SvLEN vs SvCUR  which leads to odd "chunk" vs "line" in mess().
1774      Branch: perl
1775            ! util.c
1776 ____________________________________________________________________________
1777 [  3324] By: gsar                                  on 1999/05/07  20:28:31
1778         Log: avoid using PL_sv_mutex in condpair_magic() (avoids hangs when
1779              intervening code has to allocate SVs)
1780      Branch: perl
1781            ! util.c
1782 ____________________________________________________________________________
1783 [  3323] By: gsar                                  on 1999/05/07  19:45:08
1784         Log: allow line numbers to show in diagnostics during global destruction
1785      Branch: perl
1786            ! util.c
1787 ____________________________________________________________________________
1788 [  3322] By: gsar                                  on 1999/05/07  09:38:11
1789         Log: From: Dan Sugalski <sugalskd@ous.edu>
1790              Date: Fri, 09 Apr 1999 16:16:39 -0700
1791              Message-Id: <3.0.6.32.19990409161639.02ea1050@ous.edu>
1792              Subject: [PATCH 5.005_03]Bug in MM_VMS.PM
1793      Branch: perl
1794            ! lib/ExtUtils/MM_VMS.pm
1795 ____________________________________________________________________________
1796 [  3321] By: gsar                                  on 1999/05/07  09:08:23
1797         Log: From: kwzh@gnu.org (Karl Heuer)
1798              Date: Wed, 7 Apr 1999 23:58:58 -0400
1799              Message-Id: <199904080358.XAA01192@mescaline.gnu.org>
1800              Subject: [perl-5.005.02] detect lack of /dev/tty
1801      Branch: perl
1802            ! Makefile.SH
1803 ____________________________________________________________________________
1804 [  3320] By: gsar                                  on 1999/05/07  08:52:14
1805         Log: allow distinct prefix for versioned executables
1806              From: Roderick Schertler <roderick@argon.org>
1807              Date: Wed, 07 Apr 1999 15:34:56 -0400
1808              Message-ID: <3003.923513696@eeyore.ibcinc.com>
1809              Subject: perl55.00503 -> perl5.00503 patch for installperl
1810      Branch: perl
1811            ! INSTALL installperl
1812 ____________________________________________________________________________
1813 [  3319] By: gsar                                  on 1999/05/07  08:07:02
1814         Log: From: Dan Sugalski <sugalskd@osshe.edu>
1815              Date: Mon, 05 Apr 1999 15:38:42 -0700
1816              Message-Id: <3.0.6.32.19990405153842.0367b650@ous.edu>
1817              Subject: Re: chomp fails with $/ in fixed-length record mode
1818              --
1819              From: Roderick Schertler <roderick@argon.org>
1820              Date: Tue, 06 Apr 1999 21:11:37 -0400
1821              Message-ID: <2795.923447497@eeyore.ibcinc.com>
1822              Subject: Re: chomp fails with $/ in fixed-length record mode
1823      Branch: perl
1824            ! doop.c pod/perlfunc.pod t/op/chop.t
1825 ____________________________________________________________________________
1826 [  3318] By: gsar                                  on 1999/05/07  07:56:35
1827         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
1828              Date: Tue, 6 Apr 1999 01:40:36 -0400
1829              Message-ID: <19990406014035.A1238@monk.mps.ohio-state.edu>
1830              Subject: [PATCH 5.005_*] Make % use fmod()
1831      Branch: perl
1832            ! pp.c t/op/arith.t
1833 ____________________________________________________________________________
1834 [  3317] By: gsar                                  on 1999/05/07  04:18:11
1835         Log: DBM Filters (via private mail)
1836              From: pmarquess@bfsec.bt.co.uk
1837              Date: Sun, 18 Apr 1999 21:05:52 +0100
1838              Message-Id: <199904182009.NAA19152@activestate.com>
1839              Subject: DBM Filters
1840      Branch: perl
1841            + pod/perldbmfilter.pod
1842            ! MANIFEST ext/DB_File/Changes ext/DB_File/DB_File.pm
1843            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
1844            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
1845            ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.pm
1846            ! ext/NDBM_File/NDBM_File.xs ext/NDBM_File/typemap
1847            ! ext/ODBM_File/ODBM_File.pm ext/ODBM_File/ODBM_File.xs
1848            ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.pm
1849            ! ext/SDBM_File/SDBM_File.xs ext/SDBM_File/typemap
1850            ! lib/AnyDBM_File.pm pod/Makefile pod/buildtoc pod/perl.pod
1851            ! pod/perldelta.pod t/lib/db-btree.t t/lib/db-hash.t
1852            ! t/lib/db-recno.t t/lib/gdbm.t t/lib/ndbm.t t/lib/odbm.t
1853            ! t/lib/sdbm.t
1854 ____________________________________________________________________________
1855 [  3316] By: gsar                                  on 1999/05/07  03:28:53
1856         Log: avoid negative return value from Win32::GetTickCount()
1857              From: jan.dubois@ibm.net (Jan Dubois)
1858              Date: Sat, 03 Apr 1999 19:04:18 +0200
1859              Message-ID: <37084742.22824479@smtp1.ibm.net>
1860              Subject: Re: Win32::GetTickCount
1861      Branch: perl
1862            ! win32/win32.c
1863 ____________________________________________________________________________
1864 [  3315] By: nick                                  on 1999/05/06  21:44:38
1865         Log: open(FH,undef) # creates new_tmpfile opened read/write
1866              Add t/io/open.t with test for above.
1867      Branch: perl
1868            + t/io/open.t
1869            ! pp_sys.c
1870 ____________________________________________________________________________
1871 [  3314] By: gsar                                  on 1999/05/06  08:01:23
1872         Log: compiler fixes from Vishal Bhatia <vishalb@hotmail.com>
1873              Date: Tue, 30 Mar 1999 23:40:34 PST
1874              Message-ID: <19990331074034.6117.qmail@hotmail.com>
1875              Subject: [PATCH 5.005_56] pp_entersub and pp_leavewrite(CC.pm)
1876              --
1877              Date: Wed, 07 Apr 1999 00:28:23 -0800
1878              Message-ID: <FGBNLNPOEELFAAAA@my-dejanews.com>
1879              Subject: [PATCH 5.005_56] function prototypes(B.pm)
1880              --
1881              Date: Thu, 22 Apr 1999 23:40:52 -0700
1882              Message-ID: <OEAOMKBMLDADCAAA@my-dejanews.com>
1883              Subject: [PATCH 5.005_56 ] discarding worthless padsvs
1884              --
1885              Date: Tue, 27 Apr 1999 01:14:49 PDT
1886              Message-ID: <19990427081449.28615.qmail@hotmail.com>
1887              Subject: [PATCH 5.005_56] pp_ncmp implementation ( CC.pm)
1888      Branch: perl
1889            ! ext/B/B.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm t/op/gv.t
1890            ! t/op/ref.t
1891 ____________________________________________________________________________
1892 [  3313] By: jhi                                   on 1999/05/06  07:59:52
1893         Log: Integrate from mainperl.
1894      Branch: cfgperl
1895           !> (integrate 33 files)
1896 ____________________________________________________________________________
1897 [  3312] By: gsar                                  on 1999/05/06  07:11:50
1898         Log: add Ethiopic section to unicode master database (from Ken
1899              Whistler <kenw@sybase.com>)
1900      Branch: perl
1901            ! lib/unicode/UnicodeData-Latest.txt
1902 ____________________________________________________________________________
1903 [  3311] By: gsar                                  on 1999/05/06  05:37:55
1904         Log: From: Damon Atkins <n107844@sysmgtdev.nabaus.com.au>
1905              Date: Tue, 30 Mar 1999 11:26:11 +1000 (EST)
1906              Message-Id: <199903300126.LAA20870@sysmgtdev.nabaus.com.au>
1907              Subject: Largefiles for Solaris
1908      Branch: perl
1909            ! hints/solaris_2.sh
1910 ____________________________________________________________________________
1911 [  3310] By: gsar                                  on 1999/05/06  05:14:35
1912         Log: emit more accurate diagnostic for syntax errors involving <>
1913              within eval""
1914      Branch: perl
1915            ! toke.c utils/perldoc.PL
1916 ____________________________________________________________________________
1917 [  3309] By: gsar                                  on 1999/05/06  04:36:31
1918         Log: additional test for IPC::Open3 (courtesy RonaldWS@aol.com)
1919      Branch: perl
1920            ! t/lib/open3.t
1921 ____________________________________________________________________________
1922 [  3308] By: gsar                                  on 1999/05/06  03:19:16
1923         Log: applied first part of suggested patch (bug described cannot be
1924              reproduced any longer, so the second inconclusive part has not
1925              been applied)
1926              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
1927              Date: Sun, 28 Mar 1999 04:51:34 +0100
1928              Message-Id: <199903280351.EAA20430@crypt.compulink.co.uk>
1929              Subject: [PATCH 5.005_56] Re: A core dump 
1930      Branch: perl
1931            ! toke.c
1932 ____________________________________________________________________________
1933 [  3307] By: gsar                                  on 1999/05/06  01:56:06
1934         Log: fix bogus OPf_REF context in C<sort BLOCK @foo> (extension of
1935              change#3180)
1936      Branch: perl
1937            ! op.c
1938 ____________________________________________________________________________
1939 [  3306] By: gsar                                  on 1999/05/05  17:17:34
1940         Log: applied non-conflicting parts of suggested patch
1941              From: Charles Bailey <BAILEY@newman.upenn.edu>
1942              Date: Sat, 27 Mar 1999 00:16:51 -0400 (EDT)
1943              Message-id: <01J9AZY8I2PW001O2S@mail.newman.upenn.edu>
1944              Subject: [Patch 5.005_56] Revised VMS patch
1945      Branch: perl
1946            ! Changes ext/B/defsubs.h.PL hv.c iperlsys.h perl.c
1947            ! pod/perldiag.pod proto.h util.c vms/perlvms.pod vms/vms.c
1948 ____________________________________________________________________________
1949 [  3305] By: gsar                                  on 1999/05/05  16:20:19
1950         Log: make perldoc use backslashed pathnames within system() on win32
1951      Branch: perl
1952            ! pod/perldiag.pod pod/perlthrtut.pod utils/perldoc.PL
1953 ____________________________________________________________________________
1954 [  3304] By: gsar                                  on 1999/05/05  07:29:43
1955         Log: upgrade Pod::Parser to v1.081 from CPAN
1956      Branch: perl
1957            ! lib/Pod/Checker.pm lib/Pod/InputObjects.pm lib/Pod/Parser.pm
1958            ! lib/Pod/PlainText.pm lib/Pod/Select.pm lib/Pod/Usage.pm
1959            ! t/pod/special_seqs.t t/pod/special_seqs.xr t/pod/testp2pt.pl
1960 ____________________________________________________________________________
1961 [  3303] By: gsar                                  on 1999/05/05  07:02:07
1962         Log: From: Andy Dougherty <doughera@lafayette.edu>
1963              Date: Fri, 19 Mar 1999 12:31:35 -0500 (EST)
1964              Message-Id: <Pine.GSU.4.05.9903191208250.8899-100000@newton.phys>
1965              Subject: [PATCH 5.005_03-MT3] INSTALL patches
1966      Branch: perl
1967            ! INSTALL
1968 ____________________________________________________________________________
1969 [  3302] By: gsar                                  on 1999/05/05  06:55:21
1970         Log: load base packages based on nonexistent $VERSION
1971              From: andreas.koenig@anima.de (Andreas J. Koenig)
1972              Date: 19 Mar 1999 06:00:28 +0100
1973              Message-ID: <sfcsob2m5ub.fsf@dubravka.in-berlin.de>
1974              Subject: Re: base.pm flaw
1975      Branch: perl
1976            ! lib/base.pm lib/locale.pm
1977 ____________________________________________________________________________
1978 [  3301] By: gsar                                  on 1999/05/04  05:41:08
1979         Log: pod2man outputs switched date and revision label (fix suggested by
1980              EthanSasiela@mede.com)
1981      Branch: perl
1982            ! pod/pod2man.PL
1983 ____________________________________________________________________________
1984 [  3300] By: gsar                                  on 1999/05/03  18:48:25
1985         Log: adjust win32_stat() to cope with FindFirstFile() and stat() bugs
1986              (makes opendir(D,"c:") work reliably)
1987      Branch: perl
1988            ! win32/win32.c
1989 ____________________________________________________________________________
1990 [  3299] By: gsar                                  on 1999/05/02  19:39:55
1991         Log: add test case for change#3298
1992      Branch: perl
1993            ! sv.c t/op/readdir.t
1994 ____________________________________________________________________________
1995 [  3298] By: gsar                                  on 1999/05/02  19:24:41
1996         Log: close directory handles properly when localized
1997      Branch: perl
1998            ! sv.c
1999 ____________________________________________________________________________
2000 [  3297] By: jhi                                   on 1999/04/30  11:42:14
2001         Log: Integrate from mainperl.
2002      Branch: cfgperl
2003           !> Changes config_h.SH configure.com lib/AutoLoader.pm
2004           !> lib/AutoSplit.pm lib/File/Path.pm pod/perlre.pod pp.c pp_ctl.c
2005           !> pp_sys.c proto.h regcomp.c t/op/die.t t/op/ref.t util.c
2006           !> vms/descrip_mms.template vms/gen_shrfls.pl vms/munchconfig.c
2007           !> vms/subconfigure.com win32/win32.c
2008 ____________________________________________________________________________
2009 [  3293] By: chip                                  on 1999/04/29  18:50:49
2010         Log: Fix shebang lines.
2011      Branch: maint-5.004/perl
2012            ! Porting/p4d2p h2pl/mksizes pod/checkpods.PL pod/pod2html.PL
2013            ! pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL utils/c2ph.PL
2014            ! utils/h2ph.PL utils/h2xs.PL utils/perlbug.PL utils/perldoc.PL
2015            ! utils/pl2pm.PL utils/splain.PL win32/bin/search.pl
2016            ! x2p/find2perl.PL x2p/s2p.PL
2017 ____________________________________________________________________________
2018 [  3284] By: gsar                                  on 1999/04/27  00:48:42
2019         Log: integrate change#3279 from maint-5.004
2020      Branch: perl
2021            ! lib/AutoLoader.pm
2022 ____________________________________________________________________________
2023 [  3279] By: chip                                  on 1999/04/26  23:09:26
2024         Log: Make &AutoLoad::AUTOLOAD reentrant.
2025      Branch: maint-5.004/perl
2026            ! lib/AutoLoader.pm
2027 ____________________________________________________________________________
2028 [  3276] By: chip                                  on 1999/04/26  22:34:36
2029         Log: Make porting scripts executable.
2030      Branch: maint-5.004/perl
2031            ! Changes Porting/genlog Porting/makerel Porting/p4desc
2032            ! Porting/patchls
2033 ____________________________________________________________________________
2034 [  3274] By: gsar                                  on 1999/04/26  17:30:31
2035         Log: allow embedded null characters in diagnostics
2036      Branch: perl
2037            ! pp_ctl.c pp_sys.c proto.h regcomp.c t/op/die.t util.c
2038 ____________________________________________________________________________
2039 [  3273] By: gsar                                  on 1999/04/26  08:27:22
2040         Log: hand-applied conflicting parts of suggested patch
2041              From: Charles Bailey <BAILEY@newman.upenn.edu>
2042              Date: Wed, 17 Mar 1999 23:55:23 -0400 (EDT)
2043              Message-id: <01J8YELSL7WK001E7S@mail.newman.upenn.edu>
2044              Subject: [PATCH 5.005_56] VMS configuration/build
2045      Branch: perl
2046            ! configure.com vms/descrip_mms.template vms/gen_shrfls.pl
2047            ! vms/munchconfig.c vms/subconfigure.com
2048 ____________________________________________________________________________
2049 [  3272] By: gsar                                  on 1999/04/26  08:25:41
2050         Log: update Changes; tweak minor regressions
2051      Branch: perl
2052            ! Changes lib/AutoSplit.pm lib/File/Path.pm
2053 ____________________________________________________________________________
2054 [  3271] By: gsar                                  on 1999/04/26  07:52:51
2055         Log: integrate change#3229 from maint-5.004
2056      Branch: perl
2057            ! pp_ctl.c util.c
2058 ____________________________________________________________________________
2059 [  3270] By: gsar                                  on 1999/04/25  22:58:27
2060         Log: fix buggy reference count on refs to SVs with autoviv magic
2061              (resulted in C<my @a; $a[1] = 1; print \$_ for @a> and Data::Dumper
2062              accessing free()d memory)
2063      Branch: perl
2064            ! pp.c t/op/ref.t
2065 ____________________________________________________________________________
2066 [  3269] By: gsar                                  on 1999/04/24  17:07:55
2067         Log: fix bug in change#3123 (off-by-one, caused C<qx[noargs]> to fail
2068              on win32)
2069      Branch: perl
2070            ! win32/win32.c
2071 ____________________________________________________________________________
2072 [  3268] By: gsar                                  on 1999/04/24  16:38:25
2073         Log: kill dup hunk
2074      Branch: perl
2075            ! config_h.SH
2076 ____________________________________________________________________________
2077 [  3267] By: gsar                                  on 1999/04/24  16:35:57
2078         Log: integrate cfgperl changes into mainline
2079      Branch: perl
2080           +> myconfig.SH
2081            - myconfig
2082            ! pod/perlre.pod
2083           !> (integrate 38 files)
2084 ____________________________________________________________________________
2085 [  3266] By: jhi                                   on 1999/04/23  18:42:44
2086         Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
2087              To: perl5-porters@perl.org, Jarkko Hietaniemi <jhi@iki.fi>,
2088              Graham Barr <gbarr@pobox.com>, Gurusamy Sarathy <gsar@activestate.com>
2089              Cc: Lionel Cons <lionel.cons@cern.ch>,
2090              Ilya Zakharevich <ilya@math.ohio-state.edu>,
2091              David Hayes <david@bdel.com>
2092              Subject: [PATCH] h2ph
2093              Date: Fri, 23 Apr 1999 12:37:23 -0400
2094              Message-ID: <19990423123723.A49550@O2.chapin.edu>
2095      Branch: cfgperl
2096            ! utils/h2ph.PL
2097 ____________________________________________________________________________
2098 [  3265] By: jhi                                   on 1999/04/21  18:17:12
2099         Log: From: lane@duphy4.physics.drexel.edu (by way of Dan Sugalski <sugalskd@ous.edu>)
2100              To: perlbug@perl.org
2101              Subject: [PATCH Perl 5.005.56] descrip_mms.template installed files fix
2102              Date: Wed, 21 Apr 1999 08:17:54 -0700
2103              Message-Id: <3.0.6.32.19990421081754.03127b60@ous.edu>
2104      Branch: cfgperl
2105            ! vms/descrip_mms.template
2106 ____________________________________________________________________________
2107 [  3264] By: jhi                                   on 1999/04/20  08:50:54
2108         Log: From: Andy Dougherty <doughera@lafayette.edu>
2109              To: The Perl Porters Mailing List <perl5-porters@perl.org>
2110              Subject: [PATCH 5.005_56] Re: 5.006 Todo
2111              Date: Mon, 19 Apr 1999 16:27:07 -0400 (EDT)
2112              Message-Id: <Pine.GSU.4.05.9904191623470.7838-100000@newton.phys>
2113      Branch: cfgperl
2114            ! Porting/pumpkin.pod
2115 ____________________________________________________________________________
2116 [  3263] By: jhi                                   on 1999/04/20  08:05:01
2117         Log: From: Chip Salzenberg <chip@perlsupport.com>
2118              To: Perl 5 Porters <perl5-porters@perl.org>
2119              Subject: [PATCH 5.005_56] Configure: $sig_count
2120              Date: Sun, 18 Apr 1999 17:54:36 -0400
2121              Message-ID: <19990418175436.A27496@perlsupport.com>
2122      Branch: cfgperl
2123            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
2124            ! config_h.SH
2125 ____________________________________________________________________________
2126 [  3262] By: jhi                                   on 1999/04/19  18:23:50
2127         Log: Subject: PATCH wrong faq reference in perlbook.pod
2128              From: Robin Barker <rmb1@cise.npl.co.uk>
2129              To: perlbug@perl.com
2130              Date: Fri, 9 Apr 1999 16:05:23 +0100 (BST)
2131              Message-Id: <199904091505.QAA03757@cyclone.cise.npl.co.uk>
2132      Branch: cfgperl
2133            ! pod/perlbook.pod
2134 ____________________________________________________________________________
2135 [  3261] By: jhi                                   on 1999/04/15  13:59:04
2136         Log: From: Andy Dougherty <doughera@lafayette.edu>
2137              To: Hugo van der Sanden <hugo@corp.netcom.net.uk>
2138              Cc: Perl Porters <perl5-porters@perl.org>
2139              Subject: [PATCH] Re: 5.005_03 and gcc, GNU ld under Solaris 2.6
2140              Date: Wed, 14 Apr 1999 17:07:43 -0400 (EDT)
2141              Message-Id: <Pine.GSU.4.05.9904141658290.4262-100000@newton.phys>
2142      Branch: cfgperl
2143            ! hints/solaris_2.sh
2144 ____________________________________________________________________________
2145 [  3260] By: jhi                                   on 1999/04/15  13:56:53
2146         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
2147              To: pumpkings@jhereg.perl.com
2148              Subject: PATCH: 5.005_56: perldata.pod (UPDATE)
2149              Date: Thu, 15 Apr 1999 07:13:41 -0600
2150              Message-Id: <199904151313.HAA07682@jhereg.perl.com>
2151      Branch: cfgperl
2152            ! pod/perldata.pod
2153 ____________________________________________________________________________
2154 [  3259] By: jhi                                   on 1999/04/13  23:12:52
2155         Log: LDLIBPTH also on 'clean' targets.
2156      Branch: cfgperl
2157            ! Makefile.SH
2158 ____________________________________________________________________________
2159 [  3258] By: jhi                                   on 1999/04/13  21:38:46
2160         Log: Add information about the two DEC C compiler optimizer bugs
2161              (what patch levels of the compilers fix them).
2162      Branch: cfgperl
2163            ! pp.c t/op/repeat.t
2164 ____________________________________________________________________________
2165 [  3257] By: jhi                                   on 1999/04/13  14:25:08
2166         Log: Be polite about ccdlflags and lddflags, too.
2167              Avoid Perl's malloc only when threaded.
2168      Branch: cfgperl
2169            ! hints/aix.sh
2170 ____________________________________________________________________________
2171 [  3256] By: jhi                                   on 1999/04/13  10:21:33
2172         Log: Croak if no known ways to semctl() (don't assume union semun).
2173      Branch: cfgperl
2174            ! doio.c perl.h
2175 ____________________________________________________________________________
2176 [  3255] By: jhi                                   on 1999/04/13  09:10:26
2177         Log: From: Dan Sugalski <sugalskd@osshe.edu>
2178              To: perl5-porters@perl.org, vmsperl@perl.org
2179              Subject: [Patch 5.005/5.006]Another MM_VMS.pm patch
2180              Date: Mon, 12 Apr 1999 13:36:48 -0700
2181              Message-Id: <3.0.6.32.19990412133648.030e7ec0@ous.edu>
2182      Branch: cfgperl
2183            ! lib/ExtUtils/MM_VMS.pm
2184 ____________________________________________________________________________
2185 [  3254] By: jhi                                   on 1999/04/13  06:56:26
2186         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
2187              To: perlbug@perl.com
2188              Subject: Update for OpenBSD hints
2189              Date: Mon, 12 Apr 1999 23:12:22 -0600 (MDT)
2190              Message-Id: <199904130512.XAA27712@xerxes.courtesan.com>
2191      Branch: cfgperl
2192            ! hints/openbsd.sh
2193 ____________________________________________________________________________
2194 [  3229] By: chip                                  on 1999/04/13  04:04:14
2195         Log: Preserve errno from importunities of sfio.
2196      Branch: maint-5.004/perl
2197            ! pp_ctl.c util.c
2198 ____________________________________________________________________________
2199 [  3226] By: jhi                                   on 1999/04/11  12:52:26
2200         Log: If both ways to call semctl are broken,    skip the tests.
2201      Branch: cfgperl
2202            ! t/lib/ipc_sysv.t
2203 ____________________________________________________________________________
2204 [  3225] By: jhi                                   on 1999/04/10  22:27:28
2205         Log: From: Andy Dougherty <doughera@lafayette.edu>
2206              To: dsembr01@ox.slug.louisville.edu
2207              Cc: perlbug@perl.com
2208              Subject: [PATCH 5.004_05 5.005_03 5.005_56] Re: Misspelled macro in ext/POSIX/POSIX.xs?
2209              Date: Fri, 9 Apr 1999 16:58:08 -0400 (EDT)
2210              Message-Id: <Pine.GSU.4.05.9904091648570.894-100000@newton.phys>
2211      Branch: cfgperl
2212            ! ext/POSIX/POSIX.xs
2213 ____________________________________________________________________________
2214 [  3224] By: jhi                                   on 1999/04/09  18:50:32
2215         Log: From: Andy Dougherty <doughera@lafayette.edu>
2216              To: Perl Porters <perl5-porters@perl.org>
2217              Subject: [PATCH 5.005_56] Re: prefix= in hints
2218              Date: Fri, 9 Apr 1999 14:54:18 -0400 (EDT)
2219              Message-Id: <Pine.GSU.4.05.9904091445280.894-100000@newton.phys>
2220              
2221              (Overrides change #3204 from Kurt)
2222      Branch: cfgperl
2223            ! hints/linux.sh
2224 ____________________________________________________________________________
2225 [  3223] By: jhi                                   on 1999/04/09  18:37:55
2226         Log: Understand Apollo's //node notation.
2227              
2228              From: Johann Klasek <jk@auto.tuwien.ac.at>
2229              To: jhi@iki.fi
2230              Subject: Re: DomainPerl
2231              Date: Fri, 9 Apr 1999 18:21:37 +0200
2232              Message-ID: <19990409182137.A2299@euklid.auto.tuwien.ac.at>
2233      Branch: cfgperl
2234            ! lib/Cwd.pm
2235 ____________________________________________________________________________
2236 [  3220] By: jhi                                   on 1999/04/04  16:33:49
2237         Log: Integrate from mainperl.
2238      Branch: cfgperl
2239           !> (integrate 39 files)
2240 ____________________________________________________________________________
2241 [  3219] By: gsar                                  on 1999/04/04  02:48:17
2242         Log: tweak previous change
2243      Branch: maint-5.005/perl
2244            ! win32/win32.c
2245 ____________________________________________________________________________
2246 [  3218] By: gsar                                  on 1999/04/04  02:44:47
2247         Log: be careful about extending the stack for the Win32:: builtins
2248      Branch: maint-5.005/perl
2249            ! win32/win32.c
2250 ____________________________________________________________________________
2251 [  3217] By: gsar                                  on 1999/04/04  01:59:26
2252         Log: correct places that said newSVpv() when they meant newSVpvn()
2253      Branch: perl
2254            ! XSUB.h dump.c ext/B/B.xs ext/B/defsubs.h.PL
2255            ! ext/DB_File/DB_File.xs ext/DynaLoader/dl_vms.xs
2256            ! ext/IPC/SysV/SysV.xs ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs
2257            ! ext/Socket/Socket.xs ext/attrs/attrs.xs gv.c hv.c hv.h
2258            ! jpl/JNI/JNI.xs mg.c op.c perl.c pod/perlguts.pod pp.c pp_ctl.c
2259            ! pp_sys.c regcomp.c toke.c util.c win32/dl_win32.xs
2260            ! win32/win32.c
2261 ____________________________________________________________________________
2262 [  3216] By: gsar                                  on 1999/04/03  23:58:27
2263         Log: avoid duplicate code
2264      Branch: perl
2265            ! sv.c
2266 ____________________________________________________________________________
2267 [  3215] By: gsar                                  on 1999/04/03  23:14:34
2268         Log: grow PL_tmps_stack more efficiently; make it more amenable to
2269              STRESS_REALLOC testing
2270      Branch: perl
2271            ! embed.h embed.pl global.sym objXSUB.h pp.h proto.h scope.c
2272            ! sv.c
2273 ____________________________________________________________________________
2274 [  3214] By: gsar                                  on 1999/04/03  21:01:09
2275         Log: scrounge and save three extra branches in pp_entersub()
2276      Branch: perl
2277            ! cv.h pp_ctl.c pp_hot.c
2278 ____________________________________________________________________________
2279 [  3213] By: gsar                                  on 1999/04/03  17:43:23
2280         Log: remove duplicate code and an extra branch in sv_setsv() and
2281              other hot code by making SvTHINKFIRST() think about FAKE SVs
2282      Branch: perl
2283            ! doio.c embed.h embed.pl global.sym objXSUB.h pp.c pp_hot.c
2284            ! proto.h scope.c sv.c sv.h
2285 ____________________________________________________________________________
2286 [  3212] By: jhi                                   on 1999/04/03  16:20:09
2287         Log: Fix up some _t nits (Pid_t, Gid_t, Uid_t, etc. instead of int).
2288              
2289              From: John Bley <jbb6@acpub.duke.edu>
2290              To: perlbug@perl.org
2291              Subject: [PATCH]5.005_03 (CORE) Fix some _t nits
2292              Date: Thu, 1 Apr 1999 02:01:47 -0500 (EST)
2293              Message-ID: <Pine.SOL.3.91.990401015805.21458A-100000@soc13.acpub.duke.edu>
2294      Branch: cfgperl
2295            ! doio.c pp_sys.c
2296 ____________________________________________________________________________
2297 [  3211] By: jhi                                   on 1999/04/03  13:27:26
2298         Log: Change #3210 was rather unportable.  This is better.
2299      Branch: cfgperl
2300            ! Configure config_h.SH
2301 ____________________________________________________________________________
2302 [  3210] By: jhi                                   on 1999/04/03  13:16:20
2303         Log: Avoid Digital UNIX' ksh.
2304              
2305              From: Jarkko Hietaniemi <jhi@iki.fi> 
2306              To: Henrik Tougaard <ht000@siberut.foa.dk> 
2307              Cc: perlbug@perl.com, ht000@foa.dk 
2308              Subject: Re: Not OK perl5.005_03-MAINT_TRIAL_4
2309              Date: Wed, 27 Jan 1999 16:52:33 +0200 (EET) 
2310              Message-ID: <13999.10289.319422.239987@alpha.hut.fi> 
2311      Branch: cfgperl
2312            ! Configure config_h.SH
2313 ____________________________________________________________________________
2314 [  3209] By: jhi                                   on 1999/04/03  12:49:04
2315         Log: Integrate from mainperl.
2316      Branch: cfgperl
2317           !> Changes Makefile.SH README installperl t/lib/bigfloatpm.t
2318 ____________________________________________________________________________
2319 [  3208] By: jhi                                   on 1999/04/03  12:27:24
2320         Log: Add -mabi=64 to ccflags for 64-bit IRIX gcc.
2321              
2322              From: Lionel Cons <lionel.cons@cern.ch>
2323              To: jhi@iki.fi
2324              Cc: perlbug@perl.com, kstar@isinet.com,
2325              Philippe Defert <philippe.defert@cern.ch>
2326              Subject: Re: Not OK: perl 5.00503 on IP27-irix 6.5 (UNINSTALLED)
2327              Date: Thu, 1 Apr 1999 14:05:28 +0200 (METDST)
2328              Message-Id: <199904011205.OAA11380@mercury.cern.ch>
2329      Branch: cfgperl
2330            ! hints/irix_6.sh
2331 ____________________________________________________________________________
2332 [  3207] By: jhi                                   on 1999/04/03  12:20:21
2333         Log: Be polite about usemymalloc.
2334      Branch: cfgperl
2335            ! hints/aix.sh
2336 ____________________________________________________________________________
2337 [  3206] By: gsar                                  on 1999/04/02  23:31:59
2338         Log: a typo in change#3205
2339      Branch: perl
2340            ! t/lib/bigfloatpm.t
2341 ____________________________________________________________________________
2342 [  3205] By: gsar                                  on 1999/04/02  23:20:31
2343         Log: make testsuite reflect change#3157  (Math::BigFloat->new now
2344              returns NaNs faithfully)
2345      Branch: perl
2346            ! t/lib/bigfloatpm.t
2347 ____________________________________________________________________________
2348 [  3204] By: jhi                                   on 1999/04/02  22:03:23
2349         Log: On -Uinstallusrbinperl and no -Dprefix, set prefix to /usr/local.
2350              
2351              From: "Kurt D. Starsinic" <kstar@chapin.edu>
2352              To: perl5-porters@perl.org
2353              Subject: linux hints nit
2354              Date: Fri, 2 Apr 1999 16:49:47 -0500
2355              Message-ID: <19990402164947.E80926@O2.chapin.edu>
2356      Branch: cfgperl
2357            ! hints/linux.sh
2358 ____________________________________________________________________________
2359 [  3203] By: jhi                                   on 1999/04/02  22:00:56
2360         Log: Display exact glibc version in Linux. 
2361              
2362              From: Andy Dougherty <doughera@lafayette.edu>
2363              To: Perl Porters <perl5-porters@perl.org>
2364              Subject: Displaying glibc version on Linux
2365              Date: Mon, 29 Mar 1999 15:04:26 -0500 (EST)
2366              Message-Id: <Pine.GSU.4.05.9903291417370.15335-100000@newton.phys>
2367      Branch: cfgperl
2368            ! hints/linux.sh
2369 ____________________________________________________________________________
2370 [  3202] By: gsar                                  on 1999/04/02  21:23:18
2371         Log: various little goofs
2372      Branch: perl
2373            ! Changes Makefile.SH README installperl
2374 ____________________________________________________________________________
2375 [  3201] By: jhi                                   on 1999/04/02  13:13:39
2376         Log: Configure regen.
2377              
2378              Add llseek + offset_t probing.
2379              Change CONFIG to CONFIGDOTSH.
2380              'unset foo' is unportable, use foo=''.
2381      Branch: cfgperl
2382            ! Configure Makefile.SH Policy_sh.SH cflags.SH config_h.SH
2383            ! configpm makeaperl.SH makedepend.SH makedir.SH myconfig.SH
2384            ! perl_exp.SH writemain.SH
2385 ____________________________________________________________________________
2386 [  3200] By: jhi                                   on 1999/04/02  12:06:22
2387         Log: Introduce myconfig.SH.
2388              
2389              From: Andy Dougherty <doughera@lafayette.edu>
2390              To: Jarkko Hietaniemi <jhi@iki.fi>
2391              Cc: Nick Ing-Simmons <nik@tiuk.ti.com>, Perl Porters <perl5-porters@perl.org>
2392              Subject: [PATCH] myconfig.SH (was Re: perl install bug on AIX 4.3.1.0)
2393              Date: Tue, 30 Mar 1999 12:41:29 -0500 (EST)
2394              Message-Id: <Pine.GSU.4.05.9903301222280.15987-100000@newton.phys>
2395      Branch: cfgperl
2396            + myconfig.SH
2397            - myconfig
2398            ! MANIFEST
2399 ____________________________________________________________________________
2400 [  3195] By: jhi                                   on 1999/03/28  16:42:54
2401         Log: Update perlhist on 5_03.
2402      Branch: maint-5.005/perl
2403            ! pod/perlhist.pod
2404 ____________________________________________________________________________
2405 [  3194] By: jhi                                   on 1999/03/28  12:30:01
2406         Log: Integrate from mainperl.
2407      Branch: cfgperl
2408           +> t/op/grep.t
2409            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/bigfloat.pl
2410            ! t/lib/bigintpm.t
2411           !> MANIFEST Porting/p4desc ext/Thread/Thread.xs op.c
2412           !> t/lib/thread.t
2413 ____________________________________________________________________________
2414 [  3189] By: gsar                                  on 1999/03/28  08:22:00
2415         Log: various pod niggles
2416      Branch: maint-5.005/perl
2417            ! pod/perl.pod pod/perldebug.pod pod/perldiag.pod
2418            ! pod/perlfunc.pod pod/perlhist.pod
2419 ____________________________________________________________________________
2420 [  3187] By: gsar                                  on 1999/03/28  07:31:16
2421         Log: regularize CAPI declarations (CAPI extensions now build under
2422              the Borland compiler)
2423      Branch: maint-5.005/perl
2424            ! win32/GenCAPI.pl
2425 ____________________________________________________________________________
2426 [  3186] By: gsar                                  on 1999/03/28  07:26:33
2427         Log: ensure XS_LOCKS stuff happens *before* XSUB is entered under
2428              -DPERL_CAPI
2429      Branch: maint-5.005/perl
2430            ! XSlock.h win32/GenCAPI.pl win32/Makefile win32/makefile.mk
2431 ____________________________________________________________________________
2432 [  3183] By: gsar                                  on 1999/03/28  06:00:46
2433         Log: update p4 utility to ignore non-text files
2434      Branch: perl
2435            ! Porting/p4desc
2436 ____________________________________________________________________________
2437 [  3181] By: gsar                                  on 1999/03/28  03:37:23
2438         Log: integrate change#3179 from maint-5.005
2439      Branch: perl
2440           !> ext/Thread/Thread.xs t/lib/thread.t
2441 ____________________________________________________________________________
2442 [  3180] By: gsar                                  on 1999/03/28  02:28:20
2443         Log: fix bogus OPf_REF context for the BLOCK in C<grep BLOCK @foo>
2444              (sometimes caused bizarreness in the BLOCK)
2445      Branch: perl
2446            + t/op/grep.t
2447            ! MANIFEST op.c
2448 ____________________________________________________________________________
2449 [  3179] By: gsar                                  on 1999/03/28  02:14:04
2450         Log: fix thread segfault when passing large number of arguments to child
2451              a la C<Thread->new($foo, 1..1000)>
2452      Branch: maint-5.005/perl
2453            ! ext/Thread/Thread.xs t/lib/thread.t
2454 ____________________________________________________________________________
2455 [  3178] By: gbarr                                 on 1999/03/28  01:39:23
2456         Log: fix $Config{'usethreads'} typo in perlthrtut
2457              
2458              From: Ian Maloney <szhmf9@wsblob.ubs.com>
2459              Date: Thu, 25 Mar 1999 16:40:14 +0100 (MET)
2460              Message-Id: <199903251540.QAA02439@wsblob.>
2461              Subject: perlthrtut documentation error
2462      Branch: maint-5.005/perl
2463            ! pod/perlthrtut.pod
2464 ____________________________________________________________________________
2465 [  3173] By: gbarr                                 on 1999/03/27  18:19:47
2466         Log: Update Test.pm to VERSION 1.122 from CPAN
2467      Branch: maint-5.005/perl
2468            ! lib/Test.pm
2469 ____________________________________________________________________________
2470 [  3171] By: jhi                                   on 1999/03/26  22:38:28
2471         Log: Integrate from mainperl.
2472      Branch: cfgperl
2473           !> (integrate 37 files)
2474 ____________________________________________________________________________
2475 [  3170] By: gsar                                  on 1999/03/26  01:30:25
2476         Log: specify type of bracket in "Unmatched bracket" diagnostic;
2477              prefer 'brace' or 'curly bracket' over 'curly brace'
2478      Branch: perl
2479            ! pod/perldiag.pod pod/perlreftut.pod pod/perlstyle.pod
2480            ! t/op/misc.t t/op/re_tests toke.c
2481 ____________________________________________________________________________
2482 [  3169] By: gsar                                  on 1999/03/26  00:50:51
2483         Log: better description of "Integer overflow" diagnostic
2484      Branch: perl
2485            ! pod/perldiag.pod
2486 ____________________________________________________________________________
2487 [  3168] By: gsar                                  on 1999/03/25  11:02:46
2488         Log: applied needful parts of suggested patch
2489              From: "Vishal Bhatia" <vishalb@my-dejanews.com>
2490              Date: Tue, 23 Mar 1999 16:21:43 -0800
2491              Message-ID: <OOOKJGFMLFLHBAAA@my-dejanews.com>
2492              Subject: [PATCH 5.005_56] pp_formline correction
2493      Branch: perl
2494            ! ext/B/B/Bblock.pm ext/B/B/CC.pm
2495 ____________________________________________________________________________
2496 [  3167] By: gsar                                  on 1999/03/25  10:39:02
2497         Log: clarify what a "comment" means (due to Mark-Jason Dominus
2498              <mjd@plover.com>)
2499      Branch: perl
2500            ! pod/perlsyn.pod
2501 ____________________________________________________________________________
2502 [  3166] By: gsar                                  on 1999/03/25  10:33:18
2503         Log: describe current behavior on local($foo{nothere}) (suggested by
2504              Lionel Cons <lionel.cons@cern.ch>)
2505      Branch: perl
2506            ! pod/perlsub.pod
2507 ____________________________________________________________________________
2508 [  3165] By: gsar                                  on 1999/03/25  06:21:05
2509         Log: fix refcnt on PL_main_cv (variant of suggestion by Vishal Bhatia
2510              <vishalb@hotmail.com>)
2511      Branch: perl
2512            ! ext/B/B/C.pm
2513 ____________________________________________________________________________
2514 [  3164] By: gsar                                  on 1999/03/25  06:17:27
2515         Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu>
2516              Date: Tue, 23 Mar 1999 17:47:04 -0800 (PST)
2517              Message-ID: <14072.16859.154428.241373@fre-76-120.reshall.berkeley.edu>
2518              Subject: [PATCH _56] Compiler needs to know about utf8 SVOP tr///s
2519      Branch: perl
2520            ! ext/B/B.xs op.h opcode.pl
2521 ____________________________________________________________________________
2522 [  3163] By: gsar                                  on 1999/03/25  06:15:49
2523         Log: B::Deparse update from Stephen McCamant <smccam@uclink4.berkeley.edu>
2524              Date: Tue, 23 Mar 1999 02:41:34 -0800 (PST)
2525              Message-ID: <14071.27445.867782.852353@fre-76-120.reshall.berkeley.edu>
2526              Subject: [PATCH _56] B::Deparse 0.57
2527              --
2528              Date: Tue, 23 Mar 1999 13:08:12 -0800 (PST)
2529              Message-ID: <14072.502.107712.175179@fre-76-120.reshall.berkeley.edu>
2530              Subject: Re: [PATCH _56] B::Deparse 0.57 
2531      Branch: perl
2532            ! AUTHORS MAINTAIN ext/B/B/Deparse.pm
2533 ____________________________________________________________________________
2534 [  3162] By: gsar                                  on 1999/03/25  06:11:46
2535         Log: fix a few places that said 'int', but meant 'STRLEN'
2536      Branch: perl
2537            ! pod/perlguts.pod proto.h sv.c
2538 ____________________________________________________________________________
2539 [  3161] By: gsar                                  on 1999/03/25  06:01:18
2540         Log: From: Russ Allbery <rra@stanford.edu>
2541              Date: 22 Mar 1999 04:26:26 -0800
2542              Message-ID: <yl4sndr9ql.fsf@windlord.stanford.edu>
2543              Subject: [5.005_56] Add EXISTS to SDBM_File and libsdbm
2544      Branch: perl
2545            ! ext/SDBM_File/SDBM_File.xs ext/SDBM_File/sdbm/README.too
2546            ! ext/SDBM_File/sdbm/pair.c ext/SDBM_File/sdbm/pair.h
2547            ! ext/SDBM_File/sdbm/sdbm.3 ext/SDBM_File/sdbm/sdbm.c
2548            ! ext/SDBM_File/sdbm/sdbm.h pod/perldelta.pod t/lib/sdbm.t
2549 ____________________________________________________________________________
2550 [  3160] By: gsar                                  on 1999/03/25  02:26:31
2551         Log: better description of OP_UNSTACK (s/unstack/iteration finalizer/)
2552      Branch: perl
2553            ! opcode.h opcode.pl
2554 ____________________________________________________________________________
2555 [  3159] By: gsar                                  on 1999/03/25  02:18:17
2556         Log: add statement-modifier loops to :base_loop class
2557      Branch: perl
2558            ! ext/Opcode/Opcode.pm
2559 ____________________________________________________________________________
2560 [  3158] By: gsar                                  on 1999/03/25  00:36:57
2561         Log: integrate changes#3105,3130,3154 from maint-5.005
2562      Branch: perl
2563           !> Configure INSTALL hints/dec_osf.sh hints/netbsd.sh
2564 ____________________________________________________________________________
2565 [  3157] By: gsar                                  on 1999/03/25  00:24:17
2566         Log: remove bogus panic()
2567      Branch: perl
2568            ! Changes lib/Math/BigFloat.pm
2569 ____________________________________________________________________________
2570 [  3156] By: jhi                                   on 1999/03/24  22:43:43
2571         Log: Integrate from mainperl.
2572      Branch: cfgperl
2573           +> (branch 38 files)
2574           !> (integrate 68 files)
2575 ____________________________________________________________________________
2576 [  3155] By: jhi                                   on 1999/03/24  22:12:17
2577         Log: Configure regenerated because of changes #3130/#3154 and #3147.
2578      Branch: cfgperl
2579            ! Configure config_h.SH
2580 ____________________________________________________________________________
2581 [  3154] By: jhi                                   on 1999/03/24  21:40:51
2582         Log: Reword the shared library search path (LD_LIBRARY_PATH) info
2583              based on suggestions from Andy Dougherty.
2584      Branch: maint-5.005/perl
2585            ! INSTALL
2586 ____________________________________________________________________________
2587 [  3153] By: gsar                                  on 1999/03/24  10:38:05
2588         Log: applied suggested patch, modulo superceded parts
2589              From: Charles Bailey <BAILEY@newman.upenn.edu>
2590              Date: Thu, 18 Mar 1999 00:10:44 -0400 (EDT)
2591              Message-id: <01J8YFGIHW2W001E7S@mail.newman.upenn.edu>
2592              Subject: [PATCH 5.005_56] Miscellaneous VMS-specific fixes
2593      Branch: perl
2594            ! lib/ExtUtils/Liblist.pm lib/ExtUtils/MM_VMS.pm
2595            ! t/comp/require.t t/op/lex_assign.t t/op/taint.t
2596            ! utils/perldoc.PL vms/ext/Stdio/Stdio.pm vms/ext/Stdio/Stdio.xs
2597            ! vms/ext/Stdio/test.pl vms/test.com vms/vmsish.h
2598 ____________________________________________________________________________
2599 [  3152] By: gsar                                  on 1999/03/24  10:30:51
2600         Log: applied suggested patch, modulo superceded parts
2601              From: Charles Bailey <BAILEY@newman.upenn.edu>
2602              Date: Thu, 18 Mar 1999 00:04:31 -0400 (EDT)
2603              Message-id: <01J8YF0EOWLU001E7S@mail.newman.upenn.edu>
2604              Subject: [PATCH 5.005_56] Miscellaneous small fixes
2605      Branch: perl
2606            ! ext/B/defsubs.h.PL ext/re/re.pm lib/ExtUtils/MM_Unix.pm
2607            ! lib/File/Basename.pm
2608 ____________________________________________________________________________
2609 [  3151] By: gsar                                  on 1999/03/24  10:15:00
2610         Log: doc tweak suggested by M.J.T. Guy <mjtg@cus.cam.ac.uk>
2611      Branch: perl
2612            ! pod/perlop.pod
2613 ____________________________________________________________________________
2614 [  3150] By: gsar                                  on 1999/03/24  10:09:13
2615         Log: missing integration in previous change
2616      Branch: perl
2617           !> README.apollo
2618 ____________________________________________________________________________
2619 [  3149] By: gsar                                  on 1999/03/24  10:06:44
2620         Log: integrate changes#3116,3119 from maint-5.005
2621      Branch: perl
2622            + README.apollo
2623           +> apollo/netinet/in.h
2624           !> MANIFEST hints/apollo.sh t/lib/io_udp.t
2625 ____________________________________________________________________________
2626 [  3148] By: gsar                                  on 1999/03/24  10:01:56
2627         Log: integrate changes#3091-3094 from maint-5.005
2628      Branch: perl
2629           !> README.hurd vms/subconfigure.com vos/config.h
2630           !> vos/config_h.SH_orig
2631 ____________________________________________________________________________
2632 [  3147] By: gsar                                  on 1999/03/24  09:31:49
2633         Log: warn about newfangled vfork() caveats
2634      Branch: perl
2635            ! Configure
2636 ____________________________________________________________________________
2637 [  3146] By: jhi                                   on 1999/03/24  09:20:14
2638         Log: Bring in changes #2808 and #2812 (from mainline perl)
2639              that enhance the perlbug checklist.
2640      Branch: maint-5.005/perl
2641            ! utils/perlbug.PL
2642 ____________________________________________________________________________
2643 [  3145] By: gsar                                  on 1999/03/24  08:37:02
2644         Log: integrate change#3115 from maint-5.005
2645      Branch: perl
2646           !> ext/DB_File/Changes ext/DB_File/DB_File.pm
2647           !> ext/DB_File/DB_File.xs ext/DB_File/typemap
2648 ____________________________________________________________________________
2649 [  3144] By: gsar                                  on 1999/03/24  08:33:59
2650         Log: add note about map in scalar context
2651      Branch: perl
2652            ! pod/perlfunc.pod
2653 ____________________________________________________________________________
2654 [  3143] By: gsar                                  on 1999/03/24  08:25:59
2655         Log: doc tweak
2656      Branch: perl
2657            ! lib/Time/Local.pm
2658 ____________________________________________________________________________
2659 [  3142] By: gsar                                  on 1999/03/24  08:20:37
2660         Log: applied suggested patch, modulo bogus hunk
2661              From: "Vishal Bhatia" <vishalb@hotmail.com>
2662              Date: Thu, 11 Mar 1999 07:40:27 PST
2663              Message-ID: <19990311154027.25891.qmail@hotmail.com>
2664              Subject: [PATCH 5.005_56] Minor fixes in perlcc
2665      Branch: perl
2666            ! ext/B/B/C.pm ext/B/B/CC.pm utils/perlcc.PL
2667 ____________________________________________________________________________
2668 [  3141] By: gsar                                  on 1999/03/24  08:06:12
2669         Log: integrate change#3104 from maint-5.005
2670      Branch: perl
2671           !> README.os390 t/lib/posix.t
2672 ____________________________________________________________________________
2673 [  3140] By: gsar                                  on 1999/03/24  06:34:56
2674         Log: fix failure of C<&locked_sub;> under -Dusethreads
2675      Branch: perl
2676            ! pp_hot.c t/lib/thread.t
2677 ____________________________________________________________________________
2678 [  3139] By: gsar                                  on 1999/03/24  05:52:00
2679         Log: debugger tweak (wasn't printing a newline after recalled commands)
2680      Branch: perl
2681            ! lib/perl5db.pl
2682 ____________________________________________________________________________
2683 [  3138] By: gsar                                  on 1999/03/24  05:33:28
2684         Log: document OO exceptions (based on a suggestion by Andreas Koenig
2685              <andreas.koenig@anima.de>)
2686      Branch: perl
2687            ! pod/perlfunc.pod
2688 ____________________________________________________________________________
2689 [  3137] By: gsar                                  on 1999/03/24  02:50:20
2690         Log: better "Illegal %s digit ignored" warnings
2691      Branch: perl
2692            ! MANIFEST pod/perldiag.pod pod/perlfunc.pod t/pragma/warn/util
2693            ! toke.c util.c
2694 ____________________________________________________________________________
2695 [  3136] By: gsar                                  on 1999/03/24  02:26:38
2696         Log: fix off-by-one that resulted in misparse of C</[\x{80}-\x{81}]/>
2697      Branch: perl
2698            + t/pragma/utf8.t
2699            ! regcomp.c
2700 ____________________________________________________________________________
2701 [  3135] By: gsar                                  on 1999/03/24  01:29:09
2702         Log: flip release & version in win32_uname()
2703      Branch: perl
2704            ! win32/win32.c
2705 ____________________________________________________________________________
2706 [  3134] By: gsar                                  on 1999/03/24  01:08:33
2707         Log: support POSIX::uname() via win32_uname()
2708      Branch: perl
2709            ! XSUB.h iperlsys.h win32/GenCAPI.pl win32/config.bc
2710            ! win32/config.gc win32/config.vc win32/config_H.bc
2711            ! win32/config_H.gc win32/config_H.vc win32/makedef.pl
2712            ! win32/perlhost.h win32/win32.c win32/win32.h win32/win32iop.h
2713 ____________________________________________________________________________
2714 [  3133] By: gsar                                  on 1999/03/23  22:20:10
2715         Log: From: jan.dubois@ibm.net (Jan Dubois)
2716              Date: Sat, 06 Mar 1999 21:42:56 +0100
2717              Message-ID: <36e49281.50337171@smtp1.ibm.net>
2718              Subject: [PATCH 5.005_56] perldelta.pod changes for Win32::* functions
2719      Branch: perl
2720            ! pod/perldelta.pod
2721 ____________________________________________________________________________
2722 [  3132] By: gsar                                  on 1999/03/23  22:17:45
2723         Log: File::Spec fixes from Jan Dubois <jan.dubois@ibm.net>
2724              Date: Sat, 06 Mar 1999 17:50:49 +0100
2725              Message-ID: <36e25209.33833760@smtp1.ibm.net>
2726              Subject: [PATCH 5.005_56] Fixes for File::Spec::Functions.pm
2727              --
2728              Date: Sat, 06 Mar 1999 18:15:00 +0100
2729              Message-ID: <36e36222.37954195@smtp1.ibm.net>
2730              Subject: [PATCH 5.005_56] Fix for File::Spec::Win32.pm
2731      Branch: perl
2732            + t/lib/filefunc.t
2733            ! MANIFEST lib/File/Spec/Functions.pm lib/File/Spec/Win32.pm
2734            ! pod/perldelta.pod pod/perlmodlib.pod
2735 ____________________________________________________________________________
2736 [  3131] By: gsar                                  on 1999/03/23  22:07:59
2737         Log: integrate cfgperl changes into mainline
2738      Branch: perl
2739           +> ext/DynaLoader/dl_rhapsody.xs hints/rhapsody.sh
2740           !> Configure Makefile.SH config_h.SH configure.gnu handy.h
2741           !> installperl malloc.c perl.c perl.h pod/perl.pod
2742           !> pod/perldelta.pod pp_sys.c t/op/stat.t x2p/util.c
2743 ____________________________________________________________________________
2744 [  3130] By: jhi                                   on 1999/03/23  22:02:23
2745         Log: Don't use config.msg to remind about the
2746              LD_LIBRARY_PATH because Makefile.SH takes
2747              care of that.
2748              
2749              Use shrplib in DEC O^W^Digital U^W^WTru64 UNIX.
2750              This used to be the default but in some MT or another it
2751              was dropped because of some transient error or another.
2752      Branch: maint-5.005/perl
2753            ! Configure hints/dec_osf.sh
2754 ____________________________________________________________________________
2755 [  3129] By: gsar                                  on 1999/03/23  21:38:03
2756         Log: add Pod-Parser-1.08 (verbatim module =include tests elided owing
2757              to size    and better maintainability)
2758      Branch: perl
2759            + lib/Pod/Checker.pm lib/Pod/InputObjects.pm lib/Pod/Parser.pm
2760            + lib/Pod/PlainText.pm lib/Pod/Select.pm lib/Pod/Usage.pm
2761            + pod/pod2usage.PL pod/podchecker.PL pod/podselect.PL
2762            + t/pod/emptycmd.t t/pod/emptycmd.xr t/pod/for.t t/pod/for.xr
2763            + t/pod/headings.t t/pod/headings.xr t/pod/include.t
2764            + t/pod/include.xr t/pod/included.t t/pod/included.xr
2765            + t/pod/lref.t t/pod/lref.xr t/pod/nested_items.t
2766            + t/pod/nested_items.xr t/pod/nested_seqs.t t/pod/nested_seqs.xr
2767            + t/pod/oneline_cmds.t t/pod/oneline_cmds.xr t/pod/poderrs.t
2768            + t/pod/poderrs.xr t/pod/special_seqs.t t/pod/special_seqs.xr
2769            + t/pod/testcmp.pl t/pod/testp2pt.pl t/pod/testpchk.pl
2770            ! AUTHORS MAINTAIN MANIFEST installperl pod/Makefile
2771            ! win32/Makefile win32/makefile.mk win32/pod.mak
2772 ____________________________________________________________________________
2773 [  3128] By: jhi                                   on 1999/03/23  10:14:54
2774         Log: Integrate from mainperl.
2775      Branch: cfgperl
2776           !> (integrate 46 files)
2777 ____________________________________________________________________________
2778 [  3127] By: gsar                                  on 1999/03/23  06:57:30
2779         Log: From: Tim Witham - FES <twitham@pcocd2.intel.com>
2780              Date: Thu, 4 Mar 1999 10:54:01 -0800
2781              Message-Id: <9903041854.AA46868@frc0000>
2782              Subject: patch for useless Math::BigInt warnings
2783      Branch: perl
2784            ! lib/Math/BigInt.pm
2785 ____________________________________________________________________________
2786 [  3126] By: gsar                                  on 1999/03/23  05:54:37
2787         Log: avoid literal 'undef' in $lddlflags under `Configure -Uoptimize`
2788              From: "Kurt D. Starsinic" <kstar@chapin.edu>
2789              Date: Fri, 19 Feb 1999 15:47:59 -0500
2790              Message-ID: <19990219154759.A32350@O2.chapin.edu>
2791              Subject: [PATCH] OSF/1 hints
2792      Branch: perl
2793            ! hints/dec_osf.sh
2794 ____________________________________________________________________________
2795 [  3125] By: gsar                                  on 1999/03/23  00:56:38
2796         Log: avoid typeglob persistence in pp_readline()
2797      Branch: perl
2798            ! sv.c t/op/gv.t
2799 ____________________________________________________________________________
2800 [  3124] By: gsar                                  on 1999/03/22  21:12:23
2801         Log: update copyright years
2802      Branch: perl
2803            ! Changes EXTERN.h INTERN.h av.c av.h bytecode.pl cop.h cv.h
2804            ! deb.c doio.c doop.c dump.c form.h gv.c gv.h handy.h hv.c hv.h
2805            ! malloc.c mg.c mg.h op.c op.h perl.c perl.h perlio.c pp.c pp.h
2806            ! pp_ctl.c pp_hot.c pp_sys.c regcomp.c regexec.c run.c scope.c
2807            ! sv.c sv.h toke.c utf8.c utf8.h util.c
2808 ____________________________________________________________________________
2809 [  3123] By: gsar                                  on 1999/03/22  07:07:06
2810         Log: implement win32_spawnvp() internally, making it return true PIDs
2811              for asynchronous spawns; fix win32_kill() to always deal with
2812              PIDs
2813      Branch: perl
2814            ! win32/win32.c win32/win32.h
2815 ____________________________________________________________________________
2816 [  3122] By: jhi                                   on 1999/03/19  21:12:14
2817         Log: Describe the new Benchmark feature in more detail.
2818      Branch: cfgperl
2819            ! pod/perldelta.pod
2820      Branch: maint-5.005/perl
2821            ! pod/perldelta.pod
2822 ____________________________________________________________________________
2823 [  3121] By: jhi                                   on 1999/03/19  08:16:12
2824         Log: AVAILABILITY tuning.
2825      Branch: cfgperl
2826            ! pod/perl.pod
2827      Branch: maint-5.005/perl
2828            ! pod/perl.pod
2829 ____________________________________________________________________________
2830 [  3120] By: jhi                                   on 1999/03/17  14:52:17
2831         Log: Rhapsody change assumed too much.
2832      Branch: cfgperl
2833            ! t/op/stat.t
2834 ____________________________________________________________________________
2835 [  3119] By: jhi                                   on 1999/03/17  14:33:43
2836         Log: More Apollo fixes.
2837      Branch: maint-5.005/perl
2838            ! README.apollo hints/apollo.sh t/lib/io_udp.t
2839 ____________________________________________________________________________
2840 [  3118] By: jhi                                   on 1999/03/16  17:23:39
2841         Log: Nada.
2842      Branch: maint-5.005/perl
2843            ! README.apollo
2844 ____________________________________________________________________________
2845 [  3117] By: jhi                                   on 1999/03/16  17:18:49
2846         Log: Apollo DomainOS AVAILABILITY.
2847      Branch: cfgperl
2848            ! pod/perl.pod
2849      Branch: maint-5.005/perl
2850            ! pod/perl.pod
2851 ____________________________________________________________________________
2852 [  3116] By: jhi                                   on 1999/03/16  17:14:00
2853         Log: Apollo DomainOS patch
2854              From: Johann Klasek <jk@auto.tuwien.ac.at>
2855              Subject: Re: DomainPerl
2856              Date: Tue, 16 Mar 1999 17:46:32 +0100
2857              Message-ID: <19990316174632.A19759@euklid.auto.tuwien.ac.at>
2858      Branch: maint-5.005/perl
2859            + README.apollo apollo/netinet/in.h
2860            ! MANIFEST hints/apollo.sh
2861 ____________________________________________________________________________
2862 [  3115] By: jhi                                   on 1999/03/16  14:23:54
2863         Log: From: Paul Marquess <pmarquess@bfsec.bt.co.uk>
2864              To: Gurusamy Sarathy <gsar@activestate.com>,
2865              Graham Barr <gbarr@pobox.com>
2866              Cc: Perl5 Porters <perl5-porters@perl.org>,
2867              "Paul.Marquess" <Paul.Marquess@btinternet.com>
2868              Subject: [PATCH 5.005_56 & 5.005_03_T6] Upgrade DB_File to version 1.65
2869              Date: Sun, 14 Mar 1999 14:43:57 -0000
2870              Message-Id: <199903141841.NAA17040@defender.perl.org>
2871      Branch: maint-5.005/perl
2872            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
2873            ! ext/DB_File/DB_File.xs ext/DB_File/typemap
2874 ____________________________________________________________________________
2875 [  3114] By: jhi                                   on 1999/03/16  12:42:20
2876         Log: Mention Rhapsody in 5.005_5X perldelta,
2877              and in Rhapsody and Netware in 5.005_0X and 5.005_5X
2878              *planned* AVAILABILITY.
2879      Branch: cfgperl
2880            ! pod/perl.pod pod/perldelta.pod
2881      Branch: maint-5.005/perl
2882            ! pod/perl.pod
2883 ____________________________________________________________________________
2884 [  3113] By: jhi                                   on 1999/03/16  10:38:53
2885         Log: perldelta niggling.
2886      Branch: cfgperl
2887            ! pod/perldelta.pod
2888      Branch: maint-5.005/perl
2889            ! pod/perldelta.pod
2890 ____________________________________________________________________________
2891 [  3112] By: jhi                                   on 1999/03/16  10:35:21
2892         Log: Integrate from mainperl.
2893      Branch: cfgperl
2894           !> lib/unicode/MakeEthiopicSyllables.PL pod/perldelta.pod
2895           !> pod/perlhist.pod pod/perlmodinstall.pod pod/perltodo.pod
2896 ____________________________________________________________________________
2897 [  3111] By: jhi                                   on 1999/03/16  10:28:10
2898         Log: AVAILABILITY update: still mention PowerUX,
2899              Novell Netware now has sources available.
2900      Branch: cfgperl
2901            ! pod/perl.pod
2902      Branch: maint-5.005/perl
2903            ! pod/perl.pod
2904 ____________________________________________________________________________
2905 [  3110] By: gsar                                  on 1999/03/16  04:34:23
2906         Log: sundry pod niggles
2907      Branch: perl
2908            ! lib/unicode/MakeEthiopicSyllables.PL pod/perldelta.pod
2909            ! pod/perlhist.pod pod/perlmodinstall.pod pod/perltodo.pod
2910 ____________________________________________________________________________
2911 [  3109] By: jhi                                   on 1999/03/15  17:00:11
2912         Log: Integrate from mainperl.
2913      Branch: cfgperl
2914           +> lib/unicode/EthiopicSyllables.txt lib/unicode/In/Ethiopic.pl
2915           +> lib/unicode/Is/Syllable.pl
2916           +> lib/unicode/MakeEthiopicSyllables.PL
2917           +> lib/unicode/README.Ethiopic
2918           !> AUTHORS MAINTAIN MANIFEST lib/unicode/Block.pl
2919           !> lib/unicode/Category.pl lib/unicode/Is/Alnum.pl
2920           !> lib/unicode/Is/Alpha.pl lib/unicode/Is/Digit.pl
2921           !> lib/unicode/Is/L.pl lib/unicode/Is/Lo.pl lib/unicode/Is/N.pl
2922           !> lib/unicode/Is/Nd.pl lib/unicode/Is/No.pl lib/unicode/Is/P.pl
2923           !> lib/unicode/Is/Po.pl lib/unicode/Is/Space.pl
2924           !> lib/unicode/Is/Z.pl lib/unicode/Is/Zs.pl lib/unicode/Makefile
2925           !> lib/unicode/Name.pl lib/unicode/Number.pl op.c
2926 ____________________________________________________________________________
2927 [  3108] By: jhi                                   on 1999/03/15  16:58:12
2928         Log: First pass of integrating the Rhapsody port,
2929              
2930              From: Wilfredo Sanchez <wsanchez@apple.com> 
2931              Subject: Keeping the world in sync.
2932              Reply-To: wsanchez@apple.com 
2933              To: perlbug@perl.com 
2934              Date: Fri, 13 Nov 1998 17:11:30 -0800 
2935              Message-Id: <199811140111.RAA41784@scv4.apple.com> 
2936      Branch: cfgperl
2937            + ext/DynaLoader/dl_rhapsody.xs hints/rhapsody.sh
2938            ! Configure Makefile.SH config_h.SH configure.gnu handy.h
2939            ! installperl malloc.c perl.c perl.h pp_sys.c t/op/stat.t
2940            ! x2p/util.c
2941 ____________________________________________________________________________
2942 [  3107] By: gsar                                  on 1999/03/15  03:22:10
2943         Log: applied suggested patch (mailed to perl-unicode@perl.org) with minor tweaks
2944              From: Daniel Yacob <dmulholl@cs.indiana.edu>
2945              Date: Tue, 23 Feb 1999 16:13:42 -0500 (EST)
2946              Message-Id: <199902232113.QAA26135@drum.cs.indiana.edu>
2947              Subject: ../lib/unicode/ Unicode 3.0 Extensions for Ethiopic
2948      Branch: perl
2949            + lib/unicode/EthiopicSyllables.txt lib/unicode/In/Ethiopic.pl
2950            + lib/unicode/Is/Syllable.pl
2951            + lib/unicode/MakeEthiopicSyllables.PL
2952            + lib/unicode/README.Ethiopic
2953            ! AUTHORS MAINTAIN MANIFEST lib/unicode/Block.pl
2954            ! lib/unicode/Category.pl lib/unicode/Is/Alnum.pl
2955            ! lib/unicode/Is/Alpha.pl lib/unicode/Is/Digit.pl
2956            ! lib/unicode/Is/L.pl lib/unicode/Is/Lo.pl lib/unicode/Is/N.pl
2957            ! lib/unicode/Is/Nd.pl lib/unicode/Is/No.pl lib/unicode/Is/P.pl
2958            ! lib/unicode/Is/Po.pl lib/unicode/Is/Space.pl
2959            ! lib/unicode/Is/Z.pl lib/unicode/Is/Zs.pl lib/unicode/Makefile
2960            ! lib/unicode/Name.pl lib/unicode/Number.pl
2961 ____________________________________________________________________________
2962 [  3106] By: gsar                                  on 1999/03/12  20:35:36
2963         Log: change#3067 failed package.t due to needless creation of $a and $b;
2964              fixed to do that only for C<sort BLOCK|CODE @foo>, not C<sort(@foo)>
2965      Branch: perl
2966            ! op.c
2967 ____________________________________________________________________________
2968 [  3105] By: jhi                                   on 1999/03/12  15:54:57
2969         Log: Recognize the NetBSD packages collection.
2970      Branch: maint-5.005/perl
2971            ! hints/netbsd.sh
2972 ____________________________________________________________________________
2973 [  3104] By: jhi                                   on 1999/03/12  09:07:04
2974         Log: From: pvhp@forte.com (Peter Prymmer)
2975              To: jhi@iki.fi, perl-mvs@perl.org, perlbug@perl.com
2976              Subject: [PATCH MT6,_56] was Re: Not OK: perl 5.00503 +MAINT_TRIAL_6 on os390 06.00 (UNINSTALLED)
2977              Date: Thu, 11 Mar 99 14:24:54 PST
2978              Message-Id: <9903112224.AA24346@forte.com>
2979      Branch: maint-5.005/perl
2980            ! README.os390 t/lib/posix.t
2981 ____________________________________________________________________________
2982 [  3103] By: jhi                                   on 1999/03/10  11:07:46
2983         Log: Integrate from mainperl.
2984      Branch: cfgperl
2985           !> Changes embed.h embed.pl embedvar.h global.sym objXSUB.h op.c
2986           !> perl.c perl.h pod/perldelta.pod pod/pod2man.PL t/base/lex.t
2987           !> t/pragma/warn/1global toke.c win32/makedef.pl
2988 ____________________________________________________________________________
2989 [  3102] By: jhi                                   on 1999/03/10  11:01:20
2990         Log: From: pvhp@forte.com (Peter Prymmer)
2991              To: perl5-porters@perl.org
2992              Subject: [5.005_03-MT6]Patch: time passes
2993              Date: Tue, 9 Mar 99 18:42:17 PST
2994              Message-Id: <9903100242.AA29057@forte.com>
2995      Branch: maint-5.005/perl
2996            ! perl.c
2997 ____________________________________________________________________________
2998 [  3101] By: jhi                                   on 1999/03/10  10:30:15
2999         Log: From: Mark-Jason Dominus <mjd@plover.com>
3000              To: perl5-porters@perl.com
3001              Subject: Minor fix to perlfunc.pod
3002              Date: Mon, 08 Mar 1999 20:05:53 -0500
3003              Message-ID: <19990309010553.13757.qmail@plover.com>
3004      Branch: maint-5.005/perl
3005            ! pod/perlfunc.pod
3006 ____________________________________________________________________________
3007 [  3100] By: gsar                                  on 1999/03/09  23:04:44
3008         Log: change#3060 had the wrong quotes
3009      Branch: perl
3010            ! pod/pod2man.PL
3011 ____________________________________________________________________________
3012 [  3099] By: jhi                                   on 1999/03/09  12:52:21
3013         Log: d_uname was broken (probably since _53), reported by
3014              
3015              From: Alan Burlison <Alan.Burlison@uk.sun.com>
3016              To: p5p <perl5-porters@perl.org>, Gurusamy Sarathy <gsar@umich.edu>,
3017              cpan-testers@perl.org
3018              Subject: Not OK: perl 5.00556 on sun4-solaris 2.6
3019              Date: Mon, 08 Mar 1999 13:22:31 +0000
3020              Message-ID: <36E3CF17.EA1FEDAA@uk.sun.com>
3021              
3022              and
3023              
3024              From: lvirden@cas.org (Larry W. Virden)
3025              To: perlbug@perl.com
3026              Subject: configure not correctly identifying uname posix compatibility
3027              Date: Mon, 8 Mar 1999 06:36:16 -0500 (EST)
3028              Message-Id: <199903081136.GAA23682@cas.org>
3029      Branch: cfgperl
3030            ! Configure config_h.SH
3031 ____________________________________________________________________________
3032 [  3098] By: gsar                                  on 1999/03/09  03:16:07
3033         Log: fix parsing of here documents in C<eval 's/.../<<FOO/e'>
3034      Branch: perl
3035            ! op.c perl.h pod/perldelta.pod t/base/lex.t toke.c
3036 ____________________________________________________________________________
3037 [  3097] By: gsar                                  on 1999/03/09  02:50:43
3038         Log: use yyerror() instead of croak() so that compile-time failures in
3039              my(LIST) don't confuse globals with lexicals
3040      Branch: perl
3041            ! op.c toke.c
3042 ____________________________________________________________________________
3043 [  3096] By: gsar                                  on 1999/03/09  02:47:36
3044         Log: adjust testsuite for change#3067
3045      Branch: perl
3046            ! t/pragma/warn/1global
3047 ____________________________________________________________________________
3048 [  3095] By: gsar                                  on 1999/03/08  21:04:48
3049         Log: remove bogus symbols from global.sym
3050      Branch: perl
3051            ! Changes embed.h embed.pl embedvar.h global.sym objXSUB.h
3052            ! perl.h win32/makedef.pl
3053 ____________________________________________________________________________
3054 [  3094] By: jhi                                   on 1999/03/06  16:16:15
3055         Log: From: Mark Kettenis <kettenis@wins.uva.nl>
3056              To: jhi@iki.fi
3057              Subject: Oops
3058              Date: Sat, 6 Mar 1999 17:15:35 +0100 (CET)
3059              Message-Id: <199903061615.RAA00207@delius.kettenis.nl>
3060      Branch: maint-5.005/perl
3061            ! README.hurd
3062 ____________________________________________________________________________
3063 [  3093] By: jhi                                   on 1999/03/06  15:59:46
3064         Log: From: Mark Kettenis <kettenis@wins.uva.nl>
3065              To: jhi@iki.fi
3066              Subject: New Hurd README
3067              Date: Sat, 6 Mar 1999 16:46:12 +0100 (CET)
3068              Message-Id: <199903061601.RAA00185@delius.kettenis.nl>
3069      Branch: maint-5.005/perl
3070            ! README.hurd
3071 ____________________________________________________________________________
3072 [  3092] By: jhi                                   on 1999/03/06  12:52:06
3073         Log: From: Paul_Green@stratus.com
3074              To: perl5-porters@perl.org
3075              Cc: jhi@iki.fi, Paul_Green@stratus.com
3076              Subject: [PATCH 5.005_03-MAINT_TRIAL_6]: platform: vos -- updates to VOS port of Perl5
3077              Date: Fri, 5 Mar 1999 18:08:49 -0500 
3078              Message-ID: <1D1A4EF7AD4DD211A80D00A0C9D7DB665A035A@exna1.stratus.com>
3079      Branch: maint-5.005/perl
3080            ! vos/config.h vos/config_h.SH_orig
3081 ____________________________________________________________________________
3082 [  3091] By: jhi                                   on 1999/03/06  12:42:21
3083         Log: From: Dan Sugalski <sugalskd@osshe.edu>
3084              To: perl5-porters@perl.org, vmsperl@perl.org
3085              Subject: [PATCH 5.005_03-MT6]VMS build patch
3086              Date: Fri, 05 Mar 1999 12:36:19 -0800
3087              Message-Id: <3.0.6.32.19990305123619.02d326a0@ous.edu>
3088      Branch: maint-5.005/perl
3089            ! vms/subconfigure.com
3090 ____________________________________________________________________________
3091 [  3090] By: gsar                                  on 1999/03/06  04:40:03
3092         Log: integrate change#3089 from mainline
3093              
3094              tolerate CRs after options
3095      Branch: maint-5.005/perl
3096           !> perl.c
3097 ____________________________________________________________________________
3098 [  3089] By: gsar                                  on 1999/03/06  04:30:40
3099         Log: tolerate CRs after options
3100      Branch: perl
3101            ! perl.c
3102 ____________________________________________________________________________
3103 [  3088] By: jhi                                   on 1999/03/05  12:49:01
3104         Log: Integrate from mainperl.
3105      Branch: cfgperl
3106           +> README.hurd
3107           !> MANIFEST ext/Errno/Errno_pm.PL t/lib/io_sock.t
3108 ____________________________________________________________________________
3109 [  3087] By: gsar                                  on 1999/03/05  06:41:16
3110         Log: adjust timeouts to accomodate slow/busy systems
3111      Branch: perl
3112            ! t/lib/io_sock.t
3113 ____________________________________________________________________________
3114 [  3083] By: gsar                                  on 1999/03/05  01:32:47
3115         Log: integrate change#3081 from maint-5.005
3116      Branch: perl
3117           !> ext/Errno/Errno_pm.PL
3118 ____________________________________________________________________________
3119 [  3082] By: gsar                                  on 1999/03/05  01:31:06
3120         Log: integrate change#2904 from maint-5.005
3121      Branch: perl
3122           +> README.hurd
3123           !> MANIFEST
3124 ____________________________________________________________________________
3125 [  3081] By: gsar                                  on 1999/03/05  00:14:33
3126         Log: protect against doubled backslashes
3127      Branch: maint-5.005/perl
3128            ! ext/Errno/Errno_pm.PL
3129 ____________________________________________________________________________
3130 [  3077] By: jhi                                   on 1999/03/04  08:10:13
3131         Log: Integrate from mainperl.
3132      Branch: cfgperl
3133           +> ext/B/B/Stash.pm
3134           !> MANIFEST README.hpux cc_runtime.h config_h.SH ext/B/B/C.pm
3135           !> ext/B/B/CC.pm gv.c lib/File/Compare.pm lib/Test/Harness.pm
3136           !> op.c pod/perldelta.pod pod/perlfunc.pod pod/pod2man.PL
3137           !> t/lib/bigfloatpm.t t/lib/io_sock.t utils/perlcc.PL
3138 ____________________________________________________________________________
3139 [  3076] By: jhi                                   on 1999/03/04  08:07:59
3140         Log: Regen config_h.SH once more because of *size, 
3141              noticed by
3142              
3143              From: Hans Mulder <hansm@icgned.icgroup.nl>
3144              To: Jarkko Hietaniemi <jhi@iki.fi>
3145              Cc: perl5-porters@perl.org
3146              Subject: [PATCH for _56] LONGSIZE used before it is set in config.h
3147              Date: Thu,  4 Mar 99 00:10:45 +0100
3148              Message-Id: <9903032317.AA23021@icgned.icgroup.nl>
3149      Branch: cfgperl
3150            ! Configure config_h.SH
3151 ____________________________________________________________________________
3152 [  3068] By: gsar                                  on 1999/03/04  05:48:03
3153         Log: From: Hans Mulder <hansm@icgned.icgroup.nl>
3154              Date: Thu,  4 Mar 99 00:10:45 +0100
3155              Message-Id: <9903032317.AA23021@icgned.icgroup.nl>
3156              Subject: [PATCH for _56] LONGSIZE used before it is set in config.h
3157      Branch: perl
3158            ! config_h.SH
3159 ____________________________________________________________________________
3160 [  3067] By: gsar                                  on 1999/03/04  05:44:32
3161         Log: exempt $foo::a,$foo::b from warnings only if sort() was seen in package foo
3162              From: Graham Barr <gbarr@ti.com>
3163              Date: Wed, 3 Mar 1999 17:23:56 -0600
3164              Message-ID: <19990303172356.F7442@dal.asp.ti.com>
3165              Subject: Re: 'use strict' doesn't work for one-letter variables
3166      Branch: perl
3167            ! gv.c op.c
3168 ____________________________________________________________________________
3169 [  3066] By: gsar                                  on 1999/03/04  05:20:50
3170         Log: updates to compiler modules
3171              From: "Vishal Bhatia" <vishalb@hotmail.com>
3172              Date: Tue, 02 Mar 1999 23:27:25 PST
3173              Message-ID: <19990303072725.779.qmail@hotmail.com>
3174              Subject: PATCH 5.005_56 + Test procedure
3175      Branch: perl
3176            + ext/B/B/Stash.pm
3177            ! MANIFEST cc_runtime.h ext/B/B/C.pm ext/B/B/CC.pm
3178            ! lib/Test/Harness.pm utils/perlcc.PL
3179 ____________________________________________________________________________
3180 [  3065] By: gsar                                  on 1999/03/04  05:03:30
3181         Log: more s/s_/s!/ etc.
3182      Branch: perl
3183            ! pod/perldelta.pod pod/perlfunc.pod
3184 ____________________________________________________________________________
3185 [  3064] By: gsar                                  on 1999/03/04  04:50:45
3186         Log: integrate cfgperl contents into mainline
3187      Branch: perl
3188           !> Configure README.vms bytecode.h config_h.SH configure.com
3189           !> ext/B/defsubs.h.PL hints/hpux.sh pod/perldelta.pod
3190           !> pod/perldiag.pod pp.c t/lib/ipc_sysv.t t/op/pack.t thread.h
3191           !> vms/ext/vmsish.pm vms/subconfigure.com vms/vms.c vms/vmsish.h
3192 ____________________________________________________________________________
3193 [  3063] By: gsar                                  on 1999/03/04  04:44:13
3194         Log: HP-UX has yet another spelling for /NaNQ?/
3195      Branch: perl
3196            ! t/lib/bigfloatpm.t
3197 ____________________________________________________________________________
3198 [  3062] By: gsar                                  on 1999/03/04  04:36:08
3199         Log: error-check for accept() test
3200      Branch: perl
3201            ! t/lib/io_sock.t
3202 ____________________________________________________________________________
3203 [  3061] By: gsar                                  on 1999/03/04  03:40:25
3204         Log: allow custom comparison function in File::Compare::compare_text()
3205              From: jan.dubois@ibm.net (Jan Dubois)
3206              Date: Fri, 26 Feb 1999 21:56:09 +0100
3207              Message-ID: <36db0838.8805651@smtp1.ibm.net>
3208              Subject: Re: PodParser 1.07 (was: RE: C<stuff()> vs stuff()) 
3209      Branch: perl
3210            ! lib/File/Compare.pm
3211 ____________________________________________________________________________
3212 [  3060] By: gsar                                  on 1999/03/04  03:37:38
3213         Log: better version of change#3038
3214              From: abigail@fnx.com
3215              Date: Mon, 1 Mar 1999 14:11:36 -0500 (EST)
3216              Message-ID: <19990301191136.5557.qmail@alexandra.wayne.fnx.com>
3217              Subject: Re: [PATCH 5.005_03 TRIAL-5 pod/pod2man.PL] Recognize -> and => inside
3218      Branch: perl
3219            ! pod/pod2man.PL
3220 ____________________________________________________________________________
3221 [  3058] By: jhi                                   on 1999/03/03  22:30:40
3222         Log: Configure regen to
3223              (1) match maint-5.005 patches #3056 and #3057
3224              (2) better version of PHOSTNAME of #3050
3225              (3) the crosscompile/multiarch config_h.SH trouble solved for now
3226      Branch: cfgperl
3227            ! Configure config_h.SH
3228 ____________________________________________________________________________
3229 [  3054] By: jhi                                   on 1999/03/03  09:57:59
3230         Log: Change #3053 missed perldelta.
3231      Branch: cfgperl
3232            ! pod/perldelta.pod
3233 ____________________________________________________________________________
3234 [  3053] By: jhi                                   on 1999/03/03  08:29:43
3235         Log: Use '!' to mark native integer packings instead of '_'.
3236      Branch: cfgperl
3237            ! pod/perldiag.pod pp.c t/lib/ipc_sysv.t t/op/pack.t
3238 ____________________________________________________________________________
3239 [  3052] By: jhi                                   on 1999/03/02  23:12:36
3240         Log: The HP-UX threads patch (change #3028) is needed also here.
3241      Branch: cfgperl
3242            ! hints/hpux.sh thread.h
3243 ____________________________________________________________________________
3244 [  3051] By: jhi                                   on 1999/03/02  08:24:52
3245         Log: From: Dan Sugalski <sugalskd@osshe.edu>
3246              To: perl5-porters@perl.org, vmsperl@perl.org
3247              Subject: [PATCH 5.005_0x and 5.005_5x]Minor update to README.VMS
3248              Date: Mon, 01 Mar 1999 16:10:57 -0800
3249              Message-Id: <3.0.6.32.19990301161057.03b1fc00@ous.edu>
3250      Branch: cfgperl
3251            ! README.vms
3252      Branch: maint-5.005/perl
3253            ! README.vms
3254 ____________________________________________________________________________
3255 [  3050] By: jhi                                   on 1999/03/02  08:22:29
3256         Log: From: Dan Sugalski <sugalskd@osshe.edu>
3257              To: perl5-porters@perl.org, vmsperl@perl.org
3258              Subject: [PATCH5.005_56]Diffs to get 5.005_56 building on VMS
3259              Date: Mon, 01 Mar 1999 16:06:29 -0800
3260              Message-Id: <3.0.6.32.19990301160629.02e09ec0@ous.edu>
3261              
3262              From: Dan Sugalski <sugalskd@osshe.edu>
3263              To: perl5-porters@perl.org, vmsperl@perl.org
3264              Subject: [PATCH 5.005_56]vmsish.pm patch
3265              Date: Mon, 01 Mar 1999 20:19:04 -0800
3266              Message-Id: <3.0.6.32.19990301201904.02cff460@ous.edu>
3267              
3268              plus Configure regen containing a "solution" to the
3269              crosscompile/multiarch problem.
3270      Branch: cfgperl
3271            ! Configure config_h.SH configure.com ext/B/defsubs.h.PL
3272            ! vms/ext/vmsish.pm vms/subconfigure.com vms/vms.c vms/vmsish.h
3273 ____________________________________________________________________________
3274 [  3049] By: jhi                                   on 1999/03/02  07:34:21
3275         Log: From: Spider Boardman <spider@leggy.zk3.dec.com>
3276              To: perl5-porters@perl.org
3277              Subject: [PATCH] Eliminate (valid) warning in byterun.c
3278              Date: Mon, 01 Mar 1999 17:27:59 -0500
3279              Message-Id: <199903012227.RAA00181@leggy.zk3.dec.com>
3280      Branch: cfgperl
3281            ! bytecode.h
3282      Branch: maint-5.005/perl
3283            ! bytecode.h
3284 ____________________________________________________________________________
3285 [  3048] By: gsar                                  on 1999/03/02  06:41:21
3286         Log: updated HP-UX notes from Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
3287      Branch: perl
3288            ! MANIFEST README.hpux
3289 ____________________________________________________________________________
3290 [  3047] By: jhi                                   on 1999/03/01  06:34:43
3291         Log: Integrate from mainperl.
3292      Branch: cfgperl
3293           +> README.hpux lib/File/Spec/Functions.pm
3294           !> (integrate 28 files)
3295 ____________________________________________________________________________
3296 [  3046] By: gsar                                  on 1999/03/01  05:34:28
3297         Log: this is 5.005_56
3298      Branch: perl
3299            ! Changes
3300
3301 ----------------
3302 Version 5.005_56
3303 ----------------
3304
3305 ____________________________________________________________________________
3306 [  3045] By: gsar                                  on 1999/03/01  03:32:30
3307         Log: destroy PL_svref_mutex in perl_destruct()
3308      Branch: perl
3309            ! perl.c
3310 ____________________________________________________________________________
3311 [  3044] By: gsar                                  on 1999/03/01  00:38:50
3312         Log: up patchlevel &c.
3313      Branch: perl
3314            ! Changes patchlevel.h pod/perlhist.pod win32/Makefile
3315            ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
3316            ! win32/makefile.mk
3317 ____________________________________________________________________________
3318 [  3043] By: gsar                                  on 1999/03/01  00:14:15
3319         Log: integrate cfgperl contents into mainline
3320      Branch: perl
3321            ! pod/perldelta.pod
3322           !> Configure config_h.SH
3323 ____________________________________________________________________________
3324 [  3042] By: gsar                                  on 1999/02/28  23:55:08
3325         Log: slightly edited version of suggested patch
3326              From: jan.dubois@ibm.net (Jan Dubois)
3327              Date: Mon, 01 Mar 1999 00:32:05 +0100
3328              Message-ID: <36dbcf2c.12325433@smtp1.ibm.net>
3329              Subject: Re: [PATCH 5.005_55] Cleanup of File::Spec module
3330      Branch: perl
3331            + lib/File/Spec/Functions.pm
3332            ! MANIFEST lib/File/Spec.pm
3333 ____________________________________________________________________________
3334 [  3041] By: gsar                                  on 1999/02/28  22:47:19
3335         Log: fix subtle bug in eval'' testsuite
3336      Branch: perl
3337            ! t/op/eval.t
3338 ____________________________________________________________________________
3339 [  3040] By: gsar                                  on 1999/02/28  22:46:24
3340         Log: avoid literal control characters in change#3039
3341      Branch: perl
3342            ! t/base/lex.t
3343 ____________________________________________________________________________
3344 [  3039] By: gsar                                  on 1999/02/28  21:47:18
3345         Log: todo item: permit extended control variables a la ${^Foo} (patch
3346              courtesy Mark-Jason Dominus <mjd@plover.com>)
3347      Branch: perl
3348            ! op.c pod/perldelta.pod pod/perltodo.pod pod/perlvar.pod
3349            ! t/base/lex.t toke.c
3350 ____________________________________________________________________________
3351 [  3038] By: gsar                                  on 1999/02/28  21:21:05
3352         Log: From: abigail@fnx.com
3353              Date: Sun, 28 Feb 1999 10:59:16 -0500 (EST)
3354              Message-ID: <19990228155916.14496.qmail@alexandra.wayne.fnx.com>
3355              Subject: Recognize -> and => inside [A-Z]<> sequences.
3356      Branch: perl
3357            ! pod/pod2man.PL
3358 ____________________________________________________________________________
3359 [  3037] By: gsar                                  on 1999/02/28  21:12:22
3360         Log: fix longstanding bug: searches for lexicals originating within eval''
3361              weren't stopping at the subroutine boundary correctly
3362      Branch: perl
3363            ! op.c proto.h t/op/eval.t
3364 ____________________________________________________________________________
3365 [  3036] By: gsar                                  on 1999/02/28  20:02:29
3366         Log: revert parts of change#2990 to preserve predictable usage of Win32::Foo()
3367              as stacked list values
3368              From: jan.dubois@ibm.net (Jan Dubois)
3369              Date: Sat, 27 Feb 1999 18:24:17 +0100
3370              Message-ID: <36e22849.36531259@smtp1.ibm.net>
3371              Subject: Re: resend [PATCH 5.005_55] Various win32/win32.c cleanup 
3372      Branch: perl
3373            ! win32/win32.c
3374 ____________________________________________________________________________
3375 [  3035] By: gsar                                  on 1999/02/28  19:48:54
3376         Log: remove superfluous stack_sp decl
3377      Branch: perl
3378            ! jpl/JNI/JNI.xs
3379 ____________________________________________________________________________
3380 [  3034] By: gsar                                  on 1999/02/28  19:34:58
3381         Log: s/print STDERR/warn/ suggested by abigail@fnx.com; add $VERSION
3382      Branch: perl
3383            ! lib/Getopt/Std.pm
3384 ____________________________________________________________________________
3385 [  3033] By: gsar                                  on 1999/02/28  19:23:41
3386         Log: add File::Compare::compare_text()
3387              From: jan.dubois@ibm.net (Jan Dubois)
3388              Date: Fri, 26 Feb 1999 00:20:41 +0100
3389              Message-ID: <36dcd8ab.20195659@smtp1.ibm.net>
3390              Subject: Re: PodParser 1.07 (was: RE: C<stuff()> vs stuff()) 
3391      Branch: perl
3392            ! lib/File/Compare.pm pod/perltodo.pod
3393 ____________________________________________________________________________
3394 [  3032] By: gsar                                  on 1999/02/28  19:01:33
3395         Log: add README.hpux
3396      Branch: perl
3397            + README.hpux
3398            ! MAINTAIN MANIFEST
3399 ____________________________________________________________________________
3400 [  3031] By: gsar                                  on 1999/02/28  18:49:08
3401         Log: avoid escaping &amp; et al multiple times (variant of fix suggested by
3402              James Cromie <jcromie@fossil.uswc.uswest.com>
3403      Branch: perl
3404            ! lib/Pod/Html.pm
3405 ____________________________________________________________________________
3406 [  3030] By: gsar                                  on 1999/02/28  18:35:09
3407         Log: From: jan.dubois@ibm.net (Jan Dubois)
3408              Date: Wed, 24 Feb 1999 22:34:56 +0100
3409              Message-ID: <36d86f1e.11495549@smtp1.ibm.net>
3410              Subject: [PATCH 5.005_55] Test::Harness setting $ENV{HARNESS_ACTIVE}
3411      Branch: perl
3412            ! lib/Test/Harness.pm
3413 ____________________________________________________________________________
3414 [  3029] By: gsar                                  on 1999/02/28  18:28:18
3415         Log: add note about env pollution
3416      Branch: perl
3417            ! INSTALL pod/perltodo.pod
3418 ____________________________________________________________________________
3419 [  3028] By: jhi                                   on 1999/02/26  14:40:00
3420         Log: HP-UX 11 threads.
3421              
3422              From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
3423              To: perl5-porters@perl.org
3424              Cc: jhi@cc.hut.fi
3425              Subject: Maint 5 and _54 with threading on HP-UX 11.00
3426              Date: Wed, 3 Feb 1999 12:57:18 -0800 (PST)
3427              Message-Id: <199902032057.MAA10218@xfiles.intercon.hp.com>
3428              
3429              NOTE from jhi: the hpux hints could still be more robust by
3430              disabling gdbm when necessary.
3431              
3432              Currently if there's a libgdbm.sl (gdbm 1.7.3) which is pre-11,
3433              linking -lgdbm -lpthread creates an executable that instantly
3434              core dumps on a pthreads internal panic:
3435              
3436              ./gdpt
3437              
3438              Pthread internal error: message: __libc_reinit() failed, file: ../pthreads/pthread.c, line: 1096
3439              Return Pointer is 0xc082bf33
3440              17639 quit (core dumped)  ./gdpt
3441              
3442              You don't have to *use* either gdbm or pthreads in the executable,
3443              just linking them together is enough.  Workaround is to recompile
3444              the GDBM under HP-UX 11, that makes the problem go away.
3445      Branch: maint-5.005/perl
3446            ! hints/hpux.sh thread.h
3447 ____________________________________________________________________________
3448 [  3025] By: jhi                                   on 1999/02/25  20:41:07
3449         Log: Temporary workaround for the config_h.SH versus
3450              crosscompile and multiarch plus introduce 'rt'
3451              to $libswanted: in UNIX98 sched_yield() lives there.
3452      Branch: cfgperl
3453            ! Configure config_h.SH
3454 ____________________________________________________________________________
3455 [  3024] By: jhi                                   on 1999/02/24  12:54:59
3456         Log: Integrate from mainperl.
3457      Branch: cfgperl
3458           +> t/lib/fatal.t
3459           !> (integrate 44 files)
3460 ____________________________________________________________________________
3461 [  3023] By: gsar                                  on 1999/02/24  07:02:12
3462         Log: integrate cfgperl contents
3463      Branch: perl
3464           !> (integrate 30 files)
3465 ____________________________________________________________________________
3466 [  3022] By: gsar                                  on 1999/02/24  05:59:47
3467         Log: From: Daniel Grisinger <dgris@moiraine.dimensional.com>
3468              Date: 23 Feb 1999 17:53:22 -0700
3469              Message-ID: <m3g17w62rh.fsf@moiraine.dimensional.com>
3470              Subject: [PATCH: _55] perldoc -q broken
3471      Branch: perl
3472            ! utils/perldoc.PL
3473 ____________________________________________________________________________
3474 [  3021] By: gsar                                  on 1999/02/24  05:51:53
3475         Log: ansify perlio.c, fix PerlIO-ish typos
3476      Branch: perl
3477            ! ext/DynaLoader/dl_beos.xs ext/DynaLoader/dl_cygwin32.xs
3478            ! iperlsys.h perlio.c
3479 ____________________________________________________________________________
3480 [  3020] By: gsar                                  on 1999/02/24  05:28:06
3481         Log: adjust a Perl_malloc() flag for NeXT
3482              From: Hans Mulder <hansm@icgned.icgroup.nl>
3483              Date: Tue, 23 Feb 99 00:26:25 +0100
3484              Message-Id: <9902222329.AA17516@icgned.icgroup.nl>
3485              Subject: [PATCH for _55] MUTEX_INIT_CALLS_MALLOC no longer necessary
3486      Branch: perl
3487            ! perl.h
3488 ____________________________________________________________________________
3489 [  3019] By: gsar                                  on 1999/02/24  05:19:42
3490         Log: perltodo adjustments from Joshua Pritikin <joshua.pritikin@db.com>
3491      Branch: perl
3492            ! pod/perltodo.pod
3493 ____________________________________________________________________________
3494 [  3018] By: gsar                                  on 1999/02/24  04:15:18
3495         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
3496              Date: Mon, 22 Feb 1999 11:29:09 -0500 (EST)
3497              Message-ID: <Pine.GSO.4.02.9902221128200.500-100000@eq1062.wks.na.deuba.com>
3498              Subject: improved error message [PATCH _55] [RESEND]
3499      Branch: perl
3500            ! sv.c
3501 ____________________________________________________________________________
3502 [  3017] By: gsar                                  on 1999/02/24  03:50:34
3503         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
3504              Date: Sun, 21 Feb 1999 20:02:18 -0700
3505              Message-Id: <199902220302.UAA09981@jhereg.perl.com>
3506              Subject: perlfunc updates (against 55)
3507      Branch: perl
3508            ! pod/perlfunc.pod
3509 ____________________________________________________________________________
3510 [  3016] By: gsar                                  on 1999/02/24  03:17:05
3511         Log: testsuite adjustments
3512              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
3513              Date: Sat, 20 Feb 1999 15:24:57 +0000
3514              Message-Id: <E10EEH3-0003Wf-00@taurus.cus.cam.ac.uk>
3515              Subject: Not quite OK: perl5.005_55 on SunOS 4.1.3 / gcc
3516      Branch: perl
3517            ! t/lib/io_sock.t t/op/lex_assign.t
3518 ____________________________________________________________________________
3519 [  3015] By: gsar                                  on 1999/02/24  02:54:47
3520         Log: avoid modifying readonly values from qw()
3521      Branch: perl
3522            ! lib/ExtUtils/MM_Unix.pm
3523 ____________________________________________________________________________
3524 [  3014] By: gsar                                  on 1999/02/24  02:49:04
3525         Log: more "correct" utbuf for utime()
3526      Branch: perl
3527            ! doio.c
3528 ____________________________________________________________________________
3529 [  3013] By: jhi                                   on 1999/02/22  19:27:44
3530         Log: Fix MacPerl version, change PowerUX to PowerMAX.
3531              
3532              From: Chris Nandor <pudge@pobox.com>
3533              To: jhi@iki.fi
3534              Cc: perl5-porters@perl.org
3535              Subject: Re: perl current availability as documented by perl.pod
3536              Date: Sun, 21 Feb 1999 11:06:03 -0500
3537              Message-Id: <v04020a07b2f5df60c9e3@[192.168.0.77]>
3538              
3539              From: Tom Horsley <Tom.Horsley@mail.ccur.com>
3540              To: jhi@iki.fi
3541              Cc: perl5-porters@perl.org
3542              Subject: Re: perl current availability as documented by perl.pod
3543              Date: Mon, 22 Feb 1999 13:08:30 GMT
3544              Message-Id: <199902221308.NAA19971@cleo.ccur.com>
3545      Branch: cfgperl
3546            ! pod/perl.pod
3547      Branch: maint-5.005/perl
3548            ! pod/perl.pod
3549 ____________________________________________________________________________
3550 [  3012] By: jhi                                   on 1999/02/22  10:26:11
3551         Log: Snapshot the cross-compilation/multiarchitecture stuff
3552              (currently broken in next)
3553      Branch: cfgperl
3554            ! Configure config_h.SH pp.c
3555 ____________________________________________________________________________
3556 [  3011] By: jhi                                   on 1999/02/22  10:24:51
3557         Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
3558              To: gsar@activestate.com (Gurusamy Sarathy)
3559              Cc: perl5-porters@perl.org (Perl5 Porters)
3560              Subject: [PATCH 5.005_55] DB_File 1.64 patch
3561              Date: Mon, 22 Feb 1999 10:07:00 +0000 (GMT)
3562              Message-Id: <9902221007.AA17751@claudius.bfsec.bt.co.uk>
3563      Branch: cfgperl
3564            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
3565            ! ext/DB_File/DB_File.xs ext/DB_File/typemap t/lib/db-recno.t
3566 ____________________________________________________________________________
3567 [  3009] By: jhi                                   on 1999/02/22  09:14:26
3568         Log: Scratch #3008 and introduce $crosscompile and $multiarch
3569              also in non-Configure lands.
3570      Branch: cfgperl
3571            ! Configure config_h.SH hints/next_3.sh hints/next_3_0.sh
3572            ! hints/next_4.sh vms/subconfigure.com win32/config.bc
3573            ! win32/config.gc win32/config.vc win32/config_H.bc
3574            ! win32/config_H.gc win32/config_H.vc
3575 ____________________________________________________________________________
3576 [  3008] By: jhi                                   on 1999/02/22  08:58:04
3577         Log: Add -DMULTIARCH (see change #3006).
3578      Branch: cfgperl
3579            ! hints/next_3.sh hints/next_3_0.sh hints/next_4.sh
3580 ____________________________________________________________________________
3581 [  3007] By: jhi                                   on 1999/02/22  08:54:06
3582         Log: Undo the references to local{lib,arch} introduced by #3006.
3583      Branch: cfgperl
3584            ! Configure config_h.SH
3585 ____________________________________________________________________________
3586 [  3006] By: jhi                                   on 1999/02/22  08:43:50
3587         Log: From: hansm@icgned.icgroup.nl
3588              To: perlbug@perl.com
3589              Subject: Not OK: perl 5.00555 on OPENSTEP-Mach-thread 4_2 (UNINSTALLED)
3590              Date: Sun, 21 Feb 1999 22:58:55 +0100
3591              Reply-To: hansmu@xs4all.nl
3592              Message-Id: <9902212201.AA13386@icgned.icgroup.nl>
3593              
3594              plus other Configure changes: prepare for cross-compilation/
3595              multiarchitecture builds.
3596      Branch: cfgperl
3597            ! Configure config_h.SH
3598 ____________________________________________________________________________
3599 [  3005] By: jhi                                   on 1999/02/22  08:35:30
3600         Log: Configure/Perl knew how to look for use Mach cthreads
3601              but Configure didn't let them to be used ($osname 'next').
3602      Branch: cfgperl
3603            ! Configure config_h.SH
3604      Branch: maint-5.005/perl
3605            ! Configure
3606 ____________________________________________________________________________
3607 [  3004] By: jhi                                   on 1999/02/21  15:46:02
3608         Log: Update Acorn AVAILABILITY.
3609      Branch: cfgperl
3610            ! pod/perl.pod
3611      Branch: maint-5.005/perl
3612            ! pod/perl.pod
3613 ____________________________________________________________________________
3614 [  3003] By: jhi                                   on 1999/02/21  14:50:42
3615         Log: From: rjk@linguist.dartmouth.edu (Ronald J. Kimball)
3616              To: perl5-porters@perl.org (Perl 5 Porters)
3617              Subject: PATCH: perlref.pod - symbolic ref example
3618              Date: Sat, 20 Feb 1999 17:32:11 -0500 (EST)
3619              Message-Id: <199902202232.RAA62306@linguist.dartmouth.edu>
3620      Branch: cfgperl
3621            ! pod/perlref.pod
3622      Branch: maint-5.005/perl
3623            ! pod/perlref.pod
3624 ____________________________________________________________________________
3625 [  3002] By: jhi                                   on 1999/02/21  14:35:22
3626         Log: Sync cfgperl with maint-5.005 change #3000.
3627      Branch: cfgperl
3628            ! pod/perlfunc.pod t/op/pack.t
3629 ____________________________________________________________________________
3630 [  2999] By: gsar                                  on 1999/02/20  22:48:30
3631         Log: From:    John Bley <jbb6@acpub.duke.edu>
3632              Date:    Sat, 20 Feb 1999 16:02:34 EST
3633              Message-Id: <Pine.SOL.3.91.990220155832.9913A-100000@soc11.acpub.duke.edu>
3634              Subject: [PATCH]5.005_55 (CORE) Sparse intializer in regcomp.c
3635      Branch: perl
3636            ! regcomp.c
3637 ____________________________________________________________________________
3638 [  2998] By: jhi                                   on 1999/02/20  14:13:06
3639         Log: Enhanced the endianness description.
3640      Branch: cfgperl
3641            ! pod/perlfunc.pod
3642 ____________________________________________________________________________
3643 [  2996] By: jhi                                   on 1999/02/20  13:55:41
3644         Log: Glossary now mostly fixed.
3645      Branch: cfgperl
3646            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3647            ! config_h.SH
3648 ____________________________________________________________________________
3649 [  2994] By: jhi                                   on 1999/02/20  11:58:33
3650         Log: Perldeltify GNU/Hurd.
3651      Branch: cfgperl
3652            ! pod/perldelta.pod
3653 ____________________________________________________________________________
3654 [  2993] By: gsar                                  on 1999/02/20  00:59:10
3655         Log: fix typo in Perl_sbrk()
3656              From: hansm@icgned.icgroup.nl
3657              Date: Fri, 19 Feb 1999 23:19:31 +0100
3658              Message-Id: <9902192221.AA07213@icgned.icgroup.nl>
3659              Subject: Not OK: perl 5.00555 on OPENSTEP-Mach 4_2 (UNINSTALLED)
3660      Branch: perl
3661            ! malloc.c
3662 ____________________________________________________________________________
3663 [  2992] By: gsar                                  on 1999/02/20  00:51:08
3664         Log: integrate change#2980 from maint-5.005
3665      Branch: perl
3666           !> utils/h2xs.PL
3667 ____________________________________________________________________________
3668 [  2991] By: gsar                                  on 1999/02/20  00:34:01
3669         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
3670              Date: Thu, 18 Feb 1999 18:51:38 +0000
3671              Message-Id: <199902181851.SAA14018@crypt.compulink.co.uk>
3672              Subject: [PATCH 5.005_55] test failures with MIME-tools-4.122 and perl 5.005_55 
3673      Branch: perl
3674            ! pp_hot.c t/op/pat.t
3675 ____________________________________________________________________________
3676 [  2990] By: gsar                                  on 1999/02/20  00:30:48
3677         Log: From: jan.dubois@ibm.net (Jan Dubois)
3678              Date: Thu, 18 Feb 1999 19:14:07 +0100
3679              Message-ID: <36d15809.40853323@smtp1.ibm.net>
3680              Subject: resend [PATCH 5.005_55] Various win32/win32.c cleanup
3681      Branch: perl
3682            ! win32/win32.c
3683 ____________________________________________________________________________
3684 [  2989] By: gsar                                  on 1999/02/20  00:27:01
3685         Log: do poll() emulation unless HAS_POLL && I_POLL
3686      Branch: perl
3687            ! ext/IO/poll.h
3688 ____________________________________________________________________________
3689 [  2988] By: gsar                                  on 1999/02/19  23:52:12
3690         Log: tweak RE for NaNQ? recognition
3691      Branch: perl
3692            ! t/lib/bigfloatpm.t
3693 ____________________________________________________________________________
3694 [  2987] By: gsar                                  on 1999/02/19  23:29:59
3695         Log: mention C<use utf8> and C<use warning> in perldelta
3696      Branch: perl
3697            ! pod/perldelta.pod
3698 ____________________________________________________________________________
3699 [  2985] By: jhi                                   on 1999/02/19  20:43:19
3700         Log: pack/unpack better in (network-)short-non-16-bits and
3701              (network-)long-non-32-bits systems such as Cray C90.
3702      Branch: cfgperl
3703            ! perl.h pp.c t/op/pack.t
3704 ____________________________________________________________________________
3705 [  2984] By: jhi                                   on 1999/02/19  20:38:54
3706         Log: Regen Configure.
3707      Branch: cfgperl
3708            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
3709            ! perl.c
3710 ____________________________________________________________________________
3711 [  2982] By: jhi                                   on 1999/02/19  19:51:49
3712         Log: Configure update: fstatvfs/fstafs/getmntent/hasmntopt were
3713              not probed for and         
3714              
3715              From: "Kurt D. Starsinic" <kstar@chapin.edu>
3716              To: Chaim Frenkel <chaimf@pobox.com>,
3717              Russ Allbery <rra@stanford.edu>,
3718              Jarkko Hietaniemi <jhi@iki.fi>,
3719              Gurusamy Sarathy <gsar@activestate.com>,
3720              Graham Barr <gbarr@pobox.com>
3721              Cc: bdensch@ameritech.net, perlbug@perl.com
3722              Subject: [PATCH] Re: Solaris 7 for Intel
3723              Message-ID: <19990219124404.A30182@O2.chapin.edu>
3724              
3725              Glossary is still missing some terms because
3726              mkglossary is misbehaving (change #2981 updated
3727              Glossary manually)
3728      Branch: cfgperl
3729            ! Configure Makefile.SH Porting/Glossary Porting/config.sh
3730            ! Porting/config_H
3731 ____________________________________________________________________________
3732 [  2980] By: gbarr                                 on 1999/02/19  16:06:53
3733         Log: Make result of h2xs work when user adds C<use strict>
3734      Branch: maint-5.005/perl
3735            ! utils/h2xs.PL
3736 ____________________________________________________________________________
3737 [  2979] By: gsar                                  on 1999/02/19  05:24:29
3738         Log: doc for change#2978
3739      Branch: perl
3740            ! pod/perlsub.pod
3741 ____________________________________________________________________________
3742 [  2978] By: gsar                                  on 1999/02/19  05:08:29
3743         Log: bring '*' prototype closer to how it behaves internally
3744      Branch: perl
3745            + t/lib/fatal.t
3746            ! MANIFEST lib/Fatal.pm op.c t/comp/proto.t
3747 ____________________________________________________________________________
3748 [  2977] By: gsar                                  on 1999/02/19  02:50:31
3749         Log: stem leakage of perly.h #defines #ifndef PERL_CORE
3750      Branch: perl
3751            ! perly.h
3752 ____________________________________________________________________________
3753 [  2975] By: gsar                                  on 1999/02/18  21:41:57
3754         Log: distinguish eval'' from BEGIN|INIT|END CVs (fixes buggy propagation
3755              of lexical searches in BEGIN|INIT|END)
3756      Branch: perl
3757            ! cop.h cv.h op.c perly.c perly.y pp_ctl.c t/op/misc.t
3758            ! vms/perly_c.vms
3759 ____________________________________________________________________________
3760 [  2974] By: gsar                                  on 1999/02/18  21:03:06
3761         Log: missing PERL_POLLUTE_MALLOC
3762      Branch: perl
3763            ! ext/SDBM_File/sdbm/sdbm.h
3764 ____________________________________________________________________________
3765 [  2973] By: gsar                                  on 1999/02/18  17:10:49
3766         Log: From:    Andy Dougherty <doughera@lafayette.edu>
3767              Date:    Wed, 17 Feb 1999 17:22:50 EST
3768              Message-Id: <Pine.GSU.4.05.9902171720490.17243-100000@newton.phys>
3769              Subject: [PATCH 5.005_xx] dotsh.pl triggers new warnings
3770      Branch: perl
3771            ! lib/dotsh.pl
3772 ____________________________________________________________________________
3773 [  2972] By: gsar                                  on 1999/02/18  17:04:12
3774         Log: s/#defined/#define/
3775      Branch: perl
3776            ! ext/Data/Dumper/Dumper.xs
3777 ____________________________________________________________________________
3778 [  2970] By: gsar                                  on 1999/02/18  03:26:43
3779         Log: ensure is data malloc()ed by GDBM is free()d (not Perl_mfree()d)
3780      Branch: perl
3781            ! ext/GDBM_File/GDBM_File.pm ext/GDBM_File/GDBM_File.xs
3782            ! ext/GDBM_File/typemap
3783 ____________________________________________________________________________
3784 [  2969] By: gsar                                  on 1999/02/17  23:30:47
3785         Log: correct slurp mode doc
3786      Branch: perl
3787            ! pod/perlfunc.pod pod/perlop.pod
3788 ____________________________________________________________________________
3789 [  2968] By: jhi                                   on 1999/02/17  23:15:49
3790         Log: Ultrix hints update.
3791              
3792              From: Spider Boardman <spider@zk3.dec.com>
3793              To: perlbug@perl.com
3794              Subject: Not OK: perl 5.00555 on RISC-ultrix 4.4 (UNINSTALLED)
3795              Date: Tue, 16 Feb 1999 23:04:28 -0500
3796              Message-Id: <9902170404.AA11036@abyss.zk3.dec.com>
3797      Branch: cfgperl
3798            ! hints/ultrix_4.sh
3799 ____________________________________________________________________________
3800 [  2966] By: jhi                                   on 1999/02/17  23:09:21
3801         Log: Change #2965 wiped out some Sarathy's _55 changes.
3802              Now unwiped.
3803      Branch: cfgperl
3804            ! Configure pp.c t/op/pack.t
3805 ____________________________________________________________________________
3806 [  2965] By: jhi                                   on 1999/02/17  23:00:04
3807         Log: Configure tweaks.
3808              
3809              Fix the Unixware/SCO uname scan:
3810              
3811              From: Tom Hughes <thh@cyberscience.com>
3812              To: perlbug@perl.com
3813              Subject: Not OK: perl 5.00555 on i386-svr4 [actually Unixware 2.1] (UNINSTALLED)
3814              Date: 17 Feb 1999 15:34:15 +0000    
3815              Message-ID: <yekg185nix4.fsf@elva.cyberscience.com>
3816              
3817              AIX syscalls.exp scan: the syscall might be marked 32, 3264, or 64
3818              
3819              From: Joe Buehler <jhpb@hekimian.com>
3820              To: perl5-porters@perl.org
3821              Subject: setsid not detected by perl 5.005_02 configure under AIX 4.3
3822              Date: 12 Feb 1999 11:25:21 -0500
3823              Message-ID: <yd3lni3613i.fsf@ganymede.hekimian.com>
3824              
3825              Make the pthreads joinable constant scan to output to fd 4, not 2.
3826      Branch: cfgperl
3827            ! Configure
3828 ____________________________________________________________________________
3829 [  2964] By: gsar                                  on 1999/02/17  21:30:07
3830         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
3831              Date: Wed, 17 Feb 1999 06:53:13 -0700
3832              Message-Id: <199902171353.GAA15682@jhereg.perl.com>
3833              Subject: PATCH: lib/Pod/Functions.pm for perl5.005_55
3834      Branch: perl
3835            ! lib/Pod/Functions.pm
3836 ____________________________________________________________________________
3837 [  2963] By: gsar                                  on 1999/02/17  21:18:21
3838         Log: fix comppad handling for failures in eval 'qr/(?p{...})/'
3839              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
3840              Date: Wed, 17 Feb 1999 10:06:01 +0000
3841              Message-Id: <199902171006.KAA10204@crypt.compulink.co.uk>
3842              Subject: Re: [5.005_53] panic: pad_free curpad 
3843      Branch: perl
3844            ! regcomp.c regexec.c t/op/misc.t
3845 ____________________________________________________________________________
3846 [  2962] By: gsar                                  on 1999/02/16  21:26:28
3847         Log: NaNQ? tweak
3848      Branch: perl
3849            ! t/lib/bigfloatpm.t
3850 ____________________________________________________________________________
3851 [  2961] By: jhi                                   on 1999/02/16  19:26:38
3852         Log: Integrate from mainperl.
3853      Branch: cfgperl
3854           !> (integrate 37 files)
3855 ____________________________________________________________________________
3856 [  2960] By: gsar                                  on 1999/02/16  18:04:29
3857         Log: undo change#2465 (qw[] is a real list now)
3858      Branch: perl
3859            ! pod/perlop.pod
3860 ____________________________________________________________________________
3861 [  2959] By: gsar                                  on 1999/02/16  07:09:33
3862         Log: this was 5.005_55
3863      Branch: perl
3864            ! Changes
3865
3866 ----------------
3867 Version 5.005_55
3868 ----------------
3869
3870 ____________________________________________________________________________
3871 [  2958] By: gsar                                  on 1999/02/16  06:18:27
3872         Log: integrate change#2852 from maint-5.005; integrate cfgperl contents;
3873              elide dups and non-dependents from Changes
3874      Branch: perl
3875            ! Changes pod/perlhist.pod
3876           !> Configure INSTALL README.threads doio.c ext/IPC/SysV/SysV.xs
3877           !> hints/ultrix_4.sh pod/perl.pod pod/perlfunc.pod
3878           !> pod/perlport.pod pp.c t/op/pack.t
3879 ____________________________________________________________________________
3880 [  2957] By: gsar                                  on 1999/02/16  04:09:47
3881         Log: propagate PERL_VERSION everywhere, add to pod
3882      Branch: perl
3883            ! Configure configpm configure.com ext/B/B/C.pm ext/B/byteperl.c
3884            ! ext/DB_File/DB_File.xs ext/Data/Dumper/Dumper.xs ext/IO/IO.xs
3885            ! hints/freebsd.sh hints/os2.sh installman installperl myconfig
3886            ! os2/Makefile.SHs os2/os2.c patchlevel.h perl.c perl.h
3887            ! plan9/genconfig.pl plan9/myconfig.plan9 plan9/versnum
3888            ! pod/perldebug.pod pod/perldelta.pod vms/genconfig.pl
3889            ! vms/myconfig.com vms/subconfigure.com win32/config.bc
3890            ! win32/config.gc win32/config.vc win32/config_sh.PL
3891            ! win32/win32.c x2p/a2py.c
3892 ____________________________________________________________________________
3893 [  2955] By: jhi                                   on 1999/02/15  16:15:03
3894         Log: The pack tests now better in C90 (after the packnative patches).
3895      Branch: cfgperl
3896            ! t/op/pack.t
3897 ____________________________________________________________________________
3898 [  2954] By: gsar                                  on 1999/02/15  14:11:50
3899         Log: tweak Configure to follow new PERL_VERSION etc.
3900      Branch: perl
3901            ! Configure patchlevel.h pod/perlhist.pod
3902 ____________________________________________________________________________
3903 [  2953] By: jhi                                   on 1999/02/15  14:02:21
3904         Log: Integrate from mainperl.
3905      Branch: cfgperl
3906           !> MANIFEST Porting/makerel
3907 ____________________________________________________________________________
3908 [  2952] By: jhi                                   on 1999/02/15  13:50:07
3909         Log: Enhance the packnative patch: use the packnative code
3910              only if required.  Also added hefty testing (hopefully
3911              I didn't assume too much...).  Tested on alpha, ix86, sparc.
3912      Branch: cfgperl
3913            ! pod/perlfunc.pod pp.c t/op/pack.t
3914 ____________________________________________________________________________
3915 [  2951] By: jhi                                   on 1999/02/15  13:46:56
3916         Log: AVAILABILITY from 5.005_03-tobe, will of course
3917              require updating when 5.006 comes out.
3918      Branch: cfgperl
3919            ! pod/perl.pod
3920 ____________________________________________________________________________
3921 [  2949] By: gsar                                  on 1999/02/15  13:28:51
3922         Log: will this be it for 5.005_55?
3923      Branch: perl
3924            ! MANIFEST Porting/makerel
3925 ____________________________________________________________________________
3926 [  2948] By: jhi                                   on 1999/02/15  13:23:52
3927         Log: Integrate from mainperl.
3928      Branch: cfgperl
3929           !> Changes Makefile.SH ext/B/B/C.pm patchlevel.h perl.h
3930           !> pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod
3931           !> pod/perlfaq4.pod pod/perlfaq9.pod pod/perlmodinstall.pod
3932           !> pod/perlmodlib.pod pod/perltoc.pod t/io/argv.t
3933           !> t/lib/bigfloatpm.t t/lib/h2ph.t win32/Makefile win32/config.bc
3934           !> win32/config.gc win32/config.vc win32/config_H.bc
3935           !> win32/config_H.gc win32/config_H.vc win32/makefile.mk
3936 ____________________________________________________________________________
3937 [  2947] By: jhi                                   on 1999/02/15  13:20:41
3938         Log: perlport.pod 1.39 from Chris.
3939      Branch: cfgperl
3940            ! pod/perlport.pod
3941 ____________________________________________________________________________
3942 [  2946] By: jhi                                   on 1999/02/15  13:09:58
3943         Log: Import Ultrix update, change #2864, 
3944              
3945              From: Spider Boardman <spider@zk3.dec.com>
3946              To: perlbug@perl.com
3947              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on RISC-ultrix 4.4 (UNINSTALLED)
3948              Date: Wed, 10 Feb 1999 23:33:31 -0500
3949              Message-Id: <9902110433.AA12816@abyss.zk3.dec.com>
3950      Branch: cfgperl
3951            ! doio.c ext/IPC/SysV/SysV.xs hints/ultrix_4.sh
3952 ____________________________________________________________________________
3953 [  2945] By: jhi                                   on 1999/02/15  13:04:50
3954         Log: OpenBSD sparc SHMLBA.
3955      Branch: cfgperl
3956            ! ext/IPC/SysV/SysV.xs
3957 ____________________________________________________________________________
3958 [  2944] By: gsar                                  on 1999/02/15  12:09:52
3959         Log: update win32/config* stuff, Changes
3960      Branch: perl
3961            ! Changes win32/Makefile win32/config.bc win32/config.gc
3962            ! win32/config.vc win32/config_H.bc win32/config_H.gc
3963            ! win32/config_H.vc win32/makefile.mk
3964 ____________________________________________________________________________
3965 [  2943] By: gsar                                  on 1999/02/15  11:54:08
3966         Log: #include patchlevel.h by default, provide
3967              PERL_{REVISION,VERSION,SUBVERSION}
3968      Branch: perl
3969            ! patchlevel.h perl.h
3970 ____________________________________________________________________________
3971 [  2942] By: gsar                                  on 1999/02/15  10:26:59
3972         Log: allow /0|NaN/ on some bigfloatpm.t tests for portability; other
3973              misc fixes
3974      Branch: perl
3975            ! Makefile.SH t/io/argv.t t/lib/bigfloatpm.t t/lib/h2ph.t
3976 ____________________________________________________________________________
3977 [  2941] By: gsar                                  on 1999/02/15  10:24:37
3978         Log: broken URLs fixed (from Michael G Schwern <schwern@pobox.com>)
3979              Message-ID: <19990207002851.B9185@toldyouso.com>
3980              Message-ID: <19990207212152.A9765@toldyouso.com>
3981              Message-ID: <19990207212041.A9622@toldyouso.com>
3982              Message-ID: <19990207213127.A10244@toldyouso.com>
3983              Message-ID: <19990207212559.A9950@toldyouso.com>
3984              Message-ID: <19990207212842.A9994@toldyouso.com>
3985              Message-ID: <19990207212500.A9860@toldyouso.com>
3986              Message-ID: <19990207213013.A10105@toldyouso.com>
3987      Branch: perl
3988            ! pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod
3989            ! pod/perlfaq4.pod pod/perlfaq9.pod pod/perlmodinstall.pod
3990            ! pod/perlmodlib.pod pod/perltoc.pod
3991 ____________________________________________________________________________
3992 [  2940] By: gsar                                  on 1999/02/15  10:07:08
3993         Log: enable dynaloading in C.pm-compiled programs (non-conflicting part
3994              of suggested patch)
3995              From: "Vishal Bhatia" <vishalb@my-dejanews.com>
3996              Date: Mon, 08 Feb 1999 01:14:41 -0000
3997              Message-ID: <DHIDFFOPMEFDBAAA@my-dejanews.com>
3998              Subject: [PATCH 5.005_54] some pending C.pm stuff 
3999      Branch: perl
4000            ! ext/B/B/C.pm
4001 ____________________________________________________________________________
4002 [  2939] By: jhi                                   on 1999/02/15  08:40:18
4003         Log: Integrate from mainperl.
4004      Branch: cfgperl
4005           +> t/lib/bigfloat.t t/lib/bigfloatpm.t
4006            - lib/File/PathConvert.pm
4007           !> (integrate 81 files)
4008 ____________________________________________________________________________
4009 [  2938] By: gsar                                  on 1999/02/15  06:56:39
4010         Log: change#2839 was bogus, redo
4011      Branch: perl
4012           !> t/lib/h2ph.pht
4013 ____________________________________________________________________________
4014 [  2937] By: gsar                                  on 1999/02/15  06:38:15
4015         Log: support Win32::GetFullPathName() and Win32::SetLastError()
4016              From: jan.dubois@ibm.net (Jan Dubois)
4017              Date: Tue, 09 Feb 1999 22:27:31 +0100
4018              Message-ID: <36c1a2ed.8007554@smtp1.ibm.net>
4019              Subject: [PATCH _54] Win32::GetFullPathName (Re: File::Spec::Win32 and UNCs)
4020      Branch: perl
4021            ! win32/win32.c
4022 ____________________________________________________________________________
4023 [  2936] By: gsar                                  on 1999/02/15  06:26:39
4024         Log: support native integers, pack("L_",...) etc. (via private mail)
4025              From: Jarkko Hietaniemi <jhi@iki.fi>
4026              Date: Wed, 10 Feb 1999 00:04:52 +0200 (EET)
4027              Message-Id: <199902092204.AAA29065@alpha.hut.fi>
4028              Subject: the "packnative" patch
4029      Branch: perl
4030            ! pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod pp.c
4031            ! t/lib/ipc_sysv.t t/op/pack.t
4032 ____________________________________________________________________________
4033 [  2935] By: gsar                                  on 1999/02/15  06:04:02
4034         Log: From: Michael G Schwern <schwern@pobox.com>
4035              Date: Tue, 9 Feb 1999 04:13:12 -0500
4036              Message-ID: <19990209041312.A15788@toldyouso.com>
4037              Subject: [PATCH]5.005_03-MAINT_TRIAL_5 utils/h2xs fixing -A & more
4038      Branch: perl
4039            ! utils/h2xs.PL
4040 ____________________________________________________________________________
4041 [  2934] By: gsar                                  on 1999/02/15  05:30:13
4042         Log: fix bugs in the handling of negative numbers, among other things
4043              From: Steven Knight <knight@theopera.baldmt.citilink.com>
4044              Date: Mon, 8 Feb 1999 01:16:24 -0600
4045              Message-Id: <199902080716.BAA24652@theopera.baldmt.citilink.com>
4046              Subject: Math::BigFloat and Math::BigInt
4047      Branch: perl
4048            + t/lib/bigfloat.t t/lib/bigfloatpm.t
4049            ! lib/Math/BigFloat.pm lib/Math/BigInt.pm lib/bigfloat.pl
4050            ! t/lib/bigintpm.t
4051 ____________________________________________________________________________
4052 [  2933] By: gsar                                  on 1999/02/15  04:57:52
4053         Log: From: "J. van Krieken" <John.van.Krieken@ATComputing.nl>
4054              Date: Thu, 4 Feb 1999 17:25:25 +0100 (MET)
4055              Message-Id: <199902041625.RAA14489@atcmpg.ATComputing.nl>
4056              Subject: s2p incorrectly handles hold space commands
4057      Branch: perl
4058            ! x2p/s2p.PL
4059 ____________________________________________________________________________
4060 [  2932] By: gsar                                  on 1999/02/15  04:45:55
4061         Log: clarify what a "line" is
4062      Branch: perl
4063            ! pod/perlfunc.pod pod/perlvar.pod
4064 ____________________________________________________________________________
4065 [  2931] By: gsar                                  on 1999/02/15  04:23:29
4066         Log: backout change#2811 and add newer version based on File::Spec
4067              From: Barrie Slaymaker <rbs@telerama.com>
4068              Date: Thu, 11 Feb 1999 16:29:24 -0500
4069              Message-ID: <36C34BB4.A62090E0@telerama.com>
4070              Subject: [PATCH]5.005_54 (pod2html) Relative URLs using new File::Spec
4071      Branch: perl
4072            - lib/File/PathConvert.pm
4073            ! MANIFEST installhtml lib/Pod/Html.pm
4074 ____________________________________________________________________________
4075 [  2930] By: gsar                                  on 1999/02/15  04:16:25
4076         Log: From: Barrie Slaymaker <rbs@telerama.com>
4077              Date: Thu, 11 Feb 1999 19:39:48 -0500
4078              Message-ID: <36C37854.707D139@telerama.com>
4079              Subject: [PATCH] 5.005_54 #2 Merging File::PathConvert in to File::Spec
4080      Branch: perl
4081            ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
4082 ____________________________________________________________________________
4083 [  2929] By: gsar                                  on 1999/02/15  04:06:50
4084         Log: patches suggested by John Bley <jbb6@acpub.duke.edu> (with minor edits)
4085              Date: Wed, 3 Feb 1999 05:24:55 -0500 (EST)
4086              Message-ID: <Pine.SOL.3.91.990203051924.302A-100000@soc11.acpub.duke.edu>
4087              Subject: [PATCH]5.005_54 (DOC) fix many typos
4088              --
4089              Date: Wed, 3 Feb 1999 08:53:53 -0500 (EST)
4090              Message-ID: <Pine.SOL.3.91.990203085157.895A-100000@soc11.acpub.duke.edu>
4091              Subject: [PATCH]5.005_54 (DOC) typos
4092      Branch: perl
4093            ! pod/perl5004delta.pod pod/perl5005delta.pod pod/perlcall.pod
4094            ! pod/perldebug.pod pod/perlfaq1.pod pod/perlfaq2.pod
4095            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
4096            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
4097            ! pod/perlfaq9.pod pod/perlfunc.pod pod/perlguts.pod
4098            ! pod/perllol.pod pod/perlmod.pod pod/perlref.pod
4099            ! pod/perlrun.pod pod/perlsub.pod pod/perltoc.pod
4100            ! pod/perlvar.pod pod/perlxs.pod
4101 ____________________________________________________________________________
4102 [  2928] By: gsar                                  on 1999/02/15  03:39:53
4103         Log: allow the Carp routines to pass through exception objects
4104      Branch: perl
4105            ! lib/Carp.pm
4106 ____________________________________________________________________________
4107 [  2927] By: gsar                                  on 1999/02/15  03:22:57
4108         Log: mention Proc::Daemon (suggested by Michael G Schwern <schwern@pobox.com>)
4109      Branch: perl
4110            ! pod/perlfaq8.pod
4111 ____________________________________________________________________________
4112 [  2926] By: gsar                                  on 1999/02/15  03:19:39
4113         Log: integrate h2ph.PL fixes from change#2809 (change#2838 was supposed to
4114              have done that, but didn't)
4115      Branch: perl
4116           !> utils/h2ph.PL
4117 ____________________________________________________________________________
4118 [  2925] By: gsar                                  on 1999/02/15  03:17:01
4119         Log: integrate cfgperl changes into mainline
4120      Branch: perl
4121            ! Changes
4122           !> Configure Porting/Glossary Porting/config.sh Porting/config_H
4123           !> config_h.SH hints/openbsd.sh hints/ultrix_4.sh
4124           !> pod/perlport.pod t/lib/h2ph.pht utils/h2ph.PL
4125           !> vms/subconfigure.com
4126 ____________________________________________________________________________
4127 [  2924] By: gsar                                  on 1999/02/15  03:07:08
4128         Log: add const qualifier to most char* prototypes, handle ripple effect
4129      Branch: perl
4130            ! gv.c hv.c hv.h mg.c op.c perl.c pod/perlguts.pod proto.h sv.c
4131            ! universal.c util.c
4132 ____________________________________________________________________________
4133 [  2923] By: gsar                                  on 1999/02/15  01:04:30
4134         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
4135              Date: Thu, 04 Feb 1999 02:37:31 +0000
4136              Message-Id: <199902040237.CAA03255@crypt.compulink.co.uk>
4137              Subject: [PATCH 5.005_54] Re: .. misinterpreted as flipflop 
4138      Branch: perl
4139            ! pp_ctl.c t/op/range.t
4140 ____________________________________________________________________________
4141 [  2922] By: gsar                                  on 1999/02/15  00:24:34
4142         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
4143              Date: Sun, 31 Jan 1999 01:50:06 +0000
4144              Message-Id: <199901310150.BAA16299@crypt.compulink.co.uk>
4145              Subject: [PATCH 5.005_03t4] regexp flags bug
4146      Branch: perl
4147            ! regcomp.c t/op/re_tests
4148 ____________________________________________________________________________
4149 [  2921] By: gsar                                  on 1999/02/15  00:13:02
4150         Log: use New() et al., rather than safemalloc() et al.
4151              From: jan.dubois@ibm.net (Jan Dubois)
4152              Date: Fri, 29 Jan 1999 23:27:22 +0100
4153              Message-ID: <36bd33f2.51029616@smtp1.ibm.net>
4154              Subject: [PATCH _03-MT5] POSIX.xs memory API
4155      Branch: perl
4156            ! ext/POSIX/POSIX.xs
4157 ____________________________________________________________________________
4158 [  2920] By: gsar                                  on 1999/02/15  00:05:33
4159         Log: tweak READ() docs to mention $buffer must be altered by reference
4160      Branch: perl
4161            ! pod/perltie.pod
4162 ____________________________________________________________________________
4163 [  2919] By: gsar                                  on 1999/02/14  23:50:39
4164         Log: applied suggested patch, with several language/readability tweaks
4165              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4166              Date: Fri, 29 Jan 1999 00:25:02 -0500
4167              Message-ID: <19990129002502.C2898@monk.mps.ohio-state.edu>
4168              Subject: Re: [PATCH 5.005_*] Better parsing docs
4169      Branch: perl
4170            ! pod/perlop.pod
4171 ____________________________________________________________________________
4172 [  2918] By: gsar                                  on 1999/02/14  23:20:42
4173         Log: several bug fixes; now croak()s when date exceeds integer limits (instead
4174              of silently returning bogus values)
4175              From: Peter Chines <pchines@nhgri.nih.gov>
4176              Date: Wed, 27 Jan 1999 16:11:31 -0500
4177              Message-Id: <199901272117.QAA21458@kronos.nhgri.nih.gov>
4178              Subject: Time::Local
4179      Branch: perl
4180            ! lib/Time/Local.pm pod/perldelta.pod
4181 ____________________________________________________________________________
4182 [  2917] By: gsar                                  on 1999/02/14  11:21:43
4183         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4184              Date: Thu, 28 Jan 1999 10:02:20 -0500
4185              Message-ID: <19990128100220.A1321@monk.mps.ohio-state.edu>
4186              Subject: Re: [PATCH 5.005_53] Better perldoc
4187      Branch: perl
4188            ! utils/perldoc.PL
4189 ____________________________________________________________________________
4190 [  2916] By: gsar                                  on 1999/02/14  10:59:38
4191         Log: back out change#2751, apply updated version 
4192              From: jan.dubois@ibm.net (Jan Dubois)
4193              Date: Sat, 06 Feb 1999 01:06:29 +0100
4194              Message-ID: <36bc844c.18763049@smtp1.ibm.net>
4195              Subject: [PATCH] Cleanup of File::Spec module
4196      Branch: perl
4197            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
4198            ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
4199            ! lib/File/Spec/Win32.pm
4200 ____________________________________________________________________________
4201 [  2915] By: gsar                                  on 1999/02/14  10:48:01
4202         Log: tweak select() test
4203      Branch: perl
4204            ! pod/perlipc.pod t/op/fh.t
4205 ____________________________________________________________________________
4206 [  2914] By: gsar                                  on 1999/02/14  10:25:55
4207         Log: allow C<select('foo')> to autovivify *foo (SelectSaver expects that)
4208      Branch: perl
4209            ! op.c pod/perldiag.pod pp_sys.c t/op/misc.t
4210 ____________________________________________________________________________
4211 [  2913] By: gsar                                  on 1999/02/14  10:03:51
4212         Log: From: Kenneth Albanowski <kjahds@kjahds.com>
4213              Date: Sat, 23 Jan 1999 21:52:15 -0500 (EST)
4214              Message-ID: <Pine.LNX.3.93.990123212857.446B-100000@kjahds.kjahds.com>
4215              Subject: Re: SvOPV() or SvPV_nolen() or ...
4216      Branch: perl
4217            ! pod/perlguts.pod
4218 ____________________________________________________________________________
4219 [  2912] By: gsar                                  on 1999/02/14  09:57:29
4220         Log: provide SvPV_nolen(sv) to avoid use of PL_na
4221              From: jan.dubois@ibm.net (Jan Dubois)
4222              Date: Sun, 24 Jan 1999 02:45:32 +0100
4223              Message-ID: <36bb7ada.68485547@smtp1.ibm.net>
4224              Subject: [PATCH 5.005_54]  _54 version of SvPV_nolen patch
4225      Branch: perl
4226            ! embed.h global.sym objXSUB.h pod/perlguts.pod proto.h sv.c
4227            ! sv.h
4228 ____________________________________________________________________________
4229 [  2911] By: gsar                                  on 1999/02/14  06:51:05
4230         Log: elide stray effluvium
4231      Branch: perl
4232            ! pod/perldelta.pod
4233 ____________________________________________________________________________
4234 [  2910] By: gsar                                  on 1999/02/14  05:51:56
4235         Log: slurping an empty file should return '' rather than undef, with
4236              commensurate effects on ARGV processing
4237      Branch: perl
4238            ! pod/perldelta.pod pod/perlfunc.pod pod/perlop.pod
4239            ! pod/perlvar.pod pp_hot.c sv.h t/io/argv.t
4240 ____________________________________________________________________________
4241 [  2909] By: gsar                                  on 1999/02/14  00:02:11
4242         Log: perly_c.diff typo
4243      Branch: perl
4244            ! perly.c perly_c.diff vms/perly_c.vms
4245 ____________________________________________________________________________
4246 [  2908] By: gsar                                  on 1999/02/13  18:20:13
4247         Log: From: jan.dubois@ibm.net (Jan Dubois)
4248              Date: Sat, 13 Feb 1999 13:25:53 +0100
4249              Message-Id: <36c9629c.13334874@smtp1.ibm.net>
4250              Subject: [PATCH 5.005_03-MT5] "goto must have label" message for C<goto ''>
4251      Branch: perl
4252            ! pod/perlfunc.pod pp_ctl.c t/lib/io_unix.t
4253 ____________________________________________________________________________
4254 [  2907] By: jhi                                   on 1999/02/13  15:07:26
4255         Log: Integrate from mainperl.
4256      Branch: cfgperl
4257           +> emacs/e2ctags.pl pod/perltodo.pod t/op/lop.t
4258           !> (integrate 150 files)
4259 ____________________________________________________________________________
4260 [  2903] By: gsar                                  on 1999/02/12  13:25:59
4261         Log: From: jan.dubois@ibm.net (Jan Dubois)
4262              Date: Sun, 24 Jan 1999 01:12:00 +0100
4263              Message-ID: <36b66479.62756298@smtp1.ibm.net>
4264              Subject: [PATCH 5.005_54] remove OVERLOAD conditionals
4265      Branch: perl
4266            ! XSUB.h dump.c gv.c hv.h mg.c perl.h perlvars.h pp.c pp.h
4267            ! proto.h sv.c sv.h
4268 ____________________________________________________________________________
4269 [  2902] By: gsar                                  on 1999/02/12  12:55:11
4270         Log: script to generate ctags from etags
4271              From: Colin Kuskie <ckuskie@cadence.com>
4272              Date: Wed, 20 Jan 1999 16:29:35 -0800 (PST)
4273              Message-ID: <Pine.GSO.3.96.990120160519.5755Q-100000@pdxue150.cadence.com>
4274              Subject: [PATCH 5.005_54] adding ctags to the source, FAQ, make
4275      Branch: perl
4276            + emacs/e2ctags.pl
4277            ! Makefile.SH pod/perlfaq3.pod
4278 ____________________________________________________________________________
4279 [  2901] By: gsar                                  on 1999/02/12  12:40:17
4280         Log: allow boolean assign ops to be lvalues
4281              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
4282              Date: Mon, 11 Jan 1999 16:52:18 -0600 (CST)
4283              Message-ID: <13978.32609.495338.544643@alias-2.pr.mcs.net>
4284              --
4285              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
4286              Date: Mon, 18 Jan 1999 10:04:00 +0000
4287              Message-Id: <199901181004.KAA17471@crypt.compulink.co.uk>
4288              Subject: Re: [inconsistency 5.005_54] ||= not an lvalue 
4289      Branch: perl
4290            + t/op/lop.t
4291            ! MANIFEST op.c
4292 ____________________________________________________________________________
4293 [  2899] By: jhi                                   on 1999/02/12  12:03:48
4294         Log: Configure update: OpenBSD thread-awareness, SCO ODT/OSR osvers.
4295      Branch: cfgperl
4296            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4297            ! config_h.SH hints/openbsd.sh
4298 ____________________________________________________________________________
4299 [  2898] By: gsar                                  on 1999/02/12  11:49:25
4300         Log: support win32_putenv()
4301      Branch: perl
4302            ! mg.c util.c win32/GenCAPI.pl win32/makedef.pl win32/perlhost.h
4303            ! win32/win32.c win32/win32iop.h
4304 ____________________________________________________________________________
4305 [  2894] By: gsar                                  on 1999/02/12  11:09:27
4306         Log: add missing hunk in change#2657
4307      Branch: perl
4308            ! ext/B/B/CC.pm
4309 ____________________________________________________________________________
4310 [  2893] By: gsar                                  on 1999/02/12  11:00:13
4311         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4312              Date: Tue, 19 Jan 1999 20:13:15 -0500
4313              Message-ID: <19990119201315.A21167@monk.mps.ohio-state.edu>
4314              Subject: [PATCH 5.005_53] Remove extraneous sh in test suites
4315      Branch: perl
4316            ! t/op/fh.t t/op/misc.t t/op/runlevel.t t/pragma/strict.t
4317            ! t/pragma/subs.t t/pragma/warning.t
4318 ____________________________________________________________________________
4319 [  2892] By: gsar                                  on 1999/02/12  10:44:38
4320         Log: update change#2670 to later version
4321              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
4322              Date: Sun, 31 Jan 1999 16:16:14 +0000
4323              Message-Id: <199901311616.QAA17673@crypt.compulink.co.uk>
4324              Subject: Re: [PATCH 5.005_54] Evalled substitution parsing 
4325      Branch: perl
4326            ! t/op/subst.t toke.c
4327 ____________________________________________________________________________
4328 [  2891] By: gsar                                  on 1999/02/12  10:31:17
4329         Log: make testsuite somewhat location independent
4330      Branch: perl
4331            ! (edit 117 files)
4332 ____________________________________________________________________________
4333 [  2890] By: gsar                                  on 1999/02/12  10:00:30
4334         Log: add $AutoLoader::VERSION
4335      Branch: perl
4336            ! lib/AutoLoader.pm
4337 ____________________________________________________________________________
4338 [  2889] By: gsar                                  on 1999/02/12  09:55:48
4339         Log: tweak PERL_STRICT_CR notes
4340      Branch: perl
4341            ! pod/perl5005delta.pod
4342 ____________________________________________________________________________
4343 [  2888] By: gsar                                  on 1999/02/12  09:41:45
4344         Log: add note about test-notty target
4345      Branch: perl
4346            ! README.win32
4347 ____________________________________________________________________________
4348 [  2887] By: gsar                                  on 1999/02/12  09:37:37
4349         Log: add perltodo.pod
4350      Branch: perl
4351            + pod/perltodo.pod
4352            ! MANIFEST Todo pod/Makefile pod/perl.pod pod/roffitall
4353            ! win32/pod.mak
4354 ____________________________________________________________________________
4355 [  2886] By: jhi                                   on 1999/02/12  08:52:14
4356         Log: Integrate from mainperl.
4357      Branch: cfgperl
4358           +> t/op/fh.t
4359           !> (integrate 30 files)
4360 ____________________________________________________________________________
4361 [  2885] By: gsar                                  on 1999/02/12  08:42:10
4362         Log: note how to find REG_INFTY limit
4363      Branch: perl
4364            ! pod/perlre.pod
4365 ____________________________________________________________________________
4366 [  2884] By: jhi                                   on 1999/02/12  08:36:14
4367         Log: OpenBSD pthreads awareness, thanks to
4368              David Leonard <david.leonard@csee.uq.edu.au>
4369      Branch: maint-5.005/perl
4370            ! Configure hints/openbsd.sh
4371 ____________________________________________________________________________
4372 [  2882] By: gsar                                  on 1999/02/12  08:05:20
4373         Log: IO is maintained by p5p (per Graham Barr's wishes)
4374      Branch: perl
4375            ! MAINTAIN ext/IO/ChangeLog ext/IO/README ext/IO/lib/IO/Dir.pm
4376            ! ext/IO/lib/IO/Pipe.pm ext/IO/lib/IO/Poll.pm
4377            ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
4378            ! ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
4379 ____________________________________________________________________________
4380 [  2881] By: gsar                                  on 1999/02/12  07:57:13
4381         Log: fh.t typo
4382      Branch: perl
4383            ! t/op/fh.t
4384 ____________________________________________________________________________
4385 [  2880] By: gsar                                  on 1999/02/12  07:38:16
4386         Log: PERL5OPT=-T enables taint mode (suggested by Jason Riedy <ejr@cise.ufl.edu>)
4387      Branch: perl
4388            ! perl.c pod/perlrun.pod
4389 ____________________________________________________________________________
4390 [  2879] By: gsar                                  on 1999/02/12  05:39:29
4391         Log: fix ops that are not filehandle constructors to not create GV if it
4392              doesn't already exist (avoids leaks); extend semantics of defined()
4393              so that defined(*{$foo}) works (experimental)
4394      Branch: perl
4395            + t/op/fh.t
4396            ! MANIFEST embed.h embed.pl objXSUB.h op.c pod/perldiag.pod pp.c
4397            ! pp_hot.c pp_sys.c proto.h t/op/gv.t t/op/misc.t
4398 ____________________________________________________________________________
4399 [  2877] By: jhi                                   on 1999/02/11  20:44:00
4400         Log: From: Chris Nandor <pudge@pobox.com>
4401              To: perl5-porters@perl.org
4402              Subject: [PATCH] perlport.pod 1.39
4403              Date: Thu, 11 Feb 1999 12:28:35 -0500
4404              Message-Id: <v04020a2db2e8c3177123@[192.168.0.77]>
4405      Branch: cfgperl
4406            ! pod/perlport.pod
4407 ____________________________________________________________________________
4408 [  2870] By: gsar                                  on 1999/02/11  11:17:08
4409         Log: remove double typeglob deref (suggested by RonaldWS <ronaldws@aol.com>)
4410      Branch: perl
4411            ! ext/IO/lib/IO/Pipe.pm
4412 ____________________________________________________________________________
4413 [  2869] By: gsar                                  on 1999/02/11  11:00:56
4414         Log: update win32/pod.mak
4415      Branch: perl
4416            ! win32/pod.mak
4417 ____________________________________________________________________________
4418 [  2868] By: gsar                                  on 1999/02/11  10:42:44
4419         Log: From: Benjamin Low <b.d.low@unsw.edu.au>
4420              Date: Fri, 08 Jan 1999 14:36:53 +1100
4421              Message-ID: <36957D55.1D65A0B2@unsw.edu.au>
4422              Subject: Re: [Fwd: IO::Socket::connect and blocking]
4423      Branch: perl
4424            ! ext/IO/lib/IO/Socket.pm
4425 ____________________________________________________________________________
4426 [  2867] By: gsar                                  on 1999/02/11  09:43:03
4427         Log: av_extend() doc tweak from Jan Dubois
4428      Branch: perl
4429            ! pod/perlguts.pod
4430 ____________________________________________________________________________
4431 [  2866] By: gsar                                  on 1999/02/11  09:27:17
4432         Log: display full pathname of unreadable files
4433      Branch: perl
4434            ! utils/perldoc.PL
4435 ____________________________________________________________________________
4436 [  2865] By: gsar                                  on 1999/02/11  09:02:31
4437         Log: missing patch in change#2522
4438      Branch: perl
4439            ! lib/Pod/Text.pm
4440 ____________________________________________________________________________
4441 [  2864] By: jhi                                   on 1999/02/11  08:45:00
4442         Log: From: Spider Boardman <spider@zk3.dec.com>
4443              To: perlbug@perl.com
4444              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on RISC-ultrix 4.4 (UNINSTALLED)
4445              Date: Wed, 10 Feb 1999 23:33:31 -0500
4446              Message-Id: <9902110433.AA12816@abyss.zk3.dec.com>
4447      Branch: maint-5.005/perl
4448            ! doio.c ext/IPC/SysV/SysV.xs hints/ultrix_4.sh
4449 ____________________________________________________________________________
4450 [  2862] By: gsar                                  on 1999/02/11  08:14:34
4451         Log: integrate changes#2738,2740 from maint-5.005
4452      Branch: perl
4453           !> lib/ExtUtils/MakeMaker.pm
4454 ____________________________________________________________________________
4455 [  2861] By: jhi                                   on 1999/02/11  08:04:25
4456         Log: Integrate from mainperl.
4457      Branch: cfgperl
4458           !> Changes perl.h pod/perl5005delta.pod pp_ctl.c t/op/local.t
4459           !> t/op/range.t win32/config.gc
4460 ____________________________________________________________________________
4461 [  2860] By: gsar                                  on 1999/02/11  07:30:08
4462         Log: binmode() support for cygwin32 (suggested by Steven Morlock
4463              <newspost@morlock.net>)
4464      Branch: perl
4465            ! perl.h
4466 ____________________________________________________________________________
4467 [  2859] By: gsar                                  on 1999/02/11  07:14:21
4468         Log: update Changes
4469      Branch: perl
4470            ! Changes
4471           !> pod/perl5005delta.pod
4472 ____________________________________________________________________________
4473 [  2856] By: gsar                                  on 1999/02/11  07:07:39
4474         Log: integrate perldelta changes from maint-5.005
4475      Branch: perl
4476           !> pod/perl5005delta.pod
4477 ____________________________________________________________________________
4478 [  2855] By: gsar                                  on 1999/02/11  06:31:50
4479         Log: applied suggested patch; added tests
4480              From: Adam Krolnik <adamk@gypsy.cyrix.com>
4481              Date: Sat, 12 Dec 98 15:30:18 -0600
4482              Message-Id: <9812122130.AA03717@gypsy.eng.cyrix.com>
4483              Subject: Range operation doesn't handle IV_MAX
4484      Branch: perl
4485            ! pp_ctl.c t/op/range.t
4486 ____________________________________________________________________________
4487 [  2854] By: gsar                                  on 1999/02/11  05:00:55
4488         Log: compatibility fix: magic non-propagation in foreach implicit localization
4489      Branch: perl
4490            ! pp_ctl.c t/op/local.t win32/config.gc
4491 ____________________________________________________________________________
4492 [  2852] By: gsar                                  on 1999/02/10  23:17:49
4493         Log: fair warning about -Dusethreads
4494      Branch: maint-5.005/perl
4495            ! Configure INSTALL README.threads
4496 ____________________________________________________________________________
4497 [  2847] By: jhi                                   on 1999/02/09  19:13:28
4498         Log: Integrate from mainperl.
4499      Branch: cfgperl
4500           !> pod/perldelta.pod pod/perlfunc.pod pod/perlobj.pod
4501           !> pod/perlop.pod pp.c t/op/method.t t/op/pack.t
4502 ____________________________________________________________________________
4503 [  2846] By: gsar                                  on 1999/02/09  13:53:28
4504         Log: a modified version of suggested patch for pack template 'Z'; added docs
4505              From: "Valeriy E. Ushakov" <uwe@ptc.spbu.ru>
4506              Date: Mon, 16 Jun 1997 03:00:31 +0400 (MSD)
4507              Message-ID: <%lOHpzIuGV@snark.ptc.spbu.ru>
4508              Subject: lack of pack/unpack letter with useful symmetry for C null delimited strings
4509      Branch: perl
4510            ! pod/perldelta.pod pod/perlfunc.pod pp.c t/op/pack.t
4511 ____________________________________________________________________________
4512 [  2845] By: gsar                                  on 1999/02/09  00:03:26
4513         Log: clarify docs for change#2835
4514      Branch: perl
4515            ! pod/perldelta.pod pod/perlop.pod
4516 ____________________________________________________________________________
4517 [  2844] By: gsar                                  on 1999/02/08  23:40:57
4518         Log: addendum to change#2823
4519              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
4520              Date: Sun, 13 Dec 1998 16:06:04 -0800 (PST)
4521              Message-ID: <13940.21805.470054.299@fre-76-120.reshall.berkeley.edu>
4522              Subject: [PATCH] Docs and tests for method-call syntax
4523      Branch: perl
4524            ! pod/perlobj.pod t/op/method.t
4525 ____________________________________________________________________________
4526 [  2843] By: jhi                                   on 1999/02/08  21:06:28
4527         Log: Ultrix mmap tidbit.
4528      Branch: cfgperl
4529            ! hints/ultrix_4.sh
4530 ____________________________________________________________________________
4531 [  2842] By: jhi                                   on 1999/02/08  20:22:55
4532         Log: Integrate from mainperl.
4533      Branch: cfgperl
4534           +> t/op/subst_wamp.t
4535           !> (integrate 35 files)
4536 ____________________________________________________________________________
4537 [  2841] By: jhi                                   on 1999/02/08  18:23:26
4538         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4539              To: Mailing list Perl5 <perl5-porters@perl.org>
4540              Subject: [PATCH 5.005_53] s/\ba/./g was over-optimized
4541              Date: Sun, 7 Feb 1999 17:25:22 -0500
4542              Message-ID: <19990207172522.B894@monk.mps.ohio-state.edu>
4543      Branch: cfgperl
4544            + t/op/subst_amp.t
4545            ! MANIFEST regcomp.c t/op/subst.t
4546 ____________________________________________________________________________
4547 [  2840] By: jhi                                   on 1999/02/08  18:16:54
4548         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4549              To: Mailing list Perl5 <perl5-porters@perl.org>
4550              Subject: [PATCH 5.005_53] Fix list-context //g with zero-length matches
4551              Date: Sun, 7 Feb 1999 17:00:10 -0500
4552              Message-ID: <19990207170009.A894@monk.mps.ohio-state.edu>
4553      Branch: cfgperl
4554            ! pp_hot.c t/op/pat.t
4555 ____________________________________________________________________________
4556 [  2839] By: jhi                                   on 1999/02/08  17:25:30
4557         Log: A require was missing.
4558      Branch: cfgperl
4559            ! t/lib/h2ph.pht
4560 ____________________________________________________________________________
4561 [  2838] By: jhi                                   on 1999/02/08  16:38:41
4562         Log: Bring in the change #2809 (the Configure part has been
4563              modified rather a lot since the #2809, though.)
4564      Branch: cfgperl
4565            ! Configure utils/h2ph.PL
4566 ____________________________________________________________________________
4567 [  2835] By: gsar                                  on 1999/02/08  14:40:23
4568         Log: make qw() into a true list at compile time (slightly modified
4569              variant of patch suggested by Tom Hughes <tom@compton.demon.co.uk>)
4570      Branch: perl
4571            ! pod/perldelta.pod pod/perlop.pod pp_hot.c toke.c
4572 ____________________________________________________________________________
4573 [  2834] By: gsar                                  on 1999/02/08  13:23:16
4574         Log: make safesysmalloc() etc., always available; safemalloc() et al are
4575              now macros that point to the right malloc; fix various places in
4576              sources that need to always use safesysmalloc() et al
4577      Branch: perl
4578            ! embed.h embedvar.h global.sym iperlsys.h mg.c objXSUB.h perl.h
4579            ! perl_exp.SH proto.h util.c vms/gen_shrfls.pl win32/makedef.pl
4580 ____________________________________________________________________________
4581 [  2833] By: gsar                                  on 1999/02/08  10:56:16
4582         Log: remove spurious #endif in last change
4583      Branch: perl
4584            ! perl.h
4585 ____________________________________________________________________________
4586 [  2832] By: gsar                                  on 1999/02/08  10:34:55
4587         Log: make EMBEDMYMALLOC the default and provide PERL_POLLUTE_MALLOC to let
4588              them ask for insanity (untested)
4589      Branch: perl
4590            ! INSTALL Todo-5.005 ext/SDBM_File/sdbm/sdbm.h hints/machten.sh
4591            ! hints/next_3.sh hints/next_4.sh hints/qnx.sh iperlsys.h
4592            ! malloc.c perl.h pod/perldelta.pod pod/perlguts.pod sv.c
4593 ____________________________________________________________________________
4594 [  2831] By: jhi                                   on 1999/02/08  08:33:33
4595         Log: Update vms/subconfigure.com along the lines of change #2829.
4596      Branch: cfgperl
4597            ! vms/subconfigure.com
4598 ____________________________________________________________________________
4599 [  2830] By: gsar                                  on 1999/02/08  00:19:46
4600         Log: integrate cfgperl changes into mainline
4601      Branch: perl
4602           +> ext/DynaLoader/dl_beos.xs ext/GDBM_File/hints/sco.pl
4603           +> lib/File/PathConvert.pm pod/perlthrtut.pod
4604            ! Changes
4605           !> (integrate 93 files)
4606 ____________________________________________________________________________
4607 [  2829] By: jhi                                   on 1999/02/07  23:49:46
4608         Log: Configure update.
4609              
4610              Probe for mmap() et alia.
4611              The *cc*symbols patch (just Configure, no h2ph).
4612      Branch: cfgperl
4613            ! Configure Porting/Glossary Porting/config.sh Porting/config_H
4614            ! config_h.SH perl.h
4615 ____________________________________________________________________________
4616 [  2828] By: gsar                                  on 1999/02/07  23:38:47
4617         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4618              Date: Sun, 7 Feb 1999 17:25:22 -0500
4619              Message-ID: <19990207172522.B894@monk.mps.ohio-state.edu>
4620              Subject: [PATCH 5.005_53] s/\ba/./g was over-optimized
4621      Branch: perl
4622            + t/op/subst_amp.t t/op/subst_wamp.t
4623            ! MANIFEST regcomp.c t/op/subst.t
4624 ____________________________________________________________________________
4625 [  2827] By: gsar                                  on 1999/02/07  23:27:32
4626         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4627              Date: Sun, 7 Feb 1999 17:00:10 -0500
4628              Message-ID: <19990207170009.A894@monk.mps.ohio-state.edu>
4629              Subject: [PATCH 5.005_53] Fix list-context //g with zero-length matches
4630      Branch: perl
4631            ! pp_hot.c t/op/pat.t
4632 ____________________________________________________________________________
4633 [  2826] By: gsar                                  on 1999/02/07  23:26:04
4634         Log: patch for change#2822, done right; add PERL_OBJECT stuff; regen headers
4635              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4636              Date: Sun, 7 Feb 1999 15:07:27 -0500
4637              Message-ID: <19990207150726.A571@monk.mps.ohio-state.edu>
4638              Subject: Re: fixing memory leaks in REx compilation
4639      Branch: perl
4640            ! embed.h embed.pl objXSUB.h proto.h regcomp.c regcomp.h
4641            ! regexec.c
4642 ____________________________________________________________________________
4643 [  2825] By: jhi                                   on 1999/02/07  18:05:13
4644         Log: Integrate from mainperl.
4645      Branch: cfgperl
4646           +> lib/DB.pm t/comp/bproto.t
4647           !> MANIFEST ext/Data/Dumper/Dumper.pm ext/SDBM_File/sdbm/sdbm.c
4648           !> lib/Pod/Html.pm op.c perly.c perly.y perly_c.diff
4649           !> pod/perldelta.pod pod/perlfunc.pod pod/perlop.pod regcomp.h
4650           !> toke.c vms/perly_c.vms
4651 ____________________________________________________________________________
4652 [  2824] By: gsar                                  on 1999/02/07  14:21:48
4653         Log: tweak doc on bitwise ops
4654      Branch: perl
4655            ! pod/perlop.pod
4656 ____________________________________________________________________________
4657 [  2823] By: gsar                                  on 1999/02/07  13:38:31
4658         Log: applied suggested patch; regen perly* and vms/perly*
4659              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
4660              Date: Sun, 13 Dec 1998 01:10:12 -0800 (PST)
4661              Message-ID: <13939.26706.620683.846776@fre-76-120.reshall.berkeley.edu>
4662              Subject: [PATCH] Re: Suggestion for perlobj man page
4663      Branch: perl
4664            ! perly.c perly.y perly_c.diff toke.c vms/perly_c.vms
4665 ____________________________________________________________________________
4666 [  2822] By: gsar                                  on 1999/02/07  12:39:09
4667         Log: Ilya's idea for cleaning up failed regex allocs (substantive parts
4668              disabled, fails tests)
4669      Branch: perl
4670            ! regcomp.h
4671 ____________________________________________________________________________
4672 [  2821] By: gsar                                  on 1999/02/07  11:09:39
4673         Log: pod2html misinterprets Foo::Bar as a URL (fix suggested by Alexander Barilo
4674              <Alexander.Barilo@aexp.com>)
4675      Branch: perl
4676            ! lib/Pod/Html.pm
4677 ____________________________________________________________________________
4678 [  2820] By: gsar                                  on 1999/02/07  10:20:35
4679         Log: add draft debugging API implementation
4680      Branch: perl
4681            + lib/DB.pm
4682            ! MANIFEST
4683 ____________________________________________________________________________
4684 [  2819] By: gsar                                  on 1999/02/07  09:58:45
4685         Log: avoid garbage in db->dirbuf
4686              From: Masahiro KAJIURA <masahiro.kajiura@toshiba.co.jp>
4687              Date: Sat, 05 Dec 1998 14:14:54 +0900
4688              Message-Id: <199812050514.OAA23268@toshiba.co.jp>
4689              Subject: SDBM bug
4690      Branch: perl
4691            ! ext/SDBM_File/sdbm/sdbm.c
4692 ____________________________________________________________________________
4693 [  2818] By: gsar                                  on 1999/02/07  09:32:24
4694         Log: missing entry
4695      Branch: perl
4696            ! MANIFEST
4697 ____________________________________________________________________________
4698 [  2817] By: gsar                                  on 1999/02/07  09:30:47
4699         Log: properly prototype check parenthesized unary ops (e.g. defined(&a,&b))
4700      Branch: perl
4701            + t/comp/bproto.t
4702            ! op.c pod/perldelta.pod pod/perlfunc.pod pod/perlop.pod
4703 ____________________________________________________________________________
4704 [  2816] By: gsar                                  on 1999/02/06  00:14:29
4705         Log: minor bug in dumping blessed subrefs
4706      Branch: perl
4707            ! ext/Data/Dumper/Dumper.pm
4708 ____________________________________________________________________________
4709 [  2812] By: jhi                                   on 1999/02/03  22:02:24
4710         Log: Enhance change #2808.
4711              
4712              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
4713              To: perl5-porters@perl.org
4714              Subject: Re: [PATCH 5.00*]: perlbug checklist
4715              Date: Wed, 3 Feb 1999 19:02:27 +0000
4716              Message-Id: <E1087ZD-0005z1-00@taurus.cus.cam.ac.uk>
4717      Branch: cfgperl
4718            ! utils/perlbug.PL
4719 ____________________________________________________________________________
4720 [  2811] By: jhi                                   on 1999/02/03  21:53:23
4721         Log: From: Barrie Slaymaker <rbs@telerama.com>
4722              To: perl5-porters@perl.org
4723              CC: pod-people@perl.org
4724              Subject: [PATCH]5.005_54 (pod2html) Generate Relative URLs
4725              Date: Wed, 03 Feb 1999 10:34:18 -0500
4726              Message-ID: <36B86C7A.E99EFFF1@telerama.com>
4727              
4728              Add File::PathConvert.pm.
4729              Fix Pod::Html and installhtml to understand relative urls.
4730      Branch: cfgperl
4731            + lib/File/PathConvert.pm
4732            ! MANIFEST installhtml lib/Pod/Html.pm
4733 ____________________________________________________________________________
4734 [  2810] By: jhi                                   on 1999/02/03  20:25:10
4735         Log: From: Francois Desarmenien <desar@club-internet.fr>
4736              To: Mailing list Perl5 <perl5-porters@perl.org>
4737              Subject: [PATCH]5.005_54 (hints) SCO 3/5 hint files and SysV correction
4738              Date: Wed, 03 Feb 1999 13:13:24 +0000
4739              Message-ID: <36B84B74.5EC9B6C8@club-internet.fr>
4740              
4741              (note: this patch completely overrides Tom Wolfe's patch,
4742              change #2604)
4743      Branch: cfgperl
4744            + ext/GDBM_File/hints/sco.pl
4745            ! MANIFEST ext/IPC/SysV/SysV.xs hints/sco.sh
4746 ____________________________________________________________________________
4747 [  2809] By: jhi                                   on 1999/02/03  19:54:16
4748         Log: h2ph fixes + Configure patch to support them.
4749              
4750              From: "Kurt D. Starsinic" <kstar@chapin.edu>
4751              To: Graham Barr <gbarr@pobox.com>, Jarkko Hietaniemi <jhi@iki.fi>,
4752              Gurusamy Sarathy <gsar@engin.umich.edu>
4753              Cc: perl5-porters@perl.org
4754              Subject: [PATCH 5.00503_MT5] h2ph.PL
4755              Date: Tue, 2 Feb 1999 19:48:06 -0500
4756              Message-ID: <19990202194806.E10647@O2.chapin.edu>
4757      Branch: maint-5.005/perl
4758            ! Configure utils/h2ph.PL
4759 ____________________________________________________________________________
4760 [  2808] By: jhi                                   on 1999/02/03  16:59:55
4761         Log: Enhance the perlbug checklist.
4762      Branch: cfgperl
4763            ! utils/perlbug.PL
4764 ____________________________________________________________________________
4765 [  2807] By: jhi                                   on 1999/02/03  14:01:37
4766         Log: Document the standard strftime %formats.
4767              
4768              From: Dominic Dunlop <domo@vo.lu>
4769              To: "Kurt D. Starsinic" <kstar@chapin.edu>, Ben Gertzfield <che@debian.org>
4770              Subject: [PATCH] 5.00[45]*: Re: POSIX's strftime() does not enforce POSIX %C on Solaris
4771              Date: Tue, 2 Feb 1999 15:55:29 +0100
4772              Message-Id: <v0311070cb2dcb3f5f773@[212.24.192.188]>
4773      Branch: cfgperl
4774            ! ext/POSIX/POSIX.pod
4775 ____________________________________________________________________________
4776 [  2806] By: jhi                                   on 1999/02/03  13:58:00
4777         Log: Integrate from mainperl.
4778      Branch: cfgperl
4779           !> perl.h
4780 ____________________________________________________________________________
4781 [  2805] By: gsar                                  on 1999/02/03  03:32:31
4782         Log: PL_uuemap[] init needs help for sizeof()
4783      Branch: perl
4784            ! perl.h
4785 ____________________________________________________________________________
4786 [  2804] By: jhi                                   on 1999/02/02  20:44:30
4787         Log: These should've been already in #2803.
4788      Branch: cfgperl
4789            ! Configure config_h.SH vms/subconfigure.com
4790 ____________________________________________________________________________
4791 [  2803] By: jhi                                   on 1999/02/02  20:38:45
4792         Log: telldir prototype issue, from mists of time...
4793      Branch: cfgperl
4794            ! hints/netbsd.sh pp_sys.c
4795 ____________________________________________________________________________
4796 [  2801] By: jhi                                   on 1999/02/02  17:40:14
4797         Log: From: John Bley <jbb6@acpub.duke.edu>
4798              To: perlbug@perl.org
4799              Subject: [PATCH]5.005_54 (DOC) fix minor typos
4800              Date: Tue, 2 Feb 1999 07:52:52 -0500 (EST)
4801              Message-ID: <Pine.SOL.3.91.990202075115.23589A-100000@soc11.acpub.duke.edu>
4802      Branch: cfgperl
4803            ! pod/perlre.pod
4804 ____________________________________________________________________________
4805 [  2800] By: jhi                                   on 1999/02/02  17:26:49
4806         Log: Update todo with POSIX 1003.1 1996 Edition reminder.
4807      Branch: cfgperl
4808            ! Todo-5.005
4809 ____________________________________________________________________________
4810 [  2799] By: jhi                                   on 1999/02/02  17:18:51
4811         Log: Update FindBin from maint-5.005.
4812      Branch: cfgperl
4813            ! lib/FindBin.pm
4814 ____________________________________________________________________________
4815 [  2798] By: jhi                                   on 1999/02/02  17:16:07
4816         Log: Fix typecasts in #2797
4817              
4818              From: "G. Del Merritt" <del@intranetics.com>
4819              Date: Fri, 29 Jan 1999 11:47:25 -0700
4820              Message-Id: <199901291847.LAA04828@jhereg.perl.com>
4821              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_5 on MSWin32-x86-object 4.0 (PATCH included)
4822      Branch: cfgperl
4823            ! ext/POSIX/POSIX.xs
4824 ____________________________________________________________________________
4825 [  2797] By: jhi                                   on 1999/02/02  17:14:37
4826         Log: From: Ted Law <tedlaw@cibcwg.com>
4827              Date: Wed, 27 Jan 1999 14:54:03 -0500 (EST)
4828              Message-Id: <199901271954.OAA07391@dcm2.cibcwg.com>
4829              Subject: POSIX::strftime buffer overflow problem
4830      Branch: cfgperl
4831            ! ext/POSIX/POSIX.xs
4832 ____________________________________________________________________________
4833 [  2796] By: jhi                                   on 1999/02/02  17:13:23
4834         Log: Do not use File::Slurp.
4835      Branch: cfgperl
4836            ! t/lib/textfill.t
4837 ____________________________________________________________________________
4838 [  2795] By: jhi                                   on 1999/02/02  17:11:48
4839         Log: perlhist update from maint-5.005.
4840      Branch: cfgperl
4841            ! pod/perlhist.pod
4842 ____________________________________________________________________________
4843 [  2794] By: jhi                                   on 1999/02/02  17:10:33
4844         Log: POSIX::redef setv?buf() to IO::Handle:: (by gbarr).
4845      Branch: cfgperl
4846            ! ext/POSIX/POSIX.pm
4847 ____________________________________________________________________________
4848 [  2793] By: jhi                                   on 1999/02/02  17:08:39
4849         Log: Missed the html test from change #2787. 
4850      Branch: cfgperl
4851            ! t/lib/cgi-html.t
4852 ____________________________________________________________________________
4853 [  2792] By: jhi                                   on 1999/02/02  17:01:24
4854         Log: Update Getopt::Long to 2.19.
4855      Branch: cfgperl
4856            ! lib/Getopt/Long.pm
4857 ____________________________________________________________________________
4858 [  2791] By: jhi                                   on 1999/02/02  16:59:13
4859         Log: overload syntax is no longer experimental
4860      Branch: cfgperl
4861            ! lib/overload.pm
4862 ____________________________________________________________________________
4863 [  2789] By: jhi                                   on 1999/02/02  16:47:50
4864         Log: Still doc fixes.
4865      Branch: cfgperl
4866            ! lib/diagnostics.pm
4867 ____________________________________________________________________________
4868 [  2788] By: jhi                                   on 1999/02/02  16:47:07
4869         Log: Doc fixes.
4870      Branch: cfgperl
4871            ! lib/CGI.pm lib/diagnostics.pm
4872 ____________________________________________________________________________
4873 [  2787] By: jhi                                   on 1999/02/02  16:38:55
4874         Log: CGI.pm updated to 2.46 (the CGI docs fixes redone
4875              where applicable).
4876      Branch: cfgperl
4877            ! eg/cgi/RunMeFirst eg/cgi/caution.xbm
4878            ! eg/cgi/clickable_image.cgi eg/cgi/cookie.cgi eg/cgi/crash.cgi
4879            ! eg/cgi/customize.cgi eg/cgi/diff_upload.cgi
4880            ! eg/cgi/dna.small.gif.uu eg/cgi/file_upload.cgi
4881            ! eg/cgi/frameset.cgi eg/cgi/index.html
4882            ! eg/cgi/internal_links.cgi eg/cgi/javascript.cgi
4883            ! eg/cgi/monty.cgi eg/cgi/multiple_forms.cgi
4884            ! eg/cgi/nph-clock.cgi eg/cgi/nph-multipart.cgi eg/cgi/popup.cgi
4885            ! eg/cgi/save_state.cgi eg/cgi/tryit.cgi eg/cgi/wilogo.gif.uu
4886            ! lib/CGI.pm lib/CGI/Apache.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
4887            ! lib/CGI/Fast.pm lib/CGI/Push.pm lib/CGI/Switch.pm
4888 ____________________________________________________________________________
4889 [  2786] By: jhi                                   on 1999/02/02  16:17:52
4890         Log: Update CPAN to 1.47.
4891      Branch: cfgperl
4892            ! lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
4893 ____________________________________________________________________________
4894 [  2785] By: jhi                                   on 1999/02/02  16:09:03
4895         Log: From: Mark-Jason Dominus <mjd@plover.com>
4896              Date: Sat, 16 Jan 1999 17:22:06 -0500
4897              Subject: Re: DOC PATCH (5.005_54 perlsub.pod)
4898              Message-ID: <19990116222206.3674.qmail@plover.com>
4899      Branch: cfgperl
4900            ! pod/perlsub.pod
4901 ____________________________________________________________________________
4902 [  2784] By: jhi                                   on 1999/02/02  16:01:31
4903         Log: Fix incorrect "used only once" warnings
4904              
4905              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
4906              Date: Fri, 8 Jan 1999 04:37:10 -0500
4907              Message-ID: <19990108043710.A14390@monk.mps.ohio-state.edu>
4908              Subject: Re: change#965 flakiness
4909      Branch: cfgperl
4910            ! gv.c
4911 ____________________________________________________________________________
4912 [  2783] By: jhi                                   on 1999/02/02  15:50:38
4913         Log: perldelta updates.
4914      Branch: cfgperl
4915            ! pod/perldelta.pod
4916 ____________________________________________________________________________
4917 [  2782] By: jhi                                   on 1999/02/02  14:28:26
4918         Log: Mirror change #2781.
4919      Branch: cfgperl
4920            ! hints/linux.sh
4921 ____________________________________________________________________________
4922 [  2781] By: jhi                                   on 1999/02/02  14:27:01
4923         Log: Update the MkLinux note.
4924      Branch: maint-5.005/perl
4925            ! hints/linux.sh
4926 ____________________________________________________________________________
4927 [  2780] By: jhi                                   on 1999/02/02  14:10:59
4928         Log: Update todo.
4929      Branch: cfgperl
4930            ! Todo-5.005
4931 ____________________________________________________________________________
4932 [  2779] By: jhi                                   on 1999/02/02  14:00:25
4933         Log: Integrate from mainperl.
4934      Branch: cfgperl
4935            ! t/lib/textfill.t t/lib/textwrap.t
4936           !> (integrate 32 files)
4937 ____________________________________________________________________________
4938 [  2778] By: jhi                                   on 1999/02/02  13:56:23
4939         Log: VMS update, applicable parts of
4940              
4941              From: Dan Sugalski <sugalskd@osshe.edu>
4942              To: perl5-porters@perl.org
4943              Subject: [PATCH 5.005_03MT3]VMS configure tweak
4944              Date: Wed, 20 Jan 1999 12:05:18 -0800
4945              Message-Id: <3.0.6.32.19990120120518.00a98470@ous.edu>
4946              
4947              From: Dan Sugalski <sugalskd@osshe.edu>
4948              To: perlbug@perl.com, vmsperl@perl.org
4949              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on VMSAXP (Patch included, of course)
4950              Date: Tue, 26 Jan 1999 14:40:38 -0800
4951              Message-Id: <3.0.6.32.19990126144038.02e5d650@ous.edu>
4952              
4953              From: Dan Sugalski <sugalskd@osshe.edu>
4954              To: perl5-porters@perl.org, vmsperl@perl.org
4955              Subject: [PATCH 5.005_03-MAILT_TRIAL_4]VMS test patches
4956              Date: Tue, 26 Jan 1999 14:55:29 -0800
4957              Message-Id: <3.0.6.32.19990126145529.02f22280@ous.edu>
4958      Branch: cfgperl
4959            ! vms/ext/Stdio/test.pl vms/subconfigure.com
4960 ____________________________________________________________________________
4961 [  2777] By: jhi                                   on 1999/02/02  13:43:24
4962         Log: Synch usethreads parts from maint-5.005.
4963      Branch: cfgperl
4964            ! hints/aix.sh hints/dec_osf.sh hints/dos_djgpp.sh
4965            ! hints/freebsd.sh hints/hpux.sh hints/irix_4.sh hints/irix_5.sh
4966            ! hints/irix_6.sh hints/irix_6_0.sh hints/irix_6_1.sh
4967            ! hints/linux.sh hints/os2.sh hints/solaris_2.sh hints/vmesa.sh
4968 ____________________________________________________________________________
4969 [  2776] By: jhi                                   on 1999/02/02  13:17:16
4970         Log: Jumbo FreeBSD update from Anton Berezin <tobez@plab.ku.dk>
4971      Branch: cfgperl
4972            ! Makefile.SH hints/freebsd.sh
4973 ____________________________________________________________________________
4974 [  2774] By: jhi                                   on 1999/02/02  13:10:39
4975         Log: Add perlthrtut, update pod/* machinery.
4976              (a pod/Makefile.SH is sorely needed)
4977      Branch: cfgperl
4978            + pod/perlthrtut.pod
4979            ! MANIFEST pod/Makefile pod/perl.pod pod/roffitall
4980 ____________________________________________________________________________
4981 [  2773] By: jhi                                   on 1999/02/02  12:54:24
4982         Log: From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
4983              To: perl5-porters@perl.org
4984              Subject: Re: [PATCH] perl5.005_03-MAINT_TRIAL_3: clarify Sv[INU]V versus Sv[INU]VX in perlguts
4985              Date: Tue, 26 Jan 1999 22:25:07 +0000
4986              Message-Id: <E105Gux-0000Ac-00@taurus.cus.cam.ac.uk>
4987      Branch: cfgperl
4988            ! pod/perlguts.pod
4989 ____________________________________________________________________________
4990 [  2771] By: jhi                                   on 1999/02/02  12:47:34
4991         Log: Use perlbug instead of personal email address.
4992      Branch: cfgperl
4993            ! Configure
4994 ____________________________________________________________________________
4995 [  2770] By: jhi                                   on 1999/02/02  12:42:06
4996         Log: Miniperl fails to build (pp_sys.c was changed and iperlsys.h wasn't)
4997              
4998              From: "G. Del Merritt" <del@intranetics.com>
4999              To: perlbug@perl.com
5000              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on MSWin32-x86-object (PATCHES included)
5001              Date: Tue, 26 Jan 1999 12:09:09 -0700
5002              Message-Id: <199901261909.MAA25525@jhereg.perl.com>
5003      Branch: cfgperl
5004            ! iperlsys.h
5005 ____________________________________________________________________________
5006 [  2769] By: jhi                                   on 1999/02/02  12:37:57
5007         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5008              To: Mailing list Perl5 <perl5-porters@perl.org>
5009              Subject: [PATCH 5.005_*] OS/2 threads
5010              Date: Tue, 26 Jan 1999 13:39:46 -0500
5011              Message-ID: <19990126133946.A11594@monk.mps.ohio-state.edu>
5012      Branch: cfgperl
5013            ! os2/os2ish.h
5014 ____________________________________________________________________________
5015 [  2768] By: jhi                                   on 1999/02/02  12:36:16
5016         Log: Apply change #2711 from maint-5.005:
5017              
5018              make ok", "make okfile", and "make nok" were broken
5019              with -Duseshrplib, because of a shared typo.
5020              
5021              From: Spider Boardman <spider@web.zk3.dec.com>
5022              To: perlbug@perl.com
5023              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
5024              Date: Wed, 27 Jan 1999 12:27:15 -0500
5025              Message-Id: <199901271727.MAA233455@web.zk3.dec.com>
5026      Branch: cfgperl
5027            ! Makefile.SH
5028 ____________________________________________________________________________
5029 [  2766] By: jhi                                   on 1999/02/02  12:27:08
5030         Log: Make Configure use "int main()" instead of bare "main()".
5031              Like maint-5.005 change #2703 but now via metaconfig.
5032      Branch: cfgperl
5033            ! Configure
5034 ____________________________________________________________________________
5035 [  2765] By: jhi                                   on 1999/02/02  11:59:30
5036         Log: Undo part of change #2562.
5037      Branch: cfgperl
5038            ! Configure
5039 ____________________________________________________________________________
5040 [  2764] By: jhi                                   on 1999/02/02  11:52:39
5041         Log: NetBSD synch with maint-5.005.
5042      Branch: cfgperl
5043            ! Makefile.SH hints/netbsd.sh makedepend.SH unixish.h
5044 ____________________________________________________________________________
5045 [  2763] By: jhi                                   on 1999/02/02  11:44:07
5046         Log: $Config{installusrbinperl}
5047              (maint-5.005 changes #2614 and #2709)
5048      Branch: cfgperl
5049            ! Configure installperl
5050 ____________________________________________________________________________
5051 [  2762] By: jhi                                   on 1999/02/02  11:29:13
5052         Log: Errno update from maint-5.005 (changes #2583, #2710).
5053      Branch: cfgperl
5054            ! Configure ext/Errno/Errno_pm.PL
5055 ____________________________________________________________________________
5056 [  2759] By: jhi                                   on 1999/02/02  10:53:20
5057         Log: Update Trig.pm from maint-5.005.
5058      Branch: cfgperl
5059            ! lib/Math/Trig.pm
5060 ____________________________________________________________________________
5061 [  2757] By: jhi                                   on 1999/02/02  10:41:26
5062         Log: MPE/iX update (mirror maint-5.005 change #2715)
5063      Branch: cfgperl
5064            ! hints/mpeix.sh mpeix/relink
5065 ____________________________________________________________________________
5066 [  2756] By: jhi                                   on 1999/02/02  10:38:08
5067         Log: BeOS update (Mirror maint-5.005 change #2727).
5068      Branch: cfgperl
5069            + ext/DynaLoader/dl_beos.xs
5070            ! Configure MANIFEST Makefile.SH README.beos hints/beos.sh
5071            ! lib/ExtUtils/MM_Unix.pm
5072 ____________________________________________________________________________
5073 [  2754] By: gsar                                  on 1999/02/02  08:52:13
5074         Log: Todo updates from Andy Dougherty <doughera@lafayette.edu>
5075      Branch: perl
5076            ! Porting/pumpkin.pod Todo Todo-5.005
5077 ____________________________________________________________________________
5078 [  2753] By: gsar                                  on 1999/02/02  08:46:21
5079         Log: Todo tweaks
5080      Branch: perl
5081            ! Todo Todo-5.005
5082 ____________________________________________________________________________
5083 [  2752] By: jhi                                   on 1999/02/01  22:15:12
5084         Log: Add perlthrtut.pod.
5085              
5086              From: Dan Sugalski <sugalskd@osshe.edu>
5087              To: perl5-porters@perl.org
5088              Subject: perlthrtut.pod
5089              Date: Mon, 01 Feb 1999 10:57:11 -0800
5090              Message-Id: <3.0.6.32.19990201105711.02e62540@ous.edu>
5091      Branch: maint-5.005/perl
5092            + pod/perlthrtut.pod
5093            ! MANIFEST pod/Makefile pod/buildtoc pod/perldelta.pod
5094            ! pod/roffitall
5095 ____________________________________________________________________________
5096 [  2751] By: gsar                                  on 1999/02/01  07:28:05
5097         Log: devnull() support from Jan Dubois <jan.dubois@ibm.net> and others
5098      Branch: perl
5099            ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
5100            ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
5101 ____________________________________________________________________________
5102 [  2750] By: gsar                                  on 1999/02/01  07:09:20
5103         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5104              Date: Fri, 4 Dec 1998 01:02:03 -0500 (EST)
5105              Message-Id: <199812040602.BAA07215@monk.mps.ohio-state.edu>
5106              Subject: [PATCH 5.005_53] Debugging REx with lookbehind
5107      Branch: perl
5108            ! regexec.c
5109 ____________________________________________________________________________
5110 [  2749] By: gsar                                  on 1999/02/01  07:07:59
5111         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5112              Date: Fri, 4 Dec 1998 00:05:41 -0500 (EST)
5113              Message-Id: <199812040505.AAA16616@monk.mps.ohio-state.edu>
5114              Subject: [PATCH 5.005_53] Speed up .*? and half-fix UTF lookbehind
5115      Branch: perl
5116            ! regexec.c
5117 ____________________________________________________________________________
5118 [  2748] By: gsar                                  on 1999/02/01  06:47:06
5119         Log: From: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
5120              Date: Thu, 3 Dec 1998 15:10:17 -0500
5121              Message-Id: <199812032010.PAA09692@jik.shore.net>
5122              Subject: sample checksum code in "perlfunc" man page is wrong
5123      Branch: perl
5124            ! pod/perlfunc.pod
5125 ____________________________________________________________________________
5126 [  2747] By: gsar                                  on 1999/02/01  06:35:13
5127         Log: typos in Pod/Text.pm
5128              From: "Greg Chapman" <glc@well.com>
5129              Date: Tue, 1 Dec 1998 10:50:18 -0800
5130              Message-Id: <199812011849.KAA08816@smtp.well.com>
5131              Subject: Glitch in Pod::Text
5132      Branch: perl
5133            ! lib/Pod/Text.pm
5134 ____________________________________________________________________________
5135 [  2746] By: gsar                                  on 1999/02/01  06:27:35
5136         Log: various win32-ish changes merged from maint-5.005
5137      Branch: perl
5138            ! README.win32 embedvar.h globvar.sym lib/ExtUtils/MM_Unix.pm
5139            ! objXSUB.h op.c perl.h perlvars.h pp.c sv.c t/io/fs.t toke.c
5140            ! win32/Makefile win32/config.bc win32/config.vc
5141            ! win32/config_sh.PL win32/makefile.mk win32/runperl.c
5142            ! win32/win32.c
5143 ____________________________________________________________________________
5144 [  2745] By: gsar                                  on 1999/02/01  04:51:54
5145         Log: integrate cfgperl changes into mainline
5146      Branch: perl
5147           !> INSTALL hints/aix.sh lib/Time/Local.pm pod/perldelta.pod
5148 ____________________________________________________________________________
5149 [  2744] By: gsar                                  on 1999/02/01  04:31:09
5150         Log: improved diagnostic on syntax errors at EOL
5151      Branch: perl
5152            ! toke.c
5153 ____________________________________________________________________________
5154 [  2743] By: gsar                                  on 1999/02/01  03:59:13
5155         Log: don't attempt connect() to bogus IP addresses
5156              From:    Graham Barr <gbarr@pobox.com>
5157              Date:    Sun, 31 Jan 1999 21:50:45 CST
5158              Message-Id: <19990131215045.A633@pobox.com>
5159      Branch: perl
5160            ! t/lib/io_multihomed.t
5161 ____________________________________________________________________________
5162 [  2742] By: gsar                                  on 1999/02/01  03:08:58
5163         Log: update Changes
5164      Branch: perl
5165            ! Changes pod/perldelta.pod
5166 ____________________________________________________________________________
5167 [  2740] By: gsar                                  on 1999/02/01  02:43:07
5168         Log: CAPI inheritance tweak and doc
5169      Branch: maint-5.005/perl
5170            ! lib/ExtUtils/MakeMaker.pm
5171 ____________________________________________________________________________
5172 [  2739] By: jhi                                   on 1999/01/31  18:31:54
5173         Log: Undo changes #2730 and #2731 and replace them
5174              with an extensively tested patch from
5175              Anton Berezin <tobez@plab.ku.dk> (via private email).
5176      Branch: maint-5.005/perl
5177            ! Makefile.SH hints/freebsd.sh
5178 ____________________________________________________________________________
5179 [  2738] By: gsar                                  on 1999/01/31  05:04:32
5180         Log: fix bogus CAPI inheritance from change#2541
5181      Branch: maint-5.005/perl
5182            ! lib/ExtUtils/MakeMaker.pm
5183 ____________________________________________________________________________
5184 [  2731] By: jhi                                   on 1999/01/29  14:33:12
5185         Log: FreeBSD version numbers can be like "2.2.8-release".
5186      Branch: maint-5.005/perl
5187            ! hints/freebsd.sh
5188 ____________________________________________________________________________
5189 [  2730] By: jhi                                   on 1999/01/29  12:40:38
5190         Log: FreeBSD hints iteration (hopefully convergent).
5191              usethreads: require at least FreeBSD 2.2.8.
5192              signal type: mirror change #2429 in cfgperl.
5193      Branch: maint-5.005/perl
5194            ! hints/freebsd.sh
5195 ____________________________________________________________________________
5196 [  2727] By: gbarr                                 on 1999/01/29  04:09:57
5197         Log: From: Tom Spindler <dogcow@isi.net>
5198              Date: Thu, 28 Jan 1999 17:15:11 -0800
5199              Message-ID: <19990128171510.A11778@isi.net>
5200              Subject: [PATCH] BeOS dynamic loading support for perl5.005_03_MT4
5201      Branch: maint-5.005/perl
5202            + ext/DynaLoader/dl_beos.xs
5203            ! Configure MANIFEST Makefile.SH README.beos hints/beos.sh
5204            ! lib/ExtUtils/MM_Unix.pm
5205 ____________________________________________________________________________
5206 [  2726] By: gbarr                                 on 1999/01/29  03:30:51
5207         Log: Remove use of File::Slurp in t/lib/textfill.t
5208      Branch: maint-5.005/perl
5209            ! t/lib/textfill.t
5210 ____________________________________________________________________________
5211 [  2725] By: gbarr                                 on 1999/01/29  03:11:41
5212         Log: From: Gurusamy Sarathy <gsar@ActiveState.com>
5213              Date: Wed, 27 Jan 1999 23:14:33 -0800
5214              Message-Id: <199901280714.XAA10176@activestate.com>
5215              Subject: Re: NOT OK: "@INC contains: ." after make install - MAINT_TRIAL_4 - 5.005_03 maintenance trial 4 MSWin32-x86-object
5216      Branch: maint-5.005/perl
5217            ! win32/Makefile win32/makefile.mk
5218 ____________________________________________________________________________
5219 [  2720] By: gsar                                  on 1999/01/27  21:54:42
5220         Log: missing space while munging CCFLAGS for PERL_CAPI
5221      Branch: perl
5222            ! lib/ExtUtils/MM_Unix.pm
5223 ____________________________________________________________________________
5224 [  2718] By: jhi                                   on 1999/01/27  19:46:04
5225         Log: io/fs.t fails test #18 (sense of tests appears to have been
5226              changed incompletely; this patch just skips the test attached,
5227              a la test #17 preceding it).
5228              
5229              From: "G. Del Merritt" <del@intranetics.com>
5230              To: perlbug@perl.com
5231              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on MSWin32-x86-object (PATCHES included)
5232              Date: Tue, 26 Jan 1999 12:09:09 -0700
5233              Message-Id: <199901261909.MAA25525@jhereg.perl.com>
5234      Branch: maint-5.005/perl
5235            ! t/io/fs.t
5236 ____________________________________________________________________________
5237 [  2717] By: jhi                                   on 1999/01/27  19:44:46
5238         Log: Miniperl fails to build (pp_sys.c was changed and iperlsys.h wasn't)
5239              
5240              From: "G. Del Merritt" <del@intranetics.com>
5241              To: perlbug@perl.com
5242              Subject: NOT OK: perl 5.00503 +MAINT_TRIAL_4 on MSWin32-x86-object (PATCHES included)
5243              Date: Tue, 26 Jan 1999 12:09:09 -0700
5244              Message-Id: <199901261909.MAA25525@jhereg.perl.com>
5245      Branch: maint-5.005/perl
5246            ! iperlsys.h
5247 ____________________________________________________________________________
5248 [  2715] By: jhi                                   on 1999/01/27  19:34:28
5249         Log: From: Mark Bixby <markb@spock.dis.cccd.edu>
5250              To: perl5-porters@perl.org
5251              Subject: [PATCH perl5.005_03-MAINT_TRIAL_4] MPE port tweaks
5252              Date: Tue, 26 Jan 1999 16:32:18 -0800 (PST)
5253              Message-Id: <199901270032.QAA13395@spock.dis.cccd.edu>
5254      Branch: maint-5.005/perl
5255            ! hints/mpeix.sh mpeix/relink
5256 ____________________________________________________________________________
5257 [  2710] By: jhi                                   on 1999/01/27  19:22:23
5258         Log: Errno fixes:
5259              
5260              From: Spider Boardman <spider@web.zk3.dec.com>
5261              To: perlbug@perl.com
5262              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
5263              Date: Wed, 27 Jan 1999 12:27:15 -0500
5264              Message-Id: <199901271727.MAA233455@web.zk3.dec.com>
5265              
5266              From: Spider Boardman <spider@web.zk3.dec.com>
5267              To: perlbug@perl.com
5268              Subject: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
5269              Date: Wed, 27 Jan 1999 13:31:16 -0500
5270              Message-Id: <199901271831.NAA241001@web.zk3.dec.com>
5271      Branch: maint-5.005/perl
5272            ! Configure ext/Errno/Errno_pm.PL
5273 ____________________________________________________________________________
5274 [  2709] By: jhi                                   on 1999/01/27  19:17:35
5275         Log: Fix Configure installusrbinperl:
5276              
5277              From: Spider Boardman <spider@web.zk3.dec.com>
5278              To: jhi@iki.fi
5279              cc: perl5-porters@perl.org
5280              Subject: Re: Not OK: perl 5.00503 +MAINT_TRIAL_4 on alpha-dec_osf-thread 5.0 (UNINSTALLED)
5281              Date: Wed, 27 Jan 1999 13:03:35 -0500
5282              Message-Id: <199901271803.NAA238257@web.zk3.dec.com>
5283      Branch: maint-5.005/perl
5284            ! Configure
5285 ____________________________________________________________________________
5286 [  2707] By: gbarr                                 on 1999/01/26  02:06:17
5287         Log: Add redef IO::Handle::* for setv?buf()
5288      Branch: maint-5.005/perl
5289            ! ext/POSIX/POSIX.pm
5290 ____________________________________________________________________________
5291 [  2705] By: jhi                                   on 1999/01/24  15:14:30
5292         Log: Mention year-1900 and month 0..11.
5293      Branch: cfgperl
5294            ! lib/Time/Local.pm
5295 ____________________________________________________________________________
5296 [  2704] By: jhi                                   on 1999/01/24  15:13:36
5297         Log: Document Configure -Uinstallusrbinperl.
5298      Branch: cfgperl
5299            ! INSTALL pod/perldelta.pod
5300 ____________________________________________________________________________
5301 [  2698] By: jhi                                   on 1999/01/24  12:46:00
5302         Log: Use only xlc_r for usethreads.
5303      Branch: cfgperl
5304            ! hints/aix.sh
5305 ____________________________________________________________________________
5306 [  2695] By: gsar                                  on 1999/01/24  07:09:05
5307         Log: integrate cfgperl changes into mainline
5308      Branch: perl
5309           +> lib/Exporter/Heavy.pm
5310           !> (integrate 65 files)
5311 ____________________________________________________________________________
5312 [  2694] By: gsar                                  on 1999/01/24  01:28:49
5313         Log: better notes on 'make' on win32
5314      Branch: perl
5315            ! README.win32
5316 ____________________________________________________________________________
5317 [  2683] By: jhi                                   on 1999/01/22  15:41:00
5318         Log: More de-cut-and-pastos.
5319      Branch: cfgperl
5320            ! hints/irix_6.sh hints/os2.sh
5321 ____________________________________________________________________________
5322 [  2682] By: jhi                                   on 1999/01/22  15:30:51
5323         Log: usethreads.cbu cut-and-pasto.
5324      Branch: cfgperl
5325            ! hints/solaris_2.sh
5326 ____________________________________________________________________________
5327 [  2681] By: jhi                                   on 1999/01/22  14:54:55
5328         Log: Better (I hope) LANGUAGE documentation.
5329      Branch: cfgperl
5330            ! pod/perllocale.pod
5331 ____________________________________________________________________________
5332 [  2680] By: jhi                                   on 1999/01/22  09:20:29
5333         Log: From: Dan Sugalski <sugalskd@osshe.edu>
5334              To: perl5-porters@perl.org
5335              Subject: [PATCH 5.005_03MT3]VMS configure tweak
5336              Date: Wed, 20 Jan 1999 12:05:18 -0800
5337              Message-Id: <3.0.6.32.19990120120518.00a98470@ous.edu>
5338      Branch: cfgperl
5339            ! vms/subconfigure.com
5340 ____________________________________________________________________________
5341 [  2679] By: jhi                                   on 1999/01/22  09:13:18
5342         Log: nosuid getmntent() branch.
5343      Branch: cfgperl
5344            ! perl.c perl.h
5345 ____________________________________________________________________________
5346 [  2678] By: jhi                                   on 1999/01/22  08:54:19
5347         Log: nosuid patch continued: *BSD needs <sys/param.h>.
5348      Branch: cfgperl
5349            ! Configure config_h.SH
5350 ____________________________________________________________________________
5351 [  2676] By: gbarr                                 on 1999/01/22  01:54:02
5352         Log: Fixup FindBin to use File::Spec
5353              
5354              Message-Id: <19990120185157.D24479@west-tip.transeda.com>
5355              Date: Wed, 20 Jan 1999 18:51:57 +0000
5356              From: Paul Johnson <pjcj@transeda.com>
5357              Subject: Re: [PATCH] 5005_54 Make FindBin work with UNC paths
5358      Branch: maint-5.005/perl
5359            ! lib/FindBin.pm
5360 ____________________________________________________________________________
5361 [  2671] By: gbarr                                 on 1999/01/22  00:40:13
5362         Log: Fix win32 for Borland compiler and spaces in paths
5363              
5364              From: Gurusamy Sarathy <gsar@activestate.com>
5365              Date: Mon, 18 Jan 1999 20:33:17 -0800
5366              Message-Id: <199901190433.UAA03656@activestate.com>
5367              Subject: [PATCH] 5.005_03-trial3 win32 issues
5368      Branch: maint-5.005/perl
5369            ! README.win32 win32/Makefile win32/config_sh.PL
5370            ! win32/makefile.mk win32/runperl.c
5371 ____________________________________________________________________________
5372 [  2670] By: jhi                                   on 1999/01/21  16:12:38
5373         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
5374              To: perl5-porters@perl.org
5375              Subject: Re: [PATCH 5.005_54] Evalled substitution parsing
5376              Date: Thu, 21 Jan 1999 12:08:01 +0000
5377              Message-Id: <199901211208.MAA01228@crypt.compulink.co.uk>
5378      Branch: cfgperl
5379            ! pod/perldiag.pod t/op/subst.t toke.c
5380 ____________________________________________________________________________
5381 [  2669] By: jhi                                   on 1999/01/21  16:11:46
5382         Log: To: perl5-porters@perl.org
5383              Subject: [PATCH 5.005_54] hints/freebsd.sh - reflect the birth of version 4.0
5384              From: Anton Berezin <tobez@plab.ku.dk>
5385              Date: 21 Jan 1999 17:07:28 +0100
5386              Message-ID: <86emood2yn.fsf@lion.plab.ku.dk>
5387      Branch: cfgperl
5388            ! hints/freebsd.sh
5389 ____________________________________________________________________________
5390 [  2668] By: jhi                                   on 1999/01/21  15:38:34
5391         Log: Add Daniel Grisinger <dgris@dimensional.com>.
5392      Branch: cfgperl
5393            ! AUTHORS MAINTAIN
5394 ____________________________________________________________________________
5395 [  2667] By: jhi                                   on 1999/01/21  15:32:28
5396         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5397              To: Mailing list Perl5 <perl5-porters@perl.org>
5398              Subject: [PATCH 5.005_53] Lean Exporter.pm
5399              Date: Thu, 21 Jan 1999 03:25:23 -0500
5400              Message-ID: <19990121032523.A25704@monk.mps.ohio-state.edu>
5401      Branch: cfgperl
5402            + lib/Exporter/Heavy.pm
5403            ! MANIFEST lib/Exporter.pm
5404 ____________________________________________________________________________
5405 [  2666] By: jhi                                   on 1999/01/21  15:24:10
5406         Log: From: "W. Phillip Moore" <wpm@ms.com>
5407              To: Graham Barr <gbarr@ti.com>, perlbug@perl.org
5408              Subject: Re: [PATCH] File::Path 1.04 bug (all perl5 core versions)
5409              Date: Tue, 19 Jan 1999 11:39:11 -0500 (EST)
5410              Message-ID: <13988.46383.298992.97303@zappa>
5411      Branch: cfgperl
5412            ! lib/File/Path.pm
5413 ____________________________________________________________________________
5414 [  2665] By: jhi                                   on 1999/01/21  15:20:48
5415         Log: CPAN update (CPAN-1.44_54) from Andreas and
5416              jumbo doc patch from Abigail.
5417              
5418              From: abigail@fnx.com
5419              To: perl5-porters@perl.org (Perl Porters)
5420              Subject: [PATCH 5.005_03 TRIAL 3 lib/AutoLoader.pm]  Typos
5421              Date: Tue, 19 Jan 1999 19:14:10 -0500 (EST)
5422              Message-ID: <19990120001410.19645.qmail@alexandra.wayne.fnx.com>
5423              
5424              From: abigail@fnx.com
5425              To: perl5-porters@perl.org (Perl Porters)
5426              Subject: [PATCH 5.005_03 TRIAL3 lib/CGI.pm] Typos
5427              Date: Tue, 19 Jan 1999 19:32:42 -0500 (EST)
5428              Message-ID: <19990120003242.19938.qmail@alexandra.wayne.fnx.com>
5429              
5430              From: abigail@fnx.com
5431              To: perl5-porters@perl.org (Perl Porters)
5432              Subject: [PATCH 5.005_03 TRIAL3 lib/CPAN.pm] Typos
5433              Date: Tue, 19 Jan 1999 19:40:41 -0500 (EST)
5434              Message-ID: <19990120004041.20052.qmail@alexandra.wayne.fnx.com>
5435              
5436              From: abigail@fnx.com
5437              To: perl5-porters@perl.org (Perl Porters)
5438              Subject: [PATCH 5.005_03 TRIAL3 lib/Carp.pm] Typo
5439              Date: Tue, 19 Jan 1999 19:43:12 -0500 (EST)
5440              Message-ID: <19990120004312.20152.qmail@alexandra.wayne.fnx.com>
5441              
5442              From: abigail@fnx.com
5443              To: perl5-porters@perl.org (Perl Porters)
5444              Subject: [PATCH 5.005_03 TRIAL3 lib/Cwd.pm] Typo
5445              Date: Tue, 19 Jan 1999 19:44:29 -0500 (EST)
5446              Message-ID: <19990120004429.20190.qmail@alexandra.wayne.fnx.com>
5447              
5448              From: abigail@fnx.com
5449              To: perl5-porters@perl.org (Perl Porters)
5450              Subject: [PATCH 5.005_03 TRIAL3 lib/Safe.pm] Typo
5451              Date: Tue, 19 Jan 1999 19:52:41 -0500 (EST)
5452              Message-ID: <19990120005241.20693.qmail@alexandra.wayne.fnx.com>
5453              
5454              From: abigail@fnx.com
5455              To: perl5-porters@perl.org (Perl Porters)
5456              Subject: [PATCH 5.005_03 TRIAL3 lib/SelfLoader.pm] Typos
5457              Date: Tue, 19 Jan 1999 19:55:25 -0500 (EST)
5458              Message-ID: <19990120005525.20788.qmail@alexandra.wayne.fnx.com>
5459              
5460              From: abigail@fnx.com
5461              To: perl5-porters@perl.org (Perl Porters)
5462              Subject: [PATCH 5.005_03 TRIAL3 lib/Symbol.pm] Typo
5463              Date: Tue, 19 Jan 1999 19:58:21 -0500 (EST)
5464              Message-ID: <19990120005821.20926.qmail@alexandra.wayne.fnx.com>
5465              
5466              From: abigail@fnx.com
5467              To: perl5-porters@perl.org (Perl Porters)
5468              Subject: [PATCH 5.005_03 TRIAL3 lib/Test.pm] Typo
5469              Date: Tue, 19 Jan 1999 20:00:02 -0500 (EST)
5470              Message-ID: <19990120010002.20973.qmail@alexandra.wayne.fnx.com>
5471              
5472              From: abigail@fnx.com
5473              To: perl5-porters@perl.org (Perl Porters)
5474              Subject: [PATCH 5.005_03 TRIAL3 lib/ops.pm] Typo
5475              Date: Tue, 19 Jan 1999 20:39:09 -0500 (EST)
5476              Message-ID: <19990120013909.23085.qmail@alexandra.wayne.fnx.com>
5477              
5478              From: abigail@fnx.com
5479              To: perl5-porters@perl.org (Perl Porters)
5480              Subject: [PATCH 5.005_03 TRIAL3 lib/diagnostics.pm] Typos  (ignore previous patch for this file...)
5481              Date: Tue, 19 Jan 1999 20:38:23 -0500 (EST)
5482              Message-ID: <19990120013823.23015.qmail@alexandra.wayne.fnx.com>
5483              
5484              From: abigail@fnx.com
5485              To: perl5-porters@perl.org (Perl Porters)
5486              Subject: [PATCH 5.005_03 TRIAL3 lib/overload.pm] Typos
5487              Date: Tue, 19 Jan 1999 20:58:16 -0500 (EST)
5488              Message-ID: <19990120015817.24306.qmail@alexandra.wayne.fnx.com>
5489              
5490              From: abigail@fnx.com
5491              To: perl5-porters@perl.org (Perl Porters)
5492              Subject: [PATCH 5.005_03 TRIAL3 lib/re.pm] Typos
5493              Date: Tue, 19 Jan 1999 21:03:26 -0500 (EST)
5494              Message-ID: <19990120020326.24373.qmail@alexandra.wayne.fnx.com>
5495      Branch: cfgperl
5496            ! ext/Opcode/Safe.pm ext/Opcode/ops.pm lib/AutoLoader.pm
5497            ! lib/CGI.pm lib/CPAN.pm lib/CPAN/FirstTime.pm lib/CPAN/Nox.pm
5498            ! lib/Carp.pm lib/Cwd.pm lib/SelfLoader.pm lib/Symbol.pm
5499            ! lib/Test.pm lib/diagnostics.pm lib/fields.pm lib/overload.pm
5500 ____________________________________________________________________________
5501 [  2664] By: jhi                                   on 1999/01/21  14:47:43
5502         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5503              To: Mailing list Perl5 <perl5-porters@perl.org>
5504              Subject: [PATCH 5.005_*] OS2::PrfDB was exploiting a bug in U32 XSUBs
5505              Date: Thu, 21 Jan 1999 03:58:29 -0500
5506              Message-ID: <19990121035829.A25822@monk.mps.ohio-state.edu>
5507      Branch: cfgperl
5508            ! os2/Changes os2/OS2/PrfDB/PrfDB.xs
5509 ____________________________________________________________________________
5510 [  2663] By: jhi                                   on 1999/01/21  14:43:58
5511         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5512              To: Mailing list Perl5 <perl5-porters@perl.org>
5513              Subject: [PATCH 5.005_*] Errno.pm suffers from \\ too
5514              Date: Thu, 21 Jan 1999 02:46:34 -0500
5515              Message-ID: <19990121024634.A25600@monk.mps.ohio-state.edu>
5516      Branch: cfgperl
5517            ! ext/Errno/Errno_pm.PL
5518 ____________________________________________________________________________
5519 [  2662] By: jhi                                   on 1999/01/21  14:42:42
5520         Log: From: Daniel Grisinger <dgris@moiraine.dimensional.com>
5521              To: Francois Desarmenien <desar@club-internet.fr>
5522              Cc: Gurusamy Sarathy <gsar@activestate.com>,
5523              Mailing list Perl5 <perl5-porters@perl.org>, bugmongers@perl.org
5524              Subject: [PATCH] patching.pod, misc fixes (was Re: Which ? What ? Why ? When ?)
5525              Date: 21 Jan 1999 00:17:35 -0700
5526              Message-ID: <m31zkpqels.fsf_-_@moiraine.dimensional.com>
5527      Branch: cfgperl
5528            ! Porting/patching.pod
5529 ____________________________________________________________________________
5530 [  2661] By: jhi                                   on 1999/01/21  14:41:13
5531         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5532              To: Mailing list Perl5 <perl5-porters@perl.org>
5533              Subject: [PATCH 5.00*] makedepend
5534              Date: Thu, 21 Jan 1999 02:08:27 -0500
5535              Message-ID: <19990121020827.A25509@monk.mps.ohio-state.edu>
5536      Branch: cfgperl
5537            ! makedepend.SH
5538 ____________________________________________________________________________
5539 [  2660] By: jhi                                   on 1999/01/21  14:36:45
5540         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5541              To: Mailing list Perl5 <perl5-porters@perl.org>
5542              Subject: [PATCH 5.005_53] Pipes and 2>&1 on OS/2
5543              Date: Tue, 19 Jan 1999 20:06:45 -0500
5544              Message-ID: <19990119200645.A21154@monk.mps.ohio-state.edu>
5545      Branch: cfgperl
5546            ! os2/Changes os2/os2.c
5547 ____________________________________________________________________________
5548 [  2657] By: jhi                                   on 1999/01/21  11:40:35
5549         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
5550              To: perl5-porters@perl.org
5551              Subject: [PATCH 5.005_54]pp_mapstart & pp_grepstart return val (CC.pm)
5552              Date: Mon, 18 Jan 1999 01:32:31 PST
5553              Message-ID: <19990118093231.18443.qmail@hotmail.com>
5554      Branch: cfgperl
5555            ! ext/B/B/CC.pm
5556 ____________________________________________________________________________
5557 [  2656] By: jhi                                   on 1999/01/21  11:35:34
5558         Log: From: Achim Bohnet <ach@mpe.mpg.de>
5559              Subject: [PATCH] Not OK: perl 5.00503 +MAINT_TRIAL_3 on alpha-dec_osf 4.0 (UNINSTALLED) 
5560              Date: Wed, 20 Jan 1999 20:25:53 +0100
5561              Message-Id: <199901201925.UAA16940@o06.xray.mpe.mpg.de>
5562      Branch: cfgperl
5563            ! pp.c
5564 ____________________________________________________________________________
5565 [  2655] By: jhi                                   on 1999/01/21  10:46:01
5566         Log: Handle NIS (and NetInfo) more robustly.
5567      Branch: cfgperl
5568            ! t/op/grent.t t/op/pwent.t
5569 ____________________________________________________________________________
5570 [  2654] By: jhi                                   on 1999/01/21  10:17:20
5571         Log: Two-argument eaccess() of SCO.
5572      Branch: cfgperl
5573            ! pp_sys.c
5574 ____________________________________________________________________________
5575 [  2653] By: jhi                                   on 1999/01/21  08:53:14
5576         Log: -DNO_NOSUID_CHECK for those platforms which have no way
5577              of checking for nosuid but still want suidperl.
5578      Branch: cfgperl
5579            ! perl.c
5580 ____________________________________________________________________________
5581 [  2652] By: jhi                                   on 1999/01/21  08:22:50
5582         Log: The LANGUAGE mirrors LC_ALL usage.
5583      Branch: cfgperl
5584            ! Configure config_h.SH
5585 ____________________________________________________________________________
5586 [  2651] By: jhi                                   on 1999/01/20  22:01:21
5587         Log: I_MNTENT was missing.
5588      Branch: cfgperl
5589            ! Configure config_h.SH
5590 ____________________________________________________________________________
5591 [  2650] By: jhi                                   on 1999/01/19  13:42:03
5592         Log: NetBSD update, based on patches from the NetBSD packages system.
5593      Branch: cfgperl
5594            ! Makefile.SH hints/netbsd.sh makedepend.SH unixish.h
5595 ____________________________________________________________________________
5596 [  2649] By: jhi                                   on 1999/01/19  12:44:02
5597         Log: Jumbo Configure update.
5598              * -Uinstallusrbinperl: disable /usr/bin/perl installation
5599              by installperl
5600              * usethreads.cbu
5601              * use64bits.cbu
5602              * "nosuid"
5603      Branch: cfgperl
5604            ! Configure config_h.SH hints/aix.sh hints/dec_osf.sh
5605            ! hints/dos_djgpp.sh hints/freebsd.sh hints/hpux.sh
5606            ! hints/irix_4.sh hints/irix_5.sh hints/irix_6.sh
5607            ! hints/irix_6_0.sh hints/irix_6_1.sh hints/linux.sh
5608            ! hints/os2.sh hints/solaris_2.sh hints/vmesa.sh perl.c perl.h
5609            ! pod/perldiag.pod
5610 ____________________________________________________________________________
5611 [  2648] By: jhi                                   on 1999/01/19  09:16:44
5612         Log: Mention /usr/share/locale.
5613      Branch: cfgperl
5614            ! pod/perllocale.pod
5615 ____________________________________________________________________________
5616 [  2647] By: jhi                                   on 1999/01/19  09:11:11
5617         Log: SHMLBA strikes back in NetBSD/sparc.
5618              
5619              From: Dave Nelson <David.Nelson@bellcow.com>
5620              To: jhi@iki.fi
5621              Subject: perl5.005_02 + IPC::SysV + NetBSD/Sparc
5622              Date: Mon, 18 Jan 1999 22:07:56 -0600
5623              Message-Id: <199901190407.WAA02543@longhorn.bellcow.com>
5624      Branch: cfgperl
5625            ! ext/IPC/SysV/SysV.xs
5626 ____________________________________________________________________________
5627 [  2646] By: jhi                                   on 1999/01/19  08:58:17
5628         Log: Show LANGUAGE env var when needed. (Augment change #2645).
5629      Branch: cfgperl
5630            ! util.c utils/perlbug.PL
5631 ____________________________________________________________________________
5632 [  2645] By: jhi                                   on 1999/01/19  08:52:15
5633         Log: Document the GNU LANGUAGE env var.
5634      Branch: cfgperl
5635            ! pod/perllocale.pod
5636 ____________________________________________________________________________
5637 [  2644] By: jhi                                   on 1999/01/19  08:42:25
5638         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
5639              To: Mailing list Perl5 <perl5-porters@perl.org>
5640              Subject: [PATCH 5.005_53] Fixing \G bug by Francois Desarmenien
5641              Date: Mon, 18 Jan 1999 20:57:02 -0500
5642              Message-ID: <19990118205702.A18379@monk.mps.ohio-state.edu>
5643      Branch: cfgperl
5644            ! pp_hot.c t/op/pat.t
5645 ____________________________________________________________________________
5646 [  2643] By: jhi                                   on 1999/01/18  11:23:41
5647         Log: Add various cruft to "clean" target. (Time for t/Makefile?)
5648      Branch: cfgperl
5649            ! Makefile.SH
5650 ____________________________________________________________________________
5651 [  2642] By: jhi                                   on 1999/01/18  11:03:38
5652         Log: GNU libc locale system has LANGUAGE env var that partly
5653              overrides even LC_ALL.
5654      Branch: cfgperl
5655            ! t/lib/safe2.t t/op/groups.t t/op/mkdir.t
5656 ____________________________________________________________________________
5657 [  2641] By: jhi                                   on 1999/01/18  10:55:04
5658         Log: Integrate from mainperl.
5659      Branch: cfgperl
5660           +> ext/B/defsubs.h.PL
5661            ! t/op/groups.t
5662           !> (integrate 38 files)
5663 ____________________________________________________________________________
5664 [  2640] By: gsar                                  on 1999/01/18  10:06:29
5665         Log: a few random cleanups
5666      Branch: perl
5667            ! ext/B/Makefile.PL lib/Test/Harness.pm t/pragma/warn/doio
5668 ____________________________________________________________________________
5669 [  2639] By: gsar                                  on 1999/01/18  05:56:21
5670         Log: From:    "Vishal Bhatia" <vishalb@hotmail.com>
5671              Date:    Sun, 17 Jan 1999 16:41:10 PST
5672              Message-Id: <19990118004111.29667.qmail@hotmail.com>
5673              Subject: [PATCH 5.005_54]Duplicate saved ops (CC.pm)
5674      Branch: perl
5675            ! ext/B/B/C.pm
5676 ____________________________________________________________________________
5677 [  2638] By: gsar                                  on 1999/01/18  05:41:21
5678         Log: From:    jan.dubois@ibm.net (Jan Dubois)
5679              Date:    Mon, 18 Jan 1999 00:37:41 +0100
5680              Message-Id: <36a271cd.2105507@smtp1.ibm.net>
5681              Subject: [PATCH 5.005_54] fix bugs in do_sv_dump() from Devel::Peek integration
5682      Branch: perl
5683            ! dump.c
5684 ____________________________________________________________________________
5685 [  2633] By: gsar                                  on 1999/01/17  13:39:59
5686         Log: bogus assert()
5687      Branch: perl
5688            ! pp.c t/op/groups.t
5689 ____________________________________________________________________________
5690 [  2632] By: gsar                                  on 1999/01/17  13:22:04
5691         Log: various tweaks for clean build and test on win32
5692      Branch: perl
5693            ! embed.h ext/B/Makefile.PL global.sym lib/FindBin.pm objXSUB.h
5694            ! op.c t/pragma/warn/doio
5695 ____________________________________________________________________________
5696 [  2631] By: gsar                                  on 1999/01/17  12:28:06
5697         Log: undo change#2336, and add clarification about subversive
5698              CPAN distributions from Andreas Koenig
5699      Branch: perl
5700            ! Porting/pumpkin.pod lib/CPAN.pm
5701 ____________________________________________________________________________
5702 [  2630] By: gsar                                  on 1999/01/17  12:04:06
5703         Log: fix silent taint failures under -U
5704      Branch: perl
5705            ! doio.c
5706 ____________________________________________________________________________
5707 [  2629] By: gsar                                  on 1999/01/17  12:00:23
5708         Log: sanity check piped opens (tweaked version of patch suggested
5709              by Mark-Jason Dominus)
5710      Branch: perl
5711            ! doio.c pod/perldelta.pod pod/perldiag.pod t/io/pipe.t
5712            ! t/op/taint.t t/pragma/warn/doio
5713 ____________________________________________________________________________
5714 [  2628] By: gsar                                  on 1999/01/17  11:26:21
5715         Log: regen headers
5716      Branch: perl
5717            ! embed.h embedvar.h objXSUB.h
5718 ____________________________________________________________________________
5719 [  2627] By: gsar                                  on 1999/01/17  11:23:37
5720         Log: PERL_OBJECTness for change#2595
5721      Branch: perl
5722            ! embed.pl op.c pod/perlport.pod proto.h
5723 ____________________________________________________________________________
5724 [  2626] By: gsar                                  on 1999/01/17  09:47:07
5725         Log: PERL_OBJECT tweaks for change#2426
5726      Branch: perl
5727            ! embed.pl proto.h regcomp.c
5728 ____________________________________________________________________________
5729 [  2625] By: gsar                                  on 1999/01/17  09:37:58
5730         Log: documentation in change#2596 is not quite right; fix it
5731      Branch: perl
5732            ! lib/Math/BigFloat.pm pod/perlguts.pod
5733 ____________________________________________________________________________
5734 [  2624] By: gsar                                  on 1999/01/17  09:28:34
5735         Log: undo change#2571; C<use File::Spec> instead
5736      Branch: perl
5737            ! lib/FindBin.pm
5738 ____________________________________________________________________________
5739 [  2623] By: gsar                                  on 1999/01/17  09:20:42
5740         Log: change#2572 is not applicable; undo, retaining scan_bin addition
5741              to global.sym
5742      Branch: perl
5743            ! global.sym perl.c proto.h
5744 ____________________________________________________________________________
5745 [  2622] By: gsar                                  on 1999/01/17  09:17:42
5746         Log: change#2576 is based on a wrong premise; undo it
5747      Branch: perl
5748            ! pp_ctl.c
5749 ____________________________________________________________________________
5750 [  2621] By: gsar                                  on 1999/01/17  09:12:42
5751         Log: fix change#2602 to not used hard coded constants
5752      Branch: perl
5753            ! ext/B/B/C.pm ext/B/defsubs.h.PL
5754 ____________________________________________________________________________
5755 [  2620] By: gsar                                  on 1999/01/17  09:02:07
5756         Log: integrate cfgperl changes into mainline, fix conflicts
5757      Branch: perl
5758           +> AUTHORS MAINTAIN README.mint ext/DynaLoader/hints/linux.pl
5759           +> ext/POSIX/hints/mint.pl hints/gnu.sh hints/mint.sh
5760           +> lib/Dumpvalue.pm mint/Makefile mint/README mint/errno.h
5761           +> mint/pwd.c mint/stdio.h mint/sys/time.h mint/time.h
5762           +> pod/perlopentut.pod
5763           !> (integrate 162 files)
5764 ____________________________________________________________________________
5765 [  2619] By: gsar                                  on 1999/01/17  08:42:04
5766         Log: a few doc typos
5767      Branch: perl
5768            ! lib/utf8.pm pod/perlfunc.pod pod/perlre.pod
5769 ____________________________________________________________________________
5770 [  2616] By: gbarr                                 on 1999/01/16  18:59:55
5771         Log: Win32 changes from Jan
5772              
5773              From: jan.dubois@ibm.net (Jan Dubois)
5774              Date: Fri, 15 Jan 1999 23:38:35 +0100
5775              Message-ID: <36a7c10d.16311905@smtp1.ibm.net>
5776              Subject: [PATCH 5.005_03m2] Win32 Makefile patches
5777              
5778              From: jan.dubois@ibm.net (Jan Dubois)
5779              Date: Sat, 16 Jan 1999 13:02:45 +0100
5780              Message-ID: <36a07da6.10722337@smtp1.ibm.net>
5781              Subject: [PATCH 5.005_03m2] minor tweaks to README.win32
5782      Branch: maint-5.005/perl
5783            ! README.win32 win32/Makefile win32/makefile.mk
5784 ____________________________________________________________________________
5785 [  2615] By: gbarr                                 on 1999/01/16  18:48:48
5786         Log: Jumbo patch from Sarathy for PERL_OBJECT & USE_THREADS
5787              
5788              From: Gurusamy Sarathy <gsar@engin.umich.edu>
5789              Date: Thu, 07 Jan 1999 00:12:00 -0500
5790              Message-Id: <199901070512.AAA23568@aatma.engin.umich.edu>
5791              Subject: Re: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
5792              
5793              From: Gurusamy Sarathy <gsar@engin.umich.edu>
5794              Date: Thu, 14 Jan 1999 19:21:46 -0500
5795              Message-Id: <199901150021.TAA01886@aatma.engin.umich.edu>
5796              Subject: Re: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
5797      Branch: maint-5.005/perl
5798            ! embed.h global.sym lib/ExtUtils/MM_Unix.pm objXSUB.h objpp.h
5799            ! op.c perl.c perl.h perly.c perly.y perly_c.diff pp.c proto.h
5800            ! sv.c t/io/fs.t toke.c win32/GenCAPI.pl win32/config.bc
5801            ! win32/makedef.pl win32/runperl.c win32/win32.c
5802 ____________________________________________________________________________
5803 [  2614] By: gbarr                                 on 1999/01/16  16:48:38
5804         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
5805              Date: Fri, 15 Jan 1999 17:28:34 +0200 (EET)
5806              Message-Id: <199901151528.RAA08785@alpha.hut.fi>
5807              Subject: [PATCH] 5.005_03-MAINT_TRIAL_2: NetBSD patches
5808              
5809              From: Jarkko Hietaniemi <jhi@iki.fi>
5810              Date: Fri, 15 Jan 1999 18:44:19 +0200 (EET)
5811              Message-Id: <199901151644.SAA08184@alpha.hut.fi>
5812              Subject: [PATCH] 5.005_03-MAINT_TRIAL_2: allow skipping the "install also as /usr/bin/perl" question of installperl
5813              
5814              From: Jarkko Hietaniemi <jhi@iki.fi>
5815              Date: Fri, 15 Jan 1999 18:52:29 +0200 (EET)
5816              Message-Id: <199901151652.SAA11259@alpha.hut.fi>
5817              Subject: the promised "installusrbinperl + NetBSD" fix
5818      Branch: maint-5.005/perl
5819            ! Configure Makefile.SH hints/netbsd.sh installperl
5820            ! makedepend.SH unixish.h
5821 ____________________________________________________________________________
5822 [  2611] By: jhi                                   on 1999/01/14  12:16:14
5823         Log: From: Tom Christiansen <tchrist@jhereg.perl.com>
5824              To: pumpkings@jhereg.perl.com
5825              Subject: perlopentut.pod
5826              Date: Sat, 09 Jan 1999 08:13:18 -0700
5827              Message-Id: <199901091513.IAA17512@jhereg.perl.com>
5828      Branch: cfgperl
5829            + pod/perlopentut.pod
5830            ! MANIFEST pod/perl.pod pod/perldelta.pod pod/roffitall
5831 ____________________________________________________________________________
5832 [  2607] By: gbarr                                 on 1999/01/14  02:53:40
5833         Log: Added Carp::cluck to perldelta.pod
5834      Branch: maint-5.005/perl
5835            ! pod/perldelta.pod
5836 ____________________________________________________________________________
5837 [  2605] By: jhi                                   on 1999/01/13  18:26:19
5838         Log: From: "Jonathan Fine (IT- Borders Online)" <jfine@borders.com>
5839              To: "'cpan@perl.org'" <cpan@perl.org>
5840              Subject: "Bug" fix for File::Find.pm
5841              Date:   Thu, 31 Dec 1998 13:01:50 -0500
5842              Message-ID: <311F144DB5E5D011B03F00805FE954B10708BE17@exchange01_ph.borders.com>
5843      Branch: cfgperl
5844            ! lib/File/Find.pm
5845 ____________________________________________________________________________
5846 [  2604] By: jhi                                   on 1999/01/13  18:08:45
5847         Log: From: Peter Wolfe <wolfe@teloseng.com>
5848              Subject: SCO 3.2v5 patch for perl5.005_03-MAINT_TRIAL_1
5849              To: perlbug@perl.com
5850              Date: 11 Jan 1999 23:00:05 +0200
5851              Message-ID: <MLIST_199901111950.LAA01703@titan.teloseng.com>
5852      Branch: cfgperl
5853            ! hints/sco.sh
5854 ____________________________________________________________________________
5855 [  2603] By: jhi                                   on 1999/01/13  18:06:56
5856         Log: From: hans@icgroup.nl (Hans Mulder)
5857              Subject: [Patch for 5.005_54] re::debugcolors dumps core
5858              To: perlbug@perl.com
5859              Cc: hansmu@xs4all.nl
5860              Date: 11 Jan 1999 22:22:45 +0200
5861              Message-ID: <MLIST_9901111947.AA22109@icgned.icgroup.nl>
5862      Branch: cfgperl
5863            ! ext/re/re.pm regcomp.c
5864 ____________________________________________________________________________
5865 [  2602] By: jhi                                   on 1999/01/13  18:05:43
5866         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
5867              Subject: [PATCH 5.005_54]B::MAGIC::PTR doesnot check for valid length.
5868              Date: 11 Jan 1999 08:02:41 +0200
5869              Lines: 134
5870              Message-ID: <MLIST_19990111052126.27966.qmail@hotmail.com>
5871      Branch: cfgperl
5872            ! ext/B/B.xs ext/B/B/C.pm
5873 ____________________________________________________________________________
5874 [  2601] By: jhi                                   on 1999/01/13  18:01:53
5875         Log: From: James FitzGibbon <james@ican.net>
5876              Subject: Trivial patch for HP-UX 11 and shared libperl
5877              To: perl5-porters@perl.org
5878              Date: 8 Jan 1999 19:13:23 +0200
5879              Message-ID: <MLIST_Pine.BSF.4.05.9901081110090.21785-100000@staff1.tor.accglobal.net>
5880      Branch: cfgperl
5881            ! Makefile.SH
5882 ____________________________________________________________________________
5883 [  2600] By: jhi                                   on 1999/01/13  17:59:45
5884         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
5885              Subject: [PATCH 5.005_54] B::CC::pp_rv2cv problem
5886              To: perl5-porters@perl.org
5887              Date: 8 Jan 1999 12:43:36 +0200
5888              Message-ID: <MLIST_19990108101557.4481.qmail@hotmail.com>
5889      Branch: cfgperl
5890            ! ext/B/B/CC.pm
5891 ____________________________________________________________________________
5892 [  2599] By: jhi                                   on 1999/01/13  17:50:11
5893         Log: From: Robin Barker <rmb1@cise.npl.co.uk>
5894              Subject: PATCH to installperl
5895              To: perl5-porters@perl.org
5896              Date: 4 Jan 1999 16:15:18 +0200
5897              Message-ID: <MLIST_199901041350.NAA19665@cyclone.cise.npl.co.uk>
5898      Branch: cfgperl
5899            ! installperl
5900 ____________________________________________________________________________
5901 [  2598] By: jhi                                   on 1999/01/13  17:34:51
5902         Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
5903              To: gsar@engin.umich.edu (Gurusamy Sarathy), gbarr@pobox.com
5904              Cc: perl5-porters@perl.org
5905              Subject: PATCH DB_File 1.63 for 5.005_54 & 5.005_03
5906              Date: Tue, 29 Dec 1998 16:23:54 +0000 (GMT)
5907              Message-Id: <9812291623.AA20884@claudius.bfsec.bt.co.uk>
5908      Branch: cfgperl
5909            ! ext/DB_File/Changes ext/DB_File/DB_File.pm
5910            ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo ext/DB_File/typemap
5911 ____________________________________________________________________________
5912 [  2597] By: jhi                                   on 1999/01/13  17:30:33
5913         Log: From: David Dyck <dcd@tc.fluke.com>
5914              To: Perl Porters <perl5-porters@perl.org>,
5915              Gurusamy Sarathy <gsar@engin.umich.edu>
5916              Subject: PATCH to perl5.005_54/pod/perldsc.pod (fix typo)
5917              Date: Tue, 12 Jan 1999 11:14:19 -0800 (PST)
5918              Message-ID: <Pine.LNX.4.05.9901121111250.22568-100000@dd.tc.fluke.com>
5919      Branch: cfgperl
5920            ! pod/perldsc.pod
5921 ____________________________________________________________________________
5922 [  2596] By: jhi                                   on 1999/01/13  17:26:44
5923         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
5924              To: perl5-porters@perl.org
5925              Subject: [PATCH] modglobal w/ spelling fixes
5926              Date: Tue, 12 Jan 1999 18:06:01 -0500 (EST)
5927              Message-ID: <Pine.GSO.4.02.9901121805290.625-100000@eq1062.wks.na.deuba.com>
5928      Branch: cfgperl
5929            ! pod/perlguts.pod
5930 ____________________________________________________________________________
5931 [  2595] By: jhi                                   on 1999/01/13  17:24:59
5932         Log: From: Hans Mulder <hansm@icgroup.nl>
5933              Optimize common sort routines.  Thread started by the message
5934              
5935              From: Hans Mulder <hansm@icgroup.nl>
5936              Sender: owner-perl5-porters@perl.org
5937              To: perl5-porters@perl.org
5938              Subject: [Patch for 5.00554] From the Todo list: Optimize sort by { $a <=> $b
5939              Message-Id: <9901092156.AA03831@icgned.icgroup.nl>
5940              
5941              and the patch from the message
5942              
5943              From: Hans Mulder <hans@icgroup.nl>
5944              To: jhi@iki.fi
5945              Cc: perl5-porters@perl.org
5946              Subject: Re: [Patch for 5.00554] From the Todo list: Optimize sort by { $a <=>
5947              $b }
5948              Date: Wed, 13 Jan 1999 17:39:35 +0100
5949              Message-Id: <9901131639.AA17419@icgned.icgroup.nl>
5950      Branch: cfgperl
5951            ! Todo op.c op.h pp_ctl.c t/op/sort.t
5952 ____________________________________________________________________________
5953 [  2594] By: jhi                                   on 1999/01/13  16:50:17
5954         Log: Atari MiNT port by Guido Flohr <gufl0000@stud.uni-sb.de>
5955              (the diffs were based on 5.004_02).  Tested by Guido
5956              and Frank Naumann <fnaumann@prinz-atm.CS.Uni-Magdeburg.De>.
5957      Branch: cfgperl
5958            + README.mint ext/POSIX/hints/mint.pl hints/mint.sh
5959            + mint/Makefile mint/README mint/errno.h mint/pwd.c mint/stdio.h
5960            + mint/sys/time.h mint/time.h
5961            ! MANIFEST doio.c malloc.c miniperlmain.c perl.c t/io/fs.t
5962            ! t/lib/safe2.t t/op/groups.t t/op/mkdir.t t/op/taint.t util.c
5963 ____________________________________________________________________________
5964 [  2593] By: jhi                                   on 1999/01/09  16:54:26
5965         Log: Detypo.
5966      Branch: cfgperl
5967            ! hints/dec_osf.sh
5968 ____________________________________________________________________________
5969 [  2592] By: jhi                                   on 1999/01/09  16:17:13
5970         Log: Move usethreads and use64bits logic from hints to Configure.
5971      Branch: cfgperl
5972            ! Configure hints/README.hints hints/aix.sh hints/dec_osf.sh
5973            ! hints/dos_djgpp.sh hints/freebsd.sh hints/hpux.sh
5974            ! hints/irix_6.sh hints/irix_6_0.sh hints/irix_6_1.sh
5975            ! hints/linux.sh hints/os2.sh hints/solaris_2.sh hints/vmesa.sh
5976 ____________________________________________________________________________
5977 [  2591] By: jhi                                   on 1999/01/09  14:45:24
5978         Log: Missing dTHRs added.
5979      Branch: cfgperl
5980            ! regcomp.c toke.c
5981 ____________________________________________________________________________
5982 [  2590] By: jhi                                   on 1999/01/08  15:27:17
5983         Log: Finalize change #2589 and add better AIX nm scanning from:
5984              
5985              Message-Id: <m0zyNW0-00017VC@gentoo.com>
5986              From: bll@gentoo.com (Brad Lanam)
5987              Subject: Re: mailhelp returned a non-zero status
5988              In-Reply-To: <199901072155.WAA14369@hptnocou.grenoble.hp.com> from Raphael Manfredi at "Jan 7, 1999 10:55:24 pm"
5989              To: ram@hptnocou.grenoble.hp.com (Raphael Manfredi)
5990      Branch: cfgperl
5991            ! Configure hints/freebsd.sh hints/linux.sh
5992 ____________________________________________________________________________
5993 [  2589] By: jhi                                   on 1999/01/08  15:14:54
5994         Log: Undo change #2581.
5995      Branch: cfgperl
5996            ! Configure hints/freebsd.sh hints/linux.sh
5997 ____________________________________________________________________________
5998 [  2588] By: jhi                                   on 1999/01/08  11:51:52
5999         Log: FAQ jumbo patch from tchrist.
6000              
6001              Message-Id: <199901080605.XAA20229@jhereg.perl.com>
6002              From: Tom Christiansen <tchrist@jhereg.perl.com>
6003              To: pumpkings@jhereg.perl.com
6004              Subject: newest version of perlfaq.pod
6005              Date: Thu, 7 Jan 1999 23:05:02 -0700
6006              
6007              Message-Id: <199901080605.XAA20231@jhereg.perl.com>
6008              From: Tom Christiansen <tchrist@jhereg.perl.com>
6009              To: pumpkings@jhereg.perl.com
6010              Subject: newest version of perlfaq1.pod
6011              Date: Thu, 7 Jan 1999 23:05:02 -0700
6012              
6013              Message-Id: <199901080605.XAA20233@jhereg.perl.com>
6014              From: Tom Christiansen <tchrist@jhereg.perl.com>
6015              To: pumpkings@jhereg.perl.com
6016              Subject: newest version of perlfaq2.pod
6017              Date: Thu, 7 Jan 1999 23:05:02 -0700
6018              
6019              Message-Id: <199901080605.XAA20235@jhereg.perl.com>
6020              From: Tom Christiansen <tchrist@jhereg.perl.com>
6021              To: pumpkings@jhereg.perl.com
6022              Subject: newest version of perlfaq3.pod
6023              Date: Thu, 7 Jan 1999 23:05:02 -0700
6024              
6025              Message-Id: <199901080605.XAA20237@jhereg.perl.com>
6026              From: Tom Christiansen <tchrist@jhereg.perl.com>
6027              To: pumpkings@jhereg.perl.com
6028              Subject: newest version of perlfaq4.pod
6029              Date: Thu, 7 Jan 1999 23:05:02 -0700
6030              
6031              Message-Id: <199901080605.XAA20239@jhereg.perl.com>
6032              From: Tom Christiansen <tchrist@jhereg.perl.com>
6033              To: pumpkings@jhereg.perl.com
6034              Subject: newest version of perlfaq5.pod
6035              Date: Thu, 7 Jan 1999 23:05:02 -0700
6036              
6037              Message-Id: <199901080605.XAA20241@jhereg.perl.com>
6038              From: Tom Christiansen <tchrist@jhereg.perl.com>
6039              To: pumpkings@jhereg.perl.com
6040              Subject: newest version of perlfaq6.pod
6041              Date: Thu, 7 Jan 1999 23:05:02 -0700
6042              
6043              Message-Id: <199901080605.XAA20243@jhereg.perl.com>
6044              From: Tom Christiansen <tchrist@jhereg.perl.com>
6045              To: pumpkings@jhereg.perl.com
6046              Subject: newest version of perlfaq7.pod
6047              Date: Thu, 7 Jan 1999 23:05:03 -0700
6048              
6049              Message-Id: <199901080605.XAA20245@jhereg.perl.com>
6050              From: Tom Christiansen <tchrist@jhereg.perl.com>
6051              To: pumpkings@jhereg.perl.com
6052              Subject: newest version of perlfaq8.pod
6053              Date: Thu, 7 Jan 1999 23:05:03 -0700
6054              
6055              Message-Id: <199901080605.XAA20257@jhereg.perl.com>
6056              From: Tom Christiansen <tchrist@jhereg.perl.com>
6057              To: pumpkings@jhereg.perl.com
6058              Subject: newest version of perlfaq9.pod
6059              Date: Thu, 7 Jan 1999 23:05:03 -0700
6060      Branch: cfgperl
6061            ! pod/perlfaq.pod pod/perlfaq1.pod pod/perlfaq2.pod
6062            ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
6063            ! pod/perlfaq6.pod pod/perlfaq7.pod pod/perlfaq8.pod
6064            ! pod/perlfaq9.pod
6065 ____________________________________________________________________________
6066 [  2587] By: jhi                                   on 1999/01/08  11:17:43
6067         Log: More doc fixes from Abigail.
6068      Branch: cfgperl
6069            ! lib/Time/gmtime.pm lib/Time/localtime.pm lib/User/grent.pm
6070            ! lib/User/pwent.pm
6071 ____________________________________________________________________________
6072 [  2585] By: jhi                                   on 1999/01/08  08:31:02
6073         Log: Change #2584 from maint-5.005:
6074              
6075              implemented Ilya's suggested fix, and added a testcase
6076              
6077              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6078              Date: Tue, 5 Jan 1999 00:56:01 -0500 (EST)
6079              Message-Id: <199901050556.AAA02597@monk.mps.ohio-state.edu>
6080              Subject: Re: Text::ParseWords: regex fix
6081      Branch: cfgperl
6082            ! lib/Text/ParseWords.pm t/lib/parsewords.t
6083 ____________________________________________________________________________
6084 [  2583] By: gbarr                                 on 1999/01/08  04:50:03
6085         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
6086              Date: Thu, 7 Jan 1999 12:47:38 +0200 (EET)
6087              Message-Id: <199901071047.MAA24100@alpha.hut.fi>
6088              Subject: [PATCH] 5.005_03-MAINT_TRIAL_2: ext/Errno_pm.PL: understand wrapper cppstdins
6089      Branch: maint-5.005/perl
6090            ! ext/Errno/Errno_pm.PL
6091 ____________________________________________________________________________
6092 [  2581] By: jhi                                   on 1999/01/07  16:38:03
6093         Log: Configure update:
6094              - usethreads, use64bits, and usemultiplicity
6095              are no more interactively asked by Configure
6096              - "int main()" (vs bare "main()") enforced in test programs
6097      Branch: cfgperl
6098            ! Configure hints/freebsd.sh hints/linux.sh
6099 ____________________________________________________________________________
6100 [  2580] By: jhi                                   on 1999/01/07  11:19:12
6101         Log: From: Dan Sugalski <sugalskd@osshe.edu>
6102              Date: Wed, 06 Jan 1999 13:47:34 -0800
6103              Message-Id: <3.0.6.32.19990106134734.0334d260@ous.edu>
6104              Subject: [PATCH 5.005_02-MT2, 5.005_5x]VMS.C tweak for occasional system() error
6105      Branch: cfgperl
6106            ! vms/vms.c
6107 ____________________________________________________________________________
6108 [  2579] By: jhi                                   on 1999/01/07  09:08:36
6109         Log: Another set of doc patches from Abigail
6110              
6111              From: abigail@fnx.com
6112              Message-ID: <19990107032132.20124.qmail@alexandra.wayne.fnx.com>
6113              Subject: [PATCH 5.005_03 TRAIL2 lib/Net/hostent.pm] Typo fix
6114              Date: Wed, 6 Jan 1999 22:21:32 -0500 (EST)
6115              
6116              From: abigail@fnx.com
6117              Message-ID: <19990107032445.20178.qmail@alexandra.wayne.fnx.com>
6118              Subject: [PATCH 5.005_03 TRIAL2 lib/Net/netent.pm] Typo fix
6119              Date: Wed, 6 Jan 1999 22:24:45 -0500 (EST)
6120              
6121              From: abigail@fnx.com
6122              Message-ID: <19990107032834.20362.qmail@alexandra.wayne.fnx.com>
6123              Subject: [PATCH 5.005_03 TRAIL2 lib/Term/Complete.pm] Typo fix
6124              Date: Wed, 6 Jan 1999 22:28:34 -0500 (EST)
6125              
6126              From: abigail@fnx.com
6127              Message-ID: <19990107033136.20440.qmail@alexandra.wayne.fnx.com>
6128              Subject: [PATCH 5.005_03 TRAIL2 lib/Term/ReadLine.pm] Typo fix
6129              Date: Wed, 6 Jan 1999 22:31:36 -0500 (EST)
6130              
6131              From: abigail@fnx.com
6132              Message-ID: <19990107033351.20540.qmail@alexandra.wayne.fnx.com>
6133              Subject: [PATCH 5.005_03 TRIAL2 lib/CGI/Apache.pm] Typo fix
6134              Date: Wed, 6 Jan 1999 22:33:51 -0500 (EST)
6135              
6136              From: abigail@fnx.com
6137              Message-ID: <19990107033933.20707.qmail@alexandra.wayne.fnx.com>
6138              Subject: [PATCH 5.005_03 TRIAL2 lib/CGI/Push.pm] Typo fix
6139              Date: Wed, 6 Jan 1999 22:39:33 -0500 (EST)
6140              
6141              From: abigail@fnx.com
6142              Message-ID: <19990107034548.20936.qmail@alexandra.wayne.fnx.com>
6143              Subject: [PATCH 5.005_03 TRIAL2 lib/File/Copy.pm] Typo fixes
6144              Date: Wed, 6 Jan 1999 22:45:48 -0500 (EST)
6145              
6146              From: abigail@fnx.com
6147              Message-ID: <19990107034856.21056.qmail@alexandra.wayne.fnx.com>
6148              Subject: [PATCH 5.005_03 TRIAL2 lib/File/Spec.pm] Typo fix
6149              Date: Wed, 6 Jan 1999 22:48:56 -0500 (EST)
6150              
6151              From: abigail@fnx.com
6152              Message-ID: <19990107035113.21174.qmail@alexandra.wayne.fnx.com>
6153              Subject: [PATCH 5.005_03 TRIAL2 lib/File/Spec/Mac.pm] Typo fixes
6154              Date: Wed, 6 Jan 1999 22:51:13 -0500 (EST)
6155              
6156              From: abigail@fnx.com
6157              Message-ID: <19990107035612.21522.qmail@alexandra.wayne.fnx.com>
6158              Subject: [PATCH 5.005_03 TRIAL2 lib/Math/BigFloat.pm] Typo fix
6159              Date: Wed, 6 Jan 1999 22:56:12 -0500 (EST)
6160              
6161              From: abigail@fnx.com
6162              Message-ID: <19990107035842.21585.qmail@alexandra.wayne.fnx.com>
6163              Subject: [PATCH 5.005_03 TRIAL2 lib/Math/BigInt.pm] Typo fixes
6164              Date: Wed, 6 Jan 1999 22:58:41 -0500 (EST)
6165              
6166              From: abigail@fnx.com
6167              Message-ID: <19990107040644.22009.qmail@alexandra.wayne.fnx.com>
6168              Subject: [PATCH 5.005_03 TRIAL2 lib/Text/Wrap.pm] Typo fixes
6169              Date: Wed, 6 Jan 1999 23:06:44 -0500 (EST)
6170              
6171              From: abigail@fnx.com
6172              Message-ID: <19990107040955.22087.qmail@alexandra.wayne.fnx.com>
6173              Subject: [PATCH 5.005_03 TRIAL2 lib/Tie/Array.pm] Typo fixes
6174              Date: Wed, 6 Jan 1999 23:09:55 -0500 (EST)
6175              
6176              From: abigail@fnx.com
6177              Message-ID: <19990107041136.22174.qmail@alexandra.wayne.fnx.com>
6178              Subject: [PATCH 5.005_03 TRIAL2 lib/Tie/Hash.pm] Typo fix
6179              Date: Wed, 6 Jan 1999 23:11:36 -0500 (EST)
6180      Branch: cfgperl
6181            ! lib/CGI/Apache.pm lib/CGI/Push.pm lib/File/Copy.pm
6182            ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/Math/BigFloat.pm
6183            ! lib/Math/BigInt.pm lib/Net/hostent.pm lib/Net/netent.pm
6184            ! lib/Term/Complete.pm lib/Term/ReadLine.pm lib/Text/Wrap.pm
6185            ! lib/Tie/Array.pm lib/Tie/Hash.pm
6186 ____________________________________________________________________________
6187 [  2576] By: jhi                                   on 1999/01/06  17:05:20
6188         Log: Change #2582 fallout: the amagic_cmp* are no more file static.
6189      Branch: cfgperl
6190            ! pp_ctl.c
6191 ____________________________________________________________________________
6192 [  2575] By: jhi                                   on 1999/01/06  13:18:56
6193         Log: Enhance the great_circle_distance() documentation.
6194      Branch: cfgperl
6195            ! lib/Math/Trig.pm
6196 ____________________________________________________________________________
6197 [  2574] By: jhi                                   on 1999/01/06  12:58:03
6198         Log: From: Mark Bixby <markb@spock.dis.cccd.edu>
6199              To: perlbug@perl.com
6200              Subject: [PATCH 5.005_03-MAINT_TRIAL_2] t/op/sysio.t for MPE/iX
6201              Date: Mon, 4 Jan 1999 13:34:58 -0800 (PST)
6202              Message-Id: <199901042134.NAA18852@spock.dis.cccd.edu>
6203      Branch: cfgperl
6204            ! t/op/sysio.t
6205 ____________________________________________________________________________
6206 [  2573] By: jhi                                   on 1999/01/06  12:40:19
6207         Log: From: "W. Phillip Moore" <wpm@ms.com>
6208              To: perlbug@perl.org
6209              Subject: [PATCH] POSIX getpgrp is not -w clean
6210              Date: Tue, 5 Jan 1999 12:40:27 -0500 (EST)
6211              Message-ID: <13970.20107.190314.549471@zappa>
6212      Branch: cfgperl
6213            ! ext/POSIX/POSIX.pm
6214 ____________________________________________________________________________
6215 [  2572] By: jhi                                   on 1999/01/06  12:25:24
6216         Log: Based on
6217              From: jan.dubois@ibm.net (Jan Dubois)
6218              To: perl5-porters@perl.org
6219              Subject: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
6220              Date: Wed, 06 Jan 1999 01:24:09 +0100
6221              Message-ID: <3696aa85.18259325@smtp1.ibm.net>
6222              except that
6223              - objXSUB.h was already okay
6224              - embed.h patching is futile, global.sym patched instead
6225              - objpp.h does not exist
6226              - proto.h addition applied manually
6227              - win32/GenCAPI.pl was already okay
6228              - win32/makedef.pl was already okay
6229      Branch: cfgperl
6230            ! global.sym perl.c proto.h
6231 ____________________________________________________________________________
6232 [  2571] By: jhi                                   on 1999/01/06  11:25:48
6233         Log: From: Slaven Rezic <eserte@cs.tu-berlin.de>
6234              To: perlbug@perl.com
6235              Subject: FindBin.pm on Win32 systems
6236              Date: Mon, 4 Jan 1999 23:01:46 +0100 (CET)
6237              Message-Id: <199901042201.XAA01875@cabulja.herceg.de>
6238      Branch: cfgperl
6239            ! lib/FindBin.pm
6240 ____________________________________________________________________________
6241 [  2570] By: jhi                                   on 1999/01/06  11:21:48
6242         Log: From: Dan Sugalski <sugalskd@osshe.edu>
6243              To: perl5-porters@perl.org, vmsperl@perl.org
6244              Subject: [PATCH 5.005_03-MAINT_TRIAL_2]taint.c fix for VMS
6245              Date: Tue, 05 Jan 1999 16:47:31 -0800
6246              Message-Id: <3.0.6.32.19990105164731.00b5b2d0@ous.edu>
6247              
6248              (the ext/IO/lib/IO/Socket.pm was not really changed here;
6249              it was a leftover from #2569)
6250      Branch: cfgperl
6251            ! ext/IO/lib/IO/Socket.pm taint.c
6252 ____________________________________________________________________________
6253 [  2569] By: jhi                                   on 1999/01/06  11:18:22
6254         Log: Jumbo doc patch from Abigail (almost identical to
6255              the 5.005-maint change #2562 except for the
6256              ext/IO/lib/IO/Socket.pm patch which was not
6257              applicable because the IO version of 5.005-devel
6258              is somewhat different (why?))
6259              
6260              From: abigail@fnx.com
6261              Message-ID: <19990105170142.4889.qmail@alexandra.wayne.fnx.com>
6262              Subject: [PATCH 5.005_03-TRIAL2 lib/ExtUtils/Liblist.pm] pod fixes
6263              Date: Tue, 5 Jan 1999 12:01:42 -0500 (EST)
6264              
6265              From: abigail@fnx.com
6266              Message-ID: <19990105172855.5115.qmail@alexandra.wayne.fnx.com>
6267              Subject: [PATCH 5.005_03 MAINT2 lib/ExtUtils/Commands.pm] Typo fix.
6268              Date: Tue, 5 Jan 1999 12:28:55 -0500 (EST)
6269              
6270              From: abigail@fnx.com
6271              Message-ID: <19990105173808.5260.qmail@alexandra.wayne.fnx.com>
6272              Subject: [PATCH perl5.005_03 MAINT3 lib/ExtUtils/Embed.pm] Typo fix
6273              Date: Tue, 5 Jan 1999 12:38:08 -0500 (EST)
6274              
6275              From: abigail@fnx.com
6276              Message-ID: <19990105174859.5533.qmail@alexandra.wayne.fnx.com>
6277              Subject: [PATCH 5.005_03 MAINT2 lib/ExtUtils/Install.pm] Typo fix
6278              Date: Tue, 5 Jan 1999 12:48:59 -0500 (EST)
6279              
6280              From: abigail@fnx.com
6281              Message-ID: <19990105174947.5547.qmail@alexandra.wayne.fnx.com>
6282              Subject: [PATCH 5.005_03 lib/ExtUtils/MM_Unix.pm] Typo fixes
6283              Date: Tue, 5 Jan 1999 12:49:46 -0500 (EST)
6284              
6285              From: abigail@fnx.com
6286              Message-ID: <19990105182301.5966.qmail@alexandra.wayne.fnx.com>
6287              Subject: [PATCH 5.005_03 lib/ExtUtils/MakeMaker.pm] Typos fixes.
6288              Date: Tue, 5 Jan 1999 13:23:00 -0500 (EST)
6289              
6290              From: abigail@fnx.com
6291              Message-ID: <19990105183344.6065.qmail@alexandra.wayne.fnx.com>
6292              Subject: [PATCH 5.005_03 TRIAL2 lib/ExtUtils/Manifest.pm] Typo fixes
6293              Date: Tue, 5 Jan 1999 13:33:44 -0500 (EST)
6294              
6295              From: abigail@fnx.com
6296              Message-ID: <19990105184028.6220.qmail@alexandra.wayne.fnx.com>
6297              Subject: [PATCH 5.005_03 TRIAL2 lib/ExtUtils/Mksymlists.pm] Typo fix
6298              Date: Tue, 5 Jan 1999 13:40:28 -0500 (EST)
6299              
6300              From: abigail@fnx.com
6301              Message-ID: <19990106012015.9451.qmail@alexandra.wayne.fnx.com>
6302              Subject: [PATCH 5.005_03 TRIAL2 lib/IO/Pipe.pm] Typo fixes.
6303              Date: Tue, 5 Jan 1999 20:20:15 -0500 (EST)
6304              
6305              From: abigail@fnx.com
6306              Message-ID: <19990106012047.9459.qmail@alexandra.wayne.fnx.com>
6307              Subject: [PATCH 5.005_03 TRAIL2 lib/IO/Seekable.pm] Typo fixes
6308              Date: Tue, 5 Jan 1999 20:20:47 -0500 (EST)
6309      Branch: cfgperl
6310            ! ext/IO/lib/IO/Pipe.pm ext/IO/lib/IO/Seekable.pm
6311            ! lib/ExtUtils/Command.pm lib/ExtUtils/Embed.pm
6312            ! lib/ExtUtils/Install.pm lib/ExtUtils/Liblist.pm
6313            ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
6314            ! lib/ExtUtils/Manifest.pm lib/ExtUtils/Mksymlists.pm
6315 ____________________________________________________________________________
6316 [  2568] By: gbarr                                 on 1999/01/06  03:13:15
6317         Log: From: jan.dubois@ibm.net (Jan Dubois)
6318              Date: Wed, 06 Jan 1999 01:24:09 +0100
6319              Message-ID: <3696aa85.18259325@smtp1.ibm.net>
6320              Subject: [PATCH 5.005_03-MAINT_TRIAL2] fixes for PERL_OBJECT and USE_THREADS builds
6321      Branch: maint-5.005/perl
6322            ! embed.h global.sym objXSUB.h objpp.h perl.c proto.h
6323            ! win32/GenCAPI.pl win32/makedef.pl
6324 ____________________________________________________________________________
6325 [  2566] By: gbarr                                 on 1999/01/06  02:29:05
6326         Log: From: "W. Phillip Moore" <wpm@ms.com>
6327              Date: Tue, 5 Jan 1999 12:40:27 -0500 (EST)
6328              Message-ID: <13970.20107.190314.549471@zappa>
6329              Subject: [PATCH] POSIX getpgrp is not -w clean
6330      Branch: maint-5.005/perl
6331            ! ext/POSIX/POSIX.pm
6332 ____________________________________________________________________________
6333 [  2565] By: gbarr                                 on 1999/01/06  02:19:00
6334         Log: From: Slaven Rezic <eserte@cs.tu-berlin.de>
6335              Date: Mon, 4 Jan 1999 23:01:46 +0100 (CET)
6336              Message-Id: <199901042201.XAA01875@cabulja.herceg.de>
6337              Subject: FindBin.pm on Win32 systems
6338      Branch: maint-5.005/perl
6339            ! lib/FindBin.pm
6340 ____________________________________________________________________________
6341 [  2561] By: jhi                                   on 1999/01/05  10:49:10
6342         Log: Reword the setlocale() 1-arg case better.
6343      Branch: cfgperl
6344            ! ext/POSIX/POSIX.pod
6345 ____________________________________________________________________________
6346 [  2559] By: gbarr                                 on 1999/01/02  15:37:35
6347         Log: From: Blair Zajac <bzajac@geostaff.com>
6348              Date: Wed, 23 Dec 1998 17:13:32 -0800
6349              Message-ID: <3681953C.8B6A90AA@geostaff.com>
6350              Subject: Tie::SubstrHash patch
6351      Branch: maint-5.005/perl
6352            ! lib/Tie/SubstrHash.pm
6353 ____________________________________________________________________________
6354 [  2554] By: jhi                                   on 1999/01/02  14:55:06
6355         Log: Object destruction order testing.
6356      Branch: cfgperl
6357            ! t/op/misc.t
6358 ____________________________________________________________________________
6359 [  2553] By: jhi                                   on 1999/01/02  14:49:40
6360         Log: perldelta the Dumpvalue.pm of change #2513.
6361      Branch: cfgperl
6362            ! lib/Dumpvalue.pm pod/perldelta.pod
6363 ____________________________________________________________________________
6364 [  2552] By: nick                                  on 1999/01/02  14:45:38
6365         Log: Tone down Makefile.PL so it works on Win32
6366      Branch: perl
6367            ! ext/B/Makefile.PL
6368 ____________________________________________________________________________
6369 [  2551] By: nick                                  on 1999/01/02  14:06:30
6370         Log: Export constant subs from B.xs for op.h, cop.h and a few others.
6371              Use them in various B::* rather than have local defs.
6372      Branch: perl
6373            + ext/B/defsubs.h.PL
6374            ! ext/B/B.pm ext/B/B.xs ext/B/B/Bytecode.pm ext/B/B/C.pm
6375            ! ext/B/B/CC.pm ext/B/B/Deparse.pm ext/B/B/Lint.pm
6376            ! ext/B/B/Stackobj.pm ext/B/B/Xref.pm ext/B/Makefile.PL
6377 ____________________________________________________________________________
6378 [  2550] By: nick                                  on 1999/01/02  10:04:02
6379         Log: Integrate ext/B changes from //depot/cfgperl
6380      Branch: perl
6381           !> ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
6382 ____________________________________________________________________________
6383 [  2549] By: jhi                                   on 1999/01/01  13:54:16
6384         Log: From: "Paul Holser" <Paul.Holser.pholser@nortelnetworks.com>
6385              To: perlbug@perl.com
6386              Subject: op/groups.t fails test 1 on HP-UX 10.20
6387              Date: Wed, 30 Dec 1998 15:16:12 -0600 (CST)
6388              Message-Id: <199812302116.PAA12439@crchh44c.us.nortel.com>
6389      Branch: cfgperl
6390            ! t/op/groups.t
6391 ____________________________________________________________________________
6392 [  2548] By: jhi                                   on 1999/01/01  13:53:31
6393         Log: From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
6394              To: perl5-porters@perl.org
6395              cc: hv@crypt0.demon.co.uk
6396              Subject: [bug 5.004_54] duplicate error message
6397              Date: Thu, 31 Dec 1998 04:05:25 +0000
6398              Message-Id: <199812310405.EAA00386@crypt.compulink.co.uk>
6399              
6400              Message-ID: <13963.60672.134591.383377@alias-2.pr.mcs.net>
6401              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
6402              To: hv@crypt0.demon.co.uk
6403              Cc: perl5-porters@perl.org
6404              Subject: [PATCH _54] Re: duplicate error message
6405              Date: Thu, 31 Dec 1998 16:10:13 -0600 (CST)
6406              
6407              Message-Id: <199901010732.HAA02926@crypt.compulink.co.uk>
6408              From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
6409              To: Stephen McCamant <smccam@uclink4.berkeley.edu>
6410              cc: hv@crypt0.demon.co.uk, perl5-porters@perl.org
6411              Subject: [TEST PATCH _54] Re: duplicate error message 
6412              Date: Fri, 01 Jan 1999 07:32:14 +0000
6413      Branch: cfgperl
6414            ! op.c t/pragma/warn/op
6415 ____________________________________________________________________________
6416 [  2547] By: jhi                                   on 1998/12/31  14:15:04
6417         Log: From: Chris Nandor <pudge@pobox.com>
6418              To: jhi@iki.fi
6419              Cc: perl5-porters@perl.org
6420              Subject: Re: [PATCH] perlport.pod 1.38
6421              Date: Thu, 31 Dec 1998 09:06:48 -0500
6422              Message-Id: <v04020a1db2b1352ec92a@[192.168.0.77]>
6423      Branch: cfgperl
6424            ! pod/perlport.pod
6425 ____________________________________________________________________________
6426 [  2546] By: jhi                                   on 1998/12/31  11:18:17
6427         Log: From: Wilson P. Snyder II
6428              To: perl5-porters@perl.org
6429              Subject: [PATCH v5.5.53] REV2: Binary number support
6430              Date: 1998/11/30
6431              Message-ID: <199811301543.KAA15689@vulcan.maker.com>
6432      Branch: cfgperl
6433            ! pod/perldata.pod pod/perldelta.pod pod/perlfunc.pod pp.c
6434            ! proto.h sv.c t/op/oct.t t/op/sprintf.t t/pragma/warn/util
6435            ! toke.c util.c
6436 ____________________________________________________________________________
6437 [  2545] By: jhi                                   on 1998/12/31  09:27:40
6438         Log: From: "Todd C. Miller" <Todd.Miller@courtesan.com>
6439              To: perlbug@perl.com
6440              Subject: "perl -T -P" dumps core on OpenBSD and Linux
6441              Date: Wed, 30 Dec 1998 21:11:05 -0700 (MST)
6442              Message-Id: <199812310411.VAA37568@xerxes.courtesan.com>
6443      Branch: cfgperl
6444            ! taint.c
6445 ____________________________________________________________________________
6446 [  2544] By: jhi                                   on 1998/12/31  09:21:45
6447         Log: From: Tim Bunce <Tim.Bunce@ig.co.uk> 
6448              To: perlbug@perl.com 
6449              Subject: bug in pod2man search for perl binary [5.005_5x]
6450              Date: Sat, 12 Dec 1998 23:08:51 +0000 
6451              Message-ID: <19981212230851.A20578@ig.co.uk> 
6452      Branch: cfgperl
6453            ! pod/pod2man.PL
6454 ____________________________________________________________________________
6455 [  2541] By: gbarr                                 on 1998/12/30  14:37:14
6456         Log: From: jan.dubois@ibm.net (Jan Dubois)
6457              Date: Wed, 23 Dec 1998 21:26:38 +0100
6458              Message-ID: <36895086.8849224@smtp1.ibm.net>
6459              Subject: [PATCH 5.005_03m1] subdirectory Makefiles should inherit CAPI setting from command line
6460      Branch: maint-5.005/perl
6461            ! lib/ExtUtils/MakeMaker.pm
6462 ____________________________________________________________________________
6463 [  2540] By: jhi                                   on 1998/12/30  08:42:04
6464         Log: Evermore AUTHORS and MAINTAIN.
6465      Branch: cfgperl
6466            ! AUTHORS MAINTAIN
6467 ____________________________________________________________________________
6468 [  2539] By: jhi                                   on 1998/12/29  15:10:34
6469         Log: More AUTHORS and MAINTAIN.
6470      Branch: cfgperl
6471            ! AUTHORS MAINTAIN
6472 ____________________________________________________________________________
6473 [  2537] By: jhi                                   on 1998/12/29  14:34:47
6474         Log: From: Frank Ridderbusch <Frank.Ridderbusch@pdb.siemens.de>
6475              Date: Tue, 15 Dec 1998 16:23:12 +0100 (MET)
6476              Message-ID: <13942.32480.700000.640927@utensil>
6477              Subject: Minor Bug in AutoSplit.qm in 5.005 and 5.004
6478              (mirror change#2531 in the 5.005-maint)
6479      Branch: cfgperl
6480            ! lib/AutoSplit.pm
6481 ____________________________________________________________________________
6482 [  2531] By: gbarr                                 on 1998/12/29  14:12:25
6483         Log: change in_pod pattern to /^=\w/ from /^=/
6484              From: Frank Ridderbusch <Frank.Ridderbusch@pdb.siemens.de>
6485              Date: Tue, 15 Dec 1998 16:23:12 +0100 (MET)
6486              Message-ID: <13942.32480.700000.640927@utensil>
6487              Subject: Minor Bug in AutoSplit.qm in 5.005 and 5.004
6488      Branch: maint-5.005/perl
6489            ! lib/AutoSplit.pm
6490 ____________________________________________________________________________
6491 [  2525] By: jhi                                   on 1998/12/29  13:06:26
6492         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
6493              To: perl5-porters@perl.org
6494              Subject: [PATCH 5.005_54] More minor  Fixes in CC.pm/C.pm
6495              Date: 16 Dec 1998 03:17:03 +0200
6496              Message-ID: <MLIST_199812160055.QAA06272@f10.hotmail.com>
6497      Branch: cfgperl
6498            ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
6499 ____________________________________________________________________________
6500 [  2524] By: jhi                                   on 1998/12/29  13:00:06
6501         Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
6502              To: perl5-porters@perl.org
6503              Cc: rmb1@cise.npl.co.uk, nick@ni-s.u-net.com
6504              Subject: [PATCH 5.005_54] Re:perlcc -e 'my $x = shift; print +($x ?...' failure
6505              Date: 10 Dec 1998 08:30:02 +0200
6506              Message-ID: <MLIST_19981210061651.29891.qmail@hotmail.com>
6507              
6508              (Nick's part was applied earlier, in change #2460)
6509      Branch: cfgperl
6510            ! ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
6511 ____________________________________________________________________________
6512 [  2523] By: jhi                                   on 1998/12/29  12:41:31
6513         Log: From: "vishal bhatia" <vishalb@hotmail.com>
6514              To: nick@ni-s.u-net.com
6515              Cc: perl5-porters@perl.org
6516              Subject: [PATCH 5.005_54] return value of perlcc/B::CC generated functions.
6517              Date: 9 Dec 1998 06:50:30 +0200
6518              Message-ID: <MLIST_19981209043146.16829.qmail@hotmail.com>
6519      Branch: cfgperl
6520            ! ext/B/B/CC.pm
6521 ____________________________________________________________________________
6522 [  2522] By: jhi                                   on 1998/12/29  12:15:18
6523         Log: From: rjk@linguist.dartmouth.edu (Ronald J. Kimball)
6524              To: perl5-porters@perl.org (Perl 5 Porters)
6525              Subject: [PATCH 5.005_54] Pod::Text.pm reformating indented paragraphs
6526              Date: 25 Dec 1998 23:02:28 +0200
6527              Message-ID: <MLIST_199812252034.PAA27812@linguist.dartmouth.edu>
6528      Branch: cfgperl
6529            ! lib/Pod/Text.pm
6530 ____________________________________________________________________________
6531 [  2521] By: jhi                                   on 1998/12/29  12:07:54
6532         Log: Undo #2519 (breaks universal.c).
6533      Branch: cfgperl
6534            ! XSUB.h
6535 ____________________________________________________________________________
6536 [  2519] By: jhi                                   on 1998/12/29  11:41:10
6537         Log: From: Joshua Pritikin <joshua.pritikin@db.com>
6538              To: perl5-porters@perl.org
6539              Cc: perl-xs@perl.org
6540              Subject: XSUB.h refinement [PATCH]
6541              Date: 18 Dec 1998 03:58:44 +0200
6542              Message-ID: <MLIST_Pine.GSO.4.02.9812171733330.589-100000@eq1062.wks.na.deuba.com>
6543      Branch: cfgperl
6544            ! XSUB.h
6545 ____________________________________________________________________________
6546 [  2518] By: jhi                                   on 1998/12/29  11:36:19
6547         Log: From: abigail@fnx.com
6548              To: perl5-porters@perl.org (Perl Porters)
6549              Subject: [PATCH 5.005_02; lib/fields.pm] Typos in pod.
6550              Date: 28 Dec 1998 21:39:15 +0200
6551              Message-ID: <MLIST_19981228191612.8380.qmail@alexandra.wayne.fnx.com>
6552      Branch: cfgperl
6553            ! lib/fields.pm
6554 ____________________________________________________________________________
6555 [  2517] By: jhi                                   on 1998/12/29  11:35:03
6556         Log: Document change #2516.
6557      Branch: cfgperl
6558            ! pod/perldelta.pod
6559 ____________________________________________________________________________
6560 [  2516] By: jhi                                   on 1998/12/29  11:32:26
6561         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6562              To: perl5-porters@perl.org (Mailing list Perl5)
6563              Subject: [PATCH 5.005_53] Warn on unrecognized alpha escapes.
6564              Date: 9 Dec 1998 10:39:31 +0200
6565              Message-ID: <MLIST_199812090823.DAA17566@monk.mps.ohio-state.edu>
6566      Branch: cfgperl
6567            ! pod/perldiag.pod regcomp.c toke.c
6568 ____________________________________________________________________________
6569 [  2515] By: jhi                                   on 1998/12/29  11:27:11
6570         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6571              To: perl5-porters@perl.org (Mailing list Perl5)
6572              Subject: [PATCH 5.005_53] Bugs in hairy interactions of feature in REx
6573              Date: 8 Dec 1998 09:02:04 +0200
6574              Message-ID: <MLIST_199812080637.BAA16025@monk.mps.ohio-state.edu>
6575              
6576              \G fixes (wasn't working right with //g, s///, and $_ in (?{})).
6577      Branch: cfgperl
6578            ! pp_ctl.c pp_hot.c regexec.c regexp.h t/op/pat.t t/op/subst.t
6579 ____________________________________________________________________________
6580 [  2514] By: jhi                                   on 1998/12/29  11:21:31
6581         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6582              To: perl5-porters@perl.org (Mailing list Perl5)
6583              Subject: [PATCH 5.005_53] Regexp tests and UTF8
6584              Date: 8 Dec 1998 07:02:01 +0200
6585              Message-ID: <MLIST_199812080447.XAA05297@monk.mps.ohio-state.edu>
6586      Branch: cfgperl
6587            ! regcomp.c
6588 ____________________________________________________________________________
6589 [  2513] By: jhi                                   on 1998/12/29  11:18:34
6590         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6591              Subject: [PATCH 5.005_*] Dumpvar.pm
6592              To: perl5-porters@perl.org (Mailing list Perl5)
6593              Date: 7 Dec 1998 10:17:35 +0200
6594              Message-ID: <MLIST_199812070744.CAA18949@monk.mps.ohio-state.edu>
6595      Branch: cfgperl
6596            + lib/Dumpvalue.pm
6597            ! MANIFEST
6598 ____________________________________________________________________________
6599 [  2511] By: gbarr                                 on 1998/12/28  14:55:28
6600         Log: From: jan.dubois@ibm.net (Jan Dubois)
6601              Date: Tue, 01 Dec 1998 00:07:33 +0100
6602              Message-ID: <366921b5.14512598@smtp1.ibm.net>
6603              Subject: Re: 5.005_03-MAINT-TRIAL1, [PATCH] to compile on Win32
6604              
6605              From: jan.dubois@ibm.net (Jan Dubois)
6606              Date: Wed, 02 Dec 1998 00:24:54 +0100
6607              Message-ID: <366a77bb.19498126@smtp1.ibm.net>
6608              Subject: Re: 5.005_03-MAINT-TRIAL1, [PATCH] spaces in filenames support
6609      Branch: maint-5.005/perl
6610            ! perl.h proto.h taint.c win32/GenCAPI.pl win32/Makefile
6611            ! win32/config.bc win32/config.gc win32/config.vc
6612            ! win32/config_sh.PL win32/makedef.pl
6613 ____________________________________________________________________________
6614 [  2509] By: jhi                                   on 1998/12/28  13:00:31
6615     Log: Kickstart AUTHORS and MAINTAIN.
6616  Branch: cfgperl
6617        + AUTHORS MAINTAIN
6618        ! MANIFEST
6619 ____________________________________________________________________________
6620 [  2508] By: jhi                                   on 1998/12/28  08:04:00
6621     Log: From: Nathan Torkington <gnat@frii.com>
6622          To: perlbug@perl.com
6623          Subject: [PATCH] perlxstut.pod fix
6624          Date: Sat, 26 Dec 1998 14:28:21 +1300 (NZDT)
6625          Message-ID: <13956.15285.933914.320849@localhost.frii.com>
6626  Branch: cfgperl
6627        ! pod/perlxstut.pod
6628 ____________________________________________________________________________
6629 [  2507] By: jhi                                   on 1998/12/28  07:59:00
6630     Log: From: abigail@fnx.com
6631          To: perlbug@perl.com
6632          Subject: [PATCH 5.005_02] Re: m// doc is buggy (was Re: m'$foo' is undocumented)
6633          Date: Wed, 23 Dec 1998 22:59:59 -0500 (EST)
6634          Message-ID: <19981224035959.16994.qmail@alexandra.wayne.fnx.com>
6635          (slightly modified, a part of the patch was rejected)
6636          (strange, I thought I had already submitted this one
6637          but Perforce disagrees with me...)
6638  Branch: cfgperl
6639        ! pod/perlop.pod
6640 ____________________________________________________________________________
6641 [  2506] By: jhi                                   on 1998/12/28  07:56:59
6642     Log: From: Artur <artur@vogon-solutions.com>
6643          To: perlbug@perl.com
6644          Subject: PATCH: perlmodlib.pod
6645          Date: Fri, 25 Dec 1998 00:48:39 +0000
6646          Message-ID: <3682E0E7.EBFB5D65@vogon-solutions.com>
6647  Branch: cfgperl
6648        ! pod/perlmodlib.pod pod/perlop.pod
6649 ____________________________________________________________________________
6650 [  2505] By: jhi                                   on 1998/12/28  07:46:06
6651     Log: From: abigail@fnx.com
6652          To: perl5-porters@perl.org (Perl Porters)
6653          Subject: [PATCH 5.005_02] Typo in documentation of pod2html.
6654          Date: Wed, 23 Dec 1998 22:32:07 -0500 (EST)
6655          Message-ID: <19981224033207.16751.qmail@alexandra.wayne.fnx.com>
6656  Branch: cfgperl
6657        ! pod/pod2html.PL
6658 ____________________________________________________________________________
6659 [  2504] By: jhi                                   on 1998/12/28  07:44:35
6660     Log: From: Jim Avera <avera@fjst.com>
6661          To: perlbug@perl.com
6662          Subject: perlbug bug - shows dates reversed
6663          Date: Wed, 23 Dec 1998 18:08:56 -0800 (PST)
6664          Message-Id: <199812240208.SAA27616@membrane.ssd.hal.com>
6665  Branch: cfgperl
6666        ! utils/perlbug.PL
6667 ____________________________________________________________________________
6668 [  2503] By: jhi                                   on 1998/12/28  07:41:39
6669     Log: From: jan.dubois@ibm.net (Jan Dubois)
6670          To: makemaker@franz.ww.TU-Berlin.DE, perl5-porters@perl.org
6671          Subject: [PATCH 5.005_03m1] subdirectory Makefiles should inherit CAPI setting from command line
6672          Date: Wed, 23 Dec 1998 21:26:38 +0100
6673          Message-ID: <36895086.8849224@smtp1.ibm.net>
6674  Branch: cfgperl
6675        ! lib/ExtUtils/MakeMaker.pm
6676 ____________________________________________________________________________
6677 [  2502] By: jhi                                   on 1998/12/28  07:39:20
6678     Log: From: Blair Zajac <bzajac@geostaff.com>
6679          To: perl5-porters@perl.org
6680          Subject: Tie::SubstrHash patch
6681          Date: Wed, 23 Dec 1998 17:13:32 -0800
6682          Message-ID: <3681953C.8B6A90AA@geostaff.com>
6683  Branch: cfgperl
6684        ! lib/Tie/SubstrHash.pm
6685 ____________________________________________________________________________
6686 [  2501] By: jhi                                   on 1998/12/28  07:37:16
6687     Log: From: Alan.Harder@Ebay.Sun.COM (Alan Harder)
6688          To: perlbug@perl.com
6689          Subject: perlfaq9 minor error
6690          Date: Wed, 23 Dec 1998 14:54:19 -0800
6691          Message-Id: <199812232254.OAA05986@moshpit.EBay.Sun.COM>
6692  Branch: cfgperl
6693        ! pod/perlfaq9.pod
6694 ____________________________________________________________________________
6695 [  2500] By: jhi                                   on 1998/12/23  10:38:18
6696     Log: More porting notes about filesystems, AmigaOS, and MiNT.
6697  Branch: cfgperl
6698        ! pod/perlport.pod
6699 ____________________________________________________________________________
6700 [  2499] By: jhi                                   on 1998/12/22  09:26:49
6701     Log: Add few MSG_ and uio constants.
6702  Branch: cfgperl
6703        ! ext/Socket/Socket.pm ext/Socket/Socket.xs iperlsys.h
6704 ____________________________________________________________________________
6705 [  2498] By: jhi                                   on 1998/12/22  08:39:30
6706     Log: Slight recoding of util.c:repeatcpy() to circumnavigate
6707          a Digital C compiler optimizer bug that broke the 'x'
6708          operator under certain circumstances.  See t/op/repeat.t
6709          test #20 for graphic details.  Reported in
6710          
6711          From: Gisle Aas <gisle@aas.no>
6712          To: Mark Martinec <Mark.Martinec@nsc.ijs.si>
6713          Cc: ach@xray.mpe.mpg.de, cpan-testers@perl.org, perl5-porters@perl.org
6714          Subject: Re: Digest-MD5-2.00 test fails on DEC Alpha - a patch
6715          Date: 18 Dec 1998 14:27:40 +0100
6716          Message-ID: <m37lvpa8c3.fsf@furu.g.aas.no>
6717          
6718          and discussed further in the thread
6719          
6720          From: Jarkko Hietaniemi <jhi@iki.fi>
6721          To: Gisle Aas <gisle@aas.no>
6722          Cc: Mark Martinec <Mark.Martinec@nsc.ijs.si>, ach@xray.mpe.mpg.de,
6723          cpan-testers@perl.org, perl5-porters@perl.org
6724          Subject: x operator broken in DEC Alpha for 8-bit characters (Re: Digest-MD5-2.00 test fails on DEC Alpha - a patch)
6725          Date: Fri, 18 Dec 1998 16:18:37 +0200 (EET)
6726          Message-ID: <13946.25661.193449.138023@alpha.hut.fi>
6727  Branch: cfgperl
6728        ! t/op/repeat.t util.c
6729 ____________________________________________________________________________
6730 [  2497] By: jhi                                   on 1998/12/21  14:18:57
6731     Log: Change #2483 update.
6732  Branch: cfgperl
6733        ! t/op/tr.t
6734 ____________________________________________________________________________
6735 [  2496] By: jhi                                   on 1998/12/21  14:07:41
6736     Log: Update on change #2493.
6737  Branch: cfgperl
6738        ! t/pragma/warn/op
6739 ____________________________________________________________________________
6740 [  2495] By: jhi                                   on 1998/12/21  13:52:00
6741     Log: Change #2487 aftershock.
6742  Branch: cfgperl
6743        ! warning.pl
6744 ____________________________________________________________________________
6745 [  2494] By: jhi                                   on 1998/12/21  12:35:00
6746     Log: From: Chris Nandor <pudge@pobox.com>
6747          To: perl5-porters@perl.org
6748          Subject: [PATCH] perlport.pod v1.37
6749          Date: Sat, 19 Dec 1998 12:54:34 -0500
6750          Message-Id: <v04020a03b2a194aaa676@[192.168.0.77]>
6751  Branch: cfgperl
6752        ! pod/perlport.pod
6753 ____________________________________________________________________________
6754 [  2493] By: jhi                                   on 1998/12/21  12:22:44
6755     Log: From: Mark-Jason Dominus <mjd@plover.com>
6756          To: perl5-porters@perl.com
6757          Subject: PATCH (5.005_02): Dejargonizing
6758          Date: Sun, 20 Dec 1998 14:35:20 -0500
6759          Message-ID: <19981220193520.11230.qmail@plover.com>
6760          
6761          From: Mark-Jason Dominus <mjd@plover.com>
6762          To: perl5-porters@perl.com
6763          Subject: PATCH (5.005_02): Spelling correction in warning message
6764          Date: Sun, 20 Dec 1998 13:51:30 -0500
6765          Message-ID: <19981220185130.11067.qmail@plover.com>
6766  Branch: cfgperl
6767        ! doio.c op.c
6768 ____________________________________________________________________________
6769 [  2492] By: jhi                                   on 1998/12/21  09:00:05
6770     Log: From: "Vishal Bhatia" <vishalb@hotmail.com>
6771          To: perl5-porters@perl.org
6772          Subject: [PATCH 5.005_54] pp_next/pp_last/pp_redo problems
6773          Date: Sun, 20 Dec 1998 19:03:25 PST
6774          Message-ID: <19981221030326.27660.qmail@hotmail.com>
6775          
6776          (slightly reformatted)
6777  Branch: cfgperl
6778        ! ext/B/B/CC.pm
6779 ____________________________________________________________________________
6780 [  2491] By: nick                                  on 1998/12/20  14:21:29
6781     Log: Save _all_ GV's which have SV, AV or HV set.
6782  Branch: perl
6783        ! ext/B/B/C.pm
6784 ____________________________________________________________________________
6785 [  2490] By: jhi                                   on 1998/12/18  15:13:19
6786     Log: Add idea about generalising cpp symbol probing of Errno.
6787  Branch: cfgperl
6788        ! Todo
6789 ____________________________________________________________________________
6790 [  2489] By: jhi                                   on 1998/12/18  14:47:57
6791     Log: Address some of the issues of:
6792          
6793          From: Tom Christiansen <tchrist@jhereg.perl.com>
6794          To: perl-porters-active@jhereg.perl.com
6795          Subject: Undocumentation Issues for 5.005
6796          Date: Thu, 17 Dec 1998 14:46:24 -0700
6797          Message-Id: <199812172146.OAA05316@jhereg.perl.com>
6798  Branch: cfgperl
6799        ! pod/perl5005delta.pod
6800 ____________________________________________________________________________
6801 [  2488] By: jhi                                   on 1998/12/18  11:26:32
6802     Log: From: root <root@dubravka.in-berlin.de>
6803          To: perlbug@perl.com
6804          Cc: k@dubravka.in-berlin.de
6805          Subject: Please add no_modify to PERL_POLLUTE
6806          Date: Fri, 18 Dec 1998 10:45:52 +0100
6807          Message-Id: <199812180945.KAA05275@dubravka.in-berlin.de>
6808          
6809          (Really from Andreas König)
6810  Branch: cfgperl
6811        ! embed.pl
6812 ____________________________________________________________________________
6813 [  2487] By: jhi                                   on 1998/12/17  14:05:52
6814     Log: Some (by far not all) issues of the below message addressed.
6815          
6816          From: Tom Christiansen <tchrist@jhereg.perl.com>
6817          To: The Perl Porters Mailing List <perl5-porters@perl.org>
6818          Subject: important UNDOC issues for 5.005_54
6819          Date: Wed, 16 Dec 1998 21:14:53 -0700
6820          Message-Id: <199812170414.VAA25860@jhereg.perl.com>
6821  Branch: cfgperl
6822        ! lib/warning.pm pod/perl5005delta.pod pod/perldelta.pod
6823 ____________________________________________________________________________
6824 [  2486] By: jhi                                   on 1998/12/17  12:47:15
6825     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6826          To: domo@computer.org
6827          Cc: jhi@iki.fi, perl5-porters@perl.org
6828          Subject: Re: stuff related to malloc.c
6829          Date: Wed, 16 Dec 1998 16:40:27 -0500 (EST)
6830          Message-Id: <199812162140.QAA04925@monk.mps.ohio-state.edu>
6831  Branch: cfgperl
6832        ! malloc.c
6833 ____________________________________________________________________________
6834 [  2485] By: jhi                                   on 1998/12/17  12:17:19
6835     Log: More porting notes.
6836  Branch: cfgperl
6837        ! Porting/pumpkin.pod
6838 ____________________________________________________________________________
6839 [  2484] By: jhi                                   on 1998/12/15  08:38:05
6840     Log: Undo #2386 and #2205.
6841  Branch: cfgperl
6842        ! pod/perlfunc.pod
6843 ____________________________________________________________________________
6844 [  2483] By: jhi                                   on 1998/12/14  17:58:35
6845     Log: lib was missing from @INC.
6846  Branch: cfgperl
6847        ! t/op/tr.t
6848 ____________________________________________________________________________
6849 [  2482] By: jhi                                   on 1998/12/14  17:52:42
6850     Log: Was missing use Text::Wrap.
6851  Branch: cfgperl
6852        ! t/lib/textfill.t
6853 ____________________________________________________________________________
6854 [  2481] By: jhi                                   on 1998/12/14  16:00:22
6855     Log: nlist.h not yet Configure-probed but DynaLoader Linux-hinted.
6856          
6857          From: Jonathan Roy <roy@idle.com>
6858          To: perl5-porters@perl.org
6859          Subject: nlist.h add to Configure checks?
6860          Date: Sun, 13 Dec 1998 22:22:49 -0500
6861          Message-Id: <4.1.19981213221847.00a3e100@pop-server.tampabay.rr.com>
6862  Branch: cfgperl
6863        + ext/DynaLoader/hints/linux.pl
6864        ! MANIFEST
6865 ____________________________________________________________________________
6866 [  2480] By: jhi                                   on 1998/12/14  15:02:44
6867     Log: Give up completely using nm in AIX.
6868          
6869          From: "Kurt D. Starsinic" <kstar@chapin.edu>
6870          To: Gurusamy Sarathy <gsar@engin.umich.edu>, Jarkko Hietaniemi <jhi@iki.fi>
6871          Cc: perl5-porters@perl.org
6872          Subject: [PATCH 5.005_54] AIX 4.3.1.0 fails to locate some functions
6873          Date: Thu, 10 Dec 1998 00:51:46 -0500
6874          Message-ID: <19981210005146.B29986@O2.chapin.edu>
6875  Branch: cfgperl
6876        ! hints/aix.sh
6877 ____________________________________________________________________________
6878 [  2479] By: jhi                                   on 1998/12/14  14:39:52
6879     Log: AIX' error messages are different.
6880          
6881          From: "Kurt D. Starsinic" <kstar@chapin.edu>
6882          To: Gurusamy Sarathy <gsar@engin.umich.edu>
6883          Cc: perl5-porters@perl.org
6884          Subject: [PATCH 5.005_54] AIX 4.1.3.0 fails pragma/warning.t
6885          Date: Thu, 10 Dec 1998 00:42:36 -0500
6886          Message-ID: <19981210004236.A29986@O2.chapin.edu>
6887          
6888          From: Michael Engel <engel@nms1.cc.huji.ac.il>
6889          To: perlbug@perl.com
6890          Subject: erroes in installing perl5*53 on IBM RS6000, aix 4.1
6891          Date: Mon, 14 Dec 1998 16:15:20 +0200 (IST)
6892          Message-ID: <Pine.A41.4.05_heb2.07.9812141609500.58712-300000@nms1.cc.huji.ac.il>
6893  Branch: cfgperl
6894        ! t/pragma/warn/doio
6895 ____________________________________________________________________________
6896 [  2475] By: jhi                                   on 1998/12/13  12:35:55
6897     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
6898          To: jhi@iki.fi
6899          Cc: Carl_Adler@idx.com, perl5-porters@perl.org
6900          Subject: Re: stuff related to malloc.c
6901          Date: Sat, 12 Dec 1998 19:39:44 -0500 (EST)
6902          Message-Id: <199812130039.TAA21704@monk.mps.ohio-state.edu>
6903  Branch: cfgperl
6904        ! malloc.c
6905 ____________________________________________________________________________
6906 [  2474] By: jhi                                   on 1998/12/13  12:32:42
6907     Log: Some notes about porting issues.
6908  Branch: cfgperl
6909        ! Porting/pumpkin.pod
6910 ____________________________________________________________________________
6911 [  2473] By: jhi                                   on 1998/12/13  12:03:58
6912     Log: From: Laszlo Molnar <ml1050@freemail.c3.hu>
6913          To: Perl 5 Porters <perl5-porters@perl.org>
6914          Subject: [patch 5.005_02] dos-djgpp update
6915          Date: Sun, 13 Dec 1998 00:08:44 +0100
6916          Message-ID: <19981213000844.C264@beeblebrox>
6917  Branch: cfgperl
6918        ! djgpp/config.over
6919 ____________________________________________________________________________
6920 [  2472] By: gbarr                                 on 1998/12/12  17:12:28
6921     Log: undo changes to Exporter.pm from #2312
6922  Branch: maint-5.005/perl
6923        ! lib/Exporter.pm
6924 ____________________________________________________________________________
6925 [  2465] By: jhi                                   on 1998/12/12  12:31:21
6926     Log: Document that qw() taints.
6927          
6928          From: Christian Burger <burger@terra.mpikg-teltow.mpg.de> 
6929          To: perlbug@perl.com 
6930          Subject: taint problems
6931          Date: Sun, 1 Nov 1998 22:28:41 +0100 (MET) 
6932          Message-Id: <199811012128.WAA23381@terra.mpikg-teltow.mpg.de>
6933  Branch: cfgperl
6934        ! pod/perlop.pod
6935 ____________________________________________________________________________
6936 [  2464] By: jhi                                   on 1998/12/11  14:09:51
6937     Log: From: Horst von Brand <vonbrand@sleipnir.valparaiso.cl>
6938          To: dist-users@foretune.co.jp
6939          Subject: (dist-users 871) dist-3.0@70 generates lots of main() without type
6940          Date: Mon, 07 Dec 1998 20:13:04 -0400
6941          Message-Id: <199812072313.UAA06181@sleipnir.valparaiso.cl>
6942  Branch: cfgperl
6943        ! Configure
6944 ____________________________________________________________________________
6945 [  2463] By: jhi                                   on 1998/12/11  13:29:54
6946     Log: MAXPATHLEN.
6947  Branch: cfgperl
6948        ! perl.h
6949 ____________________________________________________________________________
6950 [  2462] By: jhi                                   on 1998/12/11  08:37:58
6951     Log: From: Mark Kettenis <kettenis@phys.uva.nl>
6952          To: perl5-porters@perl.org
6953          Subject: [PATCH]5.005_54 (CONFIG) Added support for GNU/Hurd
6954          Date: Thu, 10 Dec 1998 22:00:57 +0100 (CET)
6955          Message-Id: <199812102100.WAA00097@delius.kettenis.nl>
6956  Branch: cfgperl
6957        + hints/gnu.sh
6958 ____________________________________________________________________________
6959 [  2461] By: nick                                  on 1998/12/10  21:00:50
6960     Log: Date: Wed, 09 Dec 1998 22:16:50 PST
6961          From: Vishal Bhatia <vishalb@hotmail.com>
6962          1. Fixes the bug  reported by  Robin Barker <rmb1@cise.npl.co.uk> 
6963          2. Fixes the bug  regarding return value of c-functions generated out 
6964          of perl subs. ( Just includes the patch I sent earlier)
6965          3. Incorporates the other changes that need to be done to get CC.pm
6966          use ISA search for packages and methods on the same lines as C.pm
6967          
6968          Vishal would appreciate comments about B::Stackobj changes from 
6969          someone knowing that module well.
6970  Branch: perl
6971        ! ext/B/B/C.pm ext/B/B/CC.pm ext/B/B/Stackobj.pm
6972 ____________________________________________________________________________
6973 [  2460] By: jhi                                   on 1998/12/08  08:11:27
6974     Log: Integrate from mainperl.
6975  Branch: cfgperl
6976       !> Changes ext/B/B.pm ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm
6977       !> ext/B/B/Deparse.pm perl.h pod/perl.pod pod/perl5005delta.pod
6978       !> pod/perldiag.pod pod/perlfunc.pod pp_sys.c t/lib/io_unix.t
6979       !> toke.c util.c
6980 ____________________________________________________________________________
6981 [  2459] By: jhi                                   on 1998/12/07  07:50:11
6982     Log: From: hansm@icgroup.nl 
6983          Subject: Not OK: perl 5.00503 +MAINT_TRIAL_1 on OPENSTEP-Mach 4_1 (UNINSTALLED)
6984          Reply-To: hansmu@xs4all.nl 
6985          To: perlbug@perl.com 
6986          Date: Sun, 6 Dec 98 22:19:54 +0100 
6987          Message-Id: <9812062116.AA26445@icgned.icgroup.nl> 
6988  Branch: cfgperl
6989        ! util.c
6990 ____________________________________________________________________________
6991 [  2458] By: gsar                                  on 1998/12/07  06:00:55
6992     Log: fix dup lexical
6993  Branch: perl
6994        ! ext/B/B/Deparse.pm t/lib/io_unix.t
6995 ____________________________________________________________________________
6996 [  2457] By: gsar                                  on 1998/12/06  14:38:59
6997     Log: mention limit on line numbers reported by diagnostics
6998  Branch: perl
6999        ! pod/perl.pod toke.c
7000 ____________________________________________________________________________
7001 [  2456] By: gsar                                  on 1998/12/06  13:49:02
7002     Log: branch perldelta.pod
7003  Branch: maint-5.005/perl
7004       +> pod/perldelta.pod
7005 ____________________________________________________________________________
7006 [  2455] By: gsar                                  on 1998/12/06  13:47:21
7007     Log: clobber perldelta.pod to reestablish branch from perl5005delta.pod
7008  Branch: maint-5.005/perl
7009        - pod/perldelta.pod
7010 ____________________________________________________________________________
7011 [  2454] By: gsar                                  on 1998/12/06  13:35:31
7012     Log: fix outdated/incorrect info about arbitrary limits
7013  Branch: perl
7014        ! Changes perl.h pod/perl.pod pod/perl5005delta.pod
7015        ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c util.c
7016 ____________________________________________________________________________
7017 [  2453] By: nick                                  on 1998/12/05  16:14:42
7018     Log: Avoid hard-coding op numbers
7019          Update CC.pm to save %INC, and to co-exist with new C.pm
7020  Branch: perl
7021        ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm
7022 ____________________________________________________________________________
7023 [  2452] By: nick                                  on 1998/12/05  10:44:28
7024     Log: B.xs had its own code to calculate hash() which differed from
7025          PERL_HASH in hv.h - so all saved HV's were mangled - including %INC
7026          which meant that run-time require was re-done.
7027          Removed some debug from C.pm
7028  Branch: perl
7029        ! ext/B/B.xs ext/B/B/C.pm
7030 ____________________________________________________________________________
7031 [  2451] By: nick                                  on 1998/12/04  21:58:49
7032     Log: Snapshot of re-worked B::C which compiles Tk apps at least as
7033          well as _54, but with pre-scan for classes and save the ISA scheme.
7034  Branch: perl
7035        ! ext/B/B/C.pm
7036 ____________________________________________________________________________
7037 [  2450] By: nick                                  on 1998/12/04  17:58:44
7038     Log: Vishal Bhatia's patch as a basis.
7039  Branch: perl
7040        ! ext/B/B/C.pm ext/B/B/CC.pm
7041 ____________________________________________________________________________
7042 [  2449] By: jhi                                   on 1998/12/04  16:39:21
7043     Log: Integrate from mainperl.
7044  Branch: cfgperl
7045       !> t/op/goto.t t/op/tr.t
7046 ____________________________________________________________________________
7047 [  2448] By: gsar                                  on 1998/12/04  06:06:49
7048     Log: tweak test for UTEST
7049  Branch: perl
7050        ! t/op/tr.t
7051 ____________________________________________________________________________
7052 [  2444] By: jhi                                   on 1998/12/03  14:37:22
7053     Log: s/\bthe the\b/the/g *.pod
7054  Branch: cfgperl
7055        ! pod/perlfaq8.pod pod/perlfunc.pod pod/perlguts.pod
7056 ____________________________________________________________________________
7057 [  2443] By: jhi                                   on 1998/12/03  13:39:53
7058     Log: Change#2441 aftermath.
7059  Branch: cfgperl
7060        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7061        ! config_h.SH thread.h vms/subconfigure.com
7062 ____________________________________________________________________________
7063 [  2441] By: jhi                                   on 1998/12/03  08:15:13
7064     Log: From: Dan Sugalski <sugalskd@osshe.edu>
7065          To: perl5-porters@perl.org, vmsperl@cor.newman.upenn.edu
7066          Subject: [PATCH 5.005_54]Initial VMS patches
7067          Date: 3 Dec 1998 01:05:55 +0200
7068          Message-ID: <MLIST_3.0.6.32.19981202141057.0339a7f0@ous.edu>
7069          
7070          The patch to config_h.SH requires more study because
7071          metaconfig needs to agree.
7072  Branch: cfgperl
7073        ! config_h.SH configure.com global.sym lib/ExtUtils/MM_VMS.pm
7074        ! t/lib/textfill.t t/pragma/warning.t vms/descrip_mms.template
7075        ! vms/gen_shrfls.pl vms/subconfigure.com vms/vmsish.h
7076 ____________________________________________________________________________
7077 [  2440] By: gsar                                  on 1998/12/03  01:32:16
7078     Log: add failed check-in of goto.t from change#1867
7079  Branch: perl
7080        ! t/op/goto.t
7081 ____________________________________________________________________________
7082 [  2437] By: jhi                                   on 1998/12/02  18:03:51
7083     Log: Fix most of the bad L<> links of
7084          
7085          From: Tom Christiansen <tchrist@jhereg.perl.com> 
7086          Subject: bad L<> links
7087          Reply-to: tchrist@perl.com 
7088          To: perlbug@jhereg.perl.com 
7089          Date: Tue, 11 Aug 1998 10:58:07 -0500 
7090          Message-Id: <199808111658.KAA00484@jhereg.perl.com> 
7091          
7092          The ones not fixed may require darker Pod::HTML magic,
7093          for example the perlguts.html#tags should work fine, IMHO.
7094  Branch: cfgperl
7095        ! pod/perl5005delta.pod pod/perlcall.pod pod/perldata.pod
7096        ! pod/perldiag.pod pod/perlfaq5.pod pod/perlfaq7.pod
7097        ! pod/perlfunc.pod pod/perlguts.pod pod/perllocale.pod
7098        ! pod/perlobj.pod pod/perlport.pod pod/perlsub.pod
7099        ! pod/perlvar.pod
7100 ____________________________________________________________________________
7101 [  2436] By: jhi                                   on 1998/12/02  16:35:04
7102     Log: One paste too many in #2345.
7103  Branch: cfgperl
7104        ! lib/Pod/Html.pm
7105 ____________________________________________________________________________
7106 [  2435] By: jhi                                   on 1998/12/02  16:32:33
7107     Log: Pod::Html and Pod::Text were not locale-savvy:
7108          for example in =head1 all non-ASCII-\w-runs were
7109          turned into underscores in NAME tags.  This could
7110          result in several NAME tags becoming identical.
7111          Reported by:
7112          
7113          From: Fyodor Krasnov <fyodor@aha.ru> 
7114          Subject: pod2html vs Russian Characters
7115          To: Tom.Christiansen@snn.aha.ru, tchrist@perl.com 
7116          Date: Tue, 24 Nov 1998 19:00:36 +0300 (MSK) 
7117          Message-Id: <199811241600.TAA05149@stat.aha.ru> 
7118  Branch: cfgperl
7119        ! lib/Pod/Html.pm lib/Pod/Text.pm
7120 ____________________________________________________________________________
7121 [  2434] By: jhi                                   on 1998/12/02  10:29:00
7122     Log: The real Mc5_54 integration.
7123  Branch: cfgperl
7124       !> Changes MANIFEST pod/perlhist.pod pp_hot.c
7125 ____________________________________________________________________________
7126 [  2433] By: jhi                                   on 1998/12/02  08:52:13
7127     Log: From: Andy Dougherty <doughera@lafayette.edu>
7128          To: Perl Porters <perl5-porters@perl.org>
7129          Subject: [PATCH 5.005_xx] Missing redirection of simple test program
7130          Date: Tue, 1 Dec 1998 13:40:12 -0500 (EST)
7131          Message-Id: <Pine.SUN.3.96.981201133546.4288K-100000@newton.phys>
7132  Branch: cfgperl
7133        ! Configure
7134 ____________________________________________________________________________
7135 [  2432] By: jhi                                   on 1998/12/02  08:49:47
7136     Log: From: Andy Dougherty <doughera@lafayette.edu>
7137          To: Perl Porters <perl5-porters@perl.org>
7138          Subject: [PATCH 5.005_xx] erroneous 'none' in lddlflags
7139          Date: Tue, 1 Dec 1998 12:50:27 -0500 (EST)
7140          Message-Id: <Pine.SUN.3.96.981201124929.4288H-100000@newton.phys>
7141  Branch: cfgperl
7142        ! Configure
7143 ____________________________________________________________________________
7144 [  2431] By: jhi                                   on 1998/12/01  16:11:50
7145     Log: From: achampio@lehman.com (Alan Champion)
7146          Subject: Not OK: perl 5.00503 +MAINT_TRIAL_1 on sun4-solaris 2.3 (UNINSTALLED)
7147          To: perlbug@perl.com
7148          Date: 1 Dec 1998 17:36:33 +0200
7149          Message-ID: <MLIST_9812011518.AA00005@lonhpov1.lehman.com>
7150          
7151          Skip NIS includes.
7152  Branch: cfgperl
7153        ! t/op/pwent.t
7154 ____________________________________________________________________________
7155 [  2430] By: gsar                                  on 1998/12/01  12:12:50
7156     Log: 5.005_54, as released
7157  Branch: perl
7158        ! Changes MANIFEST pod/perlhist.pod pp_hot.c
7159 ____________________________________________________________________________
7160 [  2429] By: jhi                                   on 1998/12/01  11:28:39
7161     Log: From: Anton Berezin <tobez@plab.ku.dk>
7162          To: perl5-porters@perl.org
7163          Subject: [PATCH 5.005_54] Configure - hints/freebsd.sh signal handler type
7164          Date: 30 Nov 1998 19:46:24 +0100
7165          Message-ID: <864srhhvcv.fsf@lion.plab.ku.dk>
7166  Branch: cfgperl
7167        ! hints/freebsd.sh
7168 ____________________________________________________________________________
7169 [  2428] By: jhi                                   on 1998/12/01  11:08:16
7170     Log: Integrate from _54 mainperl modulo the NetBSD ifdef in util.c.
7171  Branch: cfgperl
7172       +> (branch 30 files)
7173       !> (integrate 71 files)
7174 ____________________________________________________________________________
7175 [  2427] By: jhi                                   on 1998/12/01  10:51:37
7176     Log: Default to accepting a hinted $randfunc even when $csym
7177          does not find it.  (the previous defaylt behaviour was not
7178          to accept).
7179  Branch: cfgperl
7180        ! Configure
7181 ____________________________________________________________________________
7182 [  2426] By: jhi                                   on 1998/12/01  10:13:03
7183     Log: Separated the [:foo:] parsing to its own function.
7184          Passes all tests.
7185  Branch: cfgperl
7186        ! regcomp.c
7187 ____________________________________________________________________________
7188 [  2425] By: jhi                                   on 1998/12/01  08:22:49
7189     Log: Typo in comments.
7190  Branch: cfgperl
7191        ! regexec.c
7192 ____________________________________________________________________________
7193 [  2424] By: jhi                                   on 1998/12/01  08:21:38
7194     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7195          Subject: [PATCH 5.005_*] Debugger 'v' command
7196          To: perl5-porters@perl.org (Mailing list Perl5)
7197          Date: 1 Dec 1998 07:55:11 +0200
7198          Message-ID: <MLIST_199812010534.AAA21371@monk.mps.ohio-state.edu>
7199  Branch: cfgperl
7200        ! lib/perl5db.pl
7201 ____________________________________________________________________________
7202 [  2423] By: jhi                                   on 1998/12/01  08:19:08
7203     Log: From: pvhp@forte.com (Peter Prymmer)
7204          Subject: [PATCH 5.005_03t1 && 5.005_54]dll linkage side decks for OS/390
7205          To: perl5-porters@perl.org
7206          Date: 1 Dec 1998 07:27:11 +0200
7207          Message-ID: <MLIST_9812010508.AA07791@forte.com>
7208  Branch: cfgperl
7209        ! hints/os390.sh
7210 ____________________________________________________________________________
7211 [  2417] By: jhi                                   on 1998/11/30  08:14:00
7212     Log: s/SCM_CREDENTIALSS/SCM_CREDENTIAL/
7213  Branch: cfgperl
7214        ! ext/Socket/Socket.xs
7215 ____________________________________________________________________________
7216 [  2416] By: jhi                                   on 1998/11/30  08:00:15
7217     Log: Undo #2395, seems more like a problem in netbsd-current.
7218  Branch: cfgperl
7219        ! util.c
7220
7221 ----------------
7222 Version 5.005_54
7223 ----------------
7224
7225 ____________________________________________________________________________
7226 [  2414] By: gsar                                  on 1998/11/30  02:23:55
7227     Log: more JPL tweaks
7228  Branch: perl
7229        - jpl/JNI/MANIFEST jpl/PerlInterpreter/Makefile
7230        ! Changes MANIFEST jpl/JNI/JNI.pm jpl/README
7231 ____________________________________________________________________________
7232 [  2413] By: gsar                                  on 1998/11/30  01:35:56
7233     Log: stub bin/jpl that just runs JPL::Compile::files()
7234  Branch: perl
7235        + jpl/bin/jpl
7236 ____________________________________________________________________________
7237 [  2412] By: gsar                                  on 1998/11/30  01:32:14
7238     Log: delete symlink
7239  Branch: perl
7240        - jpl/bin/jpl
7241 ____________________________________________________________________________
7242 [  2410] By: gsar                                  on 1998/11/30  01:30:44
7243     Log: branch jpl from perlext to perl
7244  Branch: perl
7245       +> (branch 30 files)
7246 ____________________________________________________________________________
7247 [  2407] By: gsar                                  on 1998/11/30  01:24:53
7248     Log: JPL tweaks to build with 5.005
7249  Branch: perlext
7250        ! jpl/JNI/JNI.xs jpl/JNI/typemap jpl/JPL/Compile.pm
7251        ! jpl/PerlInterpreter/PerlInterpreter.c jpl/README
7252 ____________________________________________________________________________
7253 [  2406] By: gsar                                  on 1998/11/30  00:55:54
7254     Log: integrate changes#2273,2274,2288,2291 from maint-5.004
7255  Branch: perl
7256        ! Porting/patchls doio.c lib/Sys/Syslog.pm t/op/die_exit.t
7257 ____________________________________________________________________________
7258 [  2405] By: gsar                                  on 1998/11/30  00:28:55
7259     Log: patchlevel up to 54
7260  Branch: perl
7261        ! patchlevel.h win32/Makefile win32/config_H.bc
7262        ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
7263 ____________________________________________________________________________
7264 [  2403] By: gsar                                  on 1998/11/29  23:35:50
7265     Log: integrate cfgperl changes into mainline
7266  Branch: perl
7267       !> Configure Porting/Glossary Porting/config.sh Porting/config_H
7268       !> config_h.SH pod/perlfunc.pod t/op/grent.t t/op/pwent.t util.c
7269 ____________________________________________________________________________
7270 [  2402] By: gsar                                  on 1998/11/29  23:08:42
7271     Log: sync Text::Wrap version number
7272  Branch: perl
7273        ! lib/Text/Wrap.pm
7274 ____________________________________________________________________________
7275 [  2401] By: gsar                                  on 1998/11/29  22:56:21
7276     Log: textfill.t tweak
7277  Branch: perl
7278        ! t/lib/textfill.t
7279 ____________________________________________________________________________
7280 [  2400] By: gsar                                  on 1998/11/29  22:50:41
7281     Log: update to Text::Wrap 98.112901 from David Muir Sharnoff
7282          <muir@idiom.com>
7283  Branch: perl
7284        + t/lib/textfill.t
7285        ! MANIFEST lib/Text/Wrap.pm
7286 ____________________________________________________________________________
7287 [  2399] By: gsar                                  on 1998/11/29  22:28:05
7288     Log: updated to Text::Wrap 98.112801 from CPAN; one published change
7289          has happened without the authors knowledge or consent; the subversive
7290          version (which is in 5.00502) breaks one of the tests in the
7291          authors testsuite; attempts are being made to find a fix that
7292          avoids breaking code already running with the 5.005_02 version
7293          From:    David Muir Sharnoff <muir@idiom.com>
7294          Date:    Sat, 28 Nov 1998 04:34:17 PST
7295          Message-Id: <199811281234.EAA03082@idiom.com>
7296          Subject: Updated Text::Wrap, Time::ParseDate, File::Flock
7297  Branch: perl
7298        ! lib/Text/Wrap.pm t/lib/textwrap.t
7299 ____________________________________________________________________________
7300 [  2397] By: nick                                  on 1998/11/29  20:13:58
7301     Log: Update docs and English.pm for $^C
7302  Branch: perl
7303        ! lib/English.pm pod/perlvar.pod
7304 ____________________________________________________________________________
7305 [  2396] By: jhi                                   on 1998/11/29  20:13:03
7306     Log: Mirror #2384.
7307  Branch: cfgperl
7308        ! t/op/pwent.t
7309 ____________________________________________________________________________
7310 [  2395] By: jhi                                   on 1998/11/29  19:59:12
7311     Log: Newer NetBSDs don't have NSIG in <sys/signal.h>, they need <signal.h>.
7312  Branch: cfgperl
7313        ! util.c
7314 ____________________________________________________________________________
7315 [  2394] By: gsar                                  on 1998/11/29  19:49:08
7316     Log: updated perlreftut.pod
7317  Branch: perl
7318        ! pod/perlreftut.pod
7319 ____________________________________________________________________________
7320 [  2393] By: gsar                                  on 1998/11/29  19:31:56
7321     Log: misc tweaks
7322  Branch: perl
7323        ! ext/IO/Makefile.PL lib/Test.pm t/lib/io_poll.t t/op/sort.t
7324 ____________________________________________________________________________
7325 [  2392] By: gsar                                  on 1998/11/29  19:31:18
7326     Log: notes about -DPERL_POLLUTE
7327  Branch: perl
7328        ! INSTALL pod/perldelta.pod win32/Makefile win32/makefile.mk
7329 ____________________________________________________________________________
7330 [  2391] By: gsar                                  on 1998/11/29  19:13:52
7331     Log: explain various win32 build caveats more clearly
7332  Branch: perl
7333        ! README.win32 win32/Makefile win32/makefile.mk
7334 ____________________________________________________________________________
7335 [  2390] By: gsar                                  on 1998/11/29  16:51:59
7336     Log: remove I_POLL detection (Configure will do that now)
7337  Branch: perl
7338        ! ext/IO/Makefile.PL
7339 ____________________________________________________________________________
7340 [  2389] By: jhi                                   on 1998/11/29  16:39:16
7341     Log: Add I_POLL for IO 1.20.
7342  Branch: cfgperl
7343        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7344        ! config_h.SH
7345 ____________________________________________________________________________
7346 [  2388] By: gsar                                  on 1998/11/29  16:23:30
7347     Log: add p4desc (augments 'p4 describe' output with diffs for new files)
7348  Branch: perl
7349        + Porting/p4desc
7350        ! MANIFEST
7351 ____________________________________________________________________________
7352 [  2387] By: gsar                                  on 1998/11/29  16:08:03
7353     Log: another threads reliability fix: serialize writes to thr->threadsv
7354          avoid most uses of PL_na (which is much more inefficient than a
7355          simple local); update docs to suit; PL_na now being thr->Tna may
7356          be a minor compatibility issue for extensions--will require dTHR
7357          outside of XSUBs (those get automatic dTHR)
7358  Branch: perl
7359        ! XSUB.h djgpp/djgpp.c doio.c doop.c dump.c ext/B/B.xs
7360        ! ext/DB_File/DB_File.xs ext/DynaLoader/dl_next.xs
7361        ! ext/Opcode/Opcode.xs ext/POSIX/POSIX.xs ext/Thread/Thread.xs
7362        ! ext/attrs/attrs.xs gv.c malloc.c mg.c op.c
7363        ! os2/OS2/REXX/REXX.xs os2/os2.c perl.c perly.c perly.y
7364        ! pod/perlcall.pod pod/perlembed.pod pod/perlguts.pod
7365        ! pod/perlxs.pod pp.c pp.h pp_ctl.c pp_hot.c pp_sys.c run.c sv.c
7366        ! t/op/pwent.t taint.c toke.c universal.c vmesa/vmesa.c
7367        ! vms/ext/Stdio/Stdio.xs vms/perly_c.vms vms/vms.c win32/win32.c
7368 ____________________________________________________________________________
7369 [  2386] By: jhi                                   on 1998/11/29  15:40:42
7370     Log: Tune the "if" entry.
7371  Branch: cfgperl
7372        ! pod/perlfunc.pod
7373 ____________________________________________________________________________
7374 [  2385] By: gsar                                  on 1998/11/29  12:40:28
7375     Log: various fixes for race conditions under threads: mutex locks based
7376          on PL_threadnum were seriously flawed, since it means more than one
7377          thread could enter the critical region; PL_na was global instead of
7378          thread-local; child thread could finish and free thr structures
7379          before Thread->new() got around to creating the Thread object;
7380          cv_clone() needed locking, as it mucks with PL_comppad and other
7381          global data; new_struct_thread() needed to lock template-thread's
7382          mutex while copying its data
7383  Branch: perl
7384        ! embedvar.h ext/Thread/Thread.xs gv.c op.c perl.c perlvars.h
7385        ! pp_hot.c thrdvar.h thread.h util.c win32/win32thread.c
7386 ____________________________________________________________________________
7387 [  2384] By: gsar                                  on 1998/11/29  10:54:38
7388     Log: s/warn/print/ on multiply defined groups
7389  Branch: perl
7390        ! t/op/grent.t
7391 ____________________________________________________________________________
7392 [  2383] By: gsar                                  on 1998/11/29  10:48:39
7393     Log: backout change#2334
7394  Branch: perl
7395        ! pod/perlfunc.pod pp_hot.c sv.c thrdvar.h
7396 ____________________________________________________________________________
7397 [  2382] By: jhi                                   on 1998/11/29  10:33:40
7398     Log: Better NetInfo behaviour.
7399  Branch: cfgperl
7400        ! t/op/grent.t t/op/pwent.t
7401 ____________________________________________________________________________
7402 [  2381] By: jhi                                   on 1998/11/29  10:08:15
7403     Log: Integrate from mainperl.
7404  Branch: cfgperl
7405       +> ext/IO/ChangeLog ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/Poll.pm
7406       +> ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
7407       +> ext/IO/poll.c ext/IO/poll.h pod/perlreftut.pod
7408       +> t/lib/io_const.t t/lib/io_dir.t t/lib/io_multihomed.t
7409       +> t/lib/io_poll.t t/lib/io_unix.t
7410       !> (integrate 58 files)
7411 ____________________________________________________________________________
7412 [  2380] By: gsar                                  on 1998/11/29  08:22:49
7413     Log: prefer IO::Handle for IO if FileHandle:: is empty (as suggested by
7414          Tim Bunce)
7415  Branch: perl
7416        ! gv.c
7417 ____________________________________________________________________________
7418 [  2379] By: gsar                                  on 1998/11/29  07:06:43
7419     Log: fix for pat.t failure under USE_THREADS
7420  Branch: perl
7421        ! pp_ctl.c regexec.c
7422 ____________________________________________________________________________
7423 [  2378] By: nick                                  on 1998/11/28  22:46:57
7424     Log: More C.pm tweaks
7425          Save globs even if we have saved cv itself before - may be imported.
7426          
7427          While we don't save "bootstrap" CV we need to provide a stub,
7428          so that if we require it later we don't fall through and attempt
7429          to DynaLoad module again.
7430          
7431          Attempt to save %INC so that "require" does not reload things
7432          we have compiled-in (does not work right yet - seems to be due
7433          to PL_incgv being created in perl_parse() current scheme setting 
7434          GvHV() is "better" than saving the glob, but still does not 
7435          work as I expect). 
7436  Branch: perl
7437        ! ext/B/B/C.pm
7438 ____________________________________________________________________________
7439 [  2377] By: gsar                                  on 1998/11/28  22:30:38
7440     Log: various tweaks; result passes all tests for normal build on Solaris;
7441          fails two pat.t tests under USE_THREADS; io_poll.t test#3 fails on
7442          win32 due to lack of select() that works on non-socket fds
7443  Branch: perl
7444        ! ext/IO/poll.c regcomp.c regexec.c scope.c
7445        ! t/lib/io_multihomed.t win32/makefile.mk
7446 ____________________________________________________________________________
7447 [  2376] By: gsar                                  on 1998/11/28  20:44:39
7448     Log: add $config_args to perl -V display (suggested by Ilya Zakharevich)
7449  Branch: perl
7450        ! myconfig
7451 ____________________________________________________________________________
7452 [  2375] By: gsar                                  on 1998/11/28  20:42:58
7453     Log: integrate cfgperl changes into mainline
7454  Branch: perl
7455       !> Configure ext/POSIX/hints/dynixptx.pl myconfig t/op/grent.t
7456       !> t/op/pwent.t t/op/undef.t t/pragma/locale.t util.c
7457 ____________________________________________________________________________
7458 [  2374] By: gsar                                  on 1998/11/28  20:02:03
7459     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7460          Date: Thu, 5 Nov 1998 02:21:12 -0500 (EST)
7461          Message-Id: <199811050721.CAA27998@monk.mps.ohio-state.edu>
7462          Subject: [PATCH 5.00553] Yet another OS/2 patch
7463  Branch: perl
7464        ! os2/Changes os2/Makefile.SHs os2/os2.c t/pragma/warn/op
7465 ____________________________________________________________________________
7466 [  2373] By: gsar                                  on 1998/11/28  19:30:06
7467     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7468          Date: Sat, 28 Nov 1998 01:51:56 -0500 (EST)
7469          Message-Id: <199811280651.BAA18095@monk.mps.ohio-state.edu>
7470          Subject: [PATCH 5.005_53] Change $#+
7471  Branch: perl
7472        ! mg.c pod/perlvar.pod t/op/pat.t
7473 ____________________________________________________________________________
7474 [  2372] By: gsar                                  on 1998/11/28  19:28:00
7475     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7476          Date: Sat, 28 Nov 1998 00:33:17 -0500 (EST)
7477          Message-Id: <199811280533.AAA25654@monk.mps.ohio-state.edu>
7478          Subject: [PATCH 5.005_53] Finishing off SNOBOL: $1 in (?{})
7479  Branch: perl
7480        ! embedvar.h mg.c objXSUB.h perl.c regexec.c t/op/pat.t
7481        ! thrdvar.h
7482 ____________________________________________________________________________
7483 [  2371] By: gsar                                  on 1998/11/28  19:23:53
7484     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7485          Date: Fri, 27 Nov 1998 16:16:48 -0500 (EST)
7486          Message-Id: <199811272116.QAA03502@monk.mps.ohio-state.edu>
7487          Subject: [PATCH 5.005_53] better -Mre=debugcolor
7488  Branch: perl
7489        ! embedvar.h objXSUB.h regexec.c thrdvar.h
7490 ____________________________________________________________________________
7491 [  2370] By: gsar                                  on 1998/11/28  19:21:17
7492     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7493          Date: Fri, 27 Nov 1998 15:22:19 -0500 (EST)
7494          Message-Id: <199811272022.PAA17874@monk.mps.ohio-state.edu>
7495          Subject: [PATCH 5.005_*] regcolors
7496  Branch: perl
7497        ! embed.h global.sym objXSUB.h proto.h regcomp.c regexec.c
7498 ____________________________________________________________________________
7499 [  2369] By: gsar                                  on 1998/11/28  19:00:15
7500     Log: allow final period in a file (not followed by a newline) to
7501          terminate format spec
7502  Branch: perl
7503        ! toke.c
7504 ____________________________________________________________________________
7505 [  2368] By: gsar                                  on 1998/11/28  18:58:25
7506     Log: Liblist tweak suggested by Swen Thuemmler <Swen.Thuemmler@paderlinx.de>;
7507          add C<$Config{installarchlib}/CORE> to the default locations searched
7508          on win32
7509  Branch: perl
7510        ! lib/ExtUtils/Liblist.pm
7511 ____________________________________________________________________________
7512 [  2367] By: gsar                                  on 1998/11/28  18:46:05
7513     Log: applied suggested patch with PERL_OBJECT tweaks
7514          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7515          Date: Thu, 26 Nov 1998 02:46:20 -0500 (EST)
7516          Message-Id: <199811260746.CAA23164@monk.mps.ohio-state.edu>
7517          Subject: [PATCH 5.005_53] Enable $_ and pos() inside (?{ CODE }) in RExen
7518  Branch: perl
7519        ! embed.h embed.pl embedvar.h objXSUB.h pp_ctl.c proto.h
7520        ! regexec.c t/op/pat.t thrdvar.h
7521 ____________________________________________________________________________
7522 [  2366] By: gsar                                  on 1998/11/28  18:38:34
7523     Log: additional documentation for qr//
7524          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7525          Message-Id: <199811260751.CAA24560@monk.mps.ohio-state.edu>
7526          Date: Thu, 26 Nov 1998 02:51:09 -0500 (EST)
7527          Subject: [PATCH 5.005_*] Documentation (fwd)
7528  Branch: perl
7529        ! pod/perlfunc.pod pod/perlop.pod pod/perlpod.pod
7530 ____________________________________________________________________________
7531 [  2365] By: gsar                                  on 1998/11/28  18:35:35
7532     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7533          Date: Wed, 25 Nov 1998 23:33:45 -0500 (EST)
7534          Message-Id: <199811260433.XAA29281@monk.mps.ohio-state.edu>
7535          Subject: [PATCH 5.005_*] Fix \G in REx without //g
7536  Branch: perl
7537        ! cop.h embedvar.h objXSUB.h pp.c pp_ctl.c pp_hot.c regexec.c
7538        ! regexp.h t/op/pat.t thrdvar.h
7539 ____________________________________________________________________________
7540 [  2364] By: gsar                                  on 1998/11/28  18:24:20
7541     Log: update Test.pm to Test-1.12; tweak 're' detection
7542  Branch: perl
7543        ! lib/Test.pm
7544 ____________________________________________________________________________
7545 [  2363] By: gsar                                  on 1998/11/28  18:12:04
7546     Log: avoid command-line quoting portability problems in lex_assign.t
7547  Branch: perl
7548        ! t/op/lex_assign.t
7549 ____________________________________________________________________________
7550 [  2362] By: gsar                                  on 1998/11/28  18:08:50
7551     Log: From: John Tobey <jtobey@channel1.com>
7552          Date: Thu, 19 Nov 1998 14:14:15 -0500 (EST)
7553          Message-Id: <m0zgZWx-000FOgC@feynman.localnet>
7554          Subject: PATCH: document English.pm sawampersand and thread issues
7555  Branch: perl
7556        ! lib/English.pm pod/perlvar.pod
7557 ____________________________________________________________________________
7558 [  2361] By: gsar                                  on 1998/11/28  18:03:04
7559     Log: fix uninitialized warnings
7560          From: Brian Callaghan <callagh@itginc.com>
7561          Date: Thu, 19 Nov 1998 17:49:10 -0800
7562          Message-Id: <3654CA96.B64FCAEB@itginc.com>
7563          Subject: Complete.pm patch (version 1.1)
7564  Branch: perl
7565        ! lib/Term/Complete.pm
7566 ____________________________________________________________________________
7567 [  2360] By: gsar                                  on 1998/11/28  17:59:16
7568     Log: s/Array/List/ suggested by John Tobey
7569  Branch: perl
7570        ! pod/perldata.pod
7571 ____________________________________________________________________________
7572 [  2359] By: gsar                                  on 1998/11/28  17:47:48
7573     Log: update tie() entry in perlfunc to reflect TIEARRAY and TIEHANDLE
7574  Branch: perl
7575        ! lib/Tie/Handle.pm pod/perlfunc.pod
7576 ____________________________________________________________________________
7577 [  2358] By: jhi                                   on 1998/11/28  17:23:15
7578     Log: Revamp the locale tests.
7579          (0) Instead of rewiring a few locales scan for them.
7580          (1) Bogus test #101 removed.
7581          (2) All the locales are checked, the lists of failed
7582          and non-failed ones are displayed.
7583          (3) The test #103 is again 'active' so that it may fail.
7584          (4) To balance (3) a hopefully pacifying message is shown
7585          if the #103 fails.
7586  Branch: cfgperl
7587        ! t/pragma/locale.t
7588 ____________________________________________________________________________
7589 [  2357] By: gsar                                  on 1998/11/28  17:21:07
7590     Log: add perlreftut.pod
7591  Branch: perl
7592        + pod/perlreftut.pod
7593        ! MANIFEST pod/Makefile pod/buildtoc pod/perl.pod
7594        ! pod/perlref.pod pod/roffitall vms/descrip_mms.template
7595        ! win32/pod.mak
7596 ____________________________________________________________________________
7597 [  2356] By: jhi                                   on 1998/11/28  16:58:01
7598     Log: Change #2346 fallout.
7599  Branch: cfgperl
7600        ! t/op/undef.t
7601 ____________________________________________________________________________
7602 [  2355] By: gsar                                  on 1998/11/28  16:46:43
7603     Log: IO.xs tweaks; avoid coredump in io_xs.t; remove newCONSTSUB();
7604          ANSI prototypes
7605  Branch: perl
7606        ! ext/IO/IO.xs
7607 ____________________________________________________________________________
7608 [  2354] By: gsar                                  on 1998/11/28  16:08:07
7609     Log: add IO-1.20; mess with t/lib/io_*.t in an attempt to
7610          keep platform hacks that aren't in the 1.20 dist; add new files
7611          to MANIFEST; hack Makefile.PL; result hasn't been tested
7612          anywhere
7613  Branch: perl
7614        + ext/IO/ChangeLog ext/IO/lib/IO/Dir.pm ext/IO/lib/IO/Poll.pm
7615        + ext/IO/lib/IO/Socket/INET.pm ext/IO/lib/IO/Socket/UNIX.pm
7616        + ext/IO/poll.c ext/IO/poll.h t/lib/io_const.t t/lib/io_dir.t
7617        + t/lib/io_multihomed.t t/lib/io_poll.t t/lib/io_unix.t
7618        ! MANIFEST ext/IO/IO.pm ext/IO/IO.xs ext/IO/Makefile.PL
7619        ! ext/IO/README ext/IO/lib/IO/File.pm ext/IO/lib/IO/Handle.pm
7620        ! ext/IO/lib/IO/Pipe.pm ext/IO/lib/IO/Seekable.pm
7621        ! ext/IO/lib/IO/Select.pm ext/IO/lib/IO/Socket.pm
7622        ! t/lib/io_sock.t t/lib/io_udp.t
7623 ____________________________________________________________________________
7624 [  2353] By: jhi                                   on 1998/11/28  15:51:03
7625     Log: Locale collation, ctype, and numeric, were initialized wrong
7626          (if LC_ALL or LANG were unset, so were the collation/ctype/numeric),
7627          as reported by
7628          
7629          From: Ilya.Sandler@etak.com (Ilya Sandler)
7630          Subject: a bug in locale handling: LC_COLLATE ignored sometimes
7631          To: perlbug@perl.com
7632          Date: 25 Nov 1998 04:53:52 +0200
7633          Message-ID: <MLIST_199811250226.SAA12590@axi001.etak.sw>
7634  Branch: cfgperl
7635        ! util.c
7636 ____________________________________________________________________________
7637 [  2352] By: nick                                  on 1998/11/28  15:21:59
7638     Log: Implement $^C to allow perl access to -c flag - I think this 
7639          was agreed once...
7640  Branch: perl
7641        ! gv.c mg.c
7642 ____________________________________________________________________________
7643 [  2351] By: jhi                                   on 1998/11/28  15:14:24
7644     Log: Change #2251 fixup.
7645  Branch: cfgperl
7646        ! myconfig
7647 ____________________________________________________________________________
7648 [  2350] By: jhi                                   on 1998/11/28  14:58:19
7649     Log: Integrate from mainperl.
7650  Branch: cfgperl
7651       +> ext/Devel/Peek/Changes ext/Devel/Peek/Makefile.PL
7652       +> ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
7653       +> pod/perl5005delta.pod
7654       !> (integrate 49 files)
7655 ____________________________________________________________________________
7656 [  2349] By: jhi                                   on 1998/11/28  14:27:36
7657     Log: Passwd and group file groveling.
7658  Branch: cfgperl
7659        ! t/op/grent.t t/op/pwent.t
7660 ____________________________________________________________________________
7661 [  2348] By: gsar                                  on 1998/11/28  14:09:50
7662     Log: more conservative version of changes#2345,2346,2347; those break
7663          C<defined(@{"foo::ISA"})> which seems to be extensively used in
7664          the libs :-(
7665  Branch: perl
7666        ! pp.c t/op/method.t
7667 ____________________________________________________________________________
7668 [  2347] By: gsar                                  on 1998/11/28  13:36:08
7669     Log: tweak bogus test
7670  Branch: perl
7671        ! t/op/method.t
7672 ____________________________________________________________________________
7673 [  2346] By: gsar                                  on 1998/11/28  13:20:34
7674     Log: test cases for previous change
7675  Branch: perl
7676        ! t/op/undef.t
7677 ____________________________________________________________________________
7678 [  2345] By: gsar                                  on 1998/11/28  13:07:17
7679     Log: fix typo in pp_defined() causing C<defined %tied> to fail
7680  Branch: perl
7681        ! pp.c
7682 ____________________________________________________________________________
7683 [  2344] By: gsar                                  on 1998/11/28  13:03:29
7684     Log: s/comment/comment_t/ tweak (suggested by John Gorman
7685          <jgorman@webbysoft.com>)
7686  Branch: perl
7687        ! ext/B/B/Assembler.pm ext/B/B/Disassembler.pm
7688 ____________________________________________________________________________
7689 [  2343] By: gsar                                  on 1998/11/28  12:52:40
7690     Log: add (stub) perldelta.pod
7691  Branch: perl
7692        + pod/perldelta.pod
7693 ____________________________________________________________________________
7694 [  2342] By: gsar                                  on 1998/11/28  12:49:26
7695     Log: rename perldelta.pod to perl5005delta.pod in preparation for
7696          starting a new one
7697  Branch: perl
7698       +> pod/perl5005delta.pod
7699        - pod/perldelta.pod
7700        ! MANIFEST pod/perl.pod
7701 ____________________________________________________________________________
7702 [  2341] By: gsar                                  on 1998/11/28  12:41:55
7703     Log: fix MALLOC_LOCK #define
7704  Branch: perl
7705        ! malloc.c
7706 ____________________________________________________________________________
7707 [  2340] By: gsar                                  on 1998/11/28  12:18:23
7708     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7709          Date: Sun, 15 Nov 1998 20:25:50 -0500 (EST)
7710          Message-Id: <199811160125.UAA05268@monk.mps.ohio-state.edu>
7711          Subject: [PATCH 5.005_53] OS/2 events get closer to Perl
7712  Branch: perl
7713        ! os2/Changes os2/os2.c os2/os2.sym os2/os2ish.h
7714 ____________________________________________________________________________
7715 [  2339] By: jhi                                   on 1998/11/28  11:59:01
7716     Log: Add -lm to dynix/ptx POSIX hints.
7717          From: "Martin J. Bligh" <mbligh@sequent.com>
7718          To: jhi@iki.fi
7719          Subject: Re: Making Perl work on DYNIX/ptx
7720          Date: Wed, 25 Nov 1998 10:34:41 -0800
7721          Message-ID: <1457015007.911990081@w-186d219.rhe.sequent.com>
7722  Branch: cfgperl
7723        ! ext/POSIX/hints/dynixptx.pl
7724 ____________________________________________________________________________
7725 [  2338] By: jhi                                   on 1998/11/28  11:57:19
7726     Log: Detypo.
7727  Branch: cfgperl
7728        ! lib/filetest.pm
7729 ____________________________________________________________________________
7730 [  2337] By: jhi                                   on 1998/11/28  11:56:29
7731     Log: Better LD_LIBRARY_PATH instructions for Bourneists.
7732  Branch: cfgperl
7733        ! Configure
7734 ____________________________________________________________________________
7735 [  2336] By: gsar                                  on 1998/11/28  11:41:14
7736     Log: teach CPAN.pm to ignore beta perl distributions when looking for
7737          modules
7738          From: root@dogberry.rutgers.edu (root)
7739          Date: Thu, 12 Nov 1998 23:08:39 -0500
7740          Message-Id: <199811130408.XAA10578@dogberry.rutgers.edu>
7741          Subject: recompile tries getting a perl distribution
7742  Branch: perl
7743        ! lib/CPAN.pm
7744 ____________________________________________________________________________
7745 [  2335] By: gsar                                  on 1998/11/28  11:27:46
7746     Log: make $1 et al readonly under threads; make C<undef $1> fail like
7747          C<$1 = undef> does
7748  Branch: perl
7749        ! op.c pp.c t/op/undef.t
7750 ____________________________________________________________________________
7751 [  2334] By: gsar                                  on 1998/11/28  10:24:52
7752     Log: s/Regexp/re/ and clarify policy on lowercased object namespaces
7753  Branch: perl
7754        ! pod/perlfunc.pod pp_hot.c sv.c thrdvar.h
7755 ____________________________________________________________________________
7756 [  2333] By: gsar                                  on 1998/11/28  09:36:40
7757     Log: document changed PERL_HASH()
7758  Branch: perl
7759        ! pod/perlfunc.pod pod/perlguts.pod
7760 ____________________________________________________________________________
7761 [  2332] By: nick                                  on 1998/11/27  21:10:27
7762     Log: Handle INIT list in C.pm
7763          1. Provide init_av() from B.xs
7764          2. Export it in B.pm
7765          3. Use it in C.pm
7766          Also disable some pruning in savecv() which seems to undo
7767          my previous patch.
7768          Experimental feature - save pathnames of .so files in easily 
7769          grep-able form for use in wrapper to feed to linker.  
7770  Branch: perl
7771        ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm
7772 ____________________________________________________________________________
7773 [  2327] By: gsar                                  on 1998/11/27  15:12:01
7774     Log: integrate change#2315 from maint-5.005
7775  Branch: perl
7776        ! t/op/sort.t
7777       !> op.c sv.c
7778 ____________________________________________________________________________
7779 [  2326] By: gsar                                  on 1998/11/27  15:00:42
7780     Log: integrate changes#2304,2305,2306,2308 from maint-5.005
7781  Branch: perl
7782       !> ext/DynaLoader/dl_mpeix.xs installperl lib/ExtUtils/MM_Unix.pm
7783       !> lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
7784       !> lib/ExtUtils/typemap
7785 ____________________________________________________________________________
7786 [  2325] By: gsar                                  on 1998/11/27  14:46:18
7787     Log: malloc bugfix and documentation from Ilya Zakharevich
7788          Date: Tue, 24 Nov 1998 17:24:55 -0500 (EST)
7789          Message-Id: <199811242224.RAA22618@monk.mps.ohio-state.edu>
7790          Subject: [PATCH 5.005_*] Re: Internal coredump
7791          --
7792          Date: Thu, 26 Nov 1998 03:06:10 -0500 (EST)
7793          Message-Id: <199811260806.DAA28913@monk.mps.ohio-state.edu>
7794          Subject: [PATCH 5.005_*] malloc.c documentation
7795  Branch: perl
7796        ! malloc.c
7797 ____________________________________________________________________________
7798 [  2324] By: gsar                                  on 1998/11/27  14:41:38
7799     Log: B::C tweaks to allow Tk compiles from Nick Ing-Simmons
7800  Branch: perl
7801        ! ext/B/B/C.pm
7802 ____________________________________________________________________________
7803 [  2323] By: gsar                                  on 1998/11/27  14:33:44
7804     Log: From: maeda@src.ricoh.co.jp
7805          Date: Tue, 24 Nov 1998 10:37:45 +0900
7806          Message-Id: <199811240137.KAA05867@luna.src.ricoh.co.jp>
7807          Subject: format "..." bug
7808  Branch: perl
7809        ! pp_ctl.c t/op/write.t
7810 ____________________________________________________________________________
7811 [  2322] By: gsar                                  on 1998/11/27  14:20:12
7812     Log: add ext/Devel/Peek
7813          From: jan.dubois@ibm.net (Jan Dubois)
7814          Date: Mon, 23 Nov 1998 00:48:11 +0100
7815          Message-ID: <36589ec9.49964585@smtp1.ibm.net>
7816          Subject: [PATCH 5.005_53] Devel::Peek integration
7817  Branch: perl
7818        + ext/Devel/Peek/Changes ext/Devel/Peek/Makefile.PL
7819        + ext/Devel/Peek/Peek.pm ext/Devel/Peek/Peek.xs
7820        ! MANIFEST dump.c embed.h embedvar.h global.sym intrpvar.h
7821        ! objXSUB.h perl.c perl.h proto.h sv.c sv.h thrdvar.h
7822        ! win32/GenCAPI.pl win32/Makefile win32/makefile.mk
7823 ____________________________________________________________________________
7824 [  2321] By: gsar                                  on 1998/11/27  13:03:08
7825     Log: ensure 'make regen_headers' even without perl installed
7826          (suggested by Ilya Zakharevich)
7827  Branch: perl
7828        ! bytecode.pl warning.pl
7829 ____________________________________________________________________________
7830 [  2320] By: gsar                                  on 1998/11/27  12:58:36
7831     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
7832          Date: Mon, 9 Nov 1998 19:03:25 -0500 (EST)
7833          Message-Id: <199811100003.TAA05815@monk.mps.ohio-state.edu>
7834          Subject: [PATCH 5.005_*] Cosmetic malloc patch
7835  Branch: perl
7836        ! malloc.c
7837 ____________________________________________________________________________
7838 [  2319] By: gsar                                  on 1998/11/27  12:56:13
7839     Log: eliminate dup hunk from integration
7840  Branch: perl
7841        ! lib/filetest.pm perl.h
7842 ____________________________________________________________________________
7843 [  2318] By: gsar                                  on 1998/11/27  12:50:08
7844     Log: integrate cfgperl changes into mainline
7845  Branch: perl
7846       +> ext/DB_File/hints/dynixptx.pl ext/POSIX/hints/dynixptx.pl
7847        ! pod/perlfaq4.pod
7848       !> (integrate 30 files)
7849 ____________________________________________________________________________
7850 [  2317] By: jhi                                   on 1998/11/27  11:38:13
7851     Log: C<-x>.
7852  Branch: cfgperl
7853        ! lib/filetest.pm
7854 ____________________________________________________________________________
7855 [  2316] By: jhi                                   on 1998/11/27  11:10:22
7856     Log: Integrate from mainperl.
7857  Branch: cfgperl
7858       !> XSUB.h embed.h embed.pl embedvar.h ext/Thread/Thread.xs
7859       !> iperlsys.h mg.c objXSUB.h op.c pp_ctl.c pp_sys.c proto.h
7860       !> t/comp/package.t t/lib/dumper.t t/pragma/warn/pp_ctl
7861       !> universal.c util.c win32/GenCAPI.pl win32/win32.h
7862       !> win32/win32sck.c
7863 ____________________________________________________________________________
7864 [  2315] By: gbarr                                 on 1998/11/27  05:16:50
7865     Log: integrate change#2246 from mainline, while still allowing
7866          C<sort $globref @foo>
7867          
7868          allow C<sort $coderef @foo>
7869  Branch: maint-5.005/perl
7870        ! op.c sv.c
7871       !> t/op/sort.t
7872 ____________________________________________________________________________
7873 [  2308] By: gbarr                                 on 1998/11/27  00:11:44
7874     Log: Updates for MPE/iX DynaLoader and installperl, via private mail
7875          forwarded by Jarkko Hietaniemi from Mark Bixby
7876  Branch: maint-5.005/perl
7877        ! ext/DynaLoader/dl_mpeix.xs installperl
7878 ____________________________________________________________________________
7879 [  2306] By: gbarr                                 on 1998/11/26  23:44:47
7880     Log: Allow PL_FILES to have multiple targets from one source by allowing
7881          an array ref as the value in the hash
7882  Branch: maint-5.005/perl
7883        ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_VMS.pm
7884        ! lib/ExtUtils/MakeMaker.pm
7885 ____________________________________________________________________________
7886 [  2305] By: gbarr                                 on 1998/11/26  23:38:06
7887     Log: fix unsigned variables to use SvUV and sv_setuv
7888  Branch: maint-5.005/perl
7889        ! lib/ExtUtils/typemap
7890 ____________________________________________________________________________
7891 [  2304] By: gbarr                                 on 1998/11/26  23:36:17
7892     Log: Fix embeded \n in ABSTRACT and <> in AUTHOR
7893  Branch: maint-5.005/perl
7894        ! lib/ExtUtils/MM_Unix.pm
7895 ____________________________________________________________________________
7896 [  2301] By: gsar                                  on 1998/11/26  10:16:54
7897     Log: fix PL_defoutgv leak under threads
7898  Branch: perl
7899        ! ext/Thread/Thread.xs
7900 ____________________________________________________________________________
7901 [  2300] By: gsar                                  on 1998/11/26  09:04:44
7902     Log: properly free temporaries created by threads
7903  Branch: perl
7904        ! ext/Thread/Thread.xs
7905 ____________________________________________________________________________
7906 [  2299] By: gsar                                  on 1998/11/26  06:51:16
7907     Log: fix C<if (...) { package Foo; ... }> misoptimization that fails
7908          to set the package for the block properly
7909  Branch: perl
7910        ! op.c t/comp/package.t t/lib/dumper.t
7911 ____________________________________________________________________________
7912 [  2298] By: nick                                  on 1998/11/24  22:04:20
7913     Log: Part-1 of tweaks to allow Tk to be "compiled"
7914          Make XS_UNIVERSAL_xxx non-static so they can be found in libperl.
7915          (May also need attention to exports etc. - to follow.)
7916  Branch: perl
7917        ! universal.c
7918 ____________________________________________________________________________
7919 [  2294] By: jhi                                   on 1998/11/23  10:44:26
7920     Log: The new socket tests need in some platforms
7921          to #include <sys/types.h>.
7922  Branch: cfgperl
7923        ! Configure
7924 ____________________________________________________________________________
7925 [  2293] By: jhi                                   on 1998/11/23  10:33:42
7926     Log: From: Gerben Wierda <G.C.Th.Wierda@AWT.nl>
7927          To: Jarkko Hietaniemi <jhi@cc.hut.fi>
7928          Subject: Re: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
7929          Date: Mon, 23 Nov 1998 10:07:04 +0100
7930          Message-Id: <9811230907.AA06484@AWT.nl>
7931          
7932          NeXTstep NetInfo uses nidump to get the user/group databases.
7933  Branch: cfgperl
7934        ! t/op/grent.t t/op/pwent.t
7935 ____________________________________________________________________________
7936 [  2291] By: TimBunce                              on 1998/11/22  22:23:09
7937     Log: Updated Porting/patchls utility.
7938  Branch: maint-5.004/perl
7939        ! Porting/patchls
7940 ____________________________________________________________________________
7941 [  2288] By: TimBunce                              on 1998/11/22  21:46:11
7942     Log: Title:  "Buglet in Sys::Syslog.pm (with fix)"
7943          From:  Henrik Tougaard <ht.000@foa.dk>
7944          Msg-ID:  <Pine.OSF.3.95.981117092651.1492C-100000@sula.pensam.dk>
7945          Files:  lib/Sys/Syslog.pm
7946  Branch: maint-5.004/perl
7947        ! lib/Sys/Syslog.pm
7948 ____________________________________________________________________________
7949 [  2286] By: jhi                                   on 1998/11/22  19:08:42
7950     Log: Change#2284 aid: allow also for plain old MSG_ and SCM_ #defines.
7951  Branch: cfgperl
7952        ! ext/Socket/Socket.xs
7953 ____________________________________________________________________________
7954 [  2285] By: jhi                                   on 1998/11/22  18:21:07
7955     Log: MSG_PROXY for GNU/Hurd (previously we believed that
7956          all GNU libc platforms have MSG_PROXY.  Untrue).
7957          In fact this ended up as a major MSG_* and SCM_*
7958          update.  The MSG_XXX known to be enums in some
7959          versions of the glibc are now probed for and respective
7960          HAS_MSG_XXX are defined.  While I was at it I noticed
7961          SCM_RIGHTS being similarly an enum.  This reminded me of
7962          an ancient discussion in perl5-porters:
7963          http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/9612/msg01017.html
7964          The BSD socket interface has a nifty feature for passing
7965          file descriptors and credentials--via sockets.  It may be
7966          too late to add this functionality to the CORE but
7967          at least Configure now probes for the functions,
7968          structs, and includes, defining the appropriate
7969          HAS_YYY and I_ZZZ, and the Socket extension exports
7970          the constants, in case somebody wants to write an
7971          extension for this interface.
7972  Branch: cfgperl
7973        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
7974        ! config_h.SH ext/Socket/Socket.pm ext/Socket/Socket.xs
7975        ! iperlsys.h
7976 ____________________________________________________________________________
7977 [  2284] By: jhi                                   on 1998/11/22  18:13:21
7978     Log: perlhist.pod 1.54, containing 5_53.
7979  Branch: cfgperl
7980        ! pod/perlhist.pod
7981 ____________________________________________________________________________
7982 [  2274] By: TimBunce                              on 1998/11/22  16:25:46
7983     Log: Preserve errno around fcntl(fd,F_SETFD,fd > maxsysfd) in do_open()
7984  Branch: maint-5.004/perl
7985        ! doio.c
7986 ____________________________________________________________________________
7987 [  2273] By: TimBunce                              on 1998/11/22  16:17:43
7988     Log: Improve op/die_exit.t test for implicit close changing $!
7989  Branch: maint-5.004/perl
7990        ! t/op/die_exit.t
7991 ____________________________________________________________________________
7992 [  2268] By: jhi                                   on 1998/11/22  14:44:11
7993     Log: Fix thinko.
7994  Branch: cfgperl
7995        ! hints/dynixptx.sh
7996 ____________________________________________________________________________
7997 [  2267] By: jhi                                   on 1998/11/22  13:19:41
7998     Log: Document the d_socket override.
7999  Branch: cfgperl
8000        ! hints/dynixptx.sh
8001 ____________________________________________________________________________
8002 [  2266] By: jhi                                   on 1998/11/22  12:12:29
8003     Log: From: John Tobey <jtobey@channel1.com>
8004          Subject: [PATCH] perlfaq typos
8005          To: perl5-porters@perl.com
8006          Date: 22 Nov 1998 04:25:15 +0200
8007          Message-ID: <MLIST_m0zhPeF-000FOgC@feynman.localnet>
8008  Branch: cfgperl
8009        ! pod/perlfaq3.pod pod/perlfaq4.pod pod/perlfaq5.pod
8010        ! pod/perlfaq7.pod pod/perlfaq8.pod
8011 ____________________________________________________________________________
8012 [  2265] By: jhi                                   on 1998/11/22  12:06:29
8013     Log: From: pmarquess@bfsec.bt.co.uk (Paul Marquess)
8014          Subject: DB_File 1.61 patch for 5.005_53 & 5.005_02
8015          Newsgroups: hut.lists.perl5-porters
8016          To: gsar@engin.umich.edu (Gurusamy Sarathy)
8017          Cc: perl5-porters@perl.org (Perl5 Porters)
8018          Date: 20 Nov 1998 12:20:41 +0200
8019  Branch: cfgperl
8020        ! ext/DB_File/Changes ext/DB_File/DB_File.pm
8021        ! ext/DB_File/DB_File.xs
8022 ____________________________________________________________________________
8023 [  2264] By: jhi                                   on 1998/11/22  11:55:09
8024     Log: NeXTstep /etc/group and /etc/passwd are used only at boot time,
8025          From: Gerben Wierda <G.C.Th.Wierda@AWT.nl>
8026          Subject: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
8027          To: perlbug@perl.com
8028          Date: 20 Nov 1998 18:39:06 +0200
8029          Lines: 47
8030          Message-ID: <MLIST_9811201533.AA22148@AWT.nl>
8031  Branch: cfgperl
8032        ! t/op/grent.t t/op/pwent.t
8033 ____________________________________________________________________________
8034 [  2263] By: jhi                                   on 1998/11/22  11:42:59
8035     Log: Permission testing is tricky when we have too much power.
8036          Problem reported in
8037          From: Gerben Wierda <G.C.Th.Wierda@AWT.nl>
8038          Subject: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
8039          To: perlbug@perl.com
8040          Date: 20 Nov 1998 18:39:06 +0200
8041          Message-ID: <MLIST_9811201533.AA22148@AWT.nl>
8042  Branch: cfgperl
8043        ! t/op/filetest.t
8044 ____________________________________________________________________________
8045 [  2262] By: gsar                                  on 1998/11/22  11:37:02
8046     Log: fix broken CAPI generation
8047  Branch: perl
8048        ! win32/GenCAPI.pl
8049 ____________________________________________________________________________
8050 [  2261] By: jhi                                   on 1998/11/22  11:17:00
8051     Log: -x should be C<-x>, reported by Gerben Wierda.
8052  Branch: cfgperl
8053        ! pod/perlfunc.pod
8054 ____________________________________________________________________________
8055 [  2260] By: gsar                                  on 1998/11/22  11:12:02
8056     Log: phase 2 of PERL_OBJECT cleanup; objXSUB.h autogeneration
8057  Branch: perl
8058        ! XSUB.h embed.h embed.pl embedvar.h iperlsys.h objXSUB.h
8059        ! proto.h
8060 ____________________________________________________________________________
8061 [  2259] By: jhi                                   on 1998/11/22  11:06:40
8062     Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
8063          Subject: Re: [PATCH] Re: pod2man bug in date generated line
8064          To: Albert Dvornik <bert@genscan.com>, "Larry W. Virden" <lvirden@cas.org>
8065          Cc: perlbug@perl.com
8066          Date: 20 Nov 1998 21:30:17 +0200
8067          Message-ID: <MLIST_19981120131523.A464@O2.chapin.edu>
8068  Branch: cfgperl
8069        ! pod/pod2man.PL
8070 ____________________________________________________________________________
8071 [  2256] By: jhi                                   on 1998/11/21  10:44:01
8072     Log: From: Thomas Bowditch <bowditch@inmet.com>
8073          Subject: Benchmark.pm suggestion
8074          To: jhi@iki.fi, Tim.Bunce@ig.co.uk
8075          Date: Fri, 20 Nov 1998 17:43:46 -0500
8076          Message-Id: <199811202243.RAA26252@harp.camb.inmet.com>
8077          
8078          Added timesum().
8079  Branch: cfgperl
8080        ! lib/Benchmark.pm
8081 ____________________________________________________________________________
8082 [  2255] By: gsar                                  on 1998/11/21  08:45:06
8083     Log: another win32 portability fix: make sysread() and syswrite()
8084          work on sockets
8085  Branch: perl
8086        ! pp_sys.c win32/win32.h
8087 ____________________________________________________________________________
8088 [  2254] By: gsar                                  on 1998/11/21  07:49:06
8089     Log: win32_recvfrom() compatibility fix
8090  Branch: perl
8091        ! win32/win32sck.c
8092 ____________________________________________________________________________
8093 [  2253] By: jhi                                   on 1998/11/20  08:22:06
8094     Log: From: Mark Bixby <markb@spock.dis.cccd.edu>
8095          To: jhi@iki.fi
8096          Subject: MPE/iX Perl 5.005_02 oops
8097          Date: Thu, 19 Nov 1998 17:10:45 -0800 (PST)
8098          Message-Id: <199811200110.RAA07395@spock.dis.cccd.edu>
8099  Branch: cfgperl
8100        ! ext/DynaLoader/dl_mpeix.xs installperl
8101 ____________________________________________________________________________
8102 [  2252] By: gsar                                  on 1998/11/19  17:38:03
8103     Log: mess_sv tweak for change#2249
8104  Branch: perl
8105        ! util.c
8106 ____________________________________________________________________________
8107 [  2251] By: jhi                                   on 1998/11/18  12:32:19
8108     Log: Display use64bits and usemultiplicity but only if necessary.
8109  Branch: cfgperl
8110        ! myconfig
8111 ____________________________________________________________________________
8112 [  2250] By: jhi                                   on 1998/11/18  12:26:50
8113     Log: From: Horst von Brand <vonbrand@sleipnir.valparaiso.cl> 
8114          Subject: pp.c uses 'unsigned Quad_t'
8115          To: perlbug@perl.com 
8116          Date: Sun, 15 Nov 1998 20:57:05 -0300 
8117          Message-Id: <199811152357.UAA12768@sleipnir.valparaiso.cl>
8118  Branch: cfgperl
8119        ! perl.h pp.c
8120 ____________________________________________________________________________
8121 [  2249] By: gsar                                  on 1998/11/18  05:43:11
8122     Log: use PL_mess_sv only during global destruction (fixes problems with
8123          overlapping invocations of form()/warn()/die()/croak() trampling on
8124          each other's messages)
8125  Branch: perl
8126        ! mg.c util.c
8127 ____________________________________________________________________________
8128 [  2248] By: gsar                                  on 1998/11/18  05:39:36
8129     Log: tweak change#2245 to skip previous message if any
8130  Branch: perl
8131        ! pp_ctl.c t/pragma/warn/pp_ctl
8132 ____________________________________________________________________________
8133 [  2247] By: jhi                                   on 1998/11/17  11:46:56
8134     Log: Integrate from mainperl.
8135  Branch: cfgperl
8136       !> (integrate 26 files)
8137 ____________________________________________________________________________
8138 [  2246] By: gsar                                  on 1998/11/17  09:41:10
8139     Log: allow C<sort $coderef @foo>
8140  Branch: perl
8141        ! op.c t/op/sort.t t/pragma/overload.t
8142 ____________________________________________________________________________
8143 [  2245] By: gsar                                  on 1998/11/17  08:28:26
8144     Log: propagate failures in DESTROY() as (optional) warnings
8145  Branch: perl
8146        ! pod/perldiag.pod pp_ctl.c t/pragma/warn/pp_ctl
8147 ____________________________________________________________________________
8148 [  2244] By: gsar                                  on 1998/11/17  07:43:08
8149     Log: ensure PL_dirty is reinit-ed properly under -DMULTIPLICITY
8150  Branch: perl
8151        ! perl.c thrdvar.h
8152 ____________________________________________________________________________
8153 [  2243] By: gsar                                  on 1998/11/17  07:40:09
8154     Log: sort WARN_FOO symbols to avoid hash traversal order dependency
8155  Branch: perl
8156        ! lib/warning.pm warning.h warning.pl
8157 ____________________________________________________________________________
8158 [  2242] By: gsar                                  on 1998/11/17  06:32:39
8159     Log: fix skipspace() to properly account for newlines in eval''-ed
8160          strings (caused bogus line numbers in diagnostics and debugger)
8161  Branch: perl
8162        ! t/pragma/warn/pp_ctl t/pragma/warn/toke toke.c
8163 ____________________________________________________________________________
8164 [  2241] By: gsar                                  on 1998/11/17  03:48:12
8165     Log: s/Perl_utf8skip/PL_utf8skip/g
8166  Branch: perl
8167        ! embed.h embed.pl global.sym globvar.sym regexec.c utf8.h
8168 ____________________________________________________________________________
8169 [  2240] By: gsar                                  on 1998/11/14  06:09:06
8170     Log: rework op/groups.t
8171  Branch: perl
8172        ! t/op/filetest.t t/op/groups.t
8173 ____________________________________________________________________________
8174 [  2235] By: gsar                                  on 1998/11/14  00:17:05
8175     Log: catch a neophyte trap: open(<FH>), close(<FH>) etc.
8176  Branch: perl
8177        ! op.c
8178 ____________________________________________________________________________
8179 [  2234] By: gsar                                  on 1998/11/14  00:14:02
8180     Log: update Changes
8181  Branch: perl
8182        ! Changes win32/config.bc win32/config.gc win32/config.vc
8183 ____________________________________________________________________________
8184 [  2233] By: gsar                                  on 1998/11/13  09:43:03
8185     Log: doc tweak
8186  Branch: perl
8187        ! README.win32
8188 ____________________________________________________________________________
8189 [  2230] By: jhi                                   on 1998/11/12  17:07:45
8190     Log: Allow hints file override for d_socket
8191          (based on Sequent-induced change #2229).
8192  Branch: cfgperl
8193        ! Configure
8194 ____________________________________________________________________________
8195 [  2229] By: jhi                                   on 1998/11/12  16:32:33
8196     Log: 
8197          From: "Martin J. Bligh" <mbligh@sequent.com>
8198          To: jhi@iki.fi
8199          cc: gbarr@ti.com, gbarr@pobox.com, gsar@umich.edu
8200          Subject: Re: Making Perl work on DYNIX/ptx
8201          Date: Tue, 10 Nov 1998 16:24:26 -0800
8202          Message-ID: <181999655.910715066@w-186d219.rhe.sequent.com>
8203  Branch: cfgperl
8204        ! hints/dynixptx.sh
8205 ____________________________________________________________________________
8206 [  2228] By: jhi                                   on 1998/11/12  11:40:37
8207     Log: From: "Martin J. Bligh" <mbligh@sequent.com>
8208          Message-ID: <187803647.910720870@w-186d219.rhe.sequent.com>
8209          To: jhi@iki.fi
8210          cc: gbarr@ti.com, gbarr@pobox.com, gsar@umich.edu
8211          Subject: Re: Making Perl work on DYNIX/ptx
8212          Date: Tue, 10 Nov 1998 18:01:10 -0800
8213  Branch: cfgperl
8214        + ext/DB_File/hints/dynixptx.pl ext/POSIX/hints/dynixptx.pl
8215 ____________________________________________________________________________
8216 [  2227] By: jhi                                   on 1998/11/12  11:17:42
8217     Log: Integrate from mainperl.
8218  Branch: cfgperl
8219       !> Changes XSUB.h av.c embed.h embed.pl embedvar.h
8220       !> ext/IPC/SysV/Msg.pm global.sym hv.c lib/Text/Wrap.pm objXSUB.h
8221       !> perl.c perl.h pod/perlfunc.pod pod/perlvar.pod pp_sys.c
8222       !> proto.h regexec.c t/op/array.t util.c win32/makedef.pl
8223       !> win32/win32.c x2p/s2p.PL
8224 ____________________________________________________________________________
8225 [  2226] By: gsar                                  on 1998/11/11  21:05:42
8226     Log: provide -DPERL_POLLUTE
8227  Branch: perl
8228        ! embed.pl embedvar.h
8229 ____________________________________________________________________________
8230 [  2225] By: jhi                                   on 1998/11/09  07:45:12
8231     Log: From: Hans Mulder <hansm@icgroup.nl>
8232          To: Ilya Zakharevich <ilya@math.ohio-state.edu>
8233          Cc: gsar@engin.umich.edu (Gurusamy Sarathy), jhi@iki.fi,
8234          perl5-porters@perl.org
8235          Subject: Re: [PATCH] Re: Not OK: perl 5.00553 on OPENSTEP-Mach 4_1
8236          (UNINSTALLED)
8237          Date: Sun,  8 Nov 98 22:20:23 +0100
8238          Message-Id: <9811082119.AA11802@icgned.icgroup.nl>
8239  Branch: cfgperl
8240        ! malloc.c perl.h
8241 ____________________________________________________________________________
8242 [  2224] By: gsar                                  on 1998/11/09  03:13:14
8243     Log: avoid endless loops in Text::Wrap (from a suggestion by Lupe
8244          Christoph <lupe@alanya.m.isar.de>)
8245  Branch: perl
8246        ! lib/Text/Wrap.pm
8247 ____________________________________________________________________________
8248 [  2223] By: gsar                                  on 1998/11/09  02:09:06
8249     Log: fix misplaced brace in s2p (as suggested by Lionel Fourquaux
8250          <lionel.fourquaux@wanadoo.fr>)
8251  Branch: perl
8252        ! x2p/s2p.PL
8253 ____________________________________________________________________________
8254 [  2222] By: gsar                                  on 1998/11/09  01:56:24
8255     Log: patches from Hugo van der Sanden <hv@crypt.compulink.co.uk>
8256          Date: Wed, 04 Nov 1998 12:19:44 +0000
8257          Message-Id: <199811041219.MAA05451@crypt.compulink.co.uk>
8258          Subject: [PATCH] Re: [5.005_53] read overflow? 
8259          --
8260          Date: Wed, 04 Nov 1998 13:15:18 +0000
8261          Message-Id: <199811041315.NAA05711@crypt.compulink.co.uk>
8262          Subject: [PATCH 5.005_53] perl -V fix
8263  Branch: perl
8264        ! perl.c regexec.c
8265 ____________________________________________________________________________
8266 [  2221] By: gsar                                  on 1998/11/09  01:34:56
8267     Log: From: jan.dubois@ibm.net (Jan Dubois)
8268          Date: Sun, 01 Nov 1998 00:05:01 +0100
8269          Message-ID: <364294bd.18052307@smtp1.ibm.net>
8270          Subject: [PATCH v5.5.53, WIN32] PL_block_type undefined unless DEBUGGING
8271  Branch: perl
8272        ! Changes win32/makedef.pl
8273 ____________________________________________________________________________
8274 [  2220] By: gsar                                  on 1998/11/08  21:13:07
8275     Log: integrate changes#2120,2168,2218 from maint-5.005;
8276          add new vtbls; s/\bvtbl_/PL_vtbl_/; remove trailing comma in
8277          enum; make regen_headers
8278  Branch: perl
8279        ! XSUB.h embed.h embedvar.h ext/IPC/SysV/Msg.pm global.sym
8280        ! objXSUB.h perl.h pod/perlfunc.pod proto.h util.c win32/win32.c
8281 ____________________________________________________________________________
8282 [  2219] By: gsar                                  on 1998/11/08  19:42:57
8283     Log: integrate cfgperl changes into mainline
8284  Branch: perl
8285       +> README.vmesa
8286       !> Configure MANIFEST Porting/Glossary Porting/config.sh
8287       !> Porting/config_H config_h.SH ext/Thread/Thread.xs
8288       !> hints/hpux.sh hints/vmesa.sh lib/Math/Complex.pm malloc.c
8289       !> perl.h pod/perlfunc.pod pod/perllocale.pod pod/perlport.pod
8290       !> pp_sys.c sv.c t/lib/complex.t t/op/groups.t t/op/lex_assign.t
8291       !> thread.h vms/subconfigure.com vos/config.h
8292 ____________________________________________________________________________
8293 [  2218] By: gbarr                                 on 1998/11/08  16:48:44
8294     Log: From: Graham Barr <gbarr@ti.com>
8295          Date: Mon, 2 Nov 1998 07:38:52 -0600
8296          Message-ID: <19981102073852.A12751@asic.sc.ti.com>
8297          Subject: [PATCH 5.005_*] Re: IPC::Msg 1.03
8298  Branch: maint-5.005/perl
8299        ! ext/IPC/SysV/Msg.pm
8300 ____________________________________________________________________________
8301 [  2215] By: gsar                                  on 1998/11/08  02:52:52
8302     Log: set close-on-exec bit on pipe() FDs
8303  Branch: perl
8304        ! pod/perlfunc.pod pod/perlvar.pod pp_sys.c
8305 ____________________________________________________________________________
8306 [  2214] By: gsar                                  on 1998/11/08  02:27:57
8307     Log: typo in newHVhv()
8308  Branch: perl
8309        ! hv.c
8310 ____________________________________________________________________________
8311 [  2211] By: jhi                                   on 1998/11/07  21:14:18
8312     Log: Finalize the Mach CThreads support.
8313          
8314          From: Hans Mulder <hansm@icgroup.nl>
8315          Date: Sat,  7 Nov 98 22:06:20 +0100
8316          To: Gurusamy Sarathy <gsar@engin.umich.edu>
8317          Cc: jhi@iki.fi, perl5-porters@perl.org
8318          Subject: [PATCH] Re: Not OK: perl 5.00553 on OPENSTEP-Mach 4_1 (UNINSTALLED) 
8319          Message-Id: <9811072105.AA07794@icgned.icgroup.nl>
8320  Branch: cfgperl
8321        ! malloc.c perl.h
8322 ____________________________________________________________________________
8323 [  2210] By: gsar                                  on 1998/11/06  20:36:50
8324     Log: fix AvREALISH bogusness
8325  Branch: perl
8326        ! av.c t/op/array.t
8327 ____________________________________________________________________________
8328 [  2209] By: jhi                                   on 1998/11/06  08:05:31
8329     Log: Renamed malloc.c ASSERT() macro to P_ASSERT() because
8330          ASSERT() causes problems in {NeXTStep,OpenStep}.
8331          
8332          From: Hans Mulder <hansm@icgroup.nl>
8333          To: Jarkko Hietaniemi <jhi@cc.hut.fi>
8334          Subject: Re: Not OK: perl 5.00553 on OPENSTEP-Mach 4_1 (UNINSTALLED)
8335          Date: Fri,  6 Nov 98 01:27:41 +0100
8336          Message-Id: <9811060025.AA27389@icgned.icgroup.nl>
8337          
8338          and
8339          
8340          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8341          Subject: Re: ASSERT() in malloc.c
8342          To: jhi@iki.fi
8343          Date: Fri, 6 Nov 1998 02:59:29 -0500 (EST)
8344          Message-Id: <199811060759.CAA18915@monk.mps.ohio-state.edu>
8345  Branch: cfgperl
8346        ! malloc.c
8347 ____________________________________________________________________________
8348 [  2208] By: jhi                                   on 1998/11/06  07:55:38
8349     Log: Mach CThreads needs #include <mach/cthreads.h>.
8350  Branch: cfgperl
8351        ! perl.h
8352 ____________________________________________________________________________
8353 [  2206] By: jhi                                   on 1998/11/05  14:54:52
8354     Log: PERL_BADLANG wrongly documented.
8355          
8356          From: ts <decoux@moulon.inra.fr>
8357          To: jhi@cc.hut.fi
8358          Subject: Re: Locale warning messages
8359          Date: Thu, 5 Nov 1998 14:34:19 +0100 (MET)
8360          Message-Id: <199811051334.OAA24863@moulon.inra.fr>
8361          
8362          and
8363          
8364          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8365          Subject: Re: PERL_BADLANG
8366          To: jhi@iki.fi
8367          Subject: Re: PERL_BADLANG
8368          Date: Thu, 5 Nov 1998 09:49:00 -0500 (EST)
8369          Message-Id: <199811051449.JAA04238@monk.mps.ohio-state.edu>
8370  Branch: cfgperl
8371        ! pod/perllocale.pod
8372 ____________________________________________________________________________
8373 [  2205] By: jhi                                   on 1998/11/05  14:24:33
8374     Log: Document all the control flow keywords in perlfunc
8375          so that "perlfunc -f while" works.
8376  Branch: cfgperl
8377        ! pod/perlfunc.pod
8378 ____________________________________________________________________________
8379 [  2204] By: jhi                                   on 1998/11/05  12:46:02
8380     Log: Configure update.  Remove last trace of PTHREADS_CREATED_JOINABLE
8381          (from vos/config.h).  Update Porting/{Glossary,config*}.
8382  Branch: cfgperl
8383        ! Configure Porting/Glossary Porting/config.sh Porting/config_H
8384        ! config_h.SH vos/config.h
8385 ____________________________________________________________________________
8386 [  2203] By: jhi                                   on 1998/11/05  08:34:39
8387     Log: VM/ESA and VMS sig_num_init (change#2101) catchup.
8388  Branch: cfgperl
8389        ! hints/vmesa.sh vms/subconfigure.com
8390 ____________________________________________________________________________
8391 [  2202] By: jhi                                   on 1998/11/05  08:03:20
8392     Log: Integrate from mainperl.
8393  Branch: cfgperl
8394       !> Changes cop.h doop.c gv.c mg.c perl.c pp_ctl.c sv.c util.c
8395       !> win32/Makefile win32/makefile.mk win32/win32.c
8396 ____________________________________________________________________________
8397 [  2201] By: gsar                                  on 1998/11/05  04:40:44
8398     Log: another POPSTACK victim
8399  Branch: perl
8400        ! cop.h sv.c
8401 ____________________________________________________________________________
8402 [  2196] By: gsar                                  on 1998/11/05  02:07:54
8403     Log: fix a location affected by change#2191, add note about POPSTACK
8404  Branch: perl
8405        ! cop.h gv.c pp_ctl.c
8406 ____________________________________________________________________________
8407 [  2195] By: gsar                                  on 1998/11/05  02:04:45
8408     Log: makefile notes
8409  Branch: perl
8410        ! win32/Makefile win32/makefile.mk
8411 ____________________________________________________________________________
8412 [  2192] By: gsar                                  on 1998/11/04  23:48:53
8413     Log: indeterminate order-of-evaluation fixes
8414  Branch: perl
8415        ! mg.c
8416 ____________________________________________________________________________
8417 [  2191] By: gsar                                  on 1998/11/04  23:02:16
8418     Log: refetch local stack pointer in POPSTACK
8419  Branch: perl
8420        ! cop.h perl.c
8421 ____________________________________________________________________________
8422 [  2190] By: jhi                                   on 1998/11/04  08:50:40
8423     Log: Configure update.
8424          Sequent DYNIX/ptx updates: osvers=$4 (instead of $3) of uname -a,
8425          
8426          From: Andy Dougherty <doughera@lafcol.lafayette.edu>
8427          To: Martin Bligh <mbligh@sequent.com>
8428          Cc: Jarkko Hietaniemi <jhi@iki.fi>
8429          Subject: Re: Perl 5's configure on DYNIX/ptx
8430          Message-Id: <Pine.SUN.3.96.981103090824.5533B-100000@newton.phys>
8431          Date: Tue, 3 Nov 1998 09:35:26 -0500 (EST)
8432          
8433          find sockets also from libsocket, not just libnet.
8434          OS390: $compile_ok instead of $compile for <inttypes.h>,
8435          
8436          From: pvhp@forte.com (Peter Prymmer)
8437          To: Thomas.Dorner@start.de, jhi@iki.fi, neale@VMA.TABNSW.COM.AU
8438          Subject: _53 not OK on os390 but looking better than ever
8439          Date: Tue, 3 Nov 98 17:33:22 PST
8440          Message-Id: <9811040133.AA09450@forte.com>
8441  Branch: cfgperl
8442        ! Configure
8443 ____________________________________________________________________________
8444 [  2189] By: jhi                                   on 1998/11/04  07:43:58
8445     Log: sysio.t failure: fix undefined order of evaluation, from
8446          
8447          From: Spider Boardman <spider@web.zk3.dec.com>
8448          Subject: Not OK: perl 5.00553 on alpha-thread 5.0 [PATCH]
8449          To: perlbug@perl.com
8450          Date: 4 Nov 1998 01:22:30 +0200
8451          Message-ID: <MLIST_199811032227.RAA143892@web.zk3.dec.com>
8452  Branch: cfgperl
8453        ! pp_sys.c
8454 ____________________________________________________________________________
8455 [  2188] By: gsar                                  on 1998/11/04  02:59:16
8456     Log: fix return value of win32_pclose()
8457  Branch: perl
8458        ! win32/win32.c
8459 ____________________________________________________________________________
8460 [  2187] By: gsar                                  on 1998/11/04  02:56:34
8461     Log: s/sv_upgrade/SvUPGRADE/ a couple of places
8462  Branch: perl
8463        ! Changes doop.c gv.c util.c
8464 ____________________________________________________________________________
8465 [  2186] By: jhi                                   on 1998/11/03  08:17:52
8466     Log: Document quads in pack.
8467  Branch: cfgperl
8468        ! pod/perlfunc.pod
8469 ____________________________________________________________________________
8470 [  2185] By: jhi                                   on 1998/11/03  07:49:35
8471     Log: (IV) vs (I32) vs I_V()
8472          
8473          Subject: [PATCH 5.005_53] Reverting typecast in sv_upgrade()
8474          From: Anton Berezin <tobez@plab.ku.dk> 
8475          To: "p5p" <perl5-porters@perl.org> 
8476          Date: 01 Nov 1998 15:09:11 +0100 
8477          Message-ID: <86hfwjtshk.fsf@lion.plab.ku.dk>
8478          
8479          and
8480          
8481          From: Andy Dougherty <doughera@lafcol.lafayette.edu> 
8482          Date: Mon, 2 Nov 1998 10:17:34 -0500 (EST) 
8483          Message-Id: <Pine.SUN.3.96.981102101433.4479B-100000@newton.phys>
8484  Branch: cfgperl
8485        ! sv.c
8486 ____________________________________________________________________________
8487 [  2184] By: jhi                                   on 1998/11/03  07:42:46
8488     Log: VM/ESA updates.
8489  Branch: cfgperl
8490        + README.vmesa
8491        ! MANIFEST pod/perlfunc.pod pod/perlport.pod
8492 ____________________________________________________________________________
8493 [  2183] By: jhi                                   on 1998/11/02  12:58:13
8494     Log: The id(1)-parsing is real fun.
8495  Branch: cfgperl
8496        ! t/op/groups.t
8497 ____________________________________________________________________________
8498 [  2182] By: jhi                                   on 1998/11/02  12:07:43
8499     Log: Decommission the symlink test.
8500  Branch: cfgperl
8501        ! t/op/lex_assign.t
8502 ____________________________________________________________________________
8503 [  2181] By: jhi                                   on 1998/11/02  12:03:08
8504     Log: Replace ATTR_JOINABLE with true Configure probe
8505          for PTHREAD_CREATE_JOINABLE (or equivalent:
8506          PTHREAD_CREATE_UNDETACHED or __UNDETACHED).
8507          Remove ATTR_JOINABLE itself: Thread.xs uses
8508          PTHREAD_CREATE_JOINABLE (or equivalent) directly.
8509          
8510          Really scan for <mach/cthreads.h> only if usethreads.
8511  Branch: cfgperl
8512        ! Configure config_h.SH ext/Thread/Thread.xs thread.h
8513 ____________________________________________________________________________
8514 [  2180] By: jhi                                   on 1998/11/02  11:07:34
8515     Log: In HP-UX 10.X usethreads only if the required files are present.
8516  Branch: cfgperl
8517        ! hints/hpux.sh
8518 ____________________________________________________________________________
8519 [  2179] By: jhi                                   on 1998/11/02  09:10:33
8520     Log: Prefer groups(1).
8521          id -Gn can be broken.
8522          id -a can save the day.
8523  Branch: cfgperl
8524        ! t/op/groups.t
8525 ____________________________________________________________________________
8526 [  2178] By: jhi                                   on 1998/11/02  08:35:29
8527     Log: Detrail enum comma.
8528  Branch: cfgperl
8529        ! perl.h
8530 ____________________________________________________________________________
8531 [  2177] By: jhi                                   on 1998/11/02  08:24:12
8532     Log: 0**0 = 1, from
8533          
8534          From: d-lewart@uiuc.edu (Daniel S. Lewart)
8535          Subject: Math::Complex 0**0 patches
8536          Date: Sun, 1 Nov 1998 19:21:48 -0600 (CST)
8537          Message-Id: <199811020121.TAA28310@staff2.cso.uiuc.edu>
8538          To: jhi@iki.fi (Jarkko Hietaniemi),
8539          Raphael_Manfredi@grenoble.hp.com (Raphael Manfredi)
8540  Branch: cfgperl
8541        ! lib/Math/Complex.pm t/lib/complex.t
8542 ____________________________________________________________________________
8543 [  2168] By: gbarr                                 on 1998/11/01  01:58:58
8544     Log: From: jan.dubois@ibm.net (Jan Dubois)   
8545          Date: Fri, 09 Oct 1998 23:28:31 +0200
8546          Message-ID: <36217b7f.3193091@smtp1.ibm.net>
8547          Subject: [PATCH 5.005_02] Allow XS access to vtbl_*s when compiled with PERL_OBJECT
8548  Branch: maint-5.005/perl
8549        ! XSUB.h
8550 ____________________________________________________________________________
8551 [  2164] By: jhi                                   on 1998/10/31  15:50:02
8552     Log: Integrate from mainperl.
8553  Branch: cfgperl
8554       +> t/op/lex_assign.t
8555       !> (integrate 45 files)
8556
8557 ----------------
8558 Version 5.005_53
8559 ----------------
8560
8561 ____________________________________________________________________________
8562 [  2163] By: gsar                                  on 1998/10/31  11:31:12
8563     Log: bump patchlevel; other minor fixes for clean build and test on
8564          Solaris and win32
8565  Branch: perl
8566        ! Changes ext/Data/Dumper/Dumper.xs patchlevel.h pp.h sv.c
8567        ! t/lib/dumper.t t/op/groups.t t/op/lex_assign.t
8568        ! t/pragma/warn/regexec win32/Makefile win32/config_H.bc
8569        ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
8570        ! x2p/a2p.c
8571 ____________________________________________________________________________
8572 [  2162] By: gsar                                  on 1998/10/31  09:40:31
8573     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8574          Date: Fri, 30 Oct 1998 18:36:20 -0500 (EST)
8575          Message-Id: <199810302336.SAA17336@monk.mps.ohio-state.edu>
8576          Subject: Re: [PATCH 5.00552] Overloaded <> and deref again
8577  Branch: perl
8578        ! pp.h
8579 ____________________________________________________________________________
8580 [  2161] By: gsar                                  on 1998/10/31  09:39:13
8581     Log: From: Albert Dvornik <bert@genscan.com>
8582          Date: 30 Oct 1998 17:50:04 -0500
8583          Message-Id: <tqd879vf4z.fsf@puma.genscan.com>
8584          Subject: [PATCH perl5.00[45]] a2p: make sprintf less greedy without -o
8585  Branch: perl
8586        ! x2p/Makefile.SH x2p/a2p.c x2p/a2p.pod x2p/a2p.y x2p/a2py.c
8587 ____________________________________________________________________________
8588 [  2160] By: gsar                                  on 1998/10/31  09:35:03
8589     Log: fix for bugs in -x mode
8590          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8591          Date: Sat, 31 Oct 1998 00:30:57 -0500 (EST)
8592          Message-Id: <199810310530.AAA22277@monk.mps.ohio-state.edu>
8593          Subject: [PATCH 5.00552] Fix h2xs
8594  Branch: perl
8595        ! utils/h2xs.PL
8596 ____________________________________________________________________________
8597 [  2159] By: gsar                                  on 1998/10/31  09:31:36
8598     Log: Data::Dumper update
8599  Branch: perl
8600        ! ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm
8601        ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/Todo
8602 ____________________________________________________________________________
8603 [  2153] By: gsar                                  on 1998/10/30  21:40:09
8604     Log: add testsuite portion of patch
8605          From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8606          Date: Thu, 29 Oct 1998 23:20:01 -0500 (EST)
8607          Message-Id: <199810300420.XAA25651@monk.mps.ohio-state.edu>
8608          Subject: [PATCH 5.00321 ;-)] 87% speedup
8609  Branch: perl
8610        + t/op/lex_assign.t
8611        ! MANIFEST
8612 ____________________________________________________________________________
8613 [  2152] By: gsar                                  on 1998/10/30  21:08:11
8614     Log: mention the C<$SIG{CHLD} = 'IGNORE'> special case
8615  Branch: perl
8616        ! pod/perlfunc.pod pod/perlipc.pod pod/perlvar.pod
8617 ____________________________________________________________________________
8618 [  2151] By: gsar                                  on 1998/10/30  20:18:09
8619     Log: From: Mark-Jason Dominus <mjd@plover.com>
8620          Date: Fri, 30 Oct 1998 14:24:23 EST
8621          Message-Id: <19981030192423.27276.qmail@plover.com>
8622          Subject: PATCH: (5.005_02)  a2p should use `chomp' instead of `chop'
8623  Branch: perl
8624        ! x2p/walk.c
8625 ____________________________________________________________________________
8626 [  2150] By: gsar                                  on 1998/10/30  20:08:57
8627     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8628          Date: Thu, 29 Oct 1998 22:04:54 -0500 (EST)
8629          Message-Id: <199810300304.WAA23291@monk.mps.ohio-state.edu>
8630          Subject: [PATCH 5.00552] Overloaded <> and deref again
8631  Branch: perl
8632        ! gv.c lib/overload.pm perl.h pp.c pp.h pp_hot.c pp_sys.c sv.c
8633        ! t/pragma/overload.t toke.c
8634 ____________________________________________________________________________
8635 [  2149] By: gsar                                  on 1998/10/30  19:38:15
8636     Log: From: Roderick Schertler <roderick@argon.org>
8637          Date: Thu, 29 Oct 1998 14:50:18 -0500
8638          Message-ID: <17625.909690618@eeyore.ibcinc.com>
8639          Subject: patch for daemonization docs in perlipc
8640  Branch: perl
8641        ! pod/perlipc.pod
8642 ____________________________________________________________________________
8643 [  2148] By: gsar                                  on 1998/10/30  19:36:07
8644     Log: From: Anton Berezin <tobez@plab.ku.dk>
8645          Date: 29 Oct 1998 17:06:25 +0100
8646          Message-ID: <86pvbbuzcu.fsf@lion.plab.ku.dk>
8647          Subject: [PATCH 5.005_52] win32_opendir() fails on empty drives
8648  Branch: perl
8649        ! win32/win32.c
8650 ____________________________________________________________________________
8651 [  2147] By: gsar                                  on 1998/10/30  19:31:37
8652     Log: tweaked version of suggested patch
8653          From: Anton Berezin <tobez@plab.ku.dk>
8654          Date: 29 Oct 1998 14:48:54 +0100
8655          Message-ID: <86yapzv5q1.fsf@lion.plab.ku.dk>
8656          Subject: [PATCH 5.005_52] One more problem with win32_stat and MSVC
8657  Branch: perl
8658        ! win32/win32.c
8659 ____________________________________________________________________________
8660 [  2146] By: gsar                                  on 1998/10/30  19:03:50
8661     Log: hand-apply whitespace-mutiliated patch
8662          From: "vishal bhatia" <vishalb@hotmail.com>
8663          Date: Wed, 28 Oct 1998 23:45:32 PST
8664          Message-ID: <19981029074534.2334.qmail@hotmail.com>
8665          Subject: [PATCH 5.005_52]Compiling modules,more bugfixes for B
8666  Branch: perl
8667        ! ext/B/B/C.pm ext/B/B/CC.pm
8668 ____________________________________________________________________________
8669 [  2145] By: gsar                                  on 1998/10/30  18:46:58
8670     Log: remaining PL_foo stragglers
8671  Branch: perl
8672        ! doio.c ext/B/B.pm ext/IPC/SysV/SysV.xs ext/Opcode/Opcode.pm
8673        ! op.h os2/os2.c vms/gen_shrfls.pl
8674 ____________________________________________________________________________
8675 [  2144] By: gsar                                  on 1998/10/30  17:38:36
8676     Log: integrate cfgperl tweaks into mainline
8677  Branch: perl
8678       !> Makefile.SH README.posix-bc doio.c ext/POSIX/POSIX.xs proto.h
8679       !> t/op/misc.t t/pragma/subs.t t/pragma/warning.t
8680 ____________________________________________________________________________
8681 [  2143] By: jhi                                   on 1998/10/30  13:27:39
8682     Log: There can be multiple yacc/bison errors.
8683  Branch: cfgperl
8684        ! t/op/misc.t t/pragma/subs.t t/pragma/warning.t
8685 ____________________________________________________________________________
8686 [  2142] By: jhi                                   on 1998/10/30  13:18:43
8687     Log: README.posix-bc update.
8688  Branch: cfgperl
8689        ! README.posix-bc
8690 ____________________________________________________________________________
8691 [  2141] By: jhi                                   on 1998/10/30  09:12:59
8692     Log: #2133 fallout.
8693  Branch: cfgperl
8694        ! doio.c ext/POSIX/POSIX.xs
8695 ____________________________________________________________________________
8696 [  2140] By: jhi                                   on 1998/10/30  08:43:18
8697     Log: Integrate from mainperl.
8698  Branch: cfgperl
8699       +> globvar.sym pp.sym
8700        - objpp.h thread.sym
8701       !> (integrate 61 files)
8702 ____________________________________________________________________________
8703 [  2133] By: gsar                                  on 1998/10/30  02:51:39
8704     Log: phase 1 of somewhat major rearrangement of PERL_OBJECT stuff
8705          (objpp.h is gone, embed.pl now does some of that); objXSUB.h
8706          should soon be automated also; the global variables that
8707          escaped the PL_foo conversion are now reined in; renamed
8708          MAGIC in regcomp.h to REG_MAGIC to avoid collision with the
8709          type of same name; duplicated lists of pp_things in various
8710          places is now gone; result has only been tested on win32
8711  Branch: perl
8712        + globvar.sym pp.sym
8713        - objpp.h thread.sym
8714        ! MANIFEST Makefile.SH av.c bytecode.h byterun.h cop.h doio.c
8715        ! doop.c dump.c embed.h embed.pl embedvar.h ext/B/B.xs
8716        ! ext/POSIX/POSIX.xs ext/Thread/Thread.xs global.sym globals.c
8717        ! gv.c malloc.c mg.c objXSUB.h op.c opcode.h opcode.pl perl.c
8718        ! perl.h perl_exp.SH perlvars.h perly.c pod/perlguts.pod pp.c
8719        ! pp.h pp_ctl.c pp_hot.c pp_proto.h pp_sys.c proto.h regcomp.c
8720        ! regcomp.h regcomp.pl regcomp.sym regexec.c regnodes.h run.c
8721        ! scope.c sv.c t/op/filetest.t taint.c thrdvar.h toke.c util.c
8722        ! win32/Makefile win32/config.bc win32/config.gc win32/config.vc
8723        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
8724        ! win32/makedef.pl win32/makefile.mk win32/perlhost.h
8725 ____________________________________________________________________________
8726 [  2130] By: jhi                                   on 1998/10/29  15:31:26
8727     Log: Pure bison yylex() proto was broken.
8728  Branch: cfgperl
8729        ! proto.h
8730 ____________________________________________________________________________
8731 [  2126] By: jhi                                   on 1998/10/29  08:35:54
8732     Log: Integrate mainperl.
8733  Branch: cfgperl
8734       !> INSTALL README.cygwin32 cygwin32/gcc2 cygwin32/ld2
8735       !> lib/ExtUtils/MakeMaker.pm lib/perl5db.pl malloc.c pp.c
8736       !> pp_ctl.c proto.h regexec.c t/pragma/overload.t
8737       !> t/pragma/warn/doio toke.c win32/makefile.mk
8738 ____________________________________________________________________________
8739 [  2125] By: jhi                                   on 1998/10/29  08:32:38
8740     Log: EBCDIC Makefile.SH iteration converges.  Hopefully.
8741  Branch: cfgperl
8742        ! Makefile.SH
8743 ____________________________________________________________________________
8744 [  2124] By: jhi                                   on 1998/10/29  08:06:44
8745     Log: EBCDIC Makefile.SH tuneup.
8746  Branch: cfgperl
8747        ! Makefile.SH
8748 ____________________________________________________________________________
8749 [  2119] By: gsar                                  on 1998/10/28  23:24:04
8750     Log: remove doubled hunk from integration
8751  Branch: perl
8752        ! pp.c
8753 ____________________________________________________________________________
8754 [  2118] By: gsar                                  on 1998/10/28  22:03:31
8755     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8756          Date: Wed, 28 Oct 1998 01:23:27 -0500 (EST)
8757          Message-Id: <199810280623.BAA06968@monk.mps.ohio-state.edu>
8758          Subject: [PATCH 5.00552] Minor debugger tweaks
8759  Branch: perl
8760        ! lib/perl5db.pl
8761 ____________________________________________________________________________
8762 [  2117] By: gsar                                  on 1998/10/28  22:02:30
8763     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
8764          Date: Wed, 28 Oct 1998 01:20:33 -0500 (EST)
8765          Message-Id: <199810280620.BAA06893@monk.mps.ohio-state.edu>
8766          Subject: [PATCH 5.00552] Make sort respect overloading
8767  Branch: perl
8768        ! pp_ctl.c proto.h t/pragma/overload.t
8769 ____________________________________________________________________________
8770 [  2116] By: gsar                                  on 1998/10/28  21:51:11
8771     Log: MM patches from Ilya Zakharevich
8772          Date: Wed, 28 Oct 1998 01:27:04 -0500 (EST)
8773          Message-Id: <199810280627.BAA07053@monk.mps.ohio-state.edu>
8774          Subject: [PATCH 5.00552] Make MakeMaker more verbose
8775          --
8776          Date: Wed, 28 Oct 1998 01:25:36 -0500 (EST)
8777          Message-Id: <199810280625.BAA06980@monk.mps.ohio-state.edu>
8778          Subject: [PATCH 5.00552] Make MakeMaker ignore errors in kid Makefile.PL
8779  Branch: perl
8780        ! lib/ExtUtils/MakeMaker.pm
8781 ____________________________________________________________________________
8782 [  2115] By: gsar                                  on 1998/10/28  21:46:19
8783     Log: add explicit references to perl source path in ld2 and gcc2
8784  Branch: perl
8785        ! README.cygwin32 cygwin32/gcc2 cygwin32/ld2
8786 ____________________________________________________________________________
8787 [  2114] By: gsar                                  on 1998/10/28  21:39:56
8788     Log: From: Andy Dougherty <doughera@lafcol.lafayette.edu>
8789          Date: Tue, 27 Oct 1998 10:40:41 -0500 (EST)
8790          Message-Id: <Pine.SUN.3.96.981027103726.28498E-100000@newton.phys>
8791          Subject: [PATCH] Re: Problems with: Creating an installable tar archive
8792  Branch: perl
8793        ! INSTALL
8794 ____________________________________________________________________________
8795 [  2113] By: gsar                                  on 1998/10/28  21:21:16
8796     Log: integrate cfgperl into mainline
8797  Branch: perl
8798       +> t/op/filetest.t
8799       !> Configure MANIFEST Makefile.SH config_h.SH perl.h perly.y
8800       !> perly_c.diff pp.c proto.h t/comp/require.t t/io/pipe.t
8801       !> t/op/groups.t t/op/misc.t t/pragma/subs.t t/pragma/warning.t
8802       !> thread.h toke.c vmesa/Makefile
8803 ____________________________________________________________________________
8804 [  2112] By: gsar                                  on 1998/10/28  21:14:18
8805     Log: minor cleanup
8806  Branch: perl
8807        ! malloc.c regexec.c t/pragma/warn/doio win32/makefile.mk
8808 ____________________________________________________________________________
8809 [  2111] By: gsar                                  on 1998/10/28  18:52:10
8810     Log: smarter C<$SIG{FOO} = BAREWORD;> warning
8811  Branch: perl
8812        ! toke.c
8813 ____________________________________________________________________________
8814 [  2110] By: jhi                                   on 1998/10/28  15:07:54
8815     Log: posix-bc doesn't want to regenerate a2p.h from a2p.y.
8816  Branch: cfgperl
8817        ! Makefile.SH
8818 ____________________________________________________________________________
8819 [  2109] By: jhi                                   on 1998/10/28  13:39:54
8820     Log: a2p.y needs to generate also y.tab.h.
8821  Branch: cfgperl
8822        ! Makefile.SH
8823 ____________________________________________________________________________
8824 [  2108] By: jhi                                   on 1998/10/28  10:33:36
8825     Log: The "parse error" must be converted to "syntax error",
8826          just matching it aint' enough.
8827  Branch: cfgperl
8828        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
8829        ! t/pragma/warning.t
8830 ____________________________________________________________________________
8831 [  2107] By: jhi                                   on 1998/10/28  10:23:05
8832     Log: Regen sig_n{ame,umber}* if slightest doubt.
8833  Branch: cfgperl
8834        ! Configure
8835 ____________________________________________________________________________
8836 [  2106] By: jhi                                   on 1998/10/28  08:44:49
8837     Log: Bison says 'parse error', not 'parser error'.
8838  Branch: cfgperl
8839        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
8840        ! t/pragma/warning.t
8841 ____________________________________________________________________________
8842 [  2105] By: jhi                                   on 1998/10/28  08:42:09
8843     Log: yylex() parametrization.
8844  Branch: cfgperl
8845        ! proto.h toke.c
8846 ____________________________________________________________________________
8847 [  2104] By: jhi                                   on 1998/10/28  08:25:09
8848     Log: Bring in #2102.
8849  Branch: cfgperl
8850        ! pp.c
8851 ____________________________________________________________________________
8852 [  2103] By: jhi                                   on 1998/10/28  08:22:04
8853     Log: From: Dominic Dunlop <domo@vo.lu>
8854          Subject: [PATCH 5.005_02]  Re: perl5.004_04 testing problem
8855          Date: 27 Oct 1998 20:47:25 +0200
8856          Message-ID: <MLIST_v03110700b25b7dc95bbc@[212.24.192.87]>
8857  Branch: cfgperl
8858        ! t/op/groups.t
8859 ____________________________________________________________________________
8860 [  2102] By: larry                                 on 1998/10/27  18:58:55
8861     Log: utf8 change to quotemeta broke EBCDIC
8862  Branch: perl
8863        ! pp.c
8864 ____________________________________________________________________________
8865 [  2101] By: jhi                                   on 1998/10/27  12:55:34
8866     Log: $Config{sig_num_init}.
8867          Also, a new approach to the 'pthreads-created-joinable': drop
8868          it and use {PTHREAD_CREATE_{JOINABLE,UNDETACHED},__UNDETACHED}
8869          directly. (See also #2096).
8870  Branch: cfgperl
8871        ! Configure config_h.SH
8872 ____________________________________________________________________________
8873 [  2100] By: jhi                                   on 1998/10/27  10:48:55
8874     Log: Regenerated perly_c.diff.
8875  Branch: cfgperl
8876        ! perly_c.diff
8877 ____________________________________________________________________________
8878 [  2099] By: jhi                                   on 1998/10/27  08:42:25
8879     Log: First the mangler was Netscape, then it was me.
8880  Branch: cfgperl
8881        ! vmesa/Makefile
8882 ____________________________________________________________________________
8883 [  2098] By: jhi                                   on 1998/10/27  08:34:40
8884     Log: `id -Gn` might be available where `groups` is not.
8885  Branch: cfgperl
8886        ! t/op/groups.t
8887 ____________________________________________________________________________
8888 [  2097] By: jhi                                   on 1998/10/27  08:05:17
8889     Log: Netscape had mangled the tabs.
8890  Branch: cfgperl
8891        ! vmesa/Makefile
8892 ____________________________________________________________________________
8893 [  2096] By: jhi                                   on 1998/10/27  08:03:05
8894     Log: ATTR_JOINABLE logic, based on (private email)
8895          
8896          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
8897          Subject: Some little diffs
8898          Message-ID: <36350969.DA33E7B4@mailbox.tabnsw.com.au>
8899          Date: Tue, 27 Oct 1998 13:44:42 +1300
8900  Branch: cfgperl
8901        ! thread.h
8902 ____________________________________________________________________________
8903 [  2095] By: jhi                                   on 1998/10/27  07:56:57
8904     Log: Mach cthreads support based on:
8905          
8906          From: brie@corp.home.net (Brian Harrison)
8907          Subject: perl5.005_02 patch for mthreads
8908          To: perl5-porters@perl.org
8909          Date: 24 Oct 1998 01:01:55 +0300
8910          Message-ID: <MLIST_Pine.GSO.4.04.9810231410220.11111-200000@sulaco.eos.home.net>
8911          
8912          Pthread yield probe (dejavu)
8913          Cosmetic nanochange for the union semun output.
8914          Better inttypes.h probe.
8915          Undo the 'void *' $selecttype probe from #1971 because
8916          it breaks the $selectminbits test.
8917  Branch: cfgperl
8918        ! Configure config_h.SH perl.h thread.h
8919 ____________________________________________________________________________
8920 [  2094] By: jhi                                   on 1998/10/26  13:02:07
8921     Log: Also posix-bc wants to reyacc.
8922  Branch: cfgperl
8923        ! Makefile.SH
8924 ____________________________________________________________________________
8925 [  2093] By: jhi                                   on 1998/10/26  10:17:21
8926     Log: Removed !(*s & 0x80) from pp_quotemeta(), introduced after
8927          5_02 and really breaking things in non-ASCII worlds.
8928  Branch: cfgperl
8929        ! pp.c
8930 ____________________________________________________________________________
8931 [  2092] By: jhi                                   on 1998/10/26  09:08:00
8932     Log: More robustness.
8933  Branch: cfgperl
8934        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
8935        ! t/pragma/warning.t
8936 ____________________________________________________________________________
8937 [  2091] By: jhi                                   on 1998/10/26  08:47:32
8938     Log: s/YYLEXPARAM/PERL_YYLEX_PARAM_DECL/g
8939          Bison really wants YYLEX_PARAM.
8940  Branch: cfgperl
8941        ! perly.y proto.h toke.c
8942 ____________________________________________________________________________
8943 [  2090] By: jhi                                   on 1998/10/26  08:21:25
8944     Log: s/YYLEX_PARAM/YYLEXPARAM/
8945  Branch: cfgperl
8946        ! perly.y
8947 ____________________________________________________________________________
8948 [  2089] By: jhi                                   on 1998/10/26  08:17:33
8949     Log: Indicate skipped subtests.
8950  Branch: cfgperl
8951        ! t/io/pipe.t
8952 ____________________________________________________________________________
8953 [  2088] By: jhi                                   on 1998/10/26  08:11:36
8954     Log: Integrate from mainperl.
8955  Branch: cfgperl
8956       !> (integrate 54 files)
8957 ____________________________________________________________________________
8958 [  2087] By: jhi                                   on 1998/10/26  08:08:02
8959     Log: Add test for filetests.
8960  Branch: cfgperl
8961        + t/op/filetest.t
8962        ! MANIFEST
8963 ____________________________________________________________________________
8964 [  2086] By: gsar                                  on 1998/10/26  02:44:44
8965     Log: various win32 tweaks; disable new xs_cpp section (it creates
8966          ambiguous inference graph for %.xs --> %.o)
8967  Branch: perl
8968        ! ext/Thread/Thread.xs gv.c lib/ExtUtils/MakeMaker.pm mg.c pp.c
8969        ! pp_hot.c proto.h win32/GenCAPI.pl win32/Makefile
8970        ! win32/config.gc win32/config_H.gc win32/makedef.pl
8971        ! win32/makefile.mk win32/win32.h
8972 ____________________________________________________________________________
8973 [  2085] By: gsar                                  on 1998/10/26  00:50:02
8974     Log: sanity-check $Config{drand01} in rand.t
8975  Branch: perl
8976        ! t/op/rand.t win32/config.bc win32/config.gc win32/config.vc
8977        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
8978 ____________________________________________________________________________
8979 [  2078] By: gsar                                  on 1998/10/25  10:22:04
8980     Log: update win32/config*.?c
8981  Branch: perl
8982        ! Changes win32/config.bc win32/config.gc win32/config.vc
8983        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
8984 ____________________________________________________________________________
8985 [  2077] By: gsar                                  on 1998/10/25  08:39:25
8986     Log: From: Graham Barr <gbarr@pobox.com>
8987          Date: Sat, 24 Oct 1998 21:45:50 -0500
8988          Message-ID: <19981024214550.C508@pobox.com>
8989          Subject: Re: die with a reference  should use overload "" operator
8990  Branch: perl
8991        ! pp_ctl.c
8992 ____________________________________________________________________________
8993 [  2076] By: gsar                                  on 1998/10/25  08:37:49
8994     Log: From: Graham Barr <gbarr@pobox.com>
8995          Date: Sat, 24 Oct 1998 12:45:21 -0500
8996          Message-ID: <19981024124521.C512@pobox.com>
8997          Subject: [PATCH 5.005_02] Re: Auto-incrementing tied scalar causes SEGV
8998  Branch: perl
8999        ! sv.c
9000 ____________________________________________________________________________
9001 [  2075] By: gsar                                  on 1998/10/25  08:24:09
9002     Log: fix C<print $n += 5;> etc.
9003  Branch: perl
9004        ! toke.c
9005 ____________________________________________________________________________
9006 [  2074] By: gsar                                  on 1998/10/25  08:12:28
9007     Log: list builtins with portability caveats
9008          From: Jarkko Hietaniemi <jhi@iki.fi>
9009          Date: Fri, 23 Oct 1998 14:05:23 +0300 (EET DST)
9010          Message-Id: <199810231105.OAA02411@alpha.hut.fi>
9011          Subject: [PATCH] 5.005_02 and 5.005_52: perlfunc.pod and perlport.pod
9012  Branch: perl
9013        ! pod/perlfunc.pod
9014 ____________________________________________________________________________
9015 [  2073] By: gsar                                  on 1998/10/25  07:55:43
9016     Log: fix stack overrun in file test operators
9017  Branch: perl
9018        ! pp_sys.c
9019 ____________________________________________________________________________
9020 [  2072] By: gsar                                  on 1998/10/25  07:29:45
9021     Log: implement C<goto &func> and other fixes (via private mail)
9022          From:    "vishal bhatia" <vishalb@hotmail.com>
9023          Date:    Wed, 21 Oct 1998 22:59:03 PDT
9024          Message-Id: <19981022055904.20083.qmail@hotmail.com>
9025          Subject: [PATCH 5.005_52] More fixes for B
9026  Branch: perl
9027        ! ext/B/B.pm ext/B/B.xs ext/B/B/C.pm ext/B/B/CC.pm
9028 ____________________________________________________________________________
9029 [  2071] By: gsar                                  on 1998/10/25  07:14:41
9030     Log: From: Graham Barr <gbarr@pobox.com>
9031          Date: Sat, 17 Oct 1998 20:42:41 -0500
9032          Message-ID: <19981017204241.G510@pobox.com>
9033          Subject: Re: taint checking for: use lib "$ENV{'EVIL'}"
9034  Branch: perl
9035        ! pp_ctl.c
9036 ____________________________________________________________________________
9037 [  2070] By: gsar                                  on 1998/10/25  07:07:29
9038     Log: avoid bogus line number in XSUB redefined warnings
9039  Branch: perl
9040        ! op.c
9041 ____________________________________________________________________________
9042 [  2069] By: gsar                                  on 1998/10/25  06:59:03
9043     Log: From: Martijn Koster <mak@excitecorp.com>
9044          Date: Wed, 21 Oct 1998 13:12:03 +0100
9045          Message-ID: <19981021131203.A15661@excitecorp.com>
9046          Subject: File::Path::mkpath reports the wrong error
9047  Branch: perl
9048        ! lib/File/Path.pm
9049 ____________________________________________________________________________
9050 [  2068] By: gsar                                  on 1998/10/25  06:54:43
9051     Log: From: Zachary Miller <zcmiller@simon.er.usgs.gov>
9052          Date: Tue, 20 Oct 1998 20:52:20 -0500
9053          Message-Id: <199810210152.UAA07792@simon.er.usgs.gov>
9054          Subject: Exporter.pm's export_to_level() argument handling buggy
9055  Branch: perl
9056        ! lib/Exporter.pm
9057 ____________________________________________________________________________
9058 [  2067] By: gsar                                  on 1998/10/25  06:50:19
9059     Log: From: jan.dubois@ibm.net (Jan Dubois)
9060          Date: Wed, 21 Oct 1998 00:55:51 +0200
9061          Message-ID: <36380269.55370608@smtp1.ibm.net>
9062          Subject: Make _really_ sure Dynaloader.xs code is initialized only once
9063  Branch: perl
9064        ! ext/DynaLoader/DynaLoader_pm.PL
9065 ____________________________________________________________________________
9066 [  2066] By: gsar                                  on 1998/10/25  06:48:19
9067     Log: recognize '%' as a shell metachar for win32
9068          From: jan.dubois@ibm.net (Jan Dubois)
9069          Date: Tue, 20 Oct 1998 21:57:35 +0200
9070          Message-ID: <3636ea31.49170453@smtp1.ibm.net>
9071          Subject: [PATCH 5.005_02, Win32]  Re: %ENV% not expanded in backquotes?
9072  Branch: perl
9073        ! win32/win32.c
9074 ____________________________________________________________________________
9075 [  2065] By: gsar                                  on 1998/10/25  06:46:30
9076     Log: remove FAST_SV_GETS remnant (as suggested by Gisle Aas)
9077  Branch: perl
9078        ! sv.c
9079 ____________________________________________________________________________
9080 [  2064] By: gsar                                  on 1998/10/25  06:45:09
9081     Log: From: Gisle Aas <gisle@aas.no>
9082          Date: 20 Oct 1998 14:24:44 +0200
9083          Message-ID: <m34sszctf7.fsf@furu.g.aas.no>
9084          Subject: ord() and unpack("U*",...) should not be negative
9085  Branch: perl
9086        ! pp.c
9087 ____________________________________________________________________________
9088 [  2063] By: gsar                                  on 1998/10/25  06:42:29
9089     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9090          Date: Sun, 18 Oct 1998 23:20:57 -0400 (EDT)
9091          Message-Id: <199810190320.XAA28249@monk.mps.ohio-state.edu>
9092          Subject: [PATCH 5.005_*] Improve sbrk() on OS/2
9093  Branch: perl
9094        ! os2/os2.c
9095 ____________________________________________________________________________
9096 [  2062] By: gsar                                  on 1998/10/25  06:41:26
9097     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9098          Date: Sun, 18 Oct 1998 23:10:29 -0400 (EDT)
9099          Message-Id: <199810190310.XAA28102@monk.mps.ohio-state.edu>
9100          Subject: [PATCH 5.005_*] Speed up aassign
9101  Branch: perl
9102        ! pp_hot.c
9103 ____________________________________________________________________________
9104 [  2061] By: gsar                                  on 1998/10/25  06:39:04
9105     Log: From: Graham Barr <gbarr@pobox.com>
9106          Date: Sat, 17 Oct 1998 22:22:02 -0500
9107          Message-ID: <19981017222202.J510@pobox.com>
9108          Subject: Re: '*' prototype does not allow bareword with strict
9109  Branch: perl
9110        ! toke.c
9111 ____________________________________________________________________________
9112 [  2060] By: gsar                                  on 1998/10/25  06:37:34
9113     Log: handle '::' in section names properly
9114          From: Graham Barr <gbarr@pobox.com>
9115          Date: Sat, 17 Oct 1998 12:57:54 -0500
9116          Message-ID: <19981017125754.C510@pobox.com>
9117          Subject: Re: pod2html
9118  Branch: perl
9119        ! lib/Pod/Html.pm
9120 ____________________________________________________________________________
9121 [  2059] By: gsar                                  on 1998/10/25  06:33:43
9122     Log: integrate changes#1982,2014,2021 (from maint-5.005)
9123  Branch: perl
9124       !> av.c doop.c ext/POSIX/POSIX.xs hv.c lib/ExtUtils/MakeMaker.pm
9125       !> mg.c mg.h pp.c pp_hot.c pp_sys.c scope.c t/op/tie.t
9126 ____________________________________________________________________________
9127 [  2058] By: gsar                                  on 1998/10/25  05:44:17
9128     Log: allow more win32 symbol exports (suggested by Jan Dubois)
9129  Branch: perl
9130        ! win32/makedef.pl
9131 ____________________________________________________________________________
9132 [  2057] By: gsar                                  on 1998/10/25  05:40:40
9133     Log: integrate change#2053 from maint-5.005
9134  Branch: perl
9135       !> cop.h t/cmd/while.t
9136 ____________________________________________________________________________
9137 [  2056] By: gsar                                  on 1998/10/25  05:16:41
9138     Log: commented version of a patch suggested by Drago Goricanec
9139          From: Jarkko Hietaniemi <jhi@cc.hut.fi>
9140          Date: 16 Oct 1998 15:24:45 +0300
9141          Message-ID: <oeeogrc1ype.fsf@alpha.hut.fi>
9142          Subject: Re: [PATCH 5.005_52] Linux select fails with more than 32 FDs
9143  Branch: perl
9144        ! pp_sys.c
9145 ____________________________________________________________________________
9146 [  2055] By: gsar                                  on 1998/10/25  05:11:03
9147     Log: include eof() in description of buffering caveats
9148          From: Anton Berezin <tobez@plab.ku.dk>
9149          Date: Fri, 16 Oct 1998 19:22:41 +0200 (CEST)
9150          Message-Id: <199810161722.TAA28813@lion.plab.ku.dk>
9151          Subject: [DOCPATCH] pod/perlfunc.pod
9152  Branch: perl
9153        ! pod/perlfunc.pod
9154 ____________________________________________________________________________
9155 [  2054] By: gsar                                  on 1998/10/25  05:07:42
9156     Log: disallow 'x' in hex numbers (except leading '0x')
9157          From: Gisle Aas <gisle@aas.no>
9158          Date: 16 Oct 1998 16:33:12 +0200
9159          Message-ID: <m3n26wtw47.fsf@furu.g.aas.no>
9160          Subject: Re: [PATCH 5.005_52] 'x' is not a legal hex digit
9161  Branch: perl
9162        ! perlvars.h t/op/oct.t util.c
9163 ____________________________________________________________________________
9164 [  2052] By: gsar                                  on 1998/10/25  04:49:04
9165     Log: avoid the circular refcnt logic in magic_mutexfree()
9166  Branch: perl
9167        ! mg.c pp.c pp_hot.c
9168 ____________________________________________________________________________
9169 [  2051] By: gsar                                  on 1998/10/25  04:35:07
9170     Log: properly restore PL_rsfp_filters after require
9171  Branch: perl
9172        ! embed.h global.sym objXSUB.h objpp.h pp_ctl.c proto.h scope.c
9173        ! scope.h
9174 ____________________________________________________________________________
9175 [  2050] By: gsar                                  on 1998/10/25  02:42:32
9176     Log: integrate cfgperl changes back into mainline
9177  Branch: perl
9178       +> README.posix-bc hints/posix-bc.sh hints/vmesa.sh
9179       +> vmesa/Makefile vmesa/vmesa.c vmesa/vmesaish.h
9180       !> (integrate 33 files)
9181 ____________________________________________________________________________
9182 [  2049] By: gsar                                  on 1998/10/25  01:30:48
9183     Log: avoid "mysterious" compile-time failures without messages
9184  Branch: perl
9185        ! gv.c
9186 ____________________________________________________________________________
9187 [  2041] By: gsar                                  on 1998/10/23  21:11:56
9188     Log: checkin jpl under //depot/perlext/jpl/...
9189  Branch: perlext
9190        + jpl/JNI/Changes jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/MANIFEST
9191        + jpl/JNI/Makefile.PL jpl/JNI/test.pl jpl/JNI/typemap
9192        + jpl/JPL/AutoLoader.pm jpl/JPL/Class.pm jpl/JPL/Compile.pm
9193        + jpl/JPL/Makefile.PL jpl/JPL_Rolo/JPL_Rolo.jpl
9194        + jpl/JPL_Rolo/Makefile.PL jpl/JPL_Rolo/README
9195        + jpl/JPL_Rolo/cardfile jpl/PerlInterpreter/Makefile
9196        + jpl/PerlInterpreter/Makefile.PL
9197        + jpl/PerlInterpreter/PerlInterpreter.c
9198        + jpl/PerlInterpreter/PerlInterpreter.h
9199        + jpl/PerlInterpreter/PerlInterpreter.java jpl/README
9200        + jpl/Sample/Makefile.PL jpl/Sample/Sample.jpl
9201        + jpl/Test/Makefile.PL jpl/Test/Test.jpl jpl/bin/jpl
9202        + jpl/get_jdk/README jpl/get_jdk/get_jdk.pl
9203        + jpl/get_jdk/jdk_hosts jpl/install-jpl
9204 ____________________________________________________________________________
9205 [  2040] By: larry                                 on 1998/10/23  19:31:42
9206     Log: chr(0xFFFFFFFF) didn't translate to utf8 character
9207  Branch: perl
9208        ! pp.c
9209 ____________________________________________________________________________
9210 [  2039] By: larry                                 on 1998/10/23  18:48:34
9211     Log: tr///d does not seem to work
9212  Branch: perl
9213        ! lib/utf8_heavy.pl
9214 ____________________________________________________________________________
9215 [  2038] By: larry                                 on 1998/10/23  18:00:41
9216     Log: Program with utf8 identifiers fails to compile
9217  Branch: perl
9218        ! doop.c gv.c op.c pp.c pp_hot.c toke.c
9219 ____________________________________________________________________________
9220 [  2037] By: jhi                                   on 1998/10/23  14:04:51
9221     Log: Test suite portability:
9222          - posix-bc does not write to broken pipes
9223          - filehand #11 only iff we have fork
9224          - warning.t can now match $expected using regular expressions
9225  Branch: cfgperl
9226        ! t/io/pipe.t t/lib/filehand.t t/pragma/warn/doio
9227        ! t/pragma/warning.t
9228 ____________________________________________________________________________
9229 [  2036] By: jhi                                   on 1998/10/23  12:12:07
9230     Log: yacc clarification.
9231  Branch: cfgperl
9232        ! README.posix-bc
9233 ____________________________________________________________________________
9234 [  2035] By: jhi                                   on 1998/10/23  12:09:59
9235     Log: Some C compilers get upset about 8-bit characters in /* comments. */
9236  Branch: cfgperl
9237        ! mg.c
9238 ____________________________________________________________________________
9239 [  2034] By: jhi                                   on 1998/10/22  09:11:52
9240     Log: Configure update: both for pthread_yield more robust
9241          testing (all variants of pthread_attr_getdetachstate()) --
9242          and because Configure was broken in major way! About 1000
9243          last lines were truncated.
9244  Branch: cfgperl
9245        ! Configure
9246 ____________________________________________________________________________
9247 [  2033] By: jhi                                   on 1998/10/22  07:47:10
9248     Log: DJGPP feedback for #2028.
9249  Branch: cfgperl
9250        ! thread.h
9251 ____________________________________________________________________________
9252 [  2032] By: jhi                                   on 1998/10/21  13:03:57
9253     Log: yielding, the saga continues.
9254  Branch: cfgperl
9255        ! Configure config_h.SH
9256       !> av.c lib/constant.pm op.c pod/perldiag.pod pp_ctl.c
9257       !> t/op/goto.t t/pragma/constant.t
9258 ____________________________________________________________________________
9259 [  2031] By: jhi                                   on 1998/10/21  09:15:42
9260     Log: VM/ESA feedback for #2028.
9261  Branch: cfgperl
9262        ! Configure config_h.SH thread.h
9263 ____________________________________________________________________________
9264 [  2030] By: gsar                                  on 1998/10/21  04:22:53
9265     Log: fix handling of mayhaps-extended @_ in goto &sub
9266  Branch: perl
9267        ! av.c pp_ctl.c t/op/goto.t
9268 ____________________________________________________________________________
9269 [  2029] By: gsar                                  on 1998/10/21  00:54:14
9270     Log: restore sanity to "constant" references
9271  Branch: perl
9272        ! lib/constant.pm op.c pod/perldiag.pod t/pragma/constant.t
9273 ____________________________________________________________________________
9274 [  2028] By: jhi                                   on 1998/10/20  15:01:20
9275     Log: OLD_PTHREADS_API reorganizing.
9276  Branch: cfgperl
9277        ! dosish.h ext/Thread/Thread.xs perl.h thread.h util.c
9278        ! vmesa/vmesaish.h
9279 ____________________________________________________________________________
9280 [  2027] By: jhi                                   on 1998/10/20  14:14:51
9281     Log: #2026 fallout.
9282  Branch: cfgperl
9283        ! Makefile.SH
9284 ____________________________________________________________________________
9285 [  2026] By: jhi                                   on 1998/10/20  11:47:21
9286     Log: VM/ESA update.
9287  Branch: cfgperl
9288        ! Makefile.SH vmesa/vmesa.c vmesa/vmesaish.h
9289 ____________________________________________________________________________
9290 [  2025] By: jhi                                   on 1998/10/20  08:20:56
9291     Log: 64-bitness, based on
9292          
9293          From: Scott Henry <scotth@sgi.com>
9294          To: perl-64bit@perl.org
9295          Message-ID: <yd8u30zyerl.fsf@hoshi.engr.sgi.com>
9296          Subject: Re: Configure problems/questions...
9297          Date: 19 Oct 1998 22:38:06 -0700
9298  Branch: cfgperl
9299        ! hints/irix_6.sh perl.h
9300 ____________________________________________________________________________
9301 [  2024] By: jhi                                   on 1998/10/20  08:09:07
9302     Log: Add lseeksize.
9303  Branch: cfgperl
9304        ! config_h.SH
9305 ____________________________________________________________________________
9306 [  2023] By: jhi                                   on 1998/10/20  08:08:33
9307     Log: Mumble about _yields() only when threaded.
9308  Branch: cfgperl
9309        ! Configure
9310 ____________________________________________________________________________
9311 [  2022] By: jhi                                   on 1998/10/20  07:46:26
9312     Log: Thinko at PTHREADS_CREATED_JOINABLE.
9313  Branch: cfgperl
9314        ! thread.h
9315 ____________________________________________________________________________
9316 [  2021] By: gbarr                                 on 1998/10/20  01:25:23
9317     Log: From: Chip Salzenberg <chip@perlsupport.com>
9318          Date: Tue, 6 Oct 1998 13:33:05 -0400
9319          Message-ID: <19981006133305.A2348@perlsupport.com>
9320          Subject: [PATCH] 5.005_02: Eliminate leak on self-ties
9321  Branch: maint-5.005/perl
9322        ! av.c doop.c hv.c mg.c mg.h pp.c pp_hot.c pp_sys.c scope.c
9323        ! t/op/tie.t
9324 ____________________________________________________________________________
9325 [  2020] By: jhi                                   on 1998/10/19  09:15:53
9326     Log: YIELD more robustly.
9327  Branch: cfgperl
9328        ! thread.h
9329 ____________________________________________________________________________
9330 [  2019] By: jhi                                   on 1998/10/19  08:48:33
9331     Log: VM/ESA (and OS390) are in between of OLD_PTHREADS_API and
9332          the 'new' one (just like DJGPP, it seems).
9333  Branch: cfgperl
9334        ! thread.h
9335 ____________________________________________________________________________
9336 [  2018] By: jhi                                   on 1998/10/19  07:02:44
9337     Log: vmesaish.h doesn't exclude unixish.h.
9338  Branch: cfgperl
9339        ! perl.h
9340 ____________________________________________________________________________
9341 [  2017] By: jhi                                   on 1998/10/19  06:44:19
9342     Log: 1<<$randbits is not good for randbits=48.
9343  Branch: cfgperl
9344        ! t/op/rand.t
9345 ____________________________________________________________________________
9346 [  2016] By: jhi                                   on 1998/10/19  06:39:47
9347     Log: Make #2012 glob pattern more portable.
9348  Branch: cfgperl
9349        ! Makefile.SH
9350 ____________________________________________________________________________
9351 [  2014] By: gbarr                                 on 1998/10/17  20:31:42
9352     Log: Fix POSIX::sigprocmask not to check type of $old parameter
9353          as it is output only
9354  Branch: maint-5.005/perl
9355        ! ext/POSIX/POSIX.xs
9356 ____________________________________________________________________________
9357 [  2012] By: jhi                                   on 1998/10/17  15:04:23
9358     Log: clean numbered core dumps and t/tmp[0-9]*.
9359  Branch: cfgperl
9360        ! Makefile.SH
9361 ____________________________________________________________________________
9362 [  2011] By: jhi                                   on 1998/10/17  14:59:15
9363     Log: More robust yacc/bison failure output handling.
9364  Branch: cfgperl
9365        ! t/comp/require.t t/op/misc.t t/pragma/subs.t
9366 ____________________________________________________________________________
9367 [  2010] By: jhi                                   on 1998/10/17  14:51:05
9368     Log: BC2000 POSIX update.
9369  Branch: cfgperl
9370        ! MANIFEST
9371 ____________________________________________________________________________
9372 [  2009] By: jhi                                   on 1998/10/17  14:49:46
9373     Log: POSIX BC2000 port from perl-mvs:
9374          
9375          Subject: Ported perl 5.005.02 to BS2000 / POSIX
9376          From: Dorner Thomas <Thomas.Dorner@start.de> 
9377          Date: Tue, 29 Sep 1998 13:29:36 +0100 
9378          Message-ID: <9CE47B416A24D2118BC40000F84009B20B72C5@start.de> 
9379  Branch: cfgperl
9380        + README.posix-bc hints/posix-bc.sh
9381        ! Configure MANIFEST perl.c perly.y proto.h t/lib/cgi-html.t
9382        ! t/op/magic.t t/op/pack.t t/op/quotemeta.t t/op/subst.t toke.c
9383        ! unixish.h
9384 ____________________________________________________________________________
9385 [  2008] By: jhi                                   on 1998/10/17  14:07:49
9386     Log: VM/ESA-update.
9387  Branch: cfgperl
9388        ! MANIFEST
9389 ____________________________________________________________________________
9390 [  2007] By: jhi                                   on 1998/10/17  13:55:34
9391     Log: Forgot few S_I* imports.
9392  Branch: cfgperl
9393        ! t/lib/ipc_sysv.t
9394 ____________________________________________________________________________
9395 [  2006] By: jhi                                   on 1998/10/17  13:43:54
9396     Log: The VM/ESA port essentials, based on
9397          
9398          perl-mvs:
9399          
9400          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
9401          Subject: Re: Can't find Data/Dumper.pm
9402          Date: Mon, 28 Sep 1998 07:40:49 +1300
9403          Message-ID: <360E86B0.23847AF4@mailbox.tabnsw.com.au>
9404          
9405          private email:
9406          
9407          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
9408          Subject: Re: Perl thread problems in VM/ESA
9409          Date: Thu, 15 Oct 1998 07:18:35 +1300
9410          Message-ID: <3624EAFA.16163A2B@mailbox.tabnsw.com.au>
9411          
9412          and private email:
9413          
9414          From: Neale Ferguson <NEALE@PUCC.PRINCETON.EDU>
9415          Subject:  perl archive
9416          Date:  Sun, 11 Oct 1998 19:28:54 EDT
9417          Message-Id: <19981011233112Z67215-26626+1513@outbound.Princeton.EDU>
9418          which gave a pointer to
9419          
9420          http://pucc.princeton.edu/~neale/perl.tar
9421          
9422          (based on Perl 5.005_51)
9423  Branch: cfgperl
9424        + hints/vmesa.sh vmesa/Makefile vmesa/vmesa.c vmesa/vmesaish.h
9425        ! ext/Errno/Errno_pm.PL perl.c perl.h perly.y pp_sys.c
9426        ! t/io/pipe.t t/lib/cgi-html.t t/lib/ipc_sysv.t t/op/magic.t
9427        ! t/op/pack.t t/op/quotemeta.t t/op/subst.t util.c x2p/a2p.h
9428 ____________________________________________________________________________
9429 [  2005] By: jhi                                   on 1998/10/17  13:17:19
9430     Log: Integrate mainperl.
9431  Branch: cfgperl
9432       !> Porting/genlog ext/B/B/CC.pm ext/POSIX/POSIX.pm
9433       !> lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker.pm
9434       !> lib/Term/Complete.pm op.c opcode.h opcode.pl os2/Makefile.SHs
9435       !> os2/os2.c pod/perlfunc.pod pod/perlxs.pod pp.c sv.c
9436       !> t/op/grent.t t/op/sysio.t t/op/tiehandle.t toke.c
9437       !> utils/perldoc.PL vms/ext/Stdio/Stdio.pm win32/Makefile
9438       !> win32/makefile.mk
9439 ____________________________________________________________________________
9440 [  2004] By: jhi                                   on 1998/10/17  11:19:06
9441     Log: Removed an extra ' from the int64_t test.
9442  Branch: cfgperl
9443        ! Configure
9444 ____________________________________________________________________________
9445 [  2003] By: gsar                                  on 1998/10/17  04:11:40
9446     Log: silence -w noises (suggested by Greg Bacon)
9447  Branch: perl
9448        ! lib/Term/Complete.pm
9449 ____________________________________________________________________________
9450 [  2002] By: gsar                                  on 1998/10/17  04:07:48
9451     Log: From: Gisle Aas <gisle@aas.no>
9452          Date: 14 Oct 1998 15:53:14 +0200
9453          Message-ID: <m3g1cr9rn9.fsf@furu.g.aas.no>
9454          Subject: Re: chr(0xFFFF_FFFF) and "\x{10_FFFF}" [PATCH 5.005_52]
9455  Branch: perl
9456        ! util.c
9457 ____________________________________________________________________________
9458 [  2001] By: gsar                                  on 1998/10/17  04:06:10
9459     Log: From: Gisle Aas <gisle@aas.no>
9460          Date: 14 Oct 1998 15:17:44 +0200
9461          Message-ID: <m3iuhn9taf.fsf@furu.g.aas.no>
9462          Subject: [PATCH 5.005_52] Core dump from "Missing right brace on \x{}"
9463  Branch: perl
9464        ! toke.c
9465 ____________________________________________________________________________
9466 [  2000] By: gsar                                  on 1998/10/17  03:06:33
9467     Log: From: Gisle Aas <gisle@aas.no>
9468          Date: 14 Oct 1998 00:38:06 +0200
9469          Message-ID: <m3iuhonl4h.fsf@furu.g.aas.no>
9470          Subject: [PATCH 5.005_52] utf8 substr can access memory outside PVX buffer
9471  Branch: perl
9472        ! sv.c
9473 ____________________________________________________________________________
9474 [  1999] By: gsar                                  on 1998/10/17  03:04:48
9475     Log: From: Dan Sugalski <sugalskd@osshe.edu>
9476          Date: Tue, 13 Oct 1998 15:10:57 -0700
9477          Message-Id: <3.0.6.32.19981013151057.00a947a0@ous.edu>
9478          Subject: [PATCH 5.004/5.005/5.006]Doc patch to VMS::Stdio module
9479  Branch: perl
9480        ! vms/ext/Stdio/Stdio.pm
9481 ____________________________________________________________________________
9482 [  1998] By: gsar                                  on 1998/10/17  03:00:40
9483     Log: skip readonly vars and unref references when doing a reset()
9484  Branch: perl
9485        ! sv.c
9486 ____________________________________________________________________________
9487 [  1997] By: gsar                                  on 1998/10/17  02:49:19
9488     Log: fix buggy treatment of large checksums on unicode strings
9489          From: Gisle Aas <gisle@aas.no>
9490          Date: 13 Oct 1998 21:35:39 +0200
9491          Message-ID: <m31zocp850.fsf@furu.g.aas.no>
9492          Subject: unpack("%48U*",...)  [PATCH 5.005_52]
9493  Branch: perl
9494        ! pp.c
9495 ____________________________________________________________________________
9496 [  1996] By: gsar                                  on 1998/10/17  02:43:22
9497     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9498          Date: Tue, 13 Oct 1998 04:46:00 -0400 (EDT)
9499          Message-Id: <199810130846.EAA00769@monk.mps.ohio-state.edu>
9500          Subject: [PATCH 5.005_52] Memory overrun in os2.c
9501  Branch: perl
9502        ! os2/Makefile.SHs os2/os2.c
9503 ____________________________________________________________________________
9504 [  1995] By: gsar                                  on 1998/10/17  02:42:01
9505     Log: clarify section name rules for typemaps
9506  Branch: perl
9507        ! pod/perlxs.pod
9508 ____________________________________________________________________________
9509 [  1994] By: gsar                                  on 1998/10/17  02:33:02
9510     Log: whitespace-proof grent.t
9511  Branch: perl
9512        ! t/op/grent.t
9513 ____________________________________________________________________________
9514 [  1993] By: gsar                                  on 1998/10/17  02:27:29
9515     Log: fix bug in B::CC::pp_sassign()
9516          From: "vishal bhatia" <vishalb@hotmail.com>
9517          Date: Sun, 11 Oct 1998 18:41:38 PDT
9518          Message-ID: <19981012014139.19614.qmail@hotmail.com>
9519          Subject: B::CC problems with pp_sassign routine
9520  Branch: perl
9521        ! ext/B/B/CC.pm
9522 ____________________________________________________________________________
9523 [  1992] By: gsar                                  on 1998/10/17  02:17:49
9524     Log: applied suggested patch with small doc tweak
9525          From: Gisle Aas <gisle@aas.no>
9526          Date: 11 Oct 1998 12:53:13 +0200
9527          Message-ID: <m3u31bfjza.fsf@furu.g.aas.no>
9528          Subject: Re: [PATCH 5.005_52] Optional syswrite LENGTH argument
9529  Branch: perl
9530        ! opcode.h opcode.pl pod/perlfunc.pod pp_sys.c t/op/sysio.t
9531        ! t/op/tiehandle.t
9532 ____________________________________________________________________________
9533 [  1991] By: gsar                                  on 1998/10/17  02:08:30
9534     Log: apply non-conflicting parts from suggested patch
9535          From: jan.dubois@ibm.net (Jan Dubois)
9536          Date: Sat, 10 Oct 1998 13:15:45 +0200
9537          Message-ID: <36223ed7.18279374@smtp1.ibm.net>
9538          Subject: [PATCH 5.005_52] Still more MakeMaker  patches
9539  Branch: perl
9540        ! lib/ExtUtils/MM_Win32.pm lib/ExtUtils/MakeMaker.pm
9541 ____________________________________________________________________________
9542 [  1990] By: gsar                                  on 1998/10/17  02:01:24
9543     Log: provide option to enable optimization with VC (suggested by Jan
9544          Dubois)
9545  Branch: perl
9546        ! win32/Makefile win32/makefile.mk
9547 ____________________________________________________________________________
9548 [  1989] By: gsar                                  on 1998/10/17  01:55:27
9549     Log: Rhapsody DR2 has bsd/ctypes.h, not objc/NXCType.h (suggested by
9550          Dave Leppik <dleppik@gage.com>
9551  Branch: perl
9552        ! perl.h
9553 ____________________________________________________________________________
9554 [  1988] By: gsar                                  on 1998/10/17  01:49:05
9555     Log: stray typo found by Hugo van der Sanden
9556  Branch: perl
9557        ! op.c
9558 ____________________________________________________________________________
9559 [  1987] By: gsar                                  on 1998/10/17  01:45:52
9560     Log: perldoc pod update
9561          From: Daniel Grisinger <dgris@perrin.dimensional.com>
9562          Date: 06 Oct 1998 23:56:51 -0600
9563          Message-ID: <m3g1d0kj8c.fsf@perrin.dimensional.com>
9564          Subject: [PATCH _02 and _52] perldoc
9565  Branch: perl
9566        ! utils/perldoc.PL
9567 ____________________________________________________________________________
9568 [  1986] By: gsar                                  on 1998/10/17  01:41:40
9569     Log: qualify names of builtins
9570  Branch: perl
9571        ! ext/POSIX/POSIX.pm
9572 ____________________________________________________________________________
9573 [  1982] By: gbarr                                 on 1998/10/17  00:20:57
9574     Log: From: Jochen Wiedmann <joe@ispsoft.de>
9575          Date: Thu, 17 Sep 1998 17:16:06 +0200
9576          Message-ID: <360127B6.E44564A@ispsoft.de>
9577          Subject: [PATCH] ExtUtils::MakeMaker::prompt cannot return 0
9578  Branch: maint-5.005/perl
9579        ! lib/ExtUtils/MakeMaker.pm
9580 ____________________________________________________________________________
9581 [  1978] By: gsar                                  on 1998/10/16  01:58:58
9582     Log: integrate cfgperl mods into mainline
9583  Branch: perl
9584       +> ext/DynaLoader/dl_vmesa.xs
9585        ! Porting/genlog
9586       !> Configure MANIFEST Makefile.SH config_h.SH
9587       !> ext/Thread/Thread.xs gv.c hints/hpux.sh hints/irix_6.sh
9588       !> hints/linux.sh hints/os390.sh op.c t/op/pat.t thread.h
9589       !> x2p/Makefile.SH
9590 ____________________________________________________________________________
9591 [  1976] By: gsar                                  on 1998/10/16  00:10:52
9592     Log: stray tweak
9593  Branch: perl
9594        ! op.c
9595 ____________________________________________________________________________
9596 [  1975] By: gsar                                  on 1998/10/15  23:54:38
9597     Log: propagate typeness of lexicals while cloning them
9598  Branch: perl
9599        ! op.c
9600 ____________________________________________________________________________
9601 [  1974] By: gsar                                  on 1998/10/15  23:53:25
9602     Log: s/last/first/ typo in append_list()
9603  Branch: perl
9604        ! op.c
9605 ____________________________________________________________________________
9606 [  1973] By: gsar                                  on 1998/10/15  20:06:17
9607     Log: nuke confperl branch and contents
9608  Branch: confperl
9609        - (delete 1284 files)
9610 ____________________________________________________________________________
9611 [  1972] By: jhi                                   on 1998/10/15  07:07:35
9612     Log: Test #162 had been added but the "print 1..161" had not been updated.
9613  Branch: cfgperl
9614        ! t/op/pat.t
9615 ____________________________________________________________________________
9616 [  1971] By: gsar                                  on 1998/10/15  03:09:58
9617     Log: check in all confperl changes as of change#1964 into cfgperl
9618  Branch: cfgperl
9619        + ext/DynaLoader/dl_vmesa.xs
9620        ! Configure MANIFEST Makefile.SH config_h.SH
9621        ! ext/Thread/Thread.xs gv.c hints/hpux.sh hints/irix_6.sh
9622        ! hints/linux.sh hints/os390.sh op.c thread.h x2p/Makefile.SH
9623 ____________________________________________________________________________
9624 [  1970] By: gsar                                  on 1998/10/15  03:05:59
9625     Log: integrate mainline to get tr.t
9626  Branch: cfgperl
9627       +> t/op/tr.t
9628 ____________________________________________________________________________
9629 [  1969] By: gsar                                  on 1998/10/15  03:04:17
9630     Log: add missing tr.t to repository
9631  Branch: perl
9632        + t/op/tr.t
9633 ____________________________________________________________________________
9634 [  1968] By: gsar                                  on 1998/10/15  03:02:43
9635     Log: create cfgperl branch
9636  Branch: cfgperl
9637       +> (branch 1282 files)
9638 ____________________________________________________________________________
9639 [  1967] By: gsar                                  on 1998/10/15  02:46:08
9640     Log: correct bugs exposed in MM_Unix.pm by commenting out Selfloader
9641          (MAN3PODS cannot be set to ' '; stray stricture violation)
9642  Branch: perl
9643        ! ext/B/Makefile.PL ext/DB_File/Makefile.PL
9644        ! ext/Data/Dumper/Makefile.PL ext/DynaLoader/Makefile.PL
9645        ! ext/Errno/Makefile.PL ext/Fcntl/Makefile.PL
9646        ! ext/GDBM_File/Makefile.PL ext/IO/Makefile.PL
9647        ! ext/IPC/SysV/Makefile.PL ext/NDBM_File/Makefile.PL
9648        ! ext/ODBM_File/Makefile.PL ext/Opcode/Makefile.PL
9649        ! ext/POSIX/Makefile.PL ext/SDBM_File/Makefile.PL
9650        ! ext/Socket/Makefile.PL ext/Thread/Makefile.PL
9651        ! ext/attrs/Makefile.PL ext/re/Makefile.PL
9652        ! lib/ExtUtils/MM_Unix.pm
9653 ____________________________________________________________________________
9654 [  1966] By: gsar                                  on 1998/10/15  02:19:03
9655     Log: tweak to make fix in change#1944 behave correctly for closures
9656          created within eval''
9657  Branch: perl
9658        ! op.c t/op/eval.t
9659 ____________________________________________________________________________
9660 [  1965] By: gsar                                  on 1998/10/14  23:22:41
9661     Log: use better numbers for exitstatus test
9662  Branch: perl
9663        ! t/op/die_exit.t
9664 ____________________________________________________________________________
9665 [  1964] By: jhi                                   on 1998/10/14  17:25:41
9666     Log: Add VM/ESA dynaloading (uses <dll.h>).
9667  Branch: confperl
9668        + ext/DynaLoader/dl_vmesa.xs
9669        ! MANIFEST
9670 ____________________________________________________________________________
9671 [  1963] By: jhi                                   on 1998/10/14  17:17:10
9672     Log: Remove a2p.loadmap in 'clean' target.
9673  Branch: confperl
9674        ! x2p/Makefile.SH
9675 ____________________________________________________________________________
9676 [  1962] By: jhi                                   on 1998/10/14  17:13:11
9677     Log: VM/ESA produces also .prelmaps. (No, not .perlmaps...)
9678  Branch: confperl
9679        ! Makefile.SH
9680 ____________________________________________________________________________
9681 [  1961] By: jhi                                   on 1998/10/14  16:27:39
9682     Log: VM/ESA creates executable.loadmaps.
9683  Branch: confperl
9684        ! Makefile.SH
9685 ____________________________________________________________________________
9686 [  1960] By: jhi                                   on 1998/10/14  15:37:39
9687     Log: Introduce SCHED_YIELD (one of sched_yield(),
9688          pthread_yield(), or pthread_yield(NULL)).
9689          YIELD is then defined using SCHED_YIELD unless
9690          a platform-specific YIELD has already been defined.
9691          
9692          Support pthread_attr_setdetachstate(pthread_attr_t*, int*).
9693          
9694          The need for pthread_yield(NULL) and pthread_attr_setdet...
9695          introduced by (private email)
9696          
9697          From: Neale Ferguson <neale@VMA.TABNSW.COM.AU>
9698          Date: Sat, 10 Oct 1998 21:08:15 +1300
9699          Message-ID: <361F15EE.47376EC@mailbox.tabnsw.com.au>
9700          Subject: Re: Perl thread problems in VM/ESA
9701          
9702          Better select() protoprobe (for AIX), from (private email)
9703          From: Andy Dougherty <doughera@lafcol.lafayette.edu>
9704          Date: Fri, 2 Oct 1998 14:52:25 -0400 (EDT)
9705          Message-Id: <Pine.SUN.3.96.981002144601.11832D-100000@newton.phys>
9706          Subject: AIX select (fwd)
9707          From: Lars Hecking <lhecking@nmrc.ucc.ie>
9708          To: Andy Dougherty <doughera@lafcol.lafayette.edu>
9709          Date: Fri, 2 Oct 1998 10:40:01 +0100
9710          Subject: AIX select
9711          
9712          Linux-avoid-so.X.Y, based on
9713          From: "Kurt D. Starsinic" <kstar@chapin.edu>
9714          Date: Tue, 13 Oct 1998 15:55:07 -0400
9715          Message-ID: <19981013155507.B4004@O2.chapin.edu>
9716          Subject: Re: [PATCH 5.005_52] [Was: Re: How can Debian accomodate new installation ?]
9717  Branch: confperl
9718        ! Configure config_h.SH ext/Thread/Thread.xs hints/linux.sh
9719        ! thread.h
9720 ____________________________________________________________________________
9721 [  1959] By: jhi                                   on 1998/10/14  12:51:26
9722     Log: Some old pthread implementations have
9723          pthread_attr_setdetachstate(pthread_attr_t*, int*).
9724  Branch: confperl
9725        ! ext/Thread/Thread.xs
9726 ____________________________________________________________________________
9727 [  1958] By: jhi                                   on 1998/10/14  12:41:11
9728     Log: SCHED_YIELD and ATTR_JOINABLE fixes.  Thread.xs and Configure
9729          counterparts will follow soon.
9730  Branch: confperl
9731        ! thread.h
9732 ____________________________________________________________________________
9733 [  1957] By: jhi                                   on 1998/10/14  12:38:11
9734     Log: Add tr.t (MANIFEST already knew about it, strange)
9735  Branch: confperl
9736        + t/op/tr.t
9737 ____________________________________________________________________________
9738 [  1956] By: jhi                                   on 1998/10/14  12:24:35
9739     Log: Mutexen should be initialized only once.
9740  Branch: confperl
9741        ! gv.c op.c
9742 ____________________________________________________________________________
9743 [  1955] By: jhi                                   on 1998/10/14  12:19:38
9744     Log: os390 has its own cppstdin.
9745  Branch: confperl
9746        ! hints/os390.sh
9747 ____________________________________________________________________________
9748 [  1954] By: jhi                                   on 1998/10/14  12:15:06
9749     Log: Integrate with mainperl.
9750  Branch: confperl
9751       !> (integrate 1280 files)
9752 ____________________________________________________________________________
9753 [  1953] By: jhi                                   on 1998/10/14  11:48:08
9754     Log: Removed duplicate CMA threads code for HPUX 10.X.
9755          (probably residue of patch(1) being too understanding)
9756          Enhanced 64-bit settings. (redo change#1940)
9757  Branch: confperl
9758        ! hints/hpux.sh
9759 ____________________________________________________________________________
9760 [  1952] By: jhi                                   on 1998/10/14  11:45:16
9761     Log: (redo change#1949) Detypo in the d_open64 warning about
9762          the impending WHOA.
9763  Branch: confperl
9764        ! hints/irix_6.sh
9765 ____________________________________________________________________________
9766 [  1951] By: jhi                                   on 1998/10/14  10:54:16
9767     Log: Mutexen should only be inited once, after they have been New()ed.
9768  Branch: confperl
9769        ! gv.c op.c
9770 ____________________________________________________________________________
9771 [  1950] By: jhi                                   on 1998/10/14  10:41:43
9772     Log: Own cppstdin.
9773  Branch: confperl
9774        ! hints/os390.sh
9775 ____________________________________________________________________________
9776 [  1949] By: jhi                                   on 1998/10/14  10:34:23
9777     Log: Detypo in the d_open64 warning about the impending WHOA.
9778  Branch: confperl
9779        ! hints/irix_6.sh
9780 ____________________________________________________________________________
9781 [  1948] By: gsar                                  on 1998/10/14  05:38:01
9782     Log: two typos
9783  Branch: perl
9784        ! pp_hot.c t/op/eval.t
9785 ____________________________________________________________________________
9786 [  1947] By: gsar                                  on 1998/10/14  05:37:10
9787     Log: let docatch() pass the buck when restartop turns out to be null,
9788          making exceptions in BEGIN{} propagate as expected
9789  Branch: perl
9790        ! pp_ctl.c t/op/misc.t
9791 ____________________________________________________________________________
9792 [  1946] By: gsar                                  on 1998/10/13  03:41:49
9793     Log: add missing file from change#1943
9794  Branch: perl
9795        ! proto.h
9796 ____________________________________________________________________________
9797 [  1945] By: gsar                                  on 1998/10/13  03:32:02
9798     Log: defer "deep recursion" warnings until CXt_SUB context is properly
9799          set up
9800  Branch: perl
9801        ! pp_hot.c t/pragma/warn/pp_hot
9802 ____________________________________________________________________________
9803 [  1944] By: gsar                                  on 1998/10/13  03:15:50
9804     Log: change#1614 merely disabled earlier fix (doh!); undo it and properly
9805          fixup the cop_seq value that must be seen by lexical lookups that
9806          emanate within eval''
9807  Branch: perl
9808        ! cop.h op.c pp_ctl.c pp_hot.c scope.c t/op/eval.t
9809 ____________________________________________________________________________
9810 [  1943] By: gsar                                  on 1998/10/13  02:06:09
9811     Log: ensure recursive attempts to findlex()icals know enough about where
9812          the last eval'' context was encountered
9813  Branch: perl
9814        ! op.c t/op/eval.t
9815 ____________________________________________________________________________
9816 [  1942] By: gsar                                  on 1998/10/13  02:01:24
9817     Log: force copy of substrings when matching against temporaries
9818  Branch: perl
9819        ! pp_hot.c t/op/pat.t
9820 ____________________________________________________________________________
9821 [  1941] By: gsar                                  on 1998/10/13  01:49:16
9822     Log: don't longjmp() in pp_goto() (regressive bug from old single-stack
9823          implementation)
9824  Branch: perl
9825        ! pp_ctl.c t/op/runlevel.t
9826 ____________________________________________________________________________
9827 [  1940] By: jhi                                   on 1998/10/12  09:57:44
9828     Log: Removed duplicate CMA threads code for HPUX 10.X.
9829          (probably residue of patch(1) being too understanding)
9830          Enhanced 64-bit settings.
9831  Branch: confperl
9832        ! hints/hpux.sh
9833 ____________________________________________________________________________
9834 [  1939] By: jhi                                   on 1998/10/12  09:53:11
9835     Log: Initial sync from mainline perl.
9836  Branch: confperl
9837        + (add 1282 files)
9838 ____________________________________________________________________________
9839 [  1937] By: gsar                                  on 1998/10/06  21:16:34
9840     Log: fix $/ init for USE_THREADS
9841  Branch: perl
9842        ! perl.c
9843 ____________________________________________________________________________
9844 [  1936] By: gsar                                  on 1998/10/06  07:19:39
9845     Log: fix globals caught by change#1927; builds and tests on Solaris
9846  Branch: perl
9847        ! Changes mg.c op.c perl.c pp_ctl.c regcomp.c utf8.c utf8.h
9848        ! warning.h warning.pl
9849 ____________________________________________________________________________
9850 [  1935] By: gsar                                  on 1998/10/06  06:50:35
9851     Log: add test for previous fix
9852  Branch: perl
9853        ! ext/Thread/create.t
9854 ____________________________________________________________________________
9855 [  1934] By: gsar                                  on 1998/10/06  06:37:36
9856     Log: fix USE_THREADS coredump due to uninitialized PL_hv_fetch_ent_mh
9857  Branch: perl
9858        ! util.c
9859 ____________________________________________________________________________
9860 [  1933] By: gsar                                  on 1998/10/06  05:04:20
9861     Log: undo bogus part of change#1903 (as pointed out by Larry)
9862  Branch: perl
9863        ! pp_ctl.c
9864 ____________________________________________________________________________
9865 [  1932] By: gsar                                  on 1998/10/06  04:21:31
9866     Log: added tweaked version of suggested patch
9867          From: jan.dubois@ibm.net (Jan Dubois)
9868          Date: Sat, 03 Oct 1998 19:04:48 +0200
9869          Message-ID: <361d54b2.36841294@smtp1.ibm.net>
9870          Subject: [PATCH 5.005_52] More MakeMaker  patches
9871  Branch: perl
9872        ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm
9873        ! lib/ExtUtils/Mkbootstrap.pm lib/ExtUtils/Mksymlists.pm
9874 ____________________________________________________________________________
9875 [  1931] By: gsar                                  on 1998/10/06  04:04:33
9876     Log: use cpp symbols instead of hardwired constants
9877          From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
9878          Date: Mon, 05 Oct 1998 09:23:33 +0100
9879          Message-Id: <199810050823.JAA00891@crypt.compulink.co.uk>
9880          Subject: [PATCH 5.005_52] By the numbers (resend)
9881  Branch: perl
9882        ! op.c
9883 ____________________________________________________________________________
9884 [  1930] By: gsar                                  on 1998/10/06  04:01:55
9885     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9886          Message-Id: <199810050637.CAA07781@monk.mps.ohio-state.edu>
9887          Date: Mon, 5 Oct 1998 02:37:43 -0400 (EDT)
9888          Subject: [PATCH 5.005_52] Cumulative OS/2-related patch
9889  Branch: perl
9890        ! Makefile.SH hints/os2.sh lib/ExtUtils/MM_OS2.pm mg.c
9891        ! os2/Changes os2/Makefile.SHs os2/os2.c perl_exp.SH util.c
9892 ____________________________________________________________________________
9893 [  1929] By: gsar                                  on 1998/10/06  03:50:36
9894     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9895          Date: Mon, 5 Oct 1998 02:39:00 -0400 (EDT)
9896          Message-Id: <199810050639.CAA07803@monk.mps.ohio-state.edu>
9897          Subject: [PATCH 5.00552] Minor test improvement
9898  Branch: perl
9899        ! t/op/magic.t
9900 ____________________________________________________________________________
9901 [  1928] By: gsar                                  on 1998/10/06  03:49:03
9902     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
9903          Date: Mon, 5 Oct 1998 02:38:23 -0400 (EDT)
9904          Message-Id: <199810050638.CAA07792@monk.mps.ohio-state.edu>
9905          Subject: [PATCH 5.00552] emacs/ptags inprovements
9906  Branch: perl
9907        ! emacs/ptags
9908 ____________________________________________________________________________
9909 [  1927] By: gsar                                  on 1998/10/06  03:47:44
9910     Log: disable C<#define dirty PL_dirty> et al.
9911  Branch: perl
9912        ! embed.pl embedvar.h
9913 ____________________________________________________________________________
9914 [  1926] By: gsar                                  on 1998/10/06  03:43:32
9915     Log: From: Mark-Jason Dominus <mjd@plover.com>
9916          Date: Sun, 04 Oct 1998 14:48:11 -0400
9917          Message-ID: <19981004184811.16048.qmail@plover.com>
9918          Subject: PATCH: perldoc -f does not locate -e, -r, -x, etc.
9919  Branch: perl
9920        ! utils/perldoc.PL
9921 ____________________________________________________________________________
9922 [  1925] By: gsar                                  on 1998/10/06  03:27:35
9923     Log: disable USE_THREADS when PERL_OBJECT is enabled
9924  Branch: perl
9925        ! win32/Makefile win32/makefile.mk
9926 ____________________________________________________________________________
9927 [  1924] By: gsar                                  on 1998/10/06  03:26:54
9928     Log: remove spurious unused conflicting globals (PL_yy{v,s}sp)
9929  Branch: perl
9930        ! Makefile.SH Todo-5.005 embedvar.h perlvars.h perly.c toke.c
9931        ! vms/perly_c.vms
9932 ____________________________________________________________________________
9933 [  1923] By: gsar                                  on 1998/10/03  05:19:56
9934     Log: make C<use> recognize C<require> overrides; allow C<do EXPR> to be
9935          overridden
9936  Branch: perl
9937        ! embed.h global.sym objXSUB.h objpp.h op.c perly.c perly.y
9938        ! proto.h vms/perly_c.vms
9939 ____________________________________________________________________________
9940 [  1922] By: gsar                                  on 1998/10/03  03:59:50
9941     Log: suppress manifypods leak in extensions
9942  Branch: perl
9943        ! ext/Errno/Makefile.PL ext/IPC/SysV/Makefile.PL pod/pod2man.PL
9944 ____________________________________________________________________________
9945 [  1921] By: gsar                                  on 1998/10/02  22:30:15
9946     Log: os390 fixes (suggested by Peter Prymmer)
9947  Branch: perl
9948        ! Makefile.SH regcomp.c
9949 ____________________________________________________________________________
9950 [  1920] By: gsar                                  on 1998/10/02  21:41:19
9951     Log: squelch undef warnings
9952          From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
9953          Date: Fri, 02 Oct 1998 11:01:14 +0100
9954          Message-Id: <199810021001.LAA19214@crypt.compulink.co.uk>
9955          Subject: [PATCH] Re: Apparent bug in Math::BigInt 
9956  Branch: perl
9957        ! Changes lib/Math/BigInt.pm
9958 ____________________________________________________________________________
9959 [  1919] By: gsar                                  on 1998/10/02  04:59:13
9960     Log: add note to INSTALL about ANSI C
9961  Branch: perl
9962        ! INSTALL
9963 ____________________________________________________________________________
9964 [  1918] By: gsar                                  on 1998/10/02  04:21:10
9965     Log: tolerate spaces when fixing up __cplusplus output by old h2xs
9966          From: jan.dubois@ibm.net (Jan Dubois)
9967          Date: Wed, 30 Sep 1998 23:35:30 +0200
9968          Message-ID: <3619a1e8.12336659@smtp1.ibm.net>
9969          Subject: [PATCH 5.005_52]: xsubpp and PERL_OBJECT
9970  Branch: perl
9971        ! lib/ExtUtils/xsubpp
9972 ____________________________________________________________________________
9973 [  1917] By: gsar                                  on 1998/10/02  04:16:02
9974     Log: From: Jarkko Hietaniemi <jhi@iki.fi>
9975          Date: Thu, 1 Oct 1998 11:37:26 +0300 (EET DST)
9976          Message-Id: <199810010837.LAA31371@alpha.hut.fi>
9977          Subject: Re: Configure test for selectbits busted
9978  Branch: perl
9979        ! Configure
9980 ____________________________________________________________________________
9981 [  1916] By: gsar                                  on 1998/10/02  04:14:17
9982     Log: From: Dan Sugalski <sugalskd@osshe.edu>
9983          Date: Wed, 30 Sep 1998 17:15:20 -0700
9984          Message-Id: <3.0.6.32.19980930171520.00b22eb0@ous.edu>
9985          Subject: [PATCH 5.005_02]VMS config tweaks
9986  Branch: perl
9987        ! vms/descrip_mms.template vms/subconfigure.com
9988 ____________________________________________________________________________
9989 [  1915] By: gsar                                  on 1998/10/02  04:10:47
9990     Log: use Off_t to permit 64-bit seek()
9991          From: Scott Henry <scotth@sgi.com>
9992          Date: 29 Sep 1998 17:38:46 -0700
9993          Message-ID: <yd8lnn2zb6x.fsf_-_@hoshi.engr.sgi.com>
9994          Subject: Re: [PATCH] 5.005_02: Configure "Massive Attack"
9995          --
9996          Date: 28 Sep 1998 18:55:37 -0700
9997          Message-ID: <yd8ogrz1y3q.fsf@hoshi.engr.sgi.com>
9998          Subject: Re: [PATCH] 5.005_51: Configure "Massive Attack"
9999  Branch: perl
10000        ! doio.c pp_sys.c proto.h sv.c
10001 ____________________________________________________________________________
10002 [  1914] By: gsar                                  on 1998/10/02  04:05:36
10003     Log: normalize tm struct passed to strftime() with mktime()
10004          From: Spider Boardman <spider@orb.nashua.nh.us>
10005          Date: Wed, 30 Sep 1998 15:12:09 -0400
10006          Message-Id: <199809301912.PAA26119@Orb.Nashua.NH.US>
10007          Subject: [PATCH 5.005_52] Re: POSIX::strftime returns incorrect date 
10008  Branch: perl
10009        ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
10010 ____________________________________________________________________________
10011 [  1913] By: gsar                                  on 1998/10/02  03:59:46
10012     Log: don't try to run foo_SH.orig etc.
10013  Branch: perl
10014        ! Configure
10015 ____________________________________________________________________________
10016 [  1912] By: gsar                                  on 1998/10/02  03:45:37
10017     Log: make warning about glob process failure optional
10018  Branch: perl
10019        ! pod/perldiag.pod pp_hot.c
10020 ____________________________________________________________________________
10021 [  1911] By: gsar                                  on 1998/10/02  02:52:21
10022     Log: document yet another RE diagnostic, make it consistent with REG_INFTY
10023          From: Dominic Dunlop <domo@vo.lu>
10024          Date: Tue, 29 Sep 1998 21:06:30 +0000
10025          Message-Id: <v03110700b236f60b1375@[212.24.192.106]>
10026          Subject: [PATCH 5.005_52] Fix hard-coded "matches null string many times" limit
10027          --
10028          Date: Wed, 30 Sep 1998 11:46:44 +0000
10029          Message-Id: <v03110702b237beb04830@[212.24.192.74]>
10030          Subject: [PATCH 5.005_52] Add "Strange *+?{} ..." to perldiag
10031  Branch: perl
10032        ! pod/perldiag.pod regcomp.c
10033 ____________________________________________________________________________
10034 [  1910] By: gsar                                  on 1998/10/02  02:48:48
10035     Log: minor Configure tweaks (via private mail)
10036          From: Jarkko Hietaniemi <jhi@iki.fi>
10037          Date: Wed, 30 Sep 1998 02:25:06 +0300 (EET DST)
10038          Message-Id: <199809292325.CAA19737@alpha.hut.fi>
10039          Subject: [PATCH] 5.005_52: the drizzle continues
10040  Branch: perl
10041        ! Configure config_h.SH handy.h
10042 ____________________________________________________________________________
10043 [  1909] By: gsar                                  on 1998/10/02  02:46:39
10044     Log: update SCO hints for dynamic loading
10045          From: Andy Dougherty <doughera@lafcol.lafayette.edu>
10046          Date: Mon, 28 Sep 1998 16:50:38 -0400 (EDT)
10047          Message-Id: <Pine.SUN.3.96.980928164648.8130E-100000@newton.phys>
10048          Subject: [PATCH 5.004_04-MAINT_TRIAL_5 and 5.005_xx] Re: Perl on SCO_SV
10049          --
10050          Date: Tue, 29 Sep 1998 16:48:55 -0400 (EDT)
10051          Message-Id: <Pine.SUN.3.96.980929164612.8634A-100000@newton.phys>
10052          Subject: Re: [PATCH 5.004_04-MAINT_TRIAL_5 and 5.005_xx] Re: Perl on SCO_SV
10053  Branch: perl
10054        ! hints/sco.sh
10055 ____________________________________________________________________________
10056 [  1908] By: gsar                                  on 1998/10/02  02:33:39
10057     Log: make File::Find work when wanted() is autoloaded or a symbolic ref
10058  Branch: perl
10059        ! lib/File/Find.pm
10060 ____________________________________________________________________________
10061 [  1907] By: gsar                                  on 1998/10/02  02:21:52
10062     Log: applied patches, but retained old behavior for win32 (where compilers
10063          can't read from stdin at all)
10064          From: Graham Barr <gbarr@ti.com>
10065          Date: Mon, 28 Sep 1998 09:41:49 -0500
10066          Message-ID: <19980928094149.B26576@asic.sc.ti.com>
10067          Subject: Re: 5.005_51 Errno invokes cpprun incorrectly
10068          --
10069          Date: Tue, 29 Sep 1998 12:35:43 -0500
10070          Message-ID: <19980929123543.Z26576@asic.sc.ti.com>
10071          Subject: Re: 5.005_51 Errno invokes cpprun incorrectly
10072  Branch: perl
10073        ! ext/Errno/Errno_pm.PL
10074 ____________________________________________________________________________
10075 [  1906] By: gsar                                  on 1998/10/02  02:02:19
10076     Log: tolerate whitespace in /etc/group entries (suggested by Jarkko
10077          Hietaniemi)
10078  Branch: perl
10079        ! t/op/grent.t
10080 ____________________________________________________________________________
10081 [  1905] By: gsar                                  on 1998/10/02  01:59:56
10082     Log: win32 caveats about truncate()
10083  Branch: perl
10084        ! pod/perlport.pod
10085 ____________________________________________________________________________
10086 [  1904] By: gsar                                  on 1998/10/02  01:53:25
10087     Log: various Configure and hints updates (prefer drand48() or random()
10088          over rand(); add -Dusemultiplicity; enhanced 64-bitness);  patch
10089          applied modulo SCO hints superceded by later patch
10090          From: Jarkko Hietaniemi <jhi@iki.fi>
10091          Date: Tue, 29 Sep 1998 00:56:33 +0300 (EET DST)
10092          Message-Id: <199809282156.AAA18615@alpha.hut.fi>
10093          Subject: [PATCH] 5.005_52: Configure et al:
10094  Branch: perl
10095        + ext/IPC/SysV/hints/next_3.pl
10096        ! Configure INSTALL MANIFEST config_h.SH ext/IPC/SysV/SysV.xs
10097        ! hints/dec_osf.sh hints/irix_6.sh hints/next_3.sh
10098        ! hints/solaris_2.sh perl.h pod/perldiag.pod pp.c pp_sys.c
10099 ____________________________________________________________________________
10100 [  1903] By: gsar                                  on 1998/10/02  01:42:37
10101     Log: fixes for bugs in /RE/p        from Hugo van der Sanden
10102          Date: Mon, 28 Sep 1998 17:41:49 +0100
10103          Message-Id: <199809281641.RAA02450@crypt.compulink.co.uk>
10104          Subject: [PATCH 5.005_52] Re: More on ?p 
10105          --
10106          Date: Thu, 01 Oct 1998 09:10:58 +0100
10107          Message-Id: <199810010810.JAA16426@crypt.compulink.co.uk>
10108          Subject: [PATCH 5.005_52] ?p fix
10109          --
10110          Date: Thu, 01 Oct 1998 10:45:56 +0100
10111          Message-Id: <199810010945.KAA16733@crypt.compulink.co.uk>
10112          Subject: [PATCH 5.005_52] more on ?p
10113  Branch: perl
10114        ! pp_ctl.c
10115 ____________________________________________________________________________
10116 [  1902] By: gsar                                  on 1998/10/02  01:36:14
10117     Log: From: Kenneth Duda <kjd@cisco.com>
10118          Date: Sun, 27 Sep 1998 20:22:12 -0700 (PDT)
10119          Message-Id: <199809280322.UAA01261@scorpion.cisco.com>
10120          Subject: writemain dies when there are more than 4000 characters of extensions
10121  Branch: perl
10122        ! writemain.SH
10123 ____________________________________________________________________________
10124 [  1901] By: gsar                                  on 1998/10/02  01:33:16
10125     Log: tweak run_byacc recipe
10126  Branch: perl
10127        ! Makefile.SH Porting/pumpkin.pod
10128 ____________________________________________________________________________
10129 [  1900] By: gsar                                  on 1998/10/02  01:02:09
10130     Log: use SETERRNO() to reset errno (suggested by Charles Bailey)
10131  Branch: perl
10132        ! perl.h pp_ctl.c
10133 ____________________________________________________________________________
10134 [  1899] By: gsar                                  on 1998/09/28  20:46:30
10135     Log: fix various 5.00552 mishaps (fixes suggested by Jan Dubois,
10136          Kurt Starsinic, Spider Boardman, Dan Sugalski and Albert
10137          Dvornik)
10138  Branch: perl
10139        ! hints/irix_6.sh lib/ExtUtils/MakeMaker.pm mg.c scope.c
10140 ____________________________________________________________________________
10141 [  1898] By: gsar                                  on 1998/09/28  20:42:52
10142     Log: flush unsubmitted 5.00552 change
10143  Branch: perl
10144        ! MANIFEST
10145 ____________________________________________________________________________
10146 [  1897] By: gsar                                  on 1998/09/27  04:43:06
10147     Log: run vms_yfix.pl
10148  Branch: perl
10149        ! vms/perly_c.vms
10150 ____________________________________________________________________________
10151 [  1896] By: gsar                                  on 1998/09/27  03:38:55
10152     Log: small tweak on last change
10153  Branch: perl
10154        ! win32/win32.c
10155 ____________________________________________________________________________
10156 [  1895] By: gsar                                  on 1998/09/27  03:17:17
10157     Log: fix win32_stat() to do the right thing for share names
10158  Branch: perl
10159        ! win32/win32.c
10160 ____________________________________________________________________________
10161 [  1891] By: larry                                 on 1998/09/25  18:50:40
10162     Log: Fixed apostrophe problem from Mark Knutsen.
10163  Branch: perl
10164        ! sv.h
10165
10166 ----------------
10167 Version 5.005_52
10168 ----------------
10169
10170 ____________________________________________________________________________
10171 [  1890] By: gsar                                  on 1998/09/25  10:25:00
10172     Log: update template config.sh, add new config vars to win32 stuff
10173  Branch: perl
10174        ! Changes Porting/config.sh Porting/config_H config_h.SH objpp.h
10175        ! pp_sys.c proto.h win32/config.bc win32/config.gc
10176        ! win32/config.vc win32/config_H.bc win32/config_H.gc
10177        ! win32/config_H.vc win32/win32.h
10178 ____________________________________________________________________________
10179 [  1889] By: gsar                                  on 1998/09/25  07:13:13
10180     Log: big Configure update from Jarkko: sync metaconfig units; d_statblks fix
10181          for Linux; hpux CMA-threads hints; ELF support for FreeBSD; beginnings
10182          of full-fledged 64-bit support (including support for: fseeko/ftello,
10183          Quad_t aka long long, hpux and irix 64-bits hints, new 64-bit constants
10184          in Fcntl)
10185          From: Jarkko Hietaniemi <jhi@iki.fi>
10186          Date: Fri, 11 Sep 1998 23:56:11 +0300 (EET DST)
10187          Message-Id: <199809112056.XAA04720@alpha.hut.fi>
10188          Subject: [PATCH] 5.005_51: Configure "Massive Attack"
10189          --
10190          From: Jarkko Hietaniemi <jhi@cc.hut.fi>
10191          Date: 12 Sep 1998 09:44:25 +0300
10192          Message-ID: <oeeaf45bzjq.fsf@alpha.hut.fi>
10193          Subject: Re: [PATCH] 5.005_51: Configure "Massive Attack"
10194  Branch: perl
10195        + lib/filetest.pm
10196        ! Configure MANIFEST Makefile.SH config_h.SH doio.c embedvar.h
10197        ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs handy.h hints/dec_osf.sh
10198        ! hints/freebsd.sh hints/hpux.sh hints/irix_6.sh objXSUB.h
10199        ! perl.c perl.h perl_exp.SH perlio.c perlvars.h pod/perldiag.pod
10200        ! pod/perlfunc.pod pp_sys.c proto.h win32/GenCAPI.pl
10201        ! win32/makedef.pl
10202 ____________________________________________________________________________
10203 [  1888] By: gsar                                  on 1998/09/25  06:27:12
10204     Log: bump patchlevel to 52; other little tweaks for threads, win32 builds
10205  Branch: perl
10206        ! doop.c mg.c patchlevel.h regexec.c win32/Makefile
10207        ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
10208        ! win32/makedef.pl win32/makefile.mk win32/win32.c
10209 ____________________________________________________________________________
10210 [  1887] By: gsar                                  on 1998/09/25  04:50:49
10211     Log: win32.c tweak
10212  Branch: perl
10213        ! win32/win32.c
10214 ____________________________________________________________________________
10215 [  1886] By: gsar                                  on 1998/09/25  04:47:32
10216     Log: s/MAKEMAKEROPT/PERL_MM_OPT/
10217  Branch: perl
10218        ! lib/ExtUtils/MakeMaker.pm
10219 ____________________________________________________________________________
10220 [  1885] By: gsar                                  on 1998/09/25  04:05:09
10221     Log: From: Dominic Dunlop <domo@vo.lu>
10222          Date: Thu, 10 Sep 1998 11:02:46 +0000
10223          Message-Id: <v03110703b21d581d7ef1@[212.24.192.107]>
10224          Subject: MM_Unix::canonpath erroneously turns leading // into /
10225  Branch: perl
10226        ! lib/ExtUtils/MM_Unix.pm
10227 ____________________________________________________________________________
10228 [  1884] By: gsar                                  on 1998/09/25  03:06:10
10229     Log: temporarily disable perl malloc for a2p until we clean up
10230          conflicting malloc() declarations everywhere
10231  Branch: perl
10232        ! x2p/Makefile.SH
10233 ____________________________________________________________________________
10234 [  1883] By: gsar                                  on 1998/09/25  02:27:00
10235     Log: remove obsolete win32/bin/*.pl
10236  Branch: perl
10237        - win32/bin/network.pl win32/bin/webget.pl win32/bin/www.pl
10238        ! Changes MANIFEST win32/Makefile win32/makefile.mk
10239 ____________________________________________________________________________
10240 [  1882] By: gsar                                  on 1998/09/25  02:04:43
10241     Log: missing file in last submit
10242  Branch: perl
10243        ! proto.h
10244 ____________________________________________________________________________
10245 [  1881] By: gsar                                  on 1998/09/25  01:56:54
10246     Log: serial access to PL_x[inpr]v_root for USE_THREADS
10247  Branch: perl
10248        ! sv.c
10249 ____________________________________________________________________________
10250 [  1880] By: gsar                                  on 1998/09/25  01:19:38
10251     Log: lock sv_mutex in new_he() and del_he() for USE_THREADS
10252          From: Drago Goricanec <drago@king.otsd.ts.fujitsu.co.jp>
10253          Date: Thu, 24 Sep 1998 22:01:09 +0900
10254          Message-Id: <19980924220109J.drago@otsd.ts.fujitsu.co.jp>
10255          Subject: [PATCH 5.005_51] Re: Perl 5.005_51 not yet multi Thread safe 
10256  Branch: perl
10257        ! hv.c proto.h
10258 ____________________________________________________________________________
10259 [  1879] By: gsar                                  on 1998/09/25  00:20:07
10260     Log: tweaks to enable PERL_OBJECT to build & test on win32
10261  Branch: perl
10262        ! Changes doop.c mg.c objpp.h proto.h regexec.c util.c
10263        ! win32/GenCAPI.pl
10264 ____________________________________________________________________________
10265 [  1878] By: gsar                                  on 1998/09/25  00:13:36
10266     Log: fix change#1861, which breaks default boot_xxx symbol generation
10267  Branch: perl
10268        ! lib/ExtUtils/Mksymlists.pm
10269 ____________________________________________________________________________
10270 [  1877] By: gsar                                  on 1998/09/24  10:29:54
10271     Log: two tweaks for clean build and test on Solaris
10272  Branch: perl
10273        ! op.c t/op/subst.t
10274 ____________________________________________________________________________
10275 [  1876] By: gsar                                  on 1998/09/24  09:04:43
10276     Log: From: Colin Kuskie <ckuskie@cadence.com>
10277          Date: Wed, 26 Aug 1998 14:53:01 -0700 (PDT)
10278          Message-ID: <Pine.GSO.3.96.980826143507.3258K-100000@pdxmail.cadence.com>
10279          Subject: [PATCH 5.005_51] perlform.pod
10280  Branch: perl
10281        ! pod/perlform.pod
10282 ____________________________________________________________________________
10283 [  1875] By: gsar                                  on 1998/09/24  08:47:47
10284     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10285          Date: Tue, 25 Aug 1998 15:35:58 -0400 (EDT)
10286          Message-Id: <199808251935.PAA11384@monk.mps.ohio-state.edu>
10287          Subject: Re: problem with (?p{}) [PATCH 5.005_5*]
10288  Branch: perl
10289        ! regexec.c
10290 ____________________________________________________________________________
10291 [  1874] By: gsar                                  on 1998/09/24  08:44:55
10292     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10293          Date: Tue, 25 Aug 1998 14:56:06 -0400 (EDT)
10294          Message-Id: <199808251856.OAA10825@monk.mps.ohio-state.edu>
10295          Subject: Re: your Regexp.patch dated 21.8 [PATCH]
10296  Branch: perl
10297        ! toke.c
10298 ____________________________________________________________________________
10299 [  1873] By: gsar                                  on 1998/09/24  08:39:41
10300     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10301          Date: Tue, 25 Aug 1998 04:29:49 -0400 (EDT)
10302          Message-Id: <199808250829.EAA02470@monk.mps.ohio-state.edu>
10303          Subject: [PATCH 5.005_*] Extraneous warning for (?()A|B)
10304  Branch: perl
10305        ! Changes regcomp.c
10306 ____________________________________________________________________________
10307 [  1872] By: gsar                                  on 1998/09/24  08:37:00
10308     Log: From: Krishna Sethuraman <krishpl@shamu.engr.sgi.com>
10309          Date: Sun, 23 Aug 1998 23:18:38 PDT
10310          Message-Id: <199808240618.XAA05329@shamu.engr.sgi.com>
10311          Subject: new irix_6.sh hints file
10312  Branch: perl
10313        ! hints/irix_6.sh
10314 ____________________________________________________________________________
10315 [  1871] By: gsar                                  on 1998/09/24  07:26:37
10316     Log: correct FSF address in various places
10317  Branch: perl
10318        ! Copying README ext/B/README lib/Getopt/Long.pm
10319 ____________________________________________________________________________
10320 [  1870] By: gsar                                  on 1998/09/24  07:11:56
10321     Log: From:    Dan Sugalski <sugalskd@osshe.edu>
10322          Date:    Fri, 14 Aug 1998 09:20:16 PDT
10323          Message-Id: <3.0.5.32.19980814092016.00b37dc0@ous.edu>
10324          Subject: [PATCH 5.005_02] (and _5x I expect) VMS config procedure patch
10325  Branch: perl
10326        ! configure.com
10327 ____________________________________________________________________________
10328 [  1869] By: gsar                                  on 1998/09/24  06:55:59
10329     Log: use STRICT_ALIGNMENT on IRIX to allow usemymalloc=y again
10330          From:    Scott Henry <scotth@sgi.com>
10331          Date:    13 Aug 1998 09:52:15 PDT
10332          Message-Id: <yd8pve46czk.fsf@hoshi.engr.sgi.com>
10333          Subject: [PATCH] Irix USE_LONG_LONG/malloc.c incompatibility (was...)
10334  Branch: perl
10335        ! hints/irix_6.sh
10336 ____________________________________________________________________________
10337 [  1868] By: gsar                                  on 1998/09/24  06:51:23
10338     Log: From:    Nathan Torkington <gnat@frii.com>
10339          Date:    Thu, 13 Aug 1998 10:59:48 MDT
10340          Message-Id: <199808131659.KAA06179@prometheus.frii.com>
10341          Subject: [PATCH] 5.005_02 perlfunc.pod, improve umask entry
10342  Branch: perl
10343        ! pod/perlfunc.pod
10344 ____________________________________________________________________________
10345 [  1867] By: gsar                                  on 1998/09/24  06:45:13
10346     Log: make C<goto &sub> AUTOLOAD-aware (autouse now works for modules
10347          that are autoloaded)
10348  Branch: perl
10349        ! pp_ctl.c
10350 ____________________________________________________________________________
10351 [  1866] By: gsar                                  on 1998/09/24  05:21:19
10352     Log: grandfather deprecated "$$<digit>" no more
10353  Branch: perl
10354        ! pod/perldiag.pod toke.c
10355 ____________________________________________________________________________
10356 [  1865] By: gsar                                  on 1998/09/24  04:52:48
10357     Log: tweak PERL_HASH() to h=h+(h>>5) in order to improve distribution of
10358          low bits (suggested by Ilya Zakharevich)
10359  Branch: perl
10360        ! hv.h
10361 ____________________________________________________________________________
10362 [  1864] By: gsar                                  on 1998/09/24  04:29:14
10363     Log: move yyglobal decls from perly.c to perlvars.h, regen headers, tweak
10364          perly_c.diff
10365  Branch: perl
10366        ! embed.h embedvar.h global.sym perlvars.h perly.c perly.h
10367        ! perly_c.diff toke.c
10368 ____________________________________________________________________________
10369 [  1863] By: gsar                                  on 1998/09/24  03:36:30
10370     Log: provide locked access to string table for USE_THREADS
10371  Branch: perl
10372        ! embedvar.h hv.c intrpvar.h objXSUB.h perl.c thread.h
10373 ____________________________________________________________________________
10374 [  1862] By: gsar                                  on 1998/09/24  03:30:32
10375     Log: remove bogus warn()
10376  Branch: perl
10377        ! embed.pl
10378 ____________________________________________________________________________
10379 [  1861] By: gsar                                  on 1998/09/24  02:58:51
10380     Log: applied suggested patch, adapted for all platforms
10381          From: jan.dubois@ibm.net (Jan Dubois)
10382          Date: Sun, 20 Sep 1998 12:56:38 +0200
10383          Message-ID: <3604de0c.12319885@smtp1.ibm.net>
10384          Subject: [New PATCH 5.005_02] Support Mksymlists FUNCLIST argument in MakeMaker
10385  Branch: perl
10386        ! lib/ExtUtils/MM_OS2.pm lib/ExtUtils/MM_Unix.pm
10387        ! lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MM_Win32.pm
10388        ! lib/ExtUtils/MakeMaker.pm
10389 ____________________________________________________________________________
10390 [  1860] By: gsar                                  on 1998/09/24  02:16:14
10391     Log: upgrade to CPAN-1.40
10392  Branch: perl
10393        ! Changes lib/CPAN.pm lib/CPAN/FirstTime.pm
10394 ____________________________________________________________________________
10395 [  1859] By: gsar                                  on 1998/09/24  02:08:59
10396     Log: use $ENV{MAKEMAKEROPT} to set default command line args
10397  Branch: perl
10398        ! lib/ExtUtils/MakeMaker.pm
10399 ____________________________________________________________________________
10400 [  1857] By: gsar                                  on 1998/09/23  10:58:36
10401     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10402          Date: Tue, 22 Sep 1998 17:30:16 -0400 (EDT)
10403          Message-Id: <199809222130.RAA17034@monk.mps.ohio-state.edu>
10404          Subject: More verbose Test::Harness [PATCH]
10405  Branch: perl
10406        ! lib/Test/Harness.pm
10407 ____________________________________________________________________________
10408 [  1856] By: gsar                                  on 1998/09/23  10:56:24
10409     Log: update hints for OPENSTEP 4.2 on i386
10410          From: Gerben Wierda <Gerben_Wierda@RnA.nl>
10411          Date: Sun, 20 Sep 1998 01:03:18 +0200
10412          Message-Id: <9809192303.AA29190@Spike>
10413          Subject: Perl 5.005_02 compilation problems
10414  Branch: perl
10415        ! hints/next_4.sh
10416 ____________________________________________________________________________
10417 [  1855] By: gsar                                  on 1998/09/23  10:52:27
10418     Log: reset errno after C<require> search (as suggested by Larry)
10419  Branch: perl
10420        ! pp_ctl.c
10421 ____________________________________________________________________________
10422 [  1854] By: gsar                                  on 1998/09/23  10:50:26
10423     Log: misc pod tweaks
10424  Branch: perl
10425        ! pod/perldelta.pod pod/perldiag.pod pod/perlport.pod
10426 ____________________________________________________________________________
10427 [  1853] By: gsar                                  on 1998/09/23  10:46:06
10428     Log: make Pod/Html.pm handle the --title option properly (as suggested
10429          by gml4410@ggr.co.uk)
10430  Branch: perl
10431        ! lib/Pod/Html.pm
10432 ____________________________________________________________________________
10433 [  1852] By: gsar                                  on 1998/09/23  10:41:39
10434     Log: SSNEW() API for allocating memory on the savestack
10435          From: Albert Dvornik <bert@genscan.com>
10436          Date: 17 Sep 1998 19:23:07 -0400
10437          Message-Id: <tqemtae338.fsf@puma.genscan.com>
10438          Subject: [PATCH 5.005_51] (was: why SAVEDESTRUCTOR()...)
10439  Branch: perl
10440        ! Changes Changes5.005 embed.h global.sym mg.c objXSUB.h objpp.h
10441        ! perl.h proto.h scope.c scope.h t/io/tell.t
10442 ____________________________________________________________________________
10443 [  1851] By: gsar                                  on 1998/09/23  10:37:05
10444     Log: From: Jochen Wiedmann <joe@ispsoft.de>
10445          Date: Thu, 17 Sep 1998 17:16:06 +0200
10446          Message-ID: <360127B6.E44564A@ispsoft.de>
10447          Subject: [PATCH] ExtUtils::MakeMaker::prompt cannot return 0
10448  Branch: perl
10449        ! lib/ExtUtils/MakeMaker.pm
10450 ____________________________________________________________________________
10451 [  1850] By: gsar                                  on 1998/09/23  10:33:05
10452     Log: From: andreas.koenig@kulturbox.de (Andreas J. Koenig)
10453          Date: 15 Sep 1998 01:32:31 +0200
10454          Message-ID: <sfchfya46eo.fsf@dubravka.in-berlin.de>
10455          Subject: Re: [PATCH] MakeMaker "test" target doesn't depend on "all"
10456  Branch: perl
10457        ! lib/ExtUtils/MM_Unix.pm
10458 ____________________________________________________________________________
10459 [  1849] By: gsar                                  on 1998/09/23  10:29:04
10460     Log: From: Charles Bailey <BAILEY@newman.upenn.edu>
10461          Date: Sat, 12 Sep 1998 19:25:32 -0400 (EDT)
10462          Message-id: <01J1QBJUAY1I002KOW@cor.newman.upenn.edu>
10463          Subject: Re: extralibs.ld problem in MM_VMS.pm
10464  Branch: perl
10465        ! lib/ExtUtils/MM_VMS.pm
10466 ____________________________________________________________________________
10467 [  1848] By: gsar                                  on 1998/09/23  10:25:24
10468     Log: From: Roderick Schertler <roderick@argon.org>
10469          Date: 11 Sep 1998 16:19:21 -0400
10470          Message-ID: <pzyarqpfli.fsf@eeyore.ibcinc.com>
10471          Subject: Re: Open2 and memory leaks
10472  Branch: perl
10473        ! lib/IPC/Open3.pm
10474 ____________________________________________________________________________
10475 [  1847] By: gsar                                  on 1998/09/23  10:18:31
10476     Log: From: Roderick Schertler <roderick@argon.org>
10477          Date: Wed, 09 Sep 1998 23:52:48 -0400
10478          Message-ID: <20567.905399568@eeyore.ibcinc.com>
10479          Subject: seed srand from /dev/urandom when possible
10480  Branch: perl
10481        ! pod/perlfunc.pod pp.c
10482 ____________________________________________________________________________
10483 [  1846] By: gsar                                  on 1998/09/23  10:12:22
10484     Log: From: Roderick Schertler <roderick@argon.org>
10485          Date: Thu, 10 Sep 1998 00:32:17 -0400
10486          Message-ID: <21142.905401937@eeyore.ibcinc.com>
10487          Subject: doc update for crypt()'s salt
10488  Branch: perl
10489        ! pod/perlfunc.pod
10490 ____________________________________________________________________________
10491 [  1845] By: gsar                                  on 1998/09/23  10:09:23
10492     Log: fix h2ph handling of C<#error "foo">
10493          From: SAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>
10494          Date: Thu, 10 Sep 1998 09:59:33 +0900
10495          Message-Id: <19980910095933N.ksakai@netwk.ntt-at.co.jp>
10496          Subject: [5.005_02] h2ph problem
10497  Branch: perl
10498        ! utils/h2ph.PL
10499 ____________________________________________________________________________
10500 [  1844] By: gsar                                  on 1998/09/23  10:06:13
10501     Log: plug strictly private function leaks in API listing
10502  Branch: perl
10503        ! pod/perlguts.pod
10504 ____________________________________________________________________________
10505 [  1843] By: gsar                                  on 1998/09/23  10:02:57
10506     Log: hide symbol for static build
10507          From: Dominic Dunlop <domo@vo.lu>
10508          Date: Tue, 8 Sep 1998 21:40:46 +0000
10509          Message-Id: <v03110700b21b52db318d@[212.24.192.111]>
10510          Subject: Not OK: perl 5.00551 on powerpc-machten 4.1.1 [PATCH]
10511  Branch: perl
10512        ! regcomp.c
10513 ____________________________________________________________________________
10514 [  1842] By: gsar                                  on 1998/09/23  09:52:46
10515     Log: define PUT_svindex(), PUT_opindex()
10516  Branch: perl
10517        ! ext/B/B/Assembler.pm
10518 ____________________________________________________________________________
10519 [  1841] By: gsar                                  on 1998/09/23  09:44:25
10520     Log: From: Dominic Dunlop <domo@vo.lu>
10521          Date: Tue, 8 Sep 1998 15:34:53 +0000
10522          Message-Id: <v03110701b21afbdc7cfb@[212.24.192.76]>
10523          Subject: [PATCH 5.005_51] Eliminate pragma/warn-regexec test dependence on REG_INFTY value
10524  Branch: perl
10525        ! t/pragma/warn/regexec
10526 ____________________________________________________________________________
10527 [  1840] By: gsar                                  on 1998/09/23  09:42:17
10528     Log: pl2bat tweak from Tye McQueen <tye@metronet.com>
10529  Branch: perl
10530        ! win32/bin/pl2bat.pl
10531 ____________________________________________________________________________
10532 [  1839] By: gsar                                  on 1998/09/23  09:38:18
10533     Log: From: Drago Goricanec <drago@raptor.otsd.ts.fujitsu.co.jp>
10534          Date: Mon, 7 Sep 1998 17:36:09 +0900
10535          Message-Id: <199809070836.RAA14631@raptor.otsd.ts.fujitsu.co.jp>
10536          Subject: Thread::cond_wait bug in 5.005.51 causes deadlock
10537  Branch: perl
10538        ! ext/Thread/Thread.xs
10539 ____________________________________________________________________________
10540 [  1838] By: gsar                                  on 1998/09/23  09:21:11
10541     Log: From: "Green, Paul" <pgreen@seussnt.stratus.com>
10542          Date: Thu, 10 Sep 1998 00:02:07 -0400
10543          Message-ID: <646CD0392810D211B04A00A024BF26FB1022EB@terminator.sw.stratus.com>
10544          Subject: RE: [PATCH] 5.005_02 and 5.005_51: Stratus VOS port
10545  Branch: perl
10546        + README.vos vos/Changes vos/build.cm vos/compile_perl.cm
10547        + vos/config.h vos/config_h.SH_orig vos/perl.bind
10548        + vos/test_vos_dummies.c vos/vos_dummies.c vos/vosish.h
10549        ! MANIFEST perl.c perl.h pod/perlport.pod
10550 ____________________________________________________________________________
10551 [  1837] By: gsar                                  on 1998/09/23  08:45:58
10552     Log: (via private mail)
10553          From: Charles Bailey <BAILEY@newman.upenn.edu>
10554          Date: Sat, 05 Sep 1998 01:23:58 -0400 (EDT)
10555          Message-id: <01J1FH7R43NS002F14@cor.newman.upenn.edu>
10556          Subject: [Patch 5.005_02] Miscellaneous VMS cleanup
10557  Branch: perl
10558        ! Changes Changes5.005 README.vms ext/DynaLoader/dl_vms.xs
10559        ! lib/Cwd.pm lib/ExtUtils/MM_VMS.pm lib/ExtUtils/MakeMaker.pm
10560        ! lib/ExtUtils/Mksymlists.pm lib/File/Copy.pm lib/File/Path.pm
10561        ! lib/File/Spec.pm pod/perldiag.pod pod/perlfaq1.pod
10562        ! pod/perlport.pod pod/perlrun.pod vms/ext/DCLsym/0README.txt
10563        ! vms/ext/DCLsym/DCLsym.pm vms/ext/DCLsym/DCLsym.xs
10564        ! vms/ext/Filespec.pm vms/ext/XSSymSet.pm vms/gen_shrfls.pl
10565        ! vms/mms2make.pl vms/perly_c.vms vms/sockadapt.c
10566        ! vms/sockadapt.h vms/test.com vms/vms.c vms/vms_yfix.pl
10567        ! vms/writemain.pl
10568 ____________________________________________________________________________
10569 [  1836] By: gsar                                  on 1998/09/23  08:17:42
10570     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10571          Date: Sat, 5 Sep 1998 00:14:51 -0400 (EDT)
10572          Message-Id: <199809050414.AAA19801@monk.mps.ohio-state.edu>
10573          Subject: [PATCH 5.005_*] OS/2 spawning typos
10574  Branch: perl
10575        ! os2/os2.c
10576 ____________________________________________________________________________
10577 [  1835] By: gsar                                  on 1998/09/23  08:09:55
10578     Log: warn on C<my($foo,$foo)>
10579  Branch: perl
10580        ! op.c pod/perldiag.pod
10581 ____________________________________________________________________________
10582 [  1834] By: gsar                                  on 1998/09/23  07:35:56
10583     Log: From: pvhp@forte.com (Peter Prymmer)
10584          Date: Fri, 4 Sep 98 13:27:41 PDT
10585          Message-Id: <9809042027.AA04463@forte.com>
10586          Subject: [PATCH 5.005_02 && 5.005_51] general updates to README.vms
10587  Branch: perl
10588        ! README.vms
10589 ____________________________________________________________________________
10590 [  1833] By: gsar                                  on 1998/09/23  07:27:34
10591     Log: From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
10592          Date: Wed, 2 Sep 1998 10:06:49 -0700 (PDT)
10593          Message-Id: <199809021706.KAA26349@xfiles.intercon.hp.com>
10594          Subject: PATCH: 5.005_02 hint/hpux.sh
10595  Branch: perl
10596        ! hints/hpux.sh
10597 ____________________________________________________________________________
10598 [  1832] By: gsar                                  on 1998/09/23  07:22:40
10599     Log: fix (some) installhtml bugs
10600          From: Larry Parmelee <parmelee@CS.Cornell.EDU>
10601          Date: Tue, 1 Sep 1998 12:43:40 -0400 (EDT)
10602          Message-Id: <199809011643.MAA05702@sundown.cs.cornell.edu>
10603          Subject: installhtml script needs work
10604  Branch: perl
10605        ! installhtml
10606 ____________________________________________________________________________
10607 [  1831] By: gsar                                  on 1998/09/23  07:19:30
10608     Log: document 'U' magic with examples
10609          From: Alan Burlison <Alan.Burlison@UK.Sun.com>
10610          Date: Tue, 1 Sep 1998 15:54:06 +0100 (BST)
10611          Message-Id: <199809011455.PAA00631@sale-wts>
10612          Subject: Re: Looking for some XS MAGIC examples...
10613  Branch: perl
10614        ! pod/perlguts.pod
10615 ____________________________________________________________________________
10616 [  1830] By: gsar                                  on 1998/09/23  07:16:43
10617     Log: From: pvhp@forte.com (Peter Prymmer)
10618          Date: Mon, 31 Aug 98 17:13:49 PDT
10619          Message-Id: <9809010013.AA06737@forte.com>
10620          Subject: [PATCH: 5.005_02; yet another system configuration tip for OS/390]
10621  Branch: perl
10622        ! README.os390
10623 ____________________________________________________________________________
10624 [  1829] By: gsar                                  on 1998/09/23  07:15:08
10625     Log: fix problematic typecast in filter_del()
10626          From: Mark P Lutz <tecmpl1@triton.ca.boeing.com>
10627          Date: Mon, 31 Aug 1998 21:13:11 GMT
10628          Message-Id: <199808312113.VAA53356@triton.ca.boeing.com>
10629          Subject: perl5.005_02 does not build on Cray T90
10630  Branch: perl
10631        ! toke.c
10632 ____________________________________________________________________________
10633 [  1828] By: gsar                                  on 1998/09/23  07:11:34
10634     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10635          Date: Mon, 31 Aug 1998 14:52:10 -0400 (EDT)
10636          Message-Id: <199808311852.OAA24676@monk.mps.ohio-state.edu>
10637          Subject: [PATCH 5.005_5*] (?>) broken in RE
10638  Branch: perl
10639        ! regexec.c t/op/re_tests
10640 ____________________________________________________________________________
10641 [  1827] By: gsar                                  on 1998/09/23  07:09:50
10642     Log: U/WIN testsuite patches from Joe Buehler <jhpb@hekimian.com>
10643  Branch: perl
10644        ! t/op/grent.t t/op/groups.t
10645 ____________________________________________________________________________
10646 [  1826] By: gsar                                  on 1998/09/23  07:03:16
10647     Log: From: Jarkko Hietaniemi <jhi@iki.fi>
10648          Date: Wed, 12 Aug 1998 22:41:37 +0300 (EET DST)
10649          Message-Id: <199808121941.WAA06263@alpha.hut.fi>
10650          Subject: [PATCH] 5.004_50 or 5.005_02: get rid of interp.sym because not even AIX needs it
10651  Branch: perl
10652        - interp.sym
10653        ! MANIFEST Makefile.SH embed.pl perl_exp.SH
10654 ____________________________________________________________________________
10655 [  1825] By: gsar                                  on 1998/09/23  06:56:40
10656     Log: re-introduce change#1703
10657  Branch: perl
10658        ! ext/re/re.pm pod/perlre.pod regcomp.c regexec.c thrdvar.h
10659 ____________________________________________________________________________
10660 [  1824] By: gsar                                  on 1998/09/23  06:44:19
10661     Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10662          Date: Sat, 29 Aug 1998 17:38:30 -0400 (EDT)
10663          Message-Id: <199808292138.RAA18359@monk.mps.ohio-state.edu>
10664          Subject: [PATCH 5.005_*] Protect debugger from nonlocal exits
10665  Branch: perl
10666        ! lib/perl5db.pl
10667 ____________________________________________________________________________
10668 [  1823] By: gsar                                  on 1998/09/23  06:41:34
10669         Log: From: Joe Buehler <jhpb@hekimian.com>
10670              Date: 29 Aug 1998 17:13:28 -0400
10671              Message-ID: <yd37lzro5jb.fsf@pandora.hekimian.com>
10672              Subject: patches for perl 5.005_51 under U/WIN
10673      Branch: perl
10674            + hints/uwin.sh
10675            ! Configure installman lib/ExtUtils/MM_Unix.pm makedepend.SH
10676            ! t/lib/posix.t
10677 ____________________________________________________________________________
10678 [  1822] By: gsar                                  on 1998/09/23  06:36:59
10679         Log: add missing C<no utf8;> tweak from Larry
10680      Branch: perl
10681            ! t/op/subst.t
10682 ____________________________________________________________________________
10683 [  1821] By: gsar                                  on 1998/09/23  06:27:51
10684         Log: s/runops/CALLRUNOPS/
10685      Branch: perl
10686            ! cc_runtime.h
10687 ____________________________________________________________________________
10688 [  1820] By: gsar                                  on 1998/09/23  06:24:49
10689         Log: rename t/pragma/warn-* to t/pragma/warn/*, be 8.3-friendly
10690      Branch: perl
10691           +> t/pragma/warn/1global t/pragma/warn/2use t/pragma/warn/3both
10692           +> t/pragma/warn/4lint t/pragma/warn/5nolint t/pragma/warn/doio
10693           +> t/pragma/warn/gv t/pragma/warn/mg t/pragma/warn/op
10694           +> t/pragma/warn/perl t/pragma/warn/perly t/pragma/warn/pp
10695           +> t/pragma/warn/pp_ctl t/pragma/warn/pp_hot t/pragma/warn/pp_sys
10696           +> t/pragma/warn/regcomp t/pragma/warn/regexec t/pragma/warn/sv
10697           +> t/pragma/warn/taint t/pragma/warn/toke t/pragma/warn/universal
10698           +> t/pragma/warn/util
10699            - t/pragma/warn-1global t/pragma/warn-2use t/pragma/warn-3both
10700            - t/pragma/warn-4lint t/pragma/warn-5nolint t/pragma/warn-doio
10701            - t/pragma/warn-gv t/pragma/warn-mg t/pragma/warn-op
10702            - t/pragma/warn-perl t/pragma/warn-perly t/pragma/warn-pp
10703            - t/pragma/warn-pp_ctl t/pragma/warn-pp_hot t/pragma/warn-pp_sys
10704            - t/pragma/warn-regcomp t/pragma/warn-regexec t/pragma/warn-sv
10705            - t/pragma/warn-taint t/pragma/warn-toke t/pragma/warn-universal
10706            - t/pragma/warn-util
10707            ! MANIFEST t/pragma/warning.t
10708 ____________________________________________________________________________
10709 [  1819] By: gsar                                  on 1998/09/23  06:08:46
10710         Log: make \(%foo) return refs to values (not copies of values)
10711              From: Stephen McCamant <smccam@uclink4.berkeley.edu>
10712              Date: Fri, 28 Aug 1998 20:46:10 -0700 (PDT)
10713              Message-ID: <13799.30680.47765.352558@fre-76-120.reshall.berkeley.edu>
10714              --
10715              From: Roderick Schertler <roderick@argon.org>
10716              Date: Sat, 29 Aug 1998 00:58:33 -0400
10717              Message-ID: <29894.904366713@eeyore.ibcinc.com>
10718              Subject: Re: \(%x) problems
10719      Branch: perl
10720            ! doop.c pod/perlref.pod
10721 ____________________________________________________________________________
10722 [  1818] By: gsar                                  on 1998/09/23  06:05:08
10723         Log: make h2xs generate ANSI prototypes
10724      Branch: perl
10725            ! utils/h2xs.PL
10726 ____________________________________________________________________________
10727 [  1817] By: gsar                                  on 1998/09/23  05:57:16
10728         Log: updated usethreads hints for hpux 10.X
10729              From: Matthew T Harden <mthard@mthard1.monsanto.com>
10730              Date: Fri, 28 Aug 1998 14:10:42 GMT
10731              Message-Id: <199808281410.AA11058@mthard1.monsanto.com>
10732              Subject: Re: OK: perl 5.00502 on PA-RISC1.1-thread 10.20 (UNINSTALLED)
10733      Branch: perl
10734            ! hints/hpux.sh perl.h
10735 ____________________________________________________________________________
10736 [  1816] By: gsar                                  on 1998/09/23  05:53:31
10737         Log: don't create empty directories in installperl
10738              From: Robin Barker <rmb1@cise.npl.co.uk>
10739              Date: Fri, 21 Aug 1998 11:29:24 +0100 (BST)
10740              Message-Id: <199808211029.LAA00551@cyclone.cise.npl.co.uk>
10741              Subject: [PATCH 5.005_02] install: empty dirs
10742      Branch: perl
10743            ! installperl
10744 ____________________________________________________________________________
10745 [  1815] By: gsar                                  on 1998/09/23  05:50:36
10746         Log: make behavior of /(a{3})+/ like /(aaa)+/ w.r.t where it matches
10747              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10748              Date: Fri, 21 Aug 1998 05:41:02 -0400 (EDT)
10749              Message-Id: <199808210941.FAA16467@monk.mps.ohio-state.edu>
10750              Subject: Re: your mail
10751      Branch: perl
10752            ! regexec.c t/op/re_tests
10753 ____________________________________________________________________________
10754 [  1814] By: gsar                                  on 1998/09/23  05:45:17
10755         Log: From: "Kurt D. Starsinic" <kstar@chapin.edu>
10756              Date: Thu, 20 Aug 1998 20:59:03 -0400
10757              Message-ID: <19980820205903.A12908@O2.chapin.edu>
10758              Subject: [PATCH] h2ph misquotes #error directives
10759      Branch: perl
10760            ! t/lib/h2ph.pht utils/h2ph.PL
10761 ____________________________________________________________________________
10762 [  1813] By: gsar                                  on 1998/09/23  05:42:41
10763         Log: patch to support computed regular subexpressions
10764              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10765              Date: Thu, 20 Aug 1998 15:19:50 -0400 (EDT)
10766              Message-Id: <199808201919.PAA04692@monk.mps.ohio-state.edu>
10767              Subject: [5.005_5* PATCH] Postponed RE - now!
10768      Branch: perl
10769            ! embedvar.h objXSUB.h pod/perlre.pod regcomp.c regexec.c
10770            ! t/op/pat.t t/op/re_tests thrdvar.h toke.c
10771 ____________________________________________________________________________
10772 [  1812] By: gsar                                  on 1998/09/23  05:26:26
10773         Log: better CR-handling on shebang line and in formats (fixed variant of
10774              patch suggested by Igor Sysoev <igor@nitek.ru>)
10775      Branch: perl
10776            ! perl.c toke.c
10777 ____________________________________________________________________________
10778 [  1811] By: gsar                                  on 1998/09/23  04:35:46
10779         Log: document non-loopish blocks better
10780              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
10781              Date: Tue, 18 Aug 1998 12:28:36 +0100
10782              Message-Id: <E0z8jwK-00057Z-00@ursa.cus.cam.ac.uk>
10783              Subject: Re: next in do {} while block gives error message
10784      Branch: perl
10785            ! pod/perlfunc.pod
10786 ____________________________________________________________________________
10787 [  1810] By: gsar                                  on 1998/09/23  04:12:05
10788         Log: fix bogus integerization of pop()'s return value
10789              From: Gurusamy Sarathy <gsar@engin.umich.edu>
10790              Date: Sat, 15 Aug 1998 23:27:54 -0400
10791              Message-Id: <199808160327.XAA05186@aatma.engin.umich.edu>
10792              Subject: Re: Complex expression does integer arithmetic 
10793      Branch: perl
10794            ! opcode.h opcode.pl
10795 ____________________________________________________________________________
10796 [  1809] By: gsar                                  on 1998/09/23  04:09:43
10797         Log: tweak README.win32
10798      Branch: perl
10799            ! README.win32
10800 ____________________________________________________________________________
10801 [  1808] By: gsar                                  on 1998/09/23  03:40:57
10802         Log: better diagnostic for do{} used as lvalue
10803      Branch: perl
10804            ! op.c pod/perlport.pod
10805 ____________________________________________________________________________
10806 [  1807] By: gsar                                  on 1998/09/23  03:38:30
10807         Log: enable PERL_SBRK_VIA_MALLOC on OPENSTEP-Mach
10808              From: hansm@icgroup.nl
10809              Date: Tue, 11 Aug 98 21:08:51 +0200
10810              Message-Id: <9808111907.AA21903@icgned.icgroup.nl>
10811              Subject: Not OK: perl 5.00551 on OPENSTEP-Mach 4_1 (UNINSTALLED)
10812      Branch: perl
10813            ! malloc.c
10814 ____________________________________________________________________________
10815 [  1806] By: gsar                                  on 1998/09/23  03:36:08
10816         Log: support make written in perl (aka "pmake") on win32
10817      Branch: perl
10818            ! lib/ExtUtils/MM_Win32.pm
10819 ____________________________________________________________________________
10820 [  1805] By: gsar                                  on 1998/09/23  03:30:07
10821         Log: fix mismatched UV/U32 types for to_utf8_*()
10822      Branch: perl
10823            ! utf8.c
10824 ____________________________________________________________________________
10825 [  1804] By: gsar                                  on 1998/09/23  03:22:22
10826         Log: From: Laszlo Molnar <molnarl@cdata.tvnet.hu>
10827              Date: Sun, 9 Aug 1998 22:38:23 +0200
10828              Message-ID: <19980809223823.A215@cdata.tvnet.hu>
10829              Subject: [PATCH 5.5002] dos-djgpp update
10830      Branch: perl
10831            ! t/io/fs.t
10832 ____________________________________________________________________________
10833 [  1803] By: gsar                                  on 1998/09/23  03:20:13
10834         Log: apply minimal variant of patch (sent via private mail)
10835              From: jarkko.hietaniemi@research.nokia.com (Jarkko Hietaniemi)
10836              Date: Wed, 12 Aug 1998 15:42:35 +0300
10837              Message-Id: <199808121242.PAA29761@comanche.spices>
10838              Subject: [PATCH] 5.004_02 or 5.005_51: fix regexp and tr character ranges in non-ASCII lands
10839      Branch: perl
10840            ! MANIFEST perl.h pod/perllocale.pod pod/perlop.pod
10841            ! pod/perlre.pod regcomp.c t/pragma/locale.t toke.c
10842 ____________________________________________________________________________
10843 [  1802] By: gsar                                  on 1998/09/23  03:03:39
10844         Log: adjust searchdict.t for EBCDIC (still needs documenting)
10845              From: pvhp@forte.com (Peter Prymmer)
10846              Date: Thu, 6 Aug 98 18:09:39 PDT
10847              Message-Id: <9808070109.AA06158@forte.com>
10848              Subject: [PATCH 5.005_02-TRIAL2] potential modification to t/lib/searchdict.t
10849      Branch: perl
10850            ! README.os390 t/lib/searchdict.t
10851 ____________________________________________________________________________
10852 [  1801] By: gsar                                  on 1998/09/23  02:54:15
10853         Log: silence redefined warning for XS(INIT) {}
10854      Branch: perl
10855            ! op.c
10856 ____________________________________________________________________________
10857 [  1800] By: gsar                                  on 1998/09/23  02:42:23
10858         Log: support match indices via special variables @- and @+
10859              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10860              Date: Tue, 21 Jul 1998 23:00:35 -0400 (EDT)
10861              Message-Id: <199807220300.XAA16081@monk.mps.ohio-state.edu>
10862              Subject: [PATCH 5.004_76] @- and @+
10863      Branch: perl
10864            ! av.c embed.h global.sym gv.c mg.c objXSUB.h objpp.h perl.h
10865            ! pod/perlvar.pod proto.h regnodes.h sv.c t/op/pat.t toke.c
10866 ____________________________________________________________________________
10867 [  1799] By: gsar                                  on 1998/09/23  01:44:31
10868         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
10869              Date: Tue, 11 Aug 1998 18:43:29 -0400 (EDT)
10870              Message-Id: <199808112243.SAA14243@monk.mps.ohio-state.edu>
10871              Subject: Re: Segmentation fault for /a*abc?xyz+pqr{3}ab{2,}xy{4,5}pq{0,6}AB{0,}zz/
10872      Branch: perl
10873            ! regcomp.c t/op/re_tests
10874 ____________________________________________________________________________
10875 [  1798] By: gsar                                  on 1998/09/23  01:39:23
10876         Log: integrate maint-5.005 changes (except conflicting change#1794)
10877      Branch: perl
10878            ! Changes
10879           !> objXSUB.h op.c pod/perlfunc.pod pp.c regcomp.c t/op/re_tests
10880           !> toke.c util.c win32/config.bc win32/config.gc win32/config.vc
10881           !> win32/win32.h
10882 ____________________________________________________________________________
10883 [  1797] By: gsar                                  on 1998/09/23  01:32:36
10884         Log: add note to win32/Makefile about setting CCHOME
10885      Branch: perl
10886            ! win32/Makefile win32/makefile.mk
10887 ____________________________________________________________________________
10888 [  1796] By: gsar                                  on 1998/09/23  01:31:32
10889         Log: perl.pod tweak
10890      Branch: perl
10891            ! pod/perl.pod
10892 ____________________________________________________________________________
10893 [  1795] By: gsar                                  on 1998/09/21  20:34:10
10894         Log: make xsubpp generate well-formed code with CAPI && !PERL_OBJECT
10895      Branch: perl
10896            ! lib/ExtUtils/xsubpp
10897 ____________________________________________________________________________
10898 [  1789] By: gsar                                  on 1998/09/18  18:01:37
10899         Log: delay freeing itervar so C<for $i (@a) { return($i) }> works
10900      Branch: perl
10901            ! cop.h t/cmd/for.t
10902 ____________________________________________________________________________
10903 [  1788] By: gsar                                  on 1998/09/17  02:19:11
10904         Log: resync win32/config.?c with Porting/config.sh to pick up apiversion
10905      Branch: perl
10906            ! win32/config.bc win32/config.gc win32/config.vc
10907 ____________________________________________________________________________
10908 [  1787] By: gsar                                  on 1998/09/17  01:45:14
10909         Log: suppress bogus warning on C<sub x {} x()>
10910      Branch: perl
10911            ! toke.c
10912 ____________________________________________________________________________
10913 [  1786] By: gsar                                  on 1998/09/17  01:42:51
10914         Log: ntohl typo in objXSUB.h
10915      Branch: perl
10916            ! objXSUB.h
10917 ____________________________________________________________________________
10918 [  1785] By: gsar                                  on 1998/09/17  01:41:48
10919         Log: fill gaps in sig_* entries in win32/config.?c
10920      Branch: perl
10921            ! win32/config.bc win32/config.gc win32/config.vc
10922 ____________________________________________________________________________
10923 [  1781] By: larry                                 on 1998/09/05  23:48:24
10924         Log: tr/// logic was hosed under utf8
10925      Branch: perl
10926            ! doop.c op.c op.h pp.c proto.h
10927 ____________________________________________________________________________
10928 [  1780] By: larry                                 on 1998/09/05  23:44:16
10929         Log: several new tests needed tweaking to work under utf8
10930      Branch: perl
10931            ! t/comp/require.t t/op/pack.t t/op/substr.t
10932 ____________________________________________________________________________
10933 [  1779] By: larry                                 on 1998/09/05  23:41:42
10934         Log: index() applied BM optimization to wrong argument
10935      Branch: perl
10936            ! op.c util.c
10937 ____________________________________________________________________________
10938 [  1778] By: larry                                 on 1998/09/05  23:38:29
10939         Log: Implicit require during compile reset line numbering
10940      Branch: perl
10941            ! pp_ctl.c
10942
10943 ----------------
10944 Version 5.005_51
10945 ----------------
10946
10947 ____________________________________________________________________________
10948 [  1777] By: gsar                                  on 1998/08/10  07:02:38
10949         Log: various tweaks: fix signed vs. unsigned problems that prevented C++
10950              builds; add sundry PERL_OBJECT scaffolding to get it to build; fix
10951              lexical warning testsuite for win32
10952      Branch: perl
10953            ! Changes doop.c embed.h global.sym objXSUB.h objpp.h op.c
10954            ! pod/perlhist.pod pp.c pp_hot.c proto.h regcomp.c regexec.c
10955            ! sv.c t/pragma/warn-doio t/pragma/warn-mg t/pragma/warn-op
10956            ! t/pragma/warn-regexec toke.c utf8.c win32/GenCAPI.pl
10957            ! win32/Makefile win32/makefile.mk
10958 ____________________________________________________________________________
10959 [  1776] By: gsar                                  on 1998/08/09  17:53:48
10960         Log: fix coredump with MULTIPLICITY (ckWARN() needs early curcop init)
10961      Branch: perl
10962            ! Changes MANIFEST perl.c pod/perlhist.pod
10963 ____________________________________________________________________________
10964 [  1775] By: gsar                                  on 1998/08/09  14:35:33
10965         Log: tweak warning test
10966      Branch: perl
10967            ! t/pragma/warn-toke
10968 ____________________________________________________________________________
10969 [  1774] By: gsar                                  on 1998/08/09  14:13:46
10970         Log: add missing dTHR; notes for test failures due to small stacksize
10971      Branch: perl
10972            ! doio.c gv.c op.c sv.c t/pragma/warn-mg t/pragma/warn-regexec
10973            ! toke.c universal.c util.c
10974 ____________________________________________________________________________
10975 [  1773] By: gsar                                  on 1998/08/09  11:31:53
10976         Log: lexical warnings; tweaks to places that didn't apply correctly
10977              From:    pmarquess@bfsec.bt.co.uk (Paul Marquess)
10978              Date:    Wed, 29 Jul 1998 09:28:45 BST
10979              Message-Id: <9807290828.AA26286@claudius.bfsec.bt.co.uk>
10980              Subject: lexical warnings patch for 5.005_50
10981      Branch: perl
10982            + README.lexwarn lib/warning.pm t/pragma/warn-2use
10983            + t/pragma/warn-3both t/pragma/warn-4lint t/pragma/warn-5nolint
10984            + t/pragma/warn-doio t/pragma/warn-gv t/pragma/warn-mg
10985            + t/pragma/warn-op t/pragma/warn-perl t/pragma/warn-perly
10986            + t/pragma/warn-pp t/pragma/warn-pp_ctl t/pragma/warn-pp_hot
10987            + t/pragma/warn-pp_sys t/pragma/warn-regcomp
10988            + t/pragma/warn-regexec t/pragma/warn-sv t/pragma/warn-taint
10989            + t/pragma/warn-toke t/pragma/warn-universal t/pragma/warn-util
10990            + warning.h warning.pl
10991            ! Changes MANIFEST Makefile.SH cop.h doio.c global.sym gv.c
10992            ! lib/diagnostics.pm mg.c op.c op.h perl.c perl.h pp.c pp_ctl.c
10993            ! pp_hot.c pp_sys.c proto.h regcomp.c regexec.c sv.c t/op/tie.t
10994            ! t/pragma/warn-1global t/pragma/warning.t taint.c toke.c
10995            ! universal.c util.c
10996 ____________________________________________________________________________
10997 [  1772] By: gsar                                  on 1998/08/08  23:06:00
10998         Log: bump patchlevel to 5.005_51
10999      Branch: perl
11000            ! patchlevel.h win32/Makefile win32/config_H.bc
11001            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
11002 ____________________________________________________________________________
11003 [  1771] By: gsar                                  on 1998/08/08  23:01:57
11004         Log: fix bogus warning on "\x{123}"
11005              From: pmarquess@claudius.bfsec.bt.co.uk (Paul Marquess)
11006              Date: Mon, 27 Jul 1998 06:16:15 +0100 (BST)
11007              Message-Id: <9807270534.AA11102@claudius.bfsec.bt.co.uk>
11008              Subject: [5.005_50 PATCH] Some unicode problems
11009      Branch: perl
11010            ! regcomp.c toke.c
11011 ____________________________________________________________________________
11012 [  1770] By: gsar                                  on 1998/08/08  22:56:55
11013         Log: hide dup symbol for static build of ext/re
11014              From: Dominic Dunlop <domo@ppp72.vo.lu>
11015              Date: Wed, 29 Jul 1998 11:09:56 +0100 (WET DST)
11016              Message-Id: <199807291009.LAA08935@ppp72.vo.lu>
11017              Subject: Not OK: perl 5.00550 on powerpc-machten 4.1 [BOGUS PATCH]
11018      Branch: perl
11019            ! regcomp.c
11020 ____________________________________________________________________________
11021 [  1769] By: gsar                                  on 1998/08/08  22:45:06
11022         Log: fix double free on -Mutf8 -e '$b=uc("")'
11023              From: larry@wall.org (Larry Wall)
11024              Date: Fri, 7 Aug 1998 14:42:43 -0700
11025              Message-Id: <199808072142.OAA14920@wall.org>
11026              Subject: [PATCH 5.005_50]: uc("") and lc("") under utf8 fails
11027      Branch: perl
11028            ! pp.c
11029 ____________________________________________________________________________
11030 [  1768] By: gsar                                  on 1998/08/08  22:42:29
11031         Log: substr() assumes utf8 without say-so
11032              From: larry@wall.org (Larry Wall)
11033              Date: Fri, 7 Aug 1998 12:25:12 -0700
11034              Message-Id: <199808071925.MAA13436@wall.org>
11035              Subject: [PATCH 5.005_50] substr bug?
11036      Branch: perl
11037            ! pp.c
11038 ____________________________________________________________________________
11039 [  1767] By: gsar                                  on 1998/08/08  22:38:25
11040         Log: fix intolerance of SWASHes for blank lines
11041              From: Gisle Aas <aas@sn.no>
11042              Date: 06 Aug 1998 23:28:57 +0200
11043              Message-ID: <m3emutkdeu.fsf@furu.g.aas.no>
11044              Subject: Re: Re[2]: another joyride begins
11045      Branch: perl
11046            ! lib/utf8_heavy.pl
11047 ____________________________________________________________________________
11048 [  1766] By: gsar                                  on 1998/08/08  22:33:10
11049         Log: utf8 doc tweak
11050              From: Gisle Aas <aas@sn.no>
11051              Date: 05 Aug 1998 00:41:04 +0200
11052              Message-ID: <m3yat4wetb.fsf@furu.g.aas.no>
11053              Subject: Matching clumps
11054      Branch: perl
11055            ! lib/utf8.pm
11056 ____________________________________________________________________________
11057 [  1765] By: gsar                                  on 1998/08/08  22:31:37
11058         Log: kill bogus warning from -we 'use utf8; $_="\x{FF}"'
11059              From: Gisle Aas <aas@sn.no>
11060              Date: 04 Aug 1998 22:56:11 +0200
11061              Message-ID: <m3yat4sbys.fsf@furu.g.aas.no>
11062              Subject: Re: another joyride begins
11063      Branch: perl
11064            ! lib/utf8_heavy.pl
11065 ____________________________________________________________________________
11066 [  1764] By: gsar                                  on 1998/08/08  22:28:43
11067         Log: From: larry@wall.org (Larry Wall)
11068              Date: Tue, 4 Aug 1998 17:04:51 -0700
11069              Message-Id: <199808050004.RAA22592@wall.org>
11070              Subject: [PATCH 5.005_50] \pX not implemented!
11071      Branch: perl
11072            ! regcomp.c
11073 ____________________________________________________________________________
11074 [  1763] By: gsar                                  on 1998/08/08  22:27:15
11075         Log: From: Stephen McCamant <alias@mcs.com>
11076              Date: Sun,  2 Aug 1998 16:33:18 -0500 (CDT)
11077              Message-ID: <13764.55116.921952.837027@alias-2.pr.mcs.net>
11078              Subject: [PATCH] Eliminate superfluous RV2p[AH]Vs in oops[AH]V()
11079      Branch: perl
11080            ! op.c
11081 ____________________________________________________________________________
11082 [  1762] By: gsar                                  on 1998/08/08  22:26:09
11083         Log: From: Jarkko Hietaniemi <jhi@iki.fi>
11084              Date: Sun, 2 Aug 1998 22:05:28 +0300 (EET DST)
11085              Message-Id: <199808021905.WAA10592@alpha.hut.fi>
11086              Subject: [PATCH] 5.005_02-TRIAL1 or 5.004_05-MAINT_TRIAL_5: t/op/{pw,gr}ent.t
11087      Branch: perl
11088            + t/op/grent.t t/op/pwent.t
11089            ! MANIFEST
11090 ____________________________________________________________________________
11091 [  1761] By: gsar                                  on 1998/08/08  22:21:52
11092         Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11093              Date: Thu, 30 Jul 1998 19:23:56 -0400 (EDT)
11094              Message-Id: <199807302323.TAA21175@monk.mps.ohio-state.edu>
11095              Subject: [5.005_50 PATCH] misprint in RE engine
11096      Branch: perl
11097            ! regexec.c t/op/re_tests
11098 ____________________________________________________________________________
11099 [  1760] By: gsar                                  on 1998/08/08  22:18:54
11100         Log: integrate maint-5.005 changes into mainline
11101      Branch: perl
11102           +> Porting/fixCORE README.os390 ebcdic.c win32/des_fcrypt.patch
11103           !> (integrate 138 files)
11104 ____________________________________________________________________________
11105 [  1672] By: gsar                                  on 1998/07/27  18:35:28
11106         Log: create new Changes
11107      Branch: perl
11108            + Changes
11109            ! Changes5.005 MANIFEST
11110 ____________________________________________________________________________
11111 [  1671] By: gsar                                  on 1998/07/27  18:30:57
11112         Log: rename Changes --> Changes5.005
11113      Branch: perl
11114           +> Changes5.005
11115            - Changes
11116 ____________________________________________________________________________
11117 [  1670] By: gsar                                  on 1998/07/27  18:10:14
11118         Log: integrate 5.005_01 changes from maint
11119      Branch: perl
11120            ! Changes
11121           !> README.win32 pod/perldelta.pod proto.h toke.c win32/GenCAPI.pl
11122           !> win32/win32.c
11123 ____________________________________________________________________________
11124 [  1667] By: nick                                  on 1998/07/26  14:31:01
11125         Log: Add dTHR so that it compiles miniperl in threaded mode
11126      Branch: perl
11127            ! doop.c mg.c regcomp.c regexec.c
11128 ____________________________________________________________________________
11129 [  1666] By: nick                                  on 1998/07/26  13:01:10
11130         Log: Resolve ansiperl against mainline (@1648?)
11131              Unclear that change number has "taken".
11132      Branch: ansiperl
11133           +> (branch 169 files)
11134            - ObjXSub.h XSLock.h compat3.sym fixvars pod/perld4.pod
11135           !> (integrate 131 files)
11136
11137 ----------------
11138 Version 5.005_50
11139 ----------------
11140
11141 ____________________________________________________________________________
11142 [  1665] By: gsar                                  on 1998/07/26  05:38:48
11143         Log: add trailing newline to file
11144      Branch: perl
11145            ! Changes lib/unicode/blocks.txt
11146 ____________________________________________________________________________
11147 [  1664] By: gsar                                  on 1998/07/26  05:08:48
11148         Log: integrate proto.h additions from maint-5.005
11149      Branch: perl
11150           !> pod/perlhist.pod proto.h
11151 ____________________________________________________________________________
11152 [  1663] By: gsar                                  on 1998/07/26  05:07:05
11153         Log: add new files to MANIFEST; add missing prototypes to proto.h;
11154              s/PL_utf8skip/utf8skip/ for now, or we end up with Perl_PL_;
11155              add typecasts to silence warnings; tweaks for win32 builds
11156      Branch: perl
11157            ! MANIFEST embed.h global.sym proto.h regexec.c toke.c utf8.h
11158            ! win32/Makefile win32/makefile.mk
11159 ____________________________________________________________________________
11160 [  1662] By: gsar                                  on 1998/07/26  05:01:52
11161         Log: add missing sv_*_mg() prototypes in proto.h, update perlhist.pod
11162      Branch: maint-5.005/perl
11163            ! pod/perlhist.pod proto.h
11164 ____________________________________________________________________________
11165 [  1661] By: gsar                                  on 1998/07/26  02:52:48
11166         Log: up patchlevel to 5.005_50
11167      Branch: perl
11168            ! Changes patchlevel.h win32/Makefile win32/config_H.bc
11169            ! win32/config_H.gc win32/config_H.vc win32/makefile.mk
11170 ____________________________________________________________________________
11171 [  1660] By: gsar                                  on 1998/07/26  02:43:57
11172         Log: integrate utfperl
11173      Branch: perl
11174           +> (branch 162 files)
11175           !> (integrate 29 files)
11176 ____________________________________________________________________________
11177 [  1659] By: gsar                                  on 1998/07/26  02:38:22
11178         Log: integrate maint-5.005 changes
11179      Branch: perl
11180           !> Changes README.vms djgpp/fixpmain emacs/ptags hints/beos.sh
11181           !> lib/Math/BigInt.pm pod/perldelta.pod pod/perlmodinstall.pod
11182           !> pod/perltoc.pod pp_sys.c t/lib/bigintpm.t
11183           !> vms/descrip_mms.template vms/subconfigure.com
11184 ____________________________________________________________________________
11185 [  1658] By: gsar                                  on 1998/07/26  02:23:46
11186         Log: VMS patches from Dan Sugalski <sugalskd@osshe.edu>
11187              Date: Fri, 24 Jul 1998 11:38:25 -0700
11188              Message-Id: <3.0.5.32.19980724113825.00a067b0@ous.edu>
11189              Subject: [PATCH 5.005] version number problem with VMS (Corrected)
11190              --
11191              Date: Fri, 24 Jul 1998 12:30:36 -0700
11192              Message-Id: <3.0.5.32.19980724123036.009f0390@ous.edu>
11193              Subject: [PATCH 5.005]Tweaks to README.vms
11194              --
11195              Date: Sat, 25 Jul 1998 17:56:55 -0700 (PDT)
11196              Message-ID: <Pine.GSO.3.96.980725175626.15740D-100000@netserve.ous.edu>
11197              Subject: [PATCH 5.005] Final build cleanup patch
11198      Branch: maint-5.005/perl
11199            ! README.vms vms/descrip_mms.template vms/subconfigure.com
11200 ____________________________________________________________________________
11201 [  1657] By: gsar                                  on 1998/07/26  02:19:50
11202         Log: another platform where pp_sselect() needs a whole fd_set buffer
11203              From: Lupe Christoph <lupe@alanya.m.isar.de>
11204              Date: Sat, 25 Jul 1998 19:49:33 +0200 (MET DST)
11205              Message-Id: <199807251749.TAA22347@alanya.m.isar.de>
11206              Subject: Patch for Not OK: perl 5.005 on i86pc-solaris-thread 2.6
11207      Branch: maint-5.005/perl
11208            ! pp_sys.c
11209 ____________________________________________________________________________
11210 [  1656] By: gsar                                  on 1998/07/26  02:12:46
11211         Log: fix problem building modules on dos-djgpp
11212              From: Laszlo Molnar <molnarl@cdata.tvnet.hu>
11213              Date: Sat, 25 Jul 1998 00:53:39 +0200
11214              Message-ID: <19980725005339.C222@cdata.tvnet.hu>
11215              Subject: [PATCH 5.005] dos-djgpp and modules problem
11216      Branch: maint-5.005/perl
11217            ! djgpp/fixpmain
11218 ____________________________________________________________________________
11219 [  1655] By: gsar                                  on 1998/07/26  02:11:09
11220         Log: From: Tom Spindler <dogcow@home.merit.edu>
11221              Date: Wed, 22 Jul 1998 16:11:07 -0400
11222              Message-ID: <19980722161107.A16813@home.merit.edu>
11223              Subject: [PATCH 5.005] BeOS tweak
11224      Branch: maint-5.005/perl
11225            ! hints/beos.sh
11226 ____________________________________________________________________________
11227 [  1654] By: gsar                                  on 1998/07/26  02:09:29
11228         Log: various pod tweaks
11229      Branch: maint-5.005/perl
11230            ! Changes pod/perldelta.pod pod/perlmodinstall.pod
11231            ! pod/perltoc.pod
11232 ____________________________________________________________________________
11233 [  1653] By: gsar                                  on 1998/07/26  02:05:46
11234         Log: fix emacs/ptags for PL_* changes
11235              From: Ilya Zakharevich <ilya@math.ohio-state.edu>
11236              Date: Fri, 24 Jul 1998 03:12:35 -0400 (EDT)
11237              Message-Id: <199807240712.DAA04204@monk.mps.ohio-state.edu>
11238              Subject: [PATCH 5.004_76] Yet better ptags
11239      Branch: maint-5.005/perl
11240            ! emacs/ptags
11241 ____________________________________________________________________________
11242 [  1652] By: gsar                                  on 1998/07/26  02:03:01
11243         Log: fix behavior of <=> on bigints
11244              From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
11245              Message-Id: <E0yzlfF-0004kz-00@taurus.cus.cam.ac.uk>
11246              Date: Fri, 24 Jul 1998 18:29:53 +0100
11247              Subject: [PATCH] Re: Math::BigInt <=> op is not correct.
11248      Branch: maint-5.005/perl
11249            ! lib/Math/BigInt.pm t/lib/bigintpm.t
11250 ____________________________________________________________________________
11251 [  1651] By: larry                                 on 1998/07/24  05:44:33
11252         Log: Here are the long-expected Unicode/UTF-8 modifications.
11253      Branch: utfperl
11254            + lib/unicode/ArabLink.pl lib/unicode/ArabLnkGrp.pl
11255            + lib/unicode/Bidirectional.pl lib/unicode/Block.pl
11256            + lib/unicode/Category.pl lib/unicode/CombiningClass.pl
11257            + lib/unicode/Decomposition.pl
11258            + lib/unicode/In/AlphabeticPresentationForms.pl
11259            + lib/unicode/In/Arabic.pl
11260            + lib/unicode/In/ArabicPresentationForms-A.pl
11261            + lib/unicode/In/ArabicPresentationForms-B.pl
11262            + lib/unicode/In/Armenian.pl lib/unicode/In/Arrows.pl
11263            + lib/unicode/In/BasicLatin.pl lib/unicode/In/Bengali.pl
11264            + lib/unicode/In/BlockElements.pl lib/unicode/In/Bopomofo.pl
11265            + lib/unicode/In/BoxDrawing.pl
11266            + lib/unicode/In/CJKCompatibility.pl
11267            + lib/unicode/In/CJKCompatibilityForms.pl
11268            + lib/unicode/In/CJKCompatibilityIdeographs.pl
11269            + lib/unicode/In/CJKSymbolsandPunctuation.pl
11270            + lib/unicode/In/CJKUnifiedIdeographs.pl
11271            + lib/unicode/In/CombiningDiacriticalMarks.pl
11272            + lib/unicode/In/CombiningHalfMarks.pl
11273            + lib/unicode/In/CombiningMarksforSymbols.pl
11274            + lib/unicode/In/ControlPictures.pl
11275            + lib/unicode/In/CurrencySymbols.pl lib/unicode/In/Cyrillic.pl
11276            + lib/unicode/In/Devanagari.pl lib/unicode/In/Dingbats.pl
11277            + lib/unicode/In/EnclosedAlphanumerics.pl
11278            + lib/unicode/In/EnclosedCJKLettersandMonths.pl
11279            + lib/unicode/In/GeneralPunctuation.pl
11280            + lib/unicode/In/GeometricShapes.pl lib/unicode/In/Georgian.pl
11281            + lib/unicode/In/Greek.pl lib/unicode/In/GreekExtended.pl
11282            + lib/unicode/In/Gujarati.pl lib/unicode/In/Gurmukhi.pl
11283            + lib/unicode/In/HalfwidthandFullwidthForms.pl
11284            + lib/unicode/In/HangulCompatibilityJamo.pl
11285            + lib/unicode/In/HangulJamo.pl lib/unicode/In/HangulSyllables.pl
11286            + lib/unicode/In/Hebrew.pl
11287            + lib/unicode/In/HighPrivateUseSurrogates.pl
11288            + lib/unicode/In/HighSurrogates.pl lib/unicode/In/Hiragana.pl
11289            + lib/unicode/In/IPAExtensions.pl lib/unicode/In/Kanbun.pl
11290            + lib/unicode/In/Kannada.pl lib/unicode/In/Katakana.pl
11291            + lib/unicode/In/Lao.pl lib/unicode/In/Latin-1Supplement.pl
11292            + lib/unicode/In/LatinExtended-A.pl
11293            + lib/unicode/In/LatinExtended-B.pl
11294            + lib/unicode/In/LatinExtendedAdditional.pl
11295            + lib/unicode/In/LetterlikeSymbols.pl
11296            + lib/unicode/In/LowSurrogates.pl lib/unicode/In/Malayalam.pl
11297            + lib/unicode/In/MathematicalOperators.pl
11298            + lib/unicode/In/MiscellaneousSymbols.pl
11299            + lib/unicode/In/MiscellaneousTechnical.pl
11300            + lib/unicode/In/NumberForms.pl
11301            + lib/unicode/In/OpticalCharacterRecognition.pl
11302            + lib/unicode/In/Oriya.pl lib/unicode/In/PrivateUse.pl
11303            + lib/unicode/In/SmallFormVariants.pl
11304            + lib/unicode/In/SpacingModifierLetters.pl
11305            + lib/unicode/In/Specials.pl
11306            + lib/unicode/In/SuperscriptsandSubscripts.pl
11307            + lib/unicode/In/Tamil.pl lib/unicode/In/Telugu.pl
11308            + lib/unicode/In/Thai.pl lib/unicode/In/Tibetan.pl
11309            + lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
11310            + lib/unicode/Is/BidiAN.pl lib/unicode/Is/BidiB.pl
11311            + lib/unicode/Is/BidiCS.pl lib/unicode/Is/BidiEN.pl
11312            + lib/unicode/Is/BidiES.pl lib/unicode/Is/BidiET.pl
11313            + lib/unicode/Is/BidiL.pl lib/unicode/Is/BidiON.pl
11314            + lib/unicode/Is/BidiR.pl lib/unicode/Is/BidiS.pl
11315            + lib/unicode/Is/BidiWS.pl lib/unicode/Is/C.pl
11316            + lib/unicode/Is/Cc.pl lib/unicode/Is/Cn.pl lib/unicode/Is/Co.pl
11317            + lib/unicode/Is/DCcircle.pl lib/unicode/Is/DCcompat.pl
11318            + lib/unicode/Is/DCfinal.pl lib/unicode/Is/DCfont.pl
11319            + lib/unicode/Is/DCinital.pl lib/unicode/Is/DCinitial.pl
11320            + lib/unicode/Is/DCisolated.pl lib/unicode/Is/DCnarrow.pl
11321            + lib/unicode/Is/DCnoBreak.pl lib/unicode/Is/DCsmall.pl
11322            + lib/unicode/Is/DCsquare.pl lib/unicode/Is/DCsub.pl
11323            + lib/unicode/Is/DCsuper.pl lib/unicode/Is/DCvertical.pl
11324            + lib/unicode/Is/DCwide.pl lib/unicode/Is/DecoCanon.pl
11325            + lib/unicode/Is/DecoCompat.pl lib/unicode/Is/Digit.pl
11326            + lib/unicode/Is/L.pl lib/unicode/Is/Ll.pl lib/unicode/Is/Lm.pl
11327            + lib/unicode/Is/Lo.pl lib/unicode/Is/Lower.pl
11328            + lib/unicode/Is/Lt.pl lib/unicode/Is/Lu.pl lib/unicode/Is/M.pl
11329            + lib/unicode/Is/Mc.pl lib/unicode/Is/Mirrored.pl
11330            + lib/unicode/Is/Mn.pl lib/unicode/Is/N.pl lib/unicode/Is/Nd.pl
11331            + lib/unicode/Is/No.pl lib/unicode/Is/P.pl lib/unicode/Is/Pd.pl
11332            + lib/unicode/Is/Pe.pl lib/unicode/Is/Po.pl
11333            + lib/unicode/Is/Print.pl lib/unicode/Is/Ps.pl
11334            + lib/unicode/Is/S.pl lib/unicode/Is/Sc.pl lib/unicode/Is/Sm.pl
11335            + lib/unicode/Is/So.pl lib/unicode/Is/Space.pl
11336            + lib/unicode/Is/Upper.pl lib/unicode/Is/Z.pl
11337            + lib/unicode/Is/Zl.pl lib/unicode/Is/Zp.pl lib/unicode/Is/Zs.pl
11338            + lib/unicode/JamoShort.pl lib/unicode/Makefile
11339            + lib/unicode/Name.pl lib/unicode/Number.pl
11340            + lib/unicode/To/Digit.pl lib/unicode/To/Lower.pl
11341            + lib/unicode/To/Title.pl lib/unicode/To/Upper.pl
11342            + lib/unicode/UnicodeData-Latest.txt lib/unicode/arabshp.txt
11343            + lib/unicode/blocks.txt lib/unicode/index2.txt
11344            + lib/unicode/jamo2.txt lib/unicode/mktables.PL
11345            + lib/unicode/names2.txt lib/unicode/props2.txt
11346            + lib/unicode/readme.txt lib/utf8.pm lib/utf8_heavy.pl t/UTEST
11347            + utf8.c utf8.h
11348            ! Makefile.SH doop.c embed.h embedvar.h global.sym handy.h mg.c
11349            ! op.c op.h perl.h perlvars.h pod/perlfunc.pod pod/perlop.pod
11350            ! pod/perlre.pod pp.c pp_ctl.c pp_hot.c proto.h regcomp.c
11351            ! regcomp.h regcomp.sym regexec.c regexp.h regnodes.h sv.c
11352            ! t/op/vec.t toke.c util.c vms/vmsish.h
11353 ____________________________________________________________________________
11354 [  1650] By: gsar                                  on 1998/07/24  04:06:48
11355         Log: create utfperl branch
11356      Branch: utfperl
11357           +> (branch 1079 files)
11358 ____________________________________________________________________________
11359 [  1649] By: gsar                                  on 1998/07/24  03:56:56
11360         Log: create maint-5.005 branch
11361      Branch: maint-5.005/perl
11362           +> (branch 1079 files)
11363 ____________________________________________________________________________
11364 [  1648] By: gsar                                  on 1998/07/24  03:36:35
11365         Log: un-checked-in 5.005 Changes  (this is 5.005 *exactly*)
11366      Branch: perl
11367            ! Changes
11368