Commit | Line | Data |
---|---|---|
527cc686 GS |
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> | |
527cc686 GS |
23 | Spider Boardman <spider@orb.nashua.nh.us> |
24 | Tom Christiansen <tchrist@perl.com> | |
3836fe67 | 25 | Jan Dubois <jan.dubois@ibm.net> |
527cc686 GS |
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> | |
933fea7f | 34 | Laszlo Molnar <laszlo.molnar@eth.ericsson.se> |
527cc686 GS |
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> | |
455ece5e | 45 | Kurt D. Starsinic <kstar@isinet.com> |
527cc686 GS |
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 | ||
bd3fa61c | 52 | Charles Bailey <bailey@newman.upenn.edu> |
0f31cffe | 53 | Graham Barr <gbarr@ti.com> |
527cc686 GS |
54 | Malcolm Beattie <mbeattie@sable.ox.ac.uk> |
55 | Tim Bunce <Tim.Bunce@ig.co.uk> | |
56 | Andy Dougherty <doughera@lafcol.lafayette.edu> | |
0f31cffe | 57 | Gurusamy Sarathy <gsar@umich.edu> |
527cc686 GS |
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 | ---------------- | |
a2126434 JN |
78 | Version 5.005_62 Development release working toward 5.006 |
79 | ---------------- | |
80 | ||
81 | ____________________________________________________________________________ | |
becf2bd3 GS |
82 | [ 4356] By: gsar on 1999/10/12 16:53:31 |
83 | Log: add File::BSDGlob as File::Glob and load it at compile-time | |
84 | if perl was built with -DPERL_INTERNAL_GLOB | |
85 | ||
86 | TODO: we currently get a compile-time failure if File/Glob.pm | |
87 | can't be found; such failure needs to be made to emit a warning | |
88 | and use the csh implementation instead | |
89 | Branch: perl | |
90 | + ext/File/Glob/Changes ext/File/Glob/Glob.pm | |
91 | + ext/File/Glob/Glob.xs ext/File/Glob/Makefile.PL | |
92 | + ext/File/Glob/TODO ext/File/Glob/bsd_glob.c | |
93 | + ext/File/Glob/bsd_glob.h t/lib/glob-basic.t | |
94 | + t/lib/glob-global.t t/lib/glob-taint.t | |
95 | ! MANIFEST op.c t/op/glob.t t/op/readdir.t t/op/taint.t | |
96 | ! t/pragma/overload.t | |
97 | ____________________________________________________________________________ | |
98 | [ 4355] By: jhi on 1999/10/12 15:30:05 | |
99 | Log: Revert the parts of #3926 that outlawed character ranges | |
100 | that have character classes such as \w as either endpoint. | |
101 | This change re-establishes the old behavior which meant that | |
102 | such ranges weren't really ranges, the "-" was literal. | |
103 | Moreover, this change also fixes the old behavior to be | |
104 | more consistent: [\w-.] and [\s-\w] worked, but [.-\w] didn't. | |
105 | Now they all do work as described above. The #3926 outlawed | |
106 | all of those. | |
107 | Branch: cfgperl | |
108 | ! pod/perldiag.pod pod/perlre.pod regcomp.c t/op/re_tests | |
109 | ____________________________________________________________________________ | |
110 | [ 4354] By: jhi on 1999/10/12 09:58:59 | |
111 | Log: Integrate with Sarathy. | |
112 | Branch: cfgperl | |
113 | !> (integrate 33 files) | |
114 | ____________________________________________________________________________ | |
115 | [ 4353] By: gsar on 1999/10/12 05:53:40 | |
116 | Log: apply parts of LynxOS patches from Alan Johnson | |
117 | <johnson@alonn.gemse.fr> | |
118 | Branch: perl | |
119 | ! Changes hints/lynxos.sh pod/perldelta.pod t/lib/safe2.t | |
120 | ! t/op/groups.t | |
121 | ____________________________________________________________________________ | |
883d36a6 GS |
122 | [ 4352] By: gsar on 1999/10/12 05:24:39 |
123 | Log: allow any unpack specifier to take a count via '/' | |
124 | (from Ilya Zakharevich) | |
125 | Branch: perl | |
126 | ! pp.c t/op/pack.t | |
127 | ____________________________________________________________________________ | |
128 | [ 4351] By: gsar on 1999/10/12 05:02:35 | |
129 | Log: avoid warnings | |
130 | Branch: perl | |
131 | ! malloc.c | |
132 | ____________________________________________________________________________ | |
133 | [ 4350] By: gsar on 1999/10/12 04:50:52 | |
134 | Log: various cleanups | |
135 | Branch: perl | |
136 | ! ext/Devel/DProf/DProf.xs op.c perl.c perly.c perly.y | |
137 | ! perly_c.diff pp_hot.c toke.c vms/perly_c.vms win32/config.bc | |
138 | ! win32/config.gc win32/config.vc win32/config_H.bc | |
139 | ! win32/config_H.gc win32/config_H.vc win32/config_sh.PL | |
140 | ____________________________________________________________________________ | |
141 | [ 4349] By: gsar on 1999/10/12 00:23:11 | |
142 | Log: update Changes, patchlevel etc. | |
143 | Branch: perl | |
144 | ! Changes Porting/findvars patchlevel.h win32/Makefile | |
145 | ! win32/config_H.bc win32/config_H.gc win32/config_H.vc | |
146 | ! win32/makefile.mk | |
147 | ____________________________________________________________________________ | |
04dc9db9 GS |
148 | [ 4348] By: gsar on 1999/10/11 23:11:57 |
149 | Log: add vec() example from Chaim Frenkel <chaimf@pobox.com> | |
150 | Branch: perl | |
151 | ! pod/perlfunc.pod | |
152 | ____________________________________________________________________________ | |
153 | [ 4347] By: jhi on 1999/10/11 21:25:03 | |
154 | Log: Sparc Linux -Duseshrplib fix. | |
155 | ||
156 | From: Brian Jepson <bjepson@home.com> | |
157 | To: Nick Ing-Simmons <nick@ing-simmons.net> | |
158 | cc: perl5-porters@perl.org | |
159 | Subject: Re: [ID 19990813.002] Can't build Perl 5.005_60 on SPARC/Linux with -Duseshrplib | |
160 | Date: Fri, 20 Aug 1999 11:25:17 -0500 (EST) | |
161 | Message-ID: <Pine.LNX.4.10.9908201123570.5116-100000@cx384756-a.sking1.ri.home.com> | |
162 | Branch: cfgperl | |
163 | ! hints/linux.sh | |
164 | ____________________________________________________________________________ | |
165 | [ 4346] By: gsar on 1999/10/11 20:28:32 | |
166 | Log: more pack/unpack documentation (from Ilya Zakharevich); changed | |
167 | the behavior of 'Z*' and 'Z3' to always pack a trailing | |
168 | null byte; changed documentation to suit; added test | |
169 | Branch: perl | |
170 | ! pod/perlfunc.pod pp.c t/op/pack.t | |
171 | ____________________________________________________________________________ | |
172 | [ 4345] By: gsar on 1999/10/11 19:15:46 | |
173 | Log: writing to perllocal.pod fails if it was never created; | |
174 | tweak pseudo-hash example (both suggested by Michael G Schwern | |
175 | <schwern@pobox.com>) | |
176 | Branch: perl | |
177 | ! lib/ExtUtils/MM_Unix.pm pod/perlref.pod | |
178 | ____________________________________________________________________________ | |
179 | [ 4344] By: gsar on 1999/10/11 17:57:31 | |
180 | Log: slightly edited variant of suggested patch | |
181 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
182 | Date: Thu, 9 Sep 1999 18:35:37 -0400 | |
183 | Message-ID: <19990909183537.A28682@monk.mps.ohio-state.edu> | |
184 | Subject: [PATCH 5.005_58] How RExen match? | |
185 | Branch: perl | |
186 | ! pod/perlre.pod | |
187 | ____________________________________________________________________________ | |
188 | [ 4343] By: gsar on 1999/10/11 16:55:48 | |
189 | Log: change#4327 was inefficient | |
190 | Branch: perl | |
191 | ! lib/lib.pm | |
192 | ____________________________________________________________________________ | |
193 | [ 4342] By: jhi on 1999/10/11 07:01:46 | |
194 | Log: Integrate with Sarathy. | |
195 | Branch: cfgperl | |
196 | +> pod/perlhack.pod | |
197 | !> (integrate 28 files) | |
198 | ____________________________________________________________________________ | |
199 | [ 4341] By: jhi on 1999/10/11 06:37:47 | |
200 | Log: The 2.5th cut at the AIX C++ extension problems. | |
201 | Branch: cfgperl | |
202 | ! hints/aix.sh | |
203 | ____________________________________________________________________________ | |
204 | [ 4340] By: gsar on 1999/10/10 23:48:07 | |
205 | Log: add perlhack.pod from Nathan Torkington <gnat@frii.com> | |
206 | Branch: perl | |
207 | + pod/perlhack.pod | |
208 | ! MANIFEST pod/Makefile pod/perl.pod pod/roffitall | |
209 | ____________________________________________________________________________ | |
210 | [ 4339] By: gsar on 1999/10/10 20:42:40 | |
211 | Log: revert SAVEDESTRUCTOR() to accepting void(*)(void*) for source | |
212 | compatibility; introduce SAVEDESTRUCTOR_X() that accepts | |
213 | void(*)(pTHX_ void*) | |
214 | Branch: perl | |
215 | ! embed.h embed.pl ext/Devel/DProf/DProf.xs global.sym mg.c | |
216 | ! objXSUB.h perl.h perlapi.c perly.c perly.y perly_c.diff | |
217 | ! pod/perlguts.pod pod/perltoc.pod pp.c pp_hot.c proto.h | |
218 | ! regcomp.h regexec.c scope.c scope.h toke.c vms/perly_c.vms | |
219 | ____________________________________________________________________________ | |
220 | [ 4338] By: gsar on 1999/10/10 20:38:59 | |
221 | Log: add missing new diagnostics to perldelta | |
222 | Branch: perl | |
223 | ! pod/perldelta.pod | |
224 | ____________________________________________________________________________ | |
225 | [ 4337] By: gsar on 1999/10/10 17:40:13 | |
226 | Log: update perldelta for change#3406 | |
227 | Branch: perl | |
228 | ! embed.pl pod/perldata.pod pod/perldelta.pod | |
229 | ____________________________________________________________________________ | |
230 | [ 4336] By: gsar on 1999/10/10 16:33:14 | |
231 | Log: integrate cfgperl contents into mainline | |
232 | Branch: perl | |
233 | +> ext/DynaLoader/hints/aix.pl | |
234 | !> MANIFEST ext/DynaLoader/dl_aix.xs hints/aix.sh hints/irix_6.sh | |
235 | !> makedef.pl perl.h pod/perldelta.pod | |
236 | ____________________________________________________________________________ | |
237 | [ 4335] By: jhi on 1999/10/10 11:09:48 | |
238 | Log: Update perldelta. | |
239 | Branch: cfgperl | |
240 | ! pod/perldelta.pod | |
241 | ____________________________________________________________________________ | |
242 | [ 4334] By: jhi on 1999/10/10 10:31:46 | |
243 | Log: Integrate with Sarathy. | |
244 | Branch: cfgperl | |
245 | +> win32/genmk95.pl | |
246 | !> Changes MANIFEST README.win32 cop.h ext/Thread/Thread.pm | |
247 | !> ext/Thread/Thread.xs ext/Thread/Thread/Queue.pm | |
248 | !> ext/Thread/Thread/Semaphore.pm ext/Thread/Thread/Specific.pm | |
249 | !> ext/Thread/sync.t ext/Thread/sync2.t installperl | |
250 | !> lib/Exporter.pm lib/ExtUtils/MM_Unix.pm | |
251 | !> lib/ExtUtils/MM_Win32.pm lib/diagnostics.pm lib/lib.pm perl.c | |
252 | !> pod/perldelta.pod pod/perlfunc.pod pp_ctl.c pp_hot.c pp_sys.c | |
253 | !> utils/perldoc.PL win32/makefile.mk | |
254 | ____________________________________________________________________________ | |
255 | [ 4333] By: gsar on 1999/10/10 06:33:15 | |
256 | Log: install pods to 'pods' rather than 'pod' on cygwin (modified | |
257 | a patch suggested by cwilson@cc865179-c.chmbl1.ga.home.com) | |
258 | Branch: perl | |
259 | ! installperl lib/diagnostics.pm utils/perldoc.PL | |
260 | ____________________________________________________________________________ | |
261 | [ 4332] By: gsar on 1999/10/10 05:15:26 | |
262 | Log: add $VERSION | |
263 | Branch: perl | |
264 | ! lib/Exporter.pm | |
265 | ____________________________________________________________________________ | |
266 | [ 4331] By: gsar on 1999/10/10 05:10:22 | |
267 | Log: describe what can go in an export list (from Anno Siegel | |
268 | <anno4000@lublin.zrz.tu-berlin.de>) | |
269 | Branch: perl | |
270 | ! lib/Exporter.pm | |
271 | ____________________________________________________________________________ | |
272 | [ 4330] By: gsar on 1999/10/10 04:50:43 | |
273 | Log: more basic support for building modules under Windows 95/98 | |
274 | (applied relevant parts from a patch suggested by | |
275 | Jochen Wiedmann <joe@ispsoft.de>) | |
276 | Branch: perl | |
277 | ! lib/ExtUtils/MM_Unix.pm | |
278 | ____________________________________________________________________________ | |
279 | [ 4329] By: gsar on 1999/10/10 04:28:38 | |
280 | Log: rudimentary support for building under Windows 95/98 (from | |
281 | Benjamin Stuhl <sho_pi@hotmail.com>) | |
282 | Branch: perl | |
283 | + win32/genmk95.pl | |
284 | ! MANIFEST README.win32 lib/ExtUtils/MM_Win32.pm | |
285 | ! win32/makefile.mk | |
286 | ____________________________________________________________________________ | |
287 | [ 4328] By: gsar on 1999/10/10 03:37:21 | |
288 | Log: fix two leaks in Thread.xs (from Eugene Alterman | |
289 | <Eugene.Alterman@bremer-inc.com>); convert places with | |
290 | 'use attrs' to new attributes syntax | |
291 | Branch: perl | |
292 | ! ext/Thread/Thread.pm ext/Thread/Thread.xs | |
293 | ! ext/Thread/Thread/Queue.pm ext/Thread/Thread/Semaphore.pm | |
294 | ! ext/Thread/Thread/Specific.pm ext/Thread/sync.t | |
295 | ! ext/Thread/sync2.t | |
296 | ____________________________________________________________________________ | |
297 | [ 4327] By: gsar on 1999/10/10 02:23:52 | |
298 | Log: avoid duplicates in @INC, they cause leaks in mod_perl etc | |
299 | (suggested by Tod Irwin <irwin@stockmaster.com>) | |
300 | Branch: perl | |
301 | ! lib/lib.pm | |
302 | ____________________________________________________________________________ | |
303 | [ 4326] By: gsar on 1999/10/10 00:51:48 | |
304 | Log: better documentation for recv() (from Anton Berezin | |
305 | <tobez@plab.ku.dk>) | |
306 | Branch: perl | |
307 | ! pod/perlfunc.pod | |
308 | ____________________________________________________________________________ | |
309 | [ 4325] By: gsar on 1999/10/09 22:46:23 | |
310 | Log: perldelta updates (see TODO markers) | |
311 | Branch: perl | |
312 | ! Changes pod/perldelta.pod pp_sys.c | |
313 | ____________________________________________________________________________ | |
a5222a85 GS |
314 | [ 4324] By: gsar on 1999/10/09 19:43:10 |
315 | Log: fix Exporter::export_to_level() documentation | |
316 | Branch: perl | |
317 | ! lib/Exporter.pm | |
318 | ____________________________________________________________________________ | |
319 | [ 4323] By: gsar on 1999/10/09 18:48:31 | |
320 | Log: don't run END blocks when running under -c switch (older, | |
883d36a6 | 321 | rarely useful behavior may still be obtained by putting |
a5222a85 GS |
322 | BEGIN { $^C = 0; exit; } at the end of the script) |
323 | Branch: perl | |
324 | ! perl.c | |
325 | ____________________________________________________________________________ | |
326 | [ 4322] By: jhi on 1999/10/09 05:31:26 | |
327 | Log: While awaiting a good test program to detect the broken gcc. | |
328 | From: Thomas Conté <tom@fr.uu.net> | |
329 | To: <jhi@iki.fi> | |
330 | Cc: <perl5-porters@perl.org> | |
331 | Subject: Re: [ID 19990825.007] test t/lib/ipc_sysv.t failing under irix 6.4 | |
332 | Date: Wed, 6 Oct 1999 19:56:29 +0200 | |
333 | Message-ID: <000a01bf1024$1d938f20$252ad0d4@eng.iway.fr> | |
334 | Branch: cfgperl | |
335 | ! hints/irix_6.sh perl.h | |
336 | ____________________________________________________________________________ | |
337 | [ 4321] By: gsar on 1999/10/09 00:41:02 | |
338 | Log: POPSUB() gave up the refcount to the CV before LEAVE had a chance to | |
339 | clear entries in the CV's pad, leading to coredumps when CV had no | |
340 | other references to it; this is a slightly edited version of the | |
341 | patch suggested by Russel O'Connor <roconnor@world.std.com> | |
342 | Branch: perl | |
343 | ! cop.h pp_ctl.c pp_hot.c | |
344 | ____________________________________________________________________________ | |
345 | [ 4320] By: gsar on 1999/10/08 22:50:51 | |
346 | Log: revert POP{SUB,LOOP}{1,2} logic to the simpler pre-5.003_24 | |
347 | situation (assumptions about cx invalidation are not valid | |
348 | anymore) | |
349 | Branch: perl | |
350 | ! cop.h pp_ctl.c pp_hot.c | |
351 | ____________________________________________________________________________ | |
352 | [ 4319] By: jhi on 1999/10/08 14:33:31 | |
353 | Log: Integrate with Sarathy. | |
354 | Branch: cfgperl | |
355 | !> cop.h ext/Thread/Thread.xs op.c opcode.h perl.c perl.h perly.c | |
356 | !> perly.y pod/perldiag.pod pod/perlfunc.pod pp_ctl.c pp_sys.c | |
357 | !> t/comp/bproto.t thrdvar.h toke.c util.c | |
358 | ____________________________________________________________________________ | |
359 | [ 4318] By: jhi on 1999/10/08 13:51:34 | |
360 | Log: The second cut at AIX C++ extension troubles. | |
361 | Branch: cfgperl | |
362 | ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/hints/aix.pl | |
363 | ! hints/aix.sh | |
364 | ____________________________________________________________________________ | |
365 | [ 4317] By: jhi on 1999/10/08 10:44:13 | |
366 | Log: The first cut at fixing Perl extensions written in C++ in AIX, | |
367 | statics don't get initialized right. This patch at least | |
368 | doesn't seem to break the build in my AIX, but unfortunately | |
369 | I don't have the IBM C++ to do further testing. | |
370 | ||
371 | Problem reported by Stephanie Beals in | |
372 | From: bealzy@us.ibm.com | |
373 | To: perl5-porters@perl.org | |
374 | Subject: [ID 19991007.005] DynaLoader/dl_aix.xs problem using load and unload on AIX | |
375 | Date: Thu, 7 Oct 1999 15:05:54 -0400 | |
376 | Message-Id: <85256803.0068E70D.00@D51MTA03.pok.ibm.com> | |
377 | Branch: cfgperl | |
378 | + ext/DynaLoader/hints/aix.pl | |
379 | ! MANIFEST ext/DynaLoader/dl_aix.xs hints/aix.sh | |
380 | ____________________________________________________________________________ | |
381 | [ 4316] By: gsar on 1999/10/08 10:26:15 | |
382 | Log: remove kludgey duplicate background error avoidance (caused | |
383 | "leaks"; %@ wasn't even user-visible under -Dusethreads); | |
384 | only repeats of most recent error are now avoided | |
385 | Branch: perl | |
386 | ! ext/Thread/Thread.xs perl.c perl.h pp_ctl.c thrdvar.h util.c | |
387 | ____________________________________________________________________________ | |
388 | [ 4315] By: jhi on 1999/10/08 09:48:59 | |
389 | Log: Fix omission. | |
390 | Branch: cfgperl | |
391 | ! makedef.pl | |
392 | ____________________________________________________________________________ | |
393 | [ 4314] By: gsar on 1999/10/08 07:17:01 | |
394 | Log: extend change#2299 to C<use> (fixes scoping problems in | |
395 | C<if (...) { use foo; ... }>) | |
396 | Branch: perl | |
397 | ! op.c | |
398 | ____________________________________________________________________________ | |
399 | [ 4313] By: gsar on 1999/10/08 04:52:19 | |
400 | Log: small tweak for change#4309 | |
401 | Branch: perl | |
402 | ! op.c | |
403 | ____________________________________________________________________________ | |
404 | [ 4312] By: gsar on 1999/10/08 02:31:13 | |
405 | Log: add suggested patch =~ s/NOTOP/OP_NOT/ with tests | |
406 | From: Larry Wall <larry@wall.org> | |
407 | Date: Wed, 6 Oct 1999 09:55:57 -0700 (PDT) | |
408 | Message-Id: <199910061655.JAA11333@kiev.wall.org> | |
409 | Subject: Re: [ID 19991001.004] apparent parsing error with not(arg) | |
410 | Branch: perl | |
411 | ! opcode.h t/comp/bproto.t toke.c | |
412 | ____________________________________________________________________________ | |
413 | [ 4311] By: gsar on 1999/10/08 00:58:19 | |
414 | Log: typo | |
415 | Branch: perl | |
416 | ! pp_sys.c | |
417 | ____________________________________________________________________________ | |
418 | [ 4310] By: gsar on 1999/10/07 23:51:38 | |
419 | Log: fix setpgrp vs getpgrp and POSIX vs BSD confusion (spotted by | |
420 | Brian Mitchell <brian@chele.cais.net>) | |
421 | Branch: perl | |
422 | ! pod/perldiag.pod pod/perlfunc.pod pp_sys.c | |
423 | ____________________________________________________________________________ | |
424 | [ 4309] By: gsar on 1999/10/07 22:57:52 | |
425 | Log: change#3728 was flawed (loop contexts saw the wrong statement | |
426 | info, causing loop control constructs to not find the label); | |
427 | disable OP_SETSTATE entirely and add a fix that is specifically | |
428 | targetted at disabling the OP_LINESEQ optimization in else BLOCK, | |
429 | which was what the original patch was supposed to fix | |
430 | ||
431 | TODO: remove the remainder of the setstate logic if it can't | |
432 | be used anywhere else (it isn't used anywhere now) | |
433 | Branch: perl | |
434 | ! cop.h op.c perly.c perly.y | |
435 | ____________________________________________________________________________ | |
436 | [ 4308] By: jhi on 1999/10/07 19:21:27 | |
437 | Log: Integrate with Sarathy. | |
438 | Branch: cfgperl | |
439 | !> lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL | |
440 | ____________________________________________________________________________ | |
441 | [ 4307] By: gsar on 1999/10/07 15:12:24 | |
442 | Log: update to podlators-0.08 from Russ Allbery | |
443 | Branch: perl | |
444 | ! lib/Pod/Man.pm lib/Pod/Text.pm pod/pod2man.PL | |
445 | ____________________________________________________________________________ | |
446 | [ 4306] By: jhi on 1999/10/06 17:20:34 | |
447 | Log: Integrate with Sarathy. | |
448 | Branch: cfgperl | |
449 | !> (integrate 45 files) | |
450 | ____________________________________________________________________________ | |
451 | [ 4305] By: gsar on 1999/10/06 16:55:45 | |
452 | Log: some versions of mingw32 have __int64, define iff it isn't | |
453 | Branch: perl | |
454 | ! win32/win32.h | |
455 | ____________________________________________________________________________ | |
456 | [ 4304] By: gsar on 1999/10/06 03:45:44 | |
457 | Log: fix typos in change#4288 | |
458 | Branch: perl | |
459 | ! Changes dump.c sv.c | |
460 | ____________________________________________________________________________ | |
07270b1a GS |
461 | [ 4303] By: gsar on 1999/10/06 03:22:46 |
462 | Log: integrate cfgperl contents into mainline | |
463 | Branch: perl | |
464 | +> eg/cgi/dna_small_gif.uu eg/cgi/wilogo_gif.uu | |
465 | - eg/cgi/dna.small.gif.uu eg/cgi/wilogo.gif.uu | |
466 | !> (integrate 31 files) | |
467 | ____________________________________________________________________________ | |
468 | [ 4302] By: gsar on 1999/10/06 02:36:53 | |
469 | Log: make die/warn and other diagnostics go to wherever STDERR happens | |
470 | to point at; change places that meant Perl_debug_log rather than | |
471 | PerlIO_stderr() | |
472 | Branch: perl | |
473 | ! cop.h doio.c embedvar.h ext/Devel/Peek/Peek.xs | |
474 | ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs | |
475 | ! ext/DynaLoader/dl_cygwin.xs ext/DynaLoader/dl_dld.xs | |
476 | ! ext/DynaLoader/dl_dlopen.xs ext/DynaLoader/dl_hpux.xs | |
477 | ! ext/DynaLoader/dl_mpeix.xs ext/DynaLoader/dl_next.xs | |
478 | ! ext/DynaLoader/dl_rhapsody.xs ext/DynaLoader/dl_vmesa.xs | |
479 | ! ext/DynaLoader/dl_vms.xs ext/DynaLoader/dlutils.c | |
480 | ! ext/Thread/Thread.xs ext/Thread/typemap intrpvar.h malloc.c | |
481 | ! mg.c objXSUB.h op.c perl.c perl.h perlio.c pp.c pp_ctl.c | |
482 | ! pp_hot.c regexec.c scope.c scope.h sv.c thread.h toke.c util.c | |
483 | ! win32/dl_win32.xs win32/win32.c win32/win32thread.c | |
484 | ____________________________________________________________________________ | |
485 | [ 4301] By: jhi on 1999/10/05 23:03:46 | |
486 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
487 | To: François Désarménien <desar@club-internet.fr> | |
488 | Cc: "perl5-porters@perl.org" <perl5-porters@perl.org> | |
489 | Subject: Re: Strange RE engine breakage in 5_61 | |
490 | Date: Mon, 4 Oct 1999 19:58:03 -0400 | |
491 | Message-ID: <19991004195803.A21760@monk.mps.ohio-state.edu> | |
492 | ||
493 | (had to apply pat.t part manually because there | |
494 | already were more tests than there was in _61) | |
495 | Branch: cfgperl | |
496 | ! regcomp.c regexec.c t/op/pat.t t/op/re_tests | |
497 | ____________________________________________________________________________ | |
498 | [ 4300] By: jhi on 1999/10/04 17:03:18 | |
499 | Log: From: Andy Dougherty <doughera@lafayette.edu> | |
500 | To: Jarkko Hietaniemi <jhi@iki.fi> | |
501 | cc: Perl Porters <perl5-porters@perl.org>, jhi@cc.hut.fi | |
502 | Subject: Re: [ID 19991001.005] [_61] [PATCH] tarball fine on win32, zip isn't | |
503 | Date: Mon, 4 Oct 1999 13:05:08 -0400 (EDT) | |
504 | Message-ID: <Pine.SOL.4.10.9910041302550.6502-100000@maxwell.phys.lafayette.edu> | |
505 | Branch: cfgperl | |
506 | + eg/cgi/dna_small_gif.uu eg/cgi/wilogo_gif.uu | |
507 | - eg/cgi/dna.small.gif.uu eg/cgi/wilogo.gif.uu | |
508 | ! MANIFEST ext/B/defsubs_h.PL | |
509 | ____________________________________________________________________________ | |
510 | [ 4299] By: jhi on 1999/10/04 07:15:16 | |
511 | Log: From: Michael G Schwern <schwern@pobox.com> | |
512 | To: perl5-porters@perl.org | |
513 | Subject: Re: [PATCH av.c, op.c, perldiag.pod] "array field" -> "pseudo-hash field" | |
514 | Date: Sun, 3 Oct 1999 17:34:17 -0400 | |
515 | Message-ID: <19991003173417.A4351@blackrider> | |
516 | Branch: cfgperl | |
517 | ! t/lib/fields.t t/pragma/constant.t | |
518 | ____________________________________________________________________________ | |
519 | [ 4298] By: gsar on 1999/10/04 04:57:53 | |
520 | Log: some compatibility macros were busted | |
521 | Branch: perl | |
522 | ! embed.h embed.pl toke.c | |
523 | ____________________________________________________________________________ | |
524 | [ 4297] By: jhi on 1999/10/03 17:50:59 | |
525 | Log: A better version of #4296. | |
526 | ||
527 | From: Michael G Schwern <schwern@pobox.com> | |
528 | To: perl5-porters@perl.org | |
529 | Subject: [PATCH av.c, op.c, perldiag.pod] "array field" -> "pseudo-hash field" | |
530 | Date: Sun, 3 Oct 1999 13:54:23 -0400 | |
531 | Message-ID: <19991003135423.A3050@blackrider> | |
532 | Branch: cfgperl | |
533 | ! av.c op.c pod/perldiag.pod | |
534 | ____________________________________________________________________________ | |
535 | [ 4296] By: jhi on 1999/10/03 17:21:01 | |
536 | Log: (Replaced by #4297.) | |
537 | ||
538 | From: Michael G Schwern <schwern@pobox.com> | |
539 | To: perl5-porters@perl.org | |
540 | Subject: [PATCH av.c, perldiag.pod] Added field name to "No such array field" | |
541 | Date: Sun, 3 Oct 1999 13:16:47 -0400 | |
542 | Message-ID: <19991003131647.A2816@blackrider> | |
543 | ||
544 | plus changed the error message to say "No such pseudo-hash field" | |
545 | as discussed in the above mail message. | |
546 | Branch: cfgperl | |
547 | ! av.c pod/perldiag.pod | |
548 | ____________________________________________________________________________ | |
549 | [ 4295] By: gsar on 1999/10/03 16:09:36 | |
550 | Log: avoid doing irrelevant things on 'make perl' | |
551 | Branch: perl | |
552 | ! Makefile.SH | |
553 | ____________________________________________________________________________ | |
554 | [ 4294] By: jhi on 1999/10/03 14:16:24 | |
555 | Log: Fix a typo in #4293 spotted by Graham Barr. | |
556 | Branch: cfgperl | |
557 | ! pod/perlref.pod | |
558 | ____________________________________________________________________________ | |
559 | [ 4293] By: jhi on 1999/10/03 11:31:22 | |
560 | Log: From: Michael G Schwern <schwern@blackrider.aocn.com> | |
561 | To: perl5-porters@perl.org | |
562 | Subject: Re: Should keys in pseudo-hashes -always- exist? [DOC PATCH] | |
563 | Date: Sun, 3 Oct 1999 02:34:01 -0400 | |
564 | Message-ID: <19991003023401.A1520@blackrider> | |
565 | Branch: cfgperl | |
566 | ! pod/perlfunc.pod pod/perlref.pod | |
567 | ____________________________________________________________________________ | |
568 | [ 4292] By: jhi on 1999/10/03 09:23:16 | |
569 | Log: From: Barrie Slaymaker <barries@slaysys.com> | |
570 | To: perl5-porters@perl.org | |
571 | Subject: [PATCH 5.005_61] Benchmark.pm bugfix, tweaks | |
572 | Date: Sun, 3 Oct 1999 00:09:51 -0400 | |
573 | Message-Id: <199910030409.AAA18228@jester.slaysys.com> | |
574 | Branch: cfgperl | |
575 | ! lib/Benchmark.pm | |
576 | ____________________________________________________________________________ | |
577 | [ 4291] By: jhi on 1999/10/02 23:43:53 | |
578 | Log: Be understanding about large file systems. | |
579 | Branch: cfgperl | |
580 | ! t/lib/syslfs.t t/op/lfs.t | |
581 | ____________________________________________________________________________ | |
582 | [ 4290] By: jhi on 1999/10/02 23:39:16 | |
583 | Log: Configure fixfest continues. | |
584 | Branch: cfgperl | |
585 | ! Configure config_h.SH | |
586 | Branch: metaconfig | |
587 | ! U/modified/d_longdbl.U U/modified/d_longlong.U | |
588 | ! U/threads/d_pthreadj.U U/typedefs/gidsign.U | |
589 | ! U/typedefs/gidsize.U U/typedefs/pidsign.U U/typedefs/pidsize.U | |
590 | ! U/typedefs/uidsign.U U/typedefs/uidsize.U | |
591 | Branch: metaconfig/U/perl | |
592 | ! i_inttypes.U io64.U | |
593 | ____________________________________________________________________________ | |
594 | [ 4289] By: jhi on 1999/10/02 23:12:54 | |
595 | Log: Regen Porting stuff. | |
596 | Branch: cfgperl | |
597 | ! Porting/Glossary Porting/config.sh Porting/config_H | |
598 | ____________________________________________________________________________ | |
599 | [ 4288] By: jhi on 1999/10/02 23:05:50 | |
600 | Log: Untangle the IV_IS_QUAD jungle by introduding | |
601 | macros to be used when doing formatted printing: | |
602 | IVdf, UVuf, UVxf, UVof. Also introduce Uid_t_SIGN. | |
603 | Branch: cfgperl | |
604 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
605 | ! config_h.SH doio.c dump.c op.c perl.h pp_hot.c pp_sys.c | |
606 | ! regcomp.c sv.c taint.c toke.c util.c | |
607 | ____________________________________________________________________________ | |
608 | [ 4287] By: jhi on 1999/10/02 22:54:18 | |
609 | Log: metaconfig maintenance. | |
610 | Branch: metaconfig | |
611 | ! U/ebcdic/ebcdic.U U/typedefs/gidsign.U U/typedefs/gidsize.U | |
612 | ! U/typedefs/pidsign.U U/typedefs/pidsize.U U/typedefs/uidsign.U | |
613 | ! U/typedefs/uidsize.U | |
614 | ____________________________________________________________________________ | |
615 | [ 4286] By: nick on 1999/10/02 11:11:44 | |
616 | Log: Incremental merge of mainline | |
617 | Branch: utfperl | |
618 | +> README.Y2K hints/svr5.sh lib/Pod/Man.pm | |
619 | +> lib/unicode/Unicode.html t/op/args.t t/pod/multiline_items.t | |
620 | +> t/pod/multiline_items.xr t/pod/pod2usage.t t/pod/pod2usage.xr | |
621 | +> t/pod/podselect.t t/pod/podselect.xr | |
622 | - lib/Pod/PlainText.pm | |
623 | !> (integrate 148 files) | |
624 | ____________________________________________________________________________ | |
625 | [ 4285] By: jhi on 1999/10/02 10:16:15 | |
626 | Log: Battle namespace pollution. | |
627 | Branch: cfgperl | |
628 | ! lib/Benchmark.pm | |
629 | ____________________________________________________________________________ | |
630 | [ 4284] By: jhi on 1999/10/02 10:11:20 | |
631 | Log: Regen Configure, all of xs_apiversion didn't take. | |
632 | Branch: cfgperl | |
633 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
634 | ! config_h.SH patchlevel.h | |
635 | ____________________________________________________________________________ | |
636 | [ 4283] By: jhi on 1999/10/02 09:48:17 | |
637 | Log: Integrate with Sarathy. | |
638 | Branch: cfgperl | |
639 | +> lib/Pod/Man.pm t/pod/multiline_items.t | |
640 | +> t/pod/multiline_items.xr t/pod/pod2usage.t t/pod/pod2usage.xr | |
641 | +> t/pod/podselect.t t/pod/podselect.xr | |
642 | - lib/Pod/PlainText.pm | |
643 | !> (integrate 50 files) | |
644 | ____________________________________________________________________________ | |
645 | [ 4282] By: gsar on 1999/10/02 06:39:14 | |
646 | Log: update pod2man, pod2text and related Pod:: modules with the | |
647 | ones in podlators-0.07 from Russ Allbery | |
648 | Branch: perl | |
649 | + lib/Pod/Man.pm | |
650 | ! lib/Pod/Text.pm lib/Pod/Text/Color.pm lib/Pod/Text/Termcap.pm | |
651 | ! pod/pod2man.PL pod/pod2text.PL | |
652 | ____________________________________________________________________________ | |
653 | [ 4281] By: gsar on 1999/10/02 06:14:44 | |
654 | Log: fix PodParser testsuite; Pod::Text subsumes Pod::PlainText | |
655 | Branch: perl | |
656 | - lib/Pod/PlainText.pm | |
657 | ! MANIFEST lib/Pod/Text.pm lib/Pod/Usage.pm pod/pod2usage.PL | |
658 | ! pod/podchecker.PL pod/podselect.PL t/pod/emptycmd.t | |
659 | ! t/pod/for.t t/pod/headings.t t/pod/include.t t/pod/included.t | |
660 | ! t/pod/lref.t t/pod/multiline_items.t t/pod/nested_items.t | |
661 | ! t/pod/nested_seqs.t t/pod/oneline_cmds.t t/pod/pod2usage.t | |
662 | ! t/pod/poderrs.t t/pod/poderrs.xr t/pod/podselect.t | |
663 | ! t/pod/special_seqs.t t/pod/testp2pt.pl t/pod/testpchk.pl | |
664 | ____________________________________________________________________________ | |
665 | [ 4280] By: gsar on 1999/10/02 04:39:38 | |
666 | Log: upgrade to PodParser-1.085 from Brad Appleton <bradapp@enteract.com> | |
667 | Branch: perl | |
668 | + t/pod/multiline_items.t t/pod/multiline_items.xr | |
669 | + t/pod/pod2usage.t t/pod/pod2usage.xr t/pod/podselect.t | |
670 | + t/pod/podselect.xr | |
671 | ! MANIFEST lib/Pod/Checker.pm lib/Pod/InputObjects.pm | |
672 | ! lib/Pod/Parser.pm lib/Pod/PlainText.pm lib/Pod/Select.pm | |
673 | ! lib/Pod/Usage.pm t/pod/for.xr t/pod/headings.xr | |
674 | ! t/pod/include.xr t/pod/included.xr t/pod/lref.xr | |
675 | ! t/pod/nested_items.xr t/pod/nested_seqs.xr | |
676 | ! t/pod/oneline_cmds.xr t/pod/poderrs.xr t/pod/special_seqs.xr | |
677 | ! t/pod/testp2pt.pl | |
678 | ____________________________________________________________________________ | |
679 | [ 4279] By: gsar on 1999/10/02 03:36:41 | |
680 | Log: make exists() work better on pseudo-hashes (reworked a patch suggested | |
681 | by Michael G Schwern <schwern@pobox.com>) | |
682 | Branch: perl | |
683 | ! av.c t/op/avhv.t | |
684 | ____________________________________________________________________________ | |
685 | [ 4278] By: gsar on 1999/10/02 02:36:55 | |
686 | Log: deprecate C<use attrs> | |
687 | Branch: perl | |
688 | ! ext/attrs/attrs.pm ext/attrs/attrs.xs t/lib/attrs.t | |
689 | ! t/lib/thread.t t/pragma/sub_lval.t | |
690 | ____________________________________________________________________________ | |
691 | [ 4277] By: gsar on 1999/10/02 01:43:25 | |
692 | Log: add notes about effect of loop control statements inside | |
693 | LABEL BLOCK continue BLOCK | |
694 | Branch: perl | |
695 | ! pod/perlfunc.pod | |
696 | ____________________________________________________________________________ | |
697 | [ 4276] By: gsar on 1999/10/02 01:23:02 | |
698 | Log: indent nested =items properly (suggested by Bill Fenner | |
699 | <fenner@research.att.com>) | |
700 | Branch: perl | |
701 | ! pod/pod2man.PL | |
702 | ____________________________________________________________________________ | |
703 | [ 4275] By: gsar on 1999/10/02 01:09:16 | |
704 | Log: updated ptags generator from Ilya Zakharevich | |
705 | Branch: perl | |
706 | ! emacs/ptags | |
707 | ____________________________________________________________________________ | |
708 | [ 4274] By: gsar on 1999/10/01 23:08:52 | |
709 | Log: update Changes | |
710 | Branch: perl | |
711 | ! Changes | |
712 | ____________________________________________________________________________ | |
bcdd1f73 GS |
713 | [ 4273] By: gsar on 1999/10/01 22:58:55 |
714 | Log: typo, whitespace adjustments | |
715 | Branch: perl | |
716 | ! utils/h2xs.PL | |
717 | ____________________________________________________________________________ | |
718 | [ 4272] By: gsar on 1999/10/01 22:46:06 | |
719 | Log: remove dup hunks | |
720 | Branch: perl | |
721 | ! configure.com vms/vms.c | |
722 | ____________________________________________________________________________ | |
723 | [ 4271] By: gsar on 1999/10/01 22:33:02 | |
724 | Log: integrate cfgperl contents into mainline; resolve h2xs.PL conflict | |
725 | by declaring new globals "our" (XXX this means h2xs generated code | |
726 | won't run on earlier versions; a switch to generate compatible | |
727 | source is needed) | |
728 | Branch: perl | |
729 | !> (integrate 35 files) | |
730 | ____________________________________________________________________________ | |
731 | [ 4270] By: jhi on 1999/10/01 12:05:56 | |
732 | Log: Integrate with Sarathy. | |
733 | Branch: cfgperl | |
734 | !> ext/B/B/C.pm lib/ExtUtils/typemap lib/ExtUtils/xsubpp | |
735 | !> pod/perldiag.pod util.c | |
736 | ____________________________________________________________________________ | |
737 | [ 4269] By: jhi on 1999/10/01 10:26:19 | |
738 | Log: From: Piotr Klaban <makler@oryl.man.torun.pl> | |
739 | To: perl5-porters@perl.org | |
740 | Subject: [ID 19991001.001] perlguts man page error | |
741 | Date: Fri, 1 Oct 1999 10:23:49 +0200 (MET DST) | |
742 | Message-Id: <199910010823.KAA05796@oryl.man.torun.pl> | |
743 | Branch: cfgperl | |
744 | ! pod/perlguts.pod | |
745 | ____________________________________________________________________________ | |
746 | [ 4268] By: jhi on 1999/10/01 07:32:33 | |
747 | Log: There *is* a month called October. | |
748 | Branch: cfgperl | |
749 | ! t/op/time.t | |
750 | ____________________________________________________________________________ | |
751 | [ 4267] By: jhi on 1999/10/01 06:58:10 | |
752 | Log: Temp file cleanliness. | |
753 | Branch: cfgperl | |
754 | ! t/lib/filecopy.t | |
755 | ____________________________________________________________________________ | |
756 | [ 4266] By: jhi on 1999/10/01 06:46:56 | |
757 | Log: From: Barrie Slaymaker <barries@slaysys.com> | |
758 | To: perl5-porters@perl.org | |
759 | Subject: [PATCH 5.005_61] Benchmark.pm: Export countit(), cmpthese() by default | |
760 | Date: Thu, 30 Sep 1999 22:16:26 -0400 | |
761 | Message-Id: <199910010216.WAA08309@jester.slaysys.com> | |
762 | Branch: cfgperl | |
763 | ! lib/Benchmark.pm | |
764 | ____________________________________________________________________________ | |
765 | [ 4265] By: jhi on 1999/09/30 20:25:35 | |
766 | Log: From: Barrie Slaymaker <barries@slaysys.com> | |
767 | To: perl5-porters@perl.org | |
768 | Subject: [PATCH 5.005_61] Benchmark tweaks, fixes, cmpthese() | |
769 | Date: Thu, 30 Sep 1999 15:44:00 -0400 | |
770 | Message-Id: <199909301944.PAA07166@jester.slaysys.com> | |
771 | (Replaces #4175.) | |
772 | Branch: cfgperl | |
773 | ! lib/Benchmark.pm | |
774 | ____________________________________________________________________________ | |
775 | [ 4264] By: gsar on 1999/09/30 17:59:26 | |
776 | Log: re-add missing "Out of memory!" entry | |
777 | Branch: perl | |
778 | ! pod/perldiag.pod | |
779 | ____________________________________________________________________________ | |
780 | [ 4263] By: jhi on 1999/09/30 17:05:43 | |
781 | Log: Regenerate Configure. | |
782 | Branch: cfgperl | |
783 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
784 | ! config_h.SH | |
785 | ____________________________________________________________________________ | |
786 | [ 4261] By: jhi on 1999/09/30 16:15:05 | |
787 | Log: From: Andy Dougherty <doughera@lafayette.edu> | |
788 | To: Perl Porters <perl5-porters@perl.org> | |
789 | Subject: [PATCH 5.005_61] rand() advisory for perldelta.pod | |
790 | Date: Thu, 30 Sep 1999 12:24:00 -0400 (EDT) | |
791 | Message-ID: <Pine.SOL.4.10.9909301218390.3343-100000@maxwell.phys.lafayette.edu> | |
792 | Branch: cfgperl | |
793 | ! pod/perldelta.pod | |
794 | ____________________________________________________________________________ | |
795 | [ 4260] By: jhi on 1999/09/30 15:48:56 | |
796 | Log: From: Andy Dougherty <doughera@lafayette.edu> | |
797 | To: Jarkko Hietaniemi <jhi@iki.fi>, Gurusamy Sarathy <gsar@activestate.com> | |
798 | Subject: Re: Possible skeletal structure for searching multiple versions | |
799 | Date: Thu, 30 Sep 1999 11:52:00 -0400 (EDT) | |
800 | Message-ID: <Pine.SOL.4.10.9909301149090.3343-100000@maxwell.phys.lafayette.edu> | |
801 | Branch: metaconfig | |
802 | ! U/mkglossary | |
803 | Branch: metaconfig/U/perl | |
804 | + xs_apiversion.U | |
805 | ! patchlevel.U | |
806 | ____________________________________________________________________________ | |
807 | [ 4259] By: jhi on 1999/09/30 15:07:16 | |
808 | Log: Further ?idsize.U fixing. | |
809 | Branch: metaconfig | |
810 | ! U/typedefs/gidsize.U U/typedefs/pidsize.U U/typedefs/uidsize.U | |
811 | ____________________________________________________________________________ | |
812 | [ 4258] By: jhi on 1999/09/30 15:00:14 | |
813 | Log: Fix the ?idsi{gn,ze} units, from Andy Dougherty. | |
814 | Branch: metaconfig | |
815 | ! U/typedefs/gidsign.U U/typedefs/gidsize.U U/typedefs/pidsign.U | |
816 | ! U/typedefs/pidsize.U U/typedefs/uidsign.U U/typedefs/uidsize.U | |
817 | ____________________________________________________________________________ | |
818 | [ 4257] By: jhi on 1999/09/30 09:48:33 | |
819 | Log: From: "Kurt D. Starsinic" <kstar@chapin.edu> | |
820 | To: Gurusamy Sarathy <gsar@ActiveState.com> | |
821 | Cc: tchrist@perl.com, Larry Wall <larry@wall.org>, | |
822 | The Perl Porters Mailing List <perl5-porters@perl.org> | |
823 | Subject: [PATCH] (Was: deprecating SIGDIE) | |
824 | Date: Wed, 29 Sep 1999 15:16:50 -0400 | |
825 | Message-ID: <19990929151650.E26675@O2.chapin.edu> | |
826 | Branch: cfgperl | |
827 | ! Porting/findvars embedvar.h intrpvar.h mg.c objXSUB.h perl.c | |
828 | ____________________________________________________________________________ | |
829 | [ 4256] By: jhi on 1999/09/30 09:45:22 | |
830 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
831 | To: Gurusamy Sarathy <gsar@activestate.com> | |
832 | Cc: Barrie Slaymaker <barries@slaysys.com>, perl5-porters@perl.org | |
833 | Subject: Re: _58, _61 Argument "" is not numeric in sprintf | |
834 | Date: Wed, 29 Sep 1999 18:58:23 -0400 | |
835 | Message-ID: <19990929185823.A22099@monk.mps.ohio-state.edu> | |
836 | Branch: cfgperl | |
837 | ! Makefile.SH opcode.pl | |
838 | ____________________________________________________________________________ | |
839 | [ 4255] By: gsar on 1999/09/30 09:03:48 | |
840 | Log: remove prehistoric XFree() gunk | |
841 | Branch: perl | |
842 | ! lib/ExtUtils/typemap lib/ExtUtils/xsubpp | |
843 | ____________________________________________________________________________ | |
844 | [ 4254] By: gsar on 1999/09/30 08:40:14 | |
845 | Log: From: Vishal Bhatia <vishal@gol.com> | |
846 | Date: Wed, 29 Sep 1999 23:27:28 +0900 (JST) | |
847 | Message-ID: <Pine.LNX.4.10.9909292326280.5599-100000@localhost.localdomain> | |
848 | Subject: [patch _61] Minor corrections in C.pm | |
849 | Branch: perl | |
850 | ! ext/B/B/C.pm | |
851 | ____________________________________________________________________________ | |
852 | [ 4253] By: gsar on 1999/09/30 08:36:27 | |
853 | Log: off-by-one in fbm_compile() (spotted by John Bley | |
854 | <jbley@cs.cmu.edu>); whitespace adjustments | |
855 | Branch: perl | |
856 | ! util.c | |
857 | ____________________________________________________________________________ | |
858 | [ 4251] By: jhi on 1999/09/30 08:09:13 | |
859 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
860 | To: perl5-porters@perl.org (Mailing list Perl5) | |
861 | Subject: [PATCH 5.00561+] Followup h2xs patch | |
862 | Date: Thu, 30 Sep 1999 04:15:52 -0400 (EDT) | |
863 | Message-Id: <199909300815.EAA25425@monk.mps.ohio-state.edu> | |
864 | Branch: cfgperl | |
865 | ! utils/h2xs.PL | |
866 | ____________________________________________________________________________ | |
867 | [ 4250] By: jhi on 1999/09/29 19:11:32 | |
868 | Log: Integrate with Sarathy. | |
869 | Branch: cfgperl | |
870 | !> djgpp/configure.bat embed.h embed.pl lib/Exporter/Heavy.pm | |
871 | !> lib/ExtUtils/MM_Unix.pm lib/Time/Local.pm proto.h | |
872 | !> t/pragma/locale/latin1 win32/Makefile win32/makefile.mk | |
873 | ____________________________________________________________________________ | |
874 | [ 4249] By: bailey on 1999/09/29 02:21:31 | |
875 | Log: resync with mainline | |
876 | Branch: vmsperl | |
877 | +> (branch 32 files) | |
878 | - ext/B/defsubs.h.PL lib/unicode/arabshp.txt | |
879 | - lib/unicode/blocks.txt lib/unicode/index2.txt | |
880 | - lib/unicode/jamo2.txt lib/unicode/names2.txt | |
881 | - lib/unicode/props2.txt lib/unicode/readme.txt | |
882 | - t/lib/bigfloatpm.t | |
883 | !> (integrate 240 files) | |
884 | ____________________________________________________________________________ | |
885 | [ 4248] By: jhi on 1999/09/28 18:14:39 | |
886 | Log: From: Andy Dougherty <doughera@lafayette.edu> | |
887 | To: Perl Porters <perl5-porters@perl.org> | |
888 | Subject: [PATCH 5.005_xx] Re: [Config 5.005_03] -DDEBUGGING | |
889 | Date: Tue, 28 Sep 1999 12:20:50 -0400 (EDT) | |
890 | Message-ID: <Pine.SOL.4.10.9909281019360.1890-100000@maxwell.phys.lafayette.edu> | |
891 | ||
892 | From: Andy Dougherty <doughera@lafayette.edu> | |
893 | To: Perl Porters <perl5-porters@perl.org> | |
894 | Subject: [ANOTHER PATCH 5.005_61] Re: [Config 5.005_03] -DDEBUGGING | |
895 | Date: Tue, 28 Sep 1999 13:39:49 -0400 (EDT) | |
896 | Message-ID: <Pine.SOL.4.10.9909281338180.2012-100000@maxwell.phys.lafayette.edu> | |
897 | Branch: cfgperl | |
898 | ! hints/README.hints hints/amigaos.sh hints/cygwin.sh | |
899 | ! hints/dynixptx.sh hints/epix.sh hints/esix4.sh hints/mint.sh | |
900 | ! hints/mpeix.sh hints/next_3.sh hints/next_3_0.sh | |
901 | ! hints/next_4.sh | |
902 | ____________________________________________________________________________ | |
903 | [ 4247] By: gsar on 1999/09/28 17:36:59 | |
904 | Log: revert change#4115 (breaks libwww's base/date.t); could be | |
905 | reworked to enable it conditional on $Time::Local::nocroak | |
906 | or some such | |
907 | Branch: perl | |
908 | ! lib/Time/Local.pm | |
909 | ____________________________________________________________________________ | |
910 | [ 4246] By: gsar on 1999/09/28 17:33:14 | |
911 | Log: tweak for win32 build | |
912 | Branch: perl | |
913 | ! win32/Makefile win32/makefile.mk | |
914 | ____________________________________________________________________________ | |
915 | [ 4245] By: gsar on 1999/09/28 17:31:34 | |
916 | Log: change#4236 fallout | |
917 | Branch: perl | |
918 | ! lib/ExtUtils/MM_Unix.pm | |
919 | ____________________________________________________________________________ | |
920 | [ 4244] By: gsar on 1999/09/28 17:29:31 | |
921 | Log: remove doubled new_xpv | |
922 | Branch: perl | |
923 | ! embed.h embed.pl proto.h | |
924 | ____________________________________________________________________________ | |
925 | [ 4243] By: jhi on 1999/09/27 19:13:20 | |
926 | Log: Artistic fine-tuning. | |
927 | Branch: cfgperl | |
928 | ! ext/B/defsubs_h.PL | |
929 | ____________________________________________________________________________ | |
930 | [ 4242] By: gsar on 1999/09/27 17:05:22 | |
931 | Log: avoid implicit split to @_ in change#4181; binary -> text file | |
932 | types in p4 | |
933 | Branch: perl | |
934 | ! djgpp/configure.bat lib/Exporter/Heavy.pm | |
935 | ! t/pragma/locale/latin1 | |
936 | ____________________________________________________________________________ | |
937 | [ 4241] By: jhi on 1999/09/27 07:48:19 | |
938 | Log: Integrate with Sarathy. | |
939 | Branch: cfgperl | |
940 | !> INSTALL embed.h embed.pl malloc.c pod/perldiag.pod pp.c | |
941 | !> pp_ctl.c pp_hot.c pp_sys.c win32/Makefile win32/makefile.mk | |
942 | ____________________________________________________________________________ | |
943 | [ 4240] By: jhi on 1999/09/27 07:47:11 | |
944 | Log: Finalize change #4232. | |
945 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
946 | To: Jarkko Hietaniemi <jhi@iki.fi> | |
947 | Cc: gsar@activestate.com, Mailing list Perl5 <perl5-porters@perl.org> | |
948 | Subject: Re: xsubpp change breaks B, DB_File, POSIX builds | |
949 | Date: Sun, 26 Sep 1999 16:52:31 -0400 | |
950 | Message-ID: <19990926165230.A26933@monk.mps.ohio-state.edu> | |
951 | Branch: cfgperl | |
952 | ! lib/ExtUtils/xsubpp | |
953 | ____________________________________________________________________________ | |
954 | [ 4239] By: gsar on 1999/09/27 02:48:42 | |
955 | Log: add notes in INSTALL about Configure -Accflags=-DFOO | |
956 | Branch: perl | |
957 | ! INSTALL | |
958 | ____________________________________________________________________________ | |
959 | [ 4238] By: gsar on 1999/09/27 02:03:48 | |
960 | Log: PERL_POLLUTE isn't required for bincompat, so don't enable | |
961 | it automatically | |
962 | Branch: perl | |
963 | ! embed.h embed.pl | |
964 | ____________________________________________________________________________ | |
965 | [ 4237] By: gsar on 1999/09/27 01:52:47 | |
966 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
967 | Date: Fri, 24 Sep 1999 23:25:36 -0400 | |
968 | Message-ID: <19990924232536.A16257@monk.mps.ohio-state.edu> | |
969 | Subject: [PATCH 5.005_61] Malloc fixes and docs | |
970 | Branch: perl | |
971 | ! malloc.c pod/perldiag.pod | |
972 | ____________________________________________________________________________ | |
973 | [ 4236] By: gsar on 1999/09/27 01:31:32 | |
974 | Log: avoid .exe in $Config{cc} (spotted by Vadim Konovalov | |
975 | <vkonovalov@lucent.com>) | |
976 | Branch: perl | |
977 | ! win32/Makefile win32/makefile.mk | |
978 | ____________________________________________________________________________ | |
979 | [ 4235] By: gsar on 1999/09/26 17:02:03 | |
980 | Log: fix buggy popping of subroutine contexts in the lvalue | |
981 | subroutines implementation (change#4081); correct the | |
982 | plethora of cases where DIE() was more appropriate than | |
983 | croak() | |
984 | Branch: perl | |
985 | ! pp.c pp_ctl.c pp_hot.c pp_sys.c | |
986 | ____________________________________________________________________________ | |
987 | [ 4234] By: jhi on 1999/09/26 12:06:28 | |
988 | Log: Fix #endif. | |
989 | Branch: cfgperl | |
990 | ! XSUB.h | |
991 | ____________________________________________________________________________ | |
992 | [ 4233] By: jhi on 1999/09/26 11:59:18 | |
993 | Log: Integrate with Sarathy. h2xs.PL had to be manually resolved, | |
994 | I kept my (Ilya's) version. | |
995 | Branch: cfgperl | |
996 | !> gv.c gv.h intrpvar.h keywords.h keywords.pl lib/Shell.pm op.c | |
997 | !> pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod | |
998 | !> pod/perlfaq7.pod pod/perlfunc.pod pod/perlmod.pod | |
999 | !> pod/perlmodlib.pod pod/perlsub.pod pod/perltoot.pod | |
1000 | !> pod/perlxstut.pod sv.h t/pragma/strict-vars toke.c | |
1001 | !> utils/h2xs.PL win32/Makefile win32/makefile.mk | |
1002 | ____________________________________________________________________________ | |
1003 | [ 4232] By: jhi on 1999/09/26 09:53:43 | |
1004 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1005 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
1006 | Subject: [PATCH 5.005_61] teach xsubpp function pointers | |
1007 | Date: Sun, 26 Sep 1999 01:36:09 -0400 | |
1008 | Message-ID: <19990926013609.A21148@monk.mps.ohio-state.edu> | |
1009 | ||
1010 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1011 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
1012 | Subject: [PATCH 5.005_61] Make h2xs -x almost bullet-proof | |
1013 | Date: Sun, 26 Sep 1999 03:00:50 -0400 | |
1014 | Message-ID: <19990926030050.A21498@monk.mps.ohio-state.edu> | |
1015 | Branch: cfgperl | |
1016 | ! lib/ExtUtils/xsubpp utils/h2xs.PL | |
1017 | ____________________________________________________________________________ | |
1018 | [ 4231] By: jhi on 1999/09/26 09:48:49 | |
1019 | Log: From: "Konovalov, Vadim" <vkonovalov@lucent.com> | |
1020 | To: perl5-porters@perl.org | |
1021 | Subject: misprint in perlguts | |
1022 | Date: Sun, 26 Sep 1999 12:48:36 +0400 | |
1023 | Message-ID: <402099F49BEED211999700805FC7359F20D7A5@ru0028exch01.spb.lucent.com> | |
1024 | Branch: cfgperl | |
1025 | ! pod/perlguts.pod | |
1026 | ____________________________________________________________________________ | |
1027 | [ 4230] By: gsar on 1999/09/26 00:50:08 | |
1028 | Log: add $installarchlib/CORE to default linker search path on windows | |
1029 | Branch: perl | |
1030 | ! win32/Makefile win32/makefile.mk | |
1031 | ____________________________________________________________________________ | |
1032 | [ 4229] By: gsar on 1999/09/25 20:05:03 | |
1033 | Log: support C<use Shell> on Windows (reworked a patch suggested | |
1034 | by Jenda Krynicky <Jenda@McCann.cz>) | |
1035 | Branch: perl | |
1036 | ! lib/Shell.pm | |
1037 | ____________________________________________________________________________ | |
1038 | [ 4228] By: gsar on 1999/09/25 07:03:34 | |
1039 | Log: integrate cfgperl contents into mainline | |
1040 | Branch: perl | |
1041 | +> hints/svr5.sh | |
1042 | !> Configure MANIFEST Makefile.SH config_h.SH hints/sco.sh | |
1043 | !> lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode | |
1044 | !> lib/unicode/mktables.PL pod/perldelta.pod pod/perlfaq9.pod | |
1045 | !> regcomp.c regexec.c t/lib/syslfs.t t/op/lfs.t | |
1046 | ____________________________________________________________________________ | |
1047 | [ 4227] By: gsar on 1999/09/25 06:44:47 | |
1048 | Log: From: Larry Wall <larry@wall.org> | |
1049 | Date: Fri, 24 Sep 1999 21:59:37 PDT | |
1050 | Message-Id: <199909250459.VAA27506@kiev.wall.org> | |
1051 | Subject: Re: [PATCH 5.005_61] "our" declarations | |
1052 | Branch: perl | |
1053 | ! gv.c gv.h intrpvar.h keywords.h keywords.pl op.c | |
1054 | ! pod/perldiag.pod pod/perlembed.pod pod/perlfaq3.pod | |
1055 | ! pod/perlfaq7.pod pod/perlfunc.pod pod/perlmod.pod | |
1056 | ! pod/perlmodlib.pod pod/perlsub.pod pod/perltoot.pod | |
1057 | ! pod/perlxstut.pod sv.h t/pragma/strict-vars toke.c | |
1058 | ! utils/h2xs.PL | |
1059 | ____________________________________________________________________________ | |
1060 | [ 4226] By: jhi on 1999/09/24 23:10:52 | |
1061 | Log: Integrate with Sarathy. | |
1062 | Branch: cfgperl | |
1063 | !> XSUB.h ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs | |
1064 | !> ext/POSIX/hints/linux.pl pod/perldiag.pod pod/perlfunc.pod | |
1065 | !> pp.c t/lib/posix.t t/op/pack.t toke.c utils/perlcc.PL | |
1066 | ____________________________________________________________________________ | |
1067 | [ 4225] By: gsar on 1999/09/24 18:19:54 | |
1068 | Log: avoid infinite recursive exec()s of perl.exe when shebang | |
1069 | contains "Perl" rather than "perl" on DOSISH platforms | |
1070 | Branch: perl | |
1071 | ! toke.c | |
1072 | ____________________________________________________________________________ | |
1073 | [ 4224] By: gsar on 1999/09/24 16:09:23 | |
1074 | Log: support cygwin and other platforms that link to import libraries | |
1075 | rather than directly with shared libraries (from a suggestion | |
1076 | by Lucian Cionca <Lucian.Cionca@algoritma.ro>) | |
1077 | Branch: perl | |
1078 | ! utils/perlcc.PL | |
1079 | ____________________________________________________________________________ | |
1080 | [ 4223] By: gsar on 1999/09/24 05:05:06 | |
1081 | Log: normalize time for strftime() (without the isdst effects of | |
1082 | mktime()) using a custom mini_mktime() | |
1083 | From: spider-perl@Orb.Nashua.NH.US | |
1084 | Date: Thu, 23 Sep 1999 17:54:53 -0400 | |
1085 | Message-Id: <199909232154.RAA25151@leggy.zk3.dec.com> | |
1086 | Subject: Re: [ID 19990913.003] Possible bug using POSIX::strftime Digital UNIX Perl 5.005_03 | |
1087 | Branch: perl | |
1088 | ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs | |
1089 | ! ext/POSIX/hints/linux.pl t/lib/posix.t | |
1090 | ____________________________________________________________________________ | |
1091 | [ 4222] By: gsar on 1999/09/23 06:44:42 | |
1092 | Log: change "#" to a comment starter in pack templates; "/" now | |
1093 | used for specifying counted types | |
1094 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1095 | Date: Wed, 22 Sep 1999 19:41:30 -0400 | |
1096 | Message-ID: <19990922194130.A864@monk.mps.ohio-state.edu> | |
1097 | Subject: [PATCH 5.005_61] Enable comments in pack()/unpack() templates | |
1098 | Branch: perl | |
1099 | ! pod/perldiag.pod pod/perlfunc.pod pp.c t/op/pack.t | |
1100 | ____________________________________________________________________________ | |
1101 | [ 4221] By: gsar on 1999/09/23 06:26:54 | |
1102 | Log: From: Vishal Bhatia <vishal@gol.com> | |
1103 | Date: Thu, 23 Sep 1999 12:45:19 +0900 (JST) | |
1104 | Message-ID: <Pine.LNX.4.10.9909231218360.3428-100000@localhost.localdomain> | |
1105 | Subject: [patch _61] perlcc changes | |
1106 | Branch: perl | |
1107 | ! utils/perlcc.PL | |
1108 | ____________________________________________________________________________ | |
1109 | [ 4220] By: gsar on 1999/09/23 01:12:24 | |
1110 | Log: add include guard | |
1111 | Branch: perl | |
1112 | ! XSUB.h | |
1113 | ____________________________________________________________________________ | |
1114 | [ 4219] By: jhi on 1999/09/22 20:38:15 | |
1115 | Log: Cleanup cleanup. | |
1116 | Branch: cfgperl | |
1117 | ! Makefile.SH t/lib/syslfs.t t/op/lfs.t | |
1118 | ____________________________________________________________________________ | |
1119 | [ 4218] By: jhi on 1999/09/22 19:26:58 | |
1120 | Log: Tweak the equivalence tables once again. | |
1121 | Branch: cfgperl | |
1122 | ! lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode | |
1123 | ! lib/unicode/mktables.PL | |
1124 | ____________________________________________________________________________ | |
1125 | [ 4215] By: jhi on 1999/09/22 06:47:03 | |
1126 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1127 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
1128 | Subject: [PATCH 5.005_61] regfree could segfault with -Mre=debug | |
1129 | Date: Tue, 21 Sep 1999 19:50:00 -0400 | |
1130 | Message-ID: <19990921195000.A23938@monk.mps.ohio-state.edu> | |
1131 | ||
1132 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1133 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
1134 | Subject: [PATCH 5.005_61] More verbose -Mre=debug | |
1135 | Date: Tue, 21 Sep 1999 22:29:55 -0400 | |
1136 | Message-ID: <19990921222955.A25094@monk.mps.ohio-state.edu> | |
1137 | Branch: cfgperl | |
1138 | ! regcomp.c regexec.c | |
1139 | ____________________________________________________________________________ | |
1140 | [ 4214] By: jhi on 1999/09/21 21:08:43 | |
1141 | Log: From: 0000-Admin (0000) <root@devsys0.zenez.com> | |
1142 | Reply-To: gerberb@zenez.com | |
1143 | To: perl5-porters@perl.org | |
1144 | Subject: [ID 19990921.004] Changes for SCO OpenServer and UnixWare 7 | |
1145 | Date: Tue, 21 Sep 1999 11:07:46 -0600 (MDT) | |
1146 | Message-Id: <199909211707.LAA23611@devsys0.zenez.com> | |
1147 | ||
1148 | (Snipped away the last lines of svr5.sh a la change #3725) | |
1149 | Branch: cfgperl | |
1150 | + hints/svr5.sh | |
1151 | ! Configure MANIFEST config_h.SH hints/sco.sh | |
1152 | Branch: metaconfig | |
1153 | ! U/modified/Cppsym.U U/modified/Oldconfig.U | |
1154 | ____________________________________________________________________________ | |
1155 | [ 4213] By: jhi on 1999/09/21 20:48:01 | |
1156 | Log: From: Kragen Sitaker <kragen@dnaco.net> | |
1157 | To: perl5-porters@perl.org | |
1158 | Subject: [ID 19990921.013] accidental list context in perlfaq9 | |
1159 | Date: Tue, 21 Sep 1999 16:27:53 -0400 (EDT) | |
1160 | Reply-To: kragen@pobox.com | |
1161 | Message-Id: <199909212027.QAA03450@kirk.dnaco.net> | |
1162 | Branch: cfgperl | |
1163 | ! pod/perlfaq9.pod | |
1164 | ____________________________________________________________________________ | |
1165 | [ 4212] By: jhi on 1999/09/20 19:55:42 | |
1166 | Log: Integrate with Sarathy. | |
1167 | Branch: cfgperl | |
1168 | +> README.Y2K | |
1169 | !> Changes MANIFEST | |
1170 | ____________________________________________________________________________ | |
1171 | [ 4211] By: jhi on 1999/09/20 19:44:44 | |
1172 | Log: Rename -Duselfs to -Duselargefiles. We don't need no stnkngbbrvtns. | |
1173 | Branch: cfgperl | |
1174 | ! Configure config_h.SH pod/perldelta.pod | |
1175 | Branch: metaconfig/U/perl | |
1176 | ! use64bits.U uselfs.U uselongdbl.U | |
1177 | ____________________________________________________________________________ | |
1178 | [ 4210] By: jhi on 1999/09/20 19:38:26 | |
1179 | Log: Configure -A change: -Afoo=bar is equal to -Aappend:foo=" bar". | |
1180 | Branch: cfgperl | |
1181 | ! Configure config_h.SH | |
1182 | Branch: metaconfig | |
1183 | ! U/modified/Options.U | |
1184 | ____________________________________________________________________________ | |
1185 | [ 4209] By: gsar on 1999/09/20 19:35:39 | |
1186 | Log: integrate cfgperl changes into mainline | |
1187 | Branch: perl | |
1188 | +> lib/unicode/Unicode.html | |
1189 | ! Changes | |
1190 | !> Configure Porting/Glossary Porting/config.sh Porting/config_H | |
1191 | !> config_h.SH doio.c perl.h pod/perldelta.pod pod/perlfunc.pod | |
1192 | ____________________________________________________________________________ | |
4c968f61 GS |
1193 | [ 4208] By: gsar on 1999/09/20 18:28:44 |
1194 | Log: add README.Y2K (from Dominic Dunlop <domo@vo.lu>) | |
1195 | Branch: perl | |
1196 | + README.Y2K | |
1197 | ! MANIFEST | |
1198 | ____________________________________________________________________________ | |
1199 | [ 4207] By: jhi on 1999/09/20 11:06:13 | |
1200 | Log: Document -Duselfs, -Duselongdouble, and -Dusemorebits. | |
1201 | Branch: cfgperl | |
1202 | ! pod/perldelta.pod | |
1203 | ____________________________________________________________________________ | |
1204 | [ 4206] By: jhi on 1999/09/20 09:53:15 | |
1205 | Log: Do not test for gccish things in non-gccish platforms. | |
1206 | Branch: cfgperl | |
1207 | ! Configure config_h.SH | |
1208 | Branch: metaconfig | |
1209 | ! U/compline/ccflags.U | |
1210 | ____________________________________________________________________________ | |
1211 | [ 4205] By: jhi on 1999/09/20 09:41:22 | |
1212 | Log: Prompt for uselfs. | |
1213 | Branch: cfgperl | |
1214 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
1215 | ! config_h.SH | |
1216 | Branch: metaconfig | |
1217 | ! U/mksample | |
1218 | Branch: metaconfig/U/perl | |
1219 | ! use64bits.U uselfs.U | |
1220 | ____________________________________________________________________________ | |
1221 | [ 4204] By: jhi on 1999/09/20 09:09:29 | |
1222 | Log: Add usemorebits and uselfs. | |
1223 | Branch: cfgperl | |
1224 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
1225 | ! config_h.SH doio.c perl.h | |
1226 | Branch: metaconfig/U/perl | |
1227 | + uselfs.U usemorebits.U | |
1228 | ! use64bits.U uselongdbl.U | |
1229 | ____________________________________________________________________________ | |
1230 | [ 4203] By: jhi on 1999/09/20 07:48:48 | |
1231 | Log: Dethinko. | |
1232 | Branch: cfgperl | |
1233 | ! pod/perlfunc.pod | |
1234 | ____________________________________________________________________________ | |
1235 | [ 4202] By: jhi on 1999/09/20 07:33:32 | |
1236 | Log: Fix a bug in the description of endianness. Reported in | |
1237 | From: "Konovalov, Vadim" <vkonovalov@lucent.com> | |
1238 | To: perl5-porters@perl.org | |
1239 | Subject: BUG: perldoc -f pack | |
1240 | Date: Mon, 20 Sep 1999 09:43:49 +0400 | |
1241 | Message-ID: <402099F49BEED211999700805FC7359F20D3F5@ru0028exch01.spb.lucent.com> | |
1242 | Branch: cfgperl | |
1243 | ! pod/perlfunc.pod | |
1244 | ____________________________________________________________________________ | |
1245 | [ 4201] By: jhi on 1999/09/20 07:01:26 | |
1246 | Log: Integrate with Sarathy. | |
1247 | Branch: cfgperl | |
1248 | +> t/op/args.t | |
1249 | !> (integrate 31 files) | |
1250 | ____________________________________________________________________________ | |
1251 | [ 4200] By: gsar on 1999/09/20 03:45:06 | |
1252 | Log: From: Russ Allbery <rra@stanford.edu> | |
1253 | Date: 19 Aug 1999 04:35:44 -0700 | |
1254 | Message-Id: <yl7lms9f5b.fsf@windlord.stanford.edu> | |
1255 | Subject: [ID 19990819.002] File::Find error when pruning top-level directories | |
1256 | Branch: perl | |
1257 | ! lib/File/Find.pm | |
1258 | ____________________________________________________________________________ | |
1259 | [ 4199] By: gsar on 1999/09/20 03:27:49 | |
1260 | Log: suppress warning (from John Tobey <jtobey@epsilondev.com>) | |
1261 | Branch: perl | |
1262 | ! ext/B/B/Terse.pm | |
1263 | ____________________________________________________________________________ | |
1264 | [ 4198] By: gsar on 1999/09/20 03:25:25 | |
1265 | Log: add arenas for managing allocations of remaining xpv*v structures | |
1266 | From: Vishal Bhatia <vishal@gol.com> | |
1267 | Date: Wed, 25 Aug 1999 00:31:33 +0900 (JST) | |
1268 | Message-ID: <Pine.LNX.4.10.9908250031000.11727-100000@localhost.localdomain> | |
1269 | Subject: [PATCH 5.005_60] removing extra ref count (compiler) | |
1270 | Branch: perl | |
1271 | ! embed.h embed.pl embedvar.h ext/B/B/C.pm intrpvar.h objXSUB.h | |
1272 | ! proto.h sv.c | |
1273 | ____________________________________________________________________________ | |
1274 | [ 4197] By: gsar on 1999/09/20 03:06:10 | |
1275 | Log: queue errors due to strictures rather than printing them as | |
1276 | warnings; symbols that violate strictures do *not* end up in | |
1277 | the symbol table anyway, making multiple evals of the same piece | |
1278 | of code produce the same errors; errors indicate all locations | |
1279 | of a global symbol rather than just the first one; these | |
1280 | changes make compile-time failures within evals reliably | |
1281 | visible via the return value or contents of $@, and trappable | |
1282 | using __DIE__ hooks | |
1283 | Branch: perl | |
1284 | ! embed.h embed.pl embedvar.h ext/DynaLoader/dlutils.c | |
1285 | ! ext/Thread/Thread.xs global.sym gv.c objXSUB.h op.c perl.c | |
1286 | ! perlapi.c pp_ctl.c proto.h regcomp.c t/pragma/strict-refs | |
1287 | ! t/pragma/strict-vars thrdvar.h toke.c util.c | |
1288 | ____________________________________________________________________________ | |
1289 | [ 4196] By: gsar on 1999/09/19 22:14:29 | |
1290 | Log: control change#1914 via hints (causes problems on some platforms) | |
1291 | Branch: perl | |
1292 | ! ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs | |
1293 | ! ext/POSIX/hints/linux.pl | |
1294 | ____________________________________________________________________________ | |
1295 | [ 4195] By: gsar on 1999/09/19 21:30:18 | |
1296 | Log: avoid clearing @_ at all for faster subroutine calls; fix bugs | |
1297 | in passing around references to @_, eg C<sub foo { \@_ }>; add | |
1298 | tests for the same | |
1299 | Branch: perl | |
1300 | + t/op/args.t | |
1301 | ! MANIFEST cop.h pp.c pp_ctl.c pp_hot.c | |
1302 | ____________________________________________________________________________ | |
1303 | [ 4194] By: jhi on 1999/09/18 18:57:45 | |
1304 | Log: Integrate with Sarathy. | |
1305 | Branch: cfgperl | |
1306 | !> opcode.h opcode.pl | |
1307 | ____________________________________________________________________________ | |
1308 | [ 4193] By: nick on 1999/09/18 15:24:56 | |
1309 | Log: Re-integrate mainline | |
1310 | Basic SvUTF8 stuff in headers, no functional changes yet. | |
1311 | Branch: utfperl | |
1312 | + lib/byte.pm lib/byte_heavy.pl | |
1313 | +> ext/B/defsubs_h.PL ext/DB_File/version.c jpl/JNI/Closer.java | |
1314 | +> jpl/JNI/JNIConfig jpl/JNI/JNIConfig.Win32 | |
1315 | +> jpl/JNI/JNIConfig.kaffe jpl/JNI/JNIConfig.noembed | |
1316 | +> jpl/JNI/JNIConfig.standard jpl/JNI/typemap.gcc | |
1317 | +> jpl/JNI/typemap.win32 jpl/SETVARS.PL lib/unicode/ArabShap.txt | |
1318 | +> lib/unicode/Blocks.txt lib/unicode/CompExcl.txt | |
1319 | +> lib/unicode/EAWidth.txt lib/unicode/Index.txt | |
1320 | +> lib/unicode/Jamo-2.txt lib/unicode/LineBrk.txt | |
1321 | +> lib/unicode/Names.txt lib/unicode/Props.txt | |
1322 | +> lib/unicode/ReadMe.txt lib/unicode/SpecCase.txt | |
1323 | +> t/lib/bigfltpm.t | |
1324 | - ext/B/defsubs.h.PL lib/unicode/arabshp.txt | |
1325 | - lib/unicode/blocks.txt lib/unicode/index2.txt | |
1326 | - lib/unicode/jamo2.txt lib/unicode/names2.txt | |
1327 | - lib/unicode/props2.txt lib/unicode/readme.txt | |
1328 | - t/lib/bigfloatpm.t | |
1329 | ! doop.c embed.h embed.pl gv.c mg.c objXSUB.h op.c op.h perl.h | |
1330 | ! perlapi.c pp.c pp_ctl.c pp_hot.c proto.h regcomp.c regcomp.h | |
1331 | ! regexec.c regexp.h regnodes.h sv.c sv.h toke.c utf8.c utf8.h | |
1332 | ! warnings.h | |
1333 | !> (integrate 142 files) | |
1334 | ____________________________________________________________________________ | |
1335 | [ 4192] By: gsar on 1999/09/18 15:11:47 | |
1336 | Log: more op description tweaks | |
1337 | Branch: perl | |
1338 | ! opcode.h opcode.pl | |
1339 | ____________________________________________________________________________ | |
1340 | [ 4191] By: jhi on 1999/09/18 07:47:16 | |
1341 | Log: Integrate with Sarathy. | |
1342 | Branch: cfgperl | |
1343 | !> Changes opcode.h opcode.pl t/io/open.t t/op/misc.t | |
1344 | !> t/pragma/warn/op | |
1345 | ____________________________________________________________________________ | |
1346 | [ 4190] By: jhi on 1999/09/18 07:35:45 | |
1347 | Log: Add description of the Unicode database files. | |
1348 | Branch: cfgperl | |
1349 | + lib/unicode/Unicode.html | |
1350 | ____________________________________________________________________________ | |
1351 | [ 4189] By: gsar on 1999/09/18 03:14:58 | |
1352 | Log: tweak some op names in change#4177 (will any of this break code that | |
1353 | gropes $@ ?) | |
1354 | Branch: perl | |
1355 | ! Changes opcode.h opcode.pl t/io/open.t t/op/misc.t | |
1356 | ! t/pragma/warn/op | |
1357 | ____________________________________________________________________________ | |
f1612b5c GS |
1358 | [ 4188] By: jhi on 1999/09/17 21:30:08 |
1359 | Log: Pick up the typo fix. | |
1360 | Branch: cfgperl | |
1361 | !> t/io/open.t | |
1362 | ____________________________________________________________________________ | |
1363 | [ 4187] By: gsar on 1999/09/17 21:13:55 | |
1364 | Log: fix typo | |
1365 | Branch: perl | |
1366 | ! t/io/open.t | |
1367 | ____________________________________________________________________________ | |
1368 | [ 4186] By: gsar on 1999/09/17 20:57:29 | |
1369 | Log: integrate cfgperl change | |
1370 | Branch: perl | |
1371 | !> vms/subconfigure.com | |
1372 | ____________________________________________________________________________ | |
1373 | [ 4185] By: jhi on 1999/09/17 20:46:41 | |
1374 | Log: Re-apply applicable parts of #3993, #3994, and #3995. | |
1375 | Branch: cfgperl | |
1376 | ! vms/subconfigure.com | |
1377 | ____________________________________________________________________________ | |
1378 | [ 4184] By: gsar on 1999/09/17 20:26:02 | |
1379 | Log: integrate cfgperl contents into mainline | |
1380 | Branch: perl | |
1381 | +> lib/unicode/ArabShap.txt lib/unicode/Blocks.txt | |
1382 | +> lib/unicode/CompExcl.txt lib/unicode/EAWidth.txt | |
1383 | +> lib/unicode/Index.txt lib/unicode/Jamo-2.txt | |
1384 | +> lib/unicode/LineBrk.txt lib/unicode/Names.txt | |
1385 | +> lib/unicode/Props.txt lib/unicode/ReadMe.txt | |
1386 | +> lib/unicode/SpecCase.txt | |
1387 | - lib/unicode/arabshp.txt lib/unicode/blocks.txt | |
1388 | - lib/unicode/index2.txt lib/unicode/jamo2.txt | |
1389 | - lib/unicode/names2.txt lib/unicode/props2.txt | |
1390 | - lib/unicode/readme.txt | |
1391 | !> (integrate 73 files) | |
1392 | ____________________________________________________________________________ | |
1393 | [ 4183] By: jhi on 1999/09/17 20:25:51 | |
1394 | Log: Integrate with Sarathy. | |
1395 | Branch: cfgperl | |
1396 | !> configure.com ext/ByteLoader/byterun.h | |
1397 | !> ext/DynaLoader/DynaLoader_pm.PL lib/ExtUtils/MM_VMS.pm | |
1398 | !> lib/File/Spec/VMS.pm pod/perlhist.pod t/io/open.t | |
1399 | !> vms/descrip_mms.template vms/gen_shrfls.pl vms/perly_c.vms | |
1400 | !> vms/perly_h.vms vms/subconfigure.com vms/vms.c vms/vmsish.h | |
1401 | ____________________________________________________________________________ | |
1402 | [ 4182] By: gsar on 1999/09/17 20:16:28 | |
1403 | Log: integrate vmsperl contents into mainline (where VMS files conflicted, | |
1404 | vmsperl contents have prevailed) | |
1405 | Branch: perl | |
1406 | !> configure.com ext/ByteLoader/byterun.h | |
1407 | !> ext/DynaLoader/DynaLoader_pm.PL lib/ExtUtils/MM_VMS.pm | |
1408 | !> lib/File/Spec/VMS.pm t/io/open.t vms/descrip_mms.template | |
1409 | !> vms/gen_shrfls.pl vms/perly_c.vms vms/perly_h.vms | |
1410 | !> vms/subconfigure.com vms/vms.c vms/vmsish.h | |
1411 | ____________________________________________________________________________ | |
1412 | [ 4181] By: jhi on 1999/09/17 20:12:37 | |
1413 | Log: From: Michael G Schwern <schwern@pobox.com> | |
1414 | To: perl5-porters@perl.org | |
1415 | Subject: [PATCH 5.005_60 lib/Exporter/Heavy.pm] export_to_level() | |
1416 | Date: Thu, 19 Aug 1999 21:30:01 -0400 | |
1417 | Message-ID: <19990819213001.A22512@athens.aocn.com> | |
1418 | Branch: cfgperl | |
1419 | ! lib/Exporter/Heavy.pm | |
1420 | ____________________________________________________________________________ | |
1421 | [ 4180] By: gsar on 1999/09/17 20:11:00 | |
1422 | Log: perlhist additions | |
1423 | Branch: perl | |
1424 | ! pod/perlhist.pod | |
1425 | ____________________________________________________________________________ | |
1426 | [ 4179] By: jhi on 1999/09/17 20:08:00 | |
1427 | Log: The change #4176 should've undone only the test, not the code patch. | |
1428 | Branch: cfgperl | |
1429 | ! doio.c | |
1430 | ____________________________________________________________________________ | |
1431 | [ 4178] By: jhi on 1999/09/17 20:06:08 | |
1432 | Log: From: Ian Phillipps <ian@dial.pipex.com> | |
1433 | To: Hans GINZEL <hgin2088@mail.kolej.mff.cuni.cz>, perl5-porters@perl.org | |
1434 | Subject: [PATCH 5.005_59] Re: [ID 19990820.007] Small typo in perlsyn.pod | |
1435 | Date: Sat, 21 Aug 1999 12:36:12 +0100 | |
1436 | Message-ID: <19990821123612.A9955@homer.diplex.co.uk> | |
1437 | Branch: cfgperl | |
1438 | ! pod/perlsyn.pod | |
1439 | ____________________________________________________________________________ | |
1440 | [ 4177] By: jhi on 1999/09/17 20:00:19 | |
1441 | Log: More descriptive names for operators. | |
1442 | ||
1443 | From: Michael G Schwern <schwern@pobox.com> | |
1444 | To: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1445 | Cc: perl5-porters@perl.org | |
1446 | Subject: Re: [ID 19990817.009] [BUG 5.005_60 & 5.005_03] == reported as eq in | |
1447 | Date: Tue, 17 Aug 1999 18:35:45 -0400 | |
1448 | Message-ID: <19990817183545.A23073@toldyouso.com> | |
1449 | ||
1450 | From: Michael G Schwern <schwern@pobox.com> | |
1451 | To: perl5-porters@perl.org | |
1452 | Subject: [PATCH 5.005_60 opcode.pl and friends] Improved opcode descriptions | |
1453 | Date: Wed, 18 Aug 1999 03:53:38 -0400 | |
1454 | Message-ID: <19990818035337.A31505@athens.aocn.com> | |
1455 | Branch: cfgperl | |
1456 | ! opcode.h opcode.pl pp.sym pp_proto.h sv.c t/op/misc.t | |
1457 | ! t/pragma/warn/op t/pragma/warn/sv | |
1458 | ____________________________________________________________________________ | |
1459 | [ 4176] By: jhi on 1999/09/17 18:19:18 | |
1460 | Log: Take away the infamous io/dup.t #7. | |
1461 | It seems there simply is no way to portably | |
1462 | "flush" an input file handle. | |
1463 | Branch: cfgperl | |
1464 | ! doio.c t/io/dup.t | |
1465 | ____________________________________________________________________________ | |
1466 | [ 4175] By: jhi on 1999/09/17 14:45:08 | |
1467 | Log: From: Barrie Slaymaker <barries@slaysys.com> | |
1468 | To: perl5-porters@perl.org | |
1469 | Subject: [PATCH 5.005_61] Benchmark: screwed patch format, try this instead | |
1470 | Date: Fri, 17 Sep 1999 11:16:48 -0400 | |
1471 | Message-Id: <199909171516.LAA30887@jester.slaysys.com> | |
1472 | Branch: cfgperl | |
1473 | ! lib/Benchmark.pm | |
1474 | ____________________________________________________________________________ | |
1475 | [ 4174] By: jhi on 1999/09/17 14:07:16 | |
1476 | Log: UNICOS does support large files but doesn't support sparse files | |
1477 | so we cannot easily test for large file support. | |
1478 | Branch: cfgperl | |
1479 | ! t/lib/syslfs.t t/op/lfs.t | |
1480 | ____________________________________________________________________________ | |
1481 | [ 4173] By: jhi on 1999/09/17 14:03:44 | |
1482 | Log: UNICOS has sloppy division/modulo for floating point numbers. | |
1483 | Branch: cfgperl | |
1484 | ! t/op/arith.t | |
1485 | ____________________________________________________________________________ | |
1486 | [ 4172] By: jhi on 1999/09/17 13:47:49 | |
1487 | Log: Portable blocksize (replaces #4171). | |
1488 | Branch: cfgperl | |
1489 | ! t/lib/syslfs.t t/op/lfs.t | |
1490 | ____________________________________________________________________________ | |
1491 | [ 4171] By: jhi on 1999/09/17 13:08:54 | |
1492 | Log: (replaced by #4172) | |
1493 | Branch: cfgperl | |
1494 | ! t/lib/syslfs.t t/op/lfs.t | |
1495 | ____________________________________________________________________________ | |
1496 | [ 4170] By: jhi on 1999/09/17 12:59:11 | |
1497 | Log: Detypo #4169. | |
1498 | Branch: cfgperl | |
1499 | ! t/lib/syslfs.t t/op/lfs.t | |
1500 | ____________________________________________________________________________ | |
1501 | [ 4169] By: jhi on 1999/09/17 12:16:34 | |
1502 | Log: Diagnose possible quota limits. | |
1503 | Branch: cfgperl | |
1504 | ! t/lib/syslfs.t t/op/lfs.t | |
1505 | ____________________________________________________________________________ | |
1506 | [ 4168] By: jhi on 1999/09/17 12:10:43 | |
1507 | Log: UNICOS doesn't have getpgid(). Or, at least 9.0.1ai | |
1508 | doesn't have one that wouldn't cause SIGSYS. UNICOS | |
1509 | does have getpgrp(void) so Perl getpgrp() is happy. | |
1510 | Branch: cfgperl | |
1511 | ! hints/unicos.sh | |
1512 | ____________________________________________________________________________ | |
1513 | [ 4167] By: jhi on 1999/09/17 11:49:30 | |
1514 | Log: Filesystem quotas may stop you from using large files. | |
1515 | Branch: cfgperl | |
1516 | ! pod/perldelta.pod t/lib/syslfs.t t/op/lfs.t | |
1517 | ____________________________________________________________________________ | |
1518 | [ 4166] By: jhi on 1999/09/17 11:36:01 | |
1519 | Log: Too strict pattern for parsing group lists. | |
1520 | Branch: cfgperl | |
1521 | ! t/op/groups.t | |
1522 | ____________________________________________________________________________ | |
1523 | [ 4165] By: jhi on 1999/09/17 09:06:18 | |
1524 | Log: Configure maintenance. It's sigaction.sa_flags | |
1525 | and the Glossary regen'ed. | |
1526 | Branch: cfgperl | |
1527 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
1528 | ! config_h.SH | |
1529 | Branch: metaconfig | |
1530 | ! U/compline/d_sigaction.U | |
1531 | ____________________________________________________________________________ | |
1532 | [ 4164] By: jhi on 1999/09/15 06:57:51 | |
1533 | Log: Integrate with Sarathy. | |
1534 | Branch: cfgperl | |
1535 | +> jpl/JNI/Closer.java jpl/JNI/JNIConfig jpl/JNI/JNIConfig.Win32 | |
1536 | +> jpl/JNI/JNIConfig.kaffe jpl/JNI/JNIConfig.noembed | |
1537 | +> jpl/JNI/JNIConfig.standard jpl/JNI/typemap.gcc | |
1538 | +> jpl/JNI/typemap.win32 jpl/SETVARS.PL | |
1539 | !> Changes MANIFEST embed.h embed.pl jpl/JNI/JNI.pm | |
1540 | !> jpl/JNI/JNI.xs jpl/JNI/Makefile.PL jpl/JNI/test.pl | |
1541 | !> jpl/JNI/typemap jpl/JPL/Makefile.PL | |
1542 | !> jpl/PerlInterpreter/Makefile.PL | |
1543 | !> jpl/PerlInterpreter/PerlInterpreter.c | |
1544 | !> jpl/PerlInterpreter/PerlInterpreter.h jpl/README | |
1545 | !> jpl/Sample/Makefile.PL jpl/install-jpl | |
1546 | !> lib/File/Spec/Functions.pm pod/perlhist.pod regexec.c | |
1547 | !> t/op/pat.t | |
1548 | ____________________________________________________________________________ | |
1549 | [ 4163] By: gsar on 1999/09/15 05:17:27 | |
1550 | Log: add :ALL export tag (from Chris Nandor <pudge@pobox.com>) | |
1551 | Branch: perl | |
1552 | ! lib/File/Spec/Functions.pm | |
1553 | ____________________________________________________________________________ | |
1554 | [ 4162] By: gsar on 1999/09/15 05:09:14 | |
1555 | Log: addendum to change#4136 (from Robin Barker <rmb1@cise.npl.co.uk>) | |
1556 | Branch: perl | |
1557 | ! Changes embed.h embed.pl | |
1558 | ____________________________________________________________________________ | |
c88bfdbc GS |
1559 | [ 4161] By: gsar on 1999/09/15 04:08:25 |
1560 | Log: missing perlhist dates from Jeff Okamoto | |
1561 | Branch: perl | |
1562 | ! pod/perlhist.pod | |
1563 | ____________________________________________________________________________ | |
1564 | [ 4160] By: gsar on 1999/09/15 03:13:08 | |
1565 | Log: jpl tweak | |
1566 | Branch: perl | |
1567 | ! MANIFEST jpl/JNI/Makefile.PL | |
1568 | ____________________________________________________________________________ | |
1569 | [ 4159] By: gsar on 1999/09/15 02:57:08 | |
1570 | Log: update to JPL snapshot v09141999, with minor tweaks (from Brian | |
1571 | Jepson <bjepson@home.com>) | |
1572 | Branch: perl | |
1573 | + jpl/JNI/Closer.java jpl/JNI/JNIConfig jpl/JNI/JNIConfig.Win32 | |
1574 | + jpl/JNI/JNIConfig.kaffe jpl/JNI/JNIConfig.noembed | |
1575 | + jpl/JNI/JNIConfig.standard jpl/JNI/typemap.gcc | |
1576 | + jpl/JNI/typemap.win32 jpl/SETVARS.PL | |
1577 | ! jpl/JNI/JNI.pm jpl/JNI/JNI.xs jpl/JNI/Makefile.PL | |
1578 | ! jpl/JNI/test.pl jpl/JNI/typemap jpl/JPL/Makefile.PL | |
1579 | ! jpl/PerlInterpreter/Makefile.PL | |
1580 | ! jpl/PerlInterpreter/PerlInterpreter.c | |
1581 | ! jpl/PerlInterpreter/PerlInterpreter.h jpl/README | |
1582 | ! jpl/Sample/Makefile.PL jpl/install-jpl | |
1583 | ____________________________________________________________________________ | |
1584 | [ 4158] By: gsar on 1999/09/15 01:27:14 | |
1585 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1586 | Date: Tue, 14 Sep 1999 21:26:15 EDT | |
1587 | Message-Id: <199909150126.VAA24720@monk.mps.ohio-state.edu> | |
1588 | Subject: [PATCH 5.005_58+] Re: [ID 19990914.001] Perl_re_intuit_start() hangs in a loop | |
1589 | Branch: perl | |
1590 | ! regexec.c t/op/pat.t | |
1591 | ____________________________________________________________________________ | |
1592 | [ 4157] By: jhi on 1999/09/14 21:18:09 | |
1593 | Log: config.h will define USE_64_BITS if need be. | |
1594 | Branch: cfgperl | |
1595 | ! hints/irix_6.sh | |
1596 | ____________________________________________________________________________ | |
1597 | [ 4156] By: jhi on 1999/09/14 20:30:00 | |
1598 | Log: Change #4149 necessitates also a small code change. | |
1599 | Branch: cfgperl | |
1600 | ! ext/B/defsubs_h.PL | |
1601 | ____________________________________________________________________________ | |
1602 | [ 4155] By: jhi on 1999/09/14 20:15:53 | |
1603 | Log: Update EPOC libdir names. | |
1604 | Branch: cfgperl | |
1605 | ! epoc/config.h | |
1606 | ____________________________________________________________________________ | |
1607 | [ 4154] By: jhi on 1999/09/14 20:13:41 | |
1608 | Log: Obsolete epoc/config.h caused #4153 to re-introduce already | |
1609 | deceased HAS.*DBM.*64 mumblings. | |
1610 | Branch: cfgperl | |
1611 | ! Configure config_h.SH epoc/config.h | |
1612 | ____________________________________________________________________________ | |
1613 | [ 4153] By: jhi on 1999/09/14 20:04:53 | |
1614 | Log: Configure nits. | |
1615 | Branch: cfgperl | |
1616 | ! Configure config_h.SH | |
1617 | Branch: metaconfig | |
1618 | ! U/compline/d_sigaction.U U/threads/i_pthread.U | |
1619 | ____________________________________________________________________________ | |
1620 | [ 4152] By: jhi on 1999/09/14 19:30:22 | |
1621 | Log: Integrate with Sarathy. | |
1622 | Branch: cfgperl | |
1623 | +> ext/B/defsubs_h.PL t/lib/bigfltpm.t | |
1624 | - ext/B/defsubs.h.PL t/lib/bigfloatpm.t | |
1625 | !> INSTALL MANIFEST ext/B/Makefile.PL pod/perldiag.pod | |
1626 | !> win32/config_sh.PL | |
1627 | ____________________________________________________________________________ | |
1628 | [ 4151] By: jhi on 1999/09/14 10:25:01 | |
1629 | Log: Update Unicode database and recompute the tables. | |
1630 | Rename the .txt files to be more Unicode 3.0-like. | |
1631 | Unihan-3.0.txt not included because it is 16 MB. | |
1632 | syllables.txt is manually maintained. | |
1633 | See ReadMe.txt for description of the .txt files. | |
1634 | (not all of them are used yet) | |
1635 | Branch: cfgperl | |
1636 | + lib/unicode/ArabShap.txt lib/unicode/Blocks.txt | |
1637 | + lib/unicode/CompExcl.txt lib/unicode/EAWidth.txt | |
1638 | + lib/unicode/Index.txt lib/unicode/Jamo-2.txt | |
1639 | + lib/unicode/LineBrk.txt lib/unicode/Names.txt | |
1640 | + lib/unicode/Props.txt lib/unicode/ReadMe.txt | |
1641 | + lib/unicode/SpecCase.txt | |
1642 | - lib/unicode/arabshp.txt lib/unicode/blocks.txt | |
1643 | - lib/unicode/index2.txt lib/unicode/jamo2.txt | |
1644 | - lib/unicode/names2.txt lib/unicode/props2.txt | |
1645 | - lib/unicode/readme.txt | |
1646 | ! MANIFEST lib/unicode/ArabLink.pl lib/unicode/ArabLnkGrp.pl | |
1647 | ! lib/unicode/Bidirectional.pl lib/unicode/Block.pl | |
1648 | ! lib/unicode/Category.pl lib/unicode/CombiningClass.pl | |
1649 | ! lib/unicode/Decomposition.pl | |
1650 | ! lib/unicode/In/ArabicPresentationForms-B.pl | |
1651 | ! lib/unicode/In/Specials.pl lib/unicode/In/Tibetan.pl | |
1652 | ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl | |
1653 | ! lib/unicode/Is/BidiCS.pl lib/unicode/Is/BidiL.pl | |
1654 | ! lib/unicode/Is/BidiON.pl lib/unicode/Is/BidiWS.pl | |
1655 | ! lib/unicode/Is/DCcompat.pl lib/unicode/Is/DecoCanon.pl | |
1656 | ! lib/unicode/Is/DecoCompat.pl lib/unicode/Is/L.pl | |
1657 | ! lib/unicode/Is/Ll.pl lib/unicode/Is/Lo.pl | |
1658 | ! lib/unicode/Is/Lower.pl lib/unicode/Is/Lu.pl | |
1659 | ! lib/unicode/Is/Pd.pl lib/unicode/Is/Po.pl lib/unicode/Is/S.pl | |
1660 | ! lib/unicode/Is/Sm.pl lib/unicode/Is/So.pl | |
1661 | ! lib/unicode/Is/Upper.pl lib/unicode/Is/Word.pl | |
1662 | ! lib/unicode/JamoShort.pl lib/unicode/UnicodeData-Latest.txt | |
1663 | ! lib/unicode/mktables.PL | |
1664 | ____________________________________________________________________________ | |
1665 | [ 4150] By: gsar on 1999/09/14 09:31:57 | |
1666 | Log: INSTALL tweak | |
1667 | Branch: perl | |
1668 | ! INSTALL | |
1669 | ____________________________________________________________________________ | |
1670 | [ 4149] By: gsar on 1999/09/14 09:00:45 | |
1671 | Log: change some filenames to be 8.3-friendly | |
1672 | Branch: perl | |
1673 | +> ext/B/defsubs_h.PL t/lib/bigfltpm.t | |
1674 | - ext/B/defsubs.h.PL t/lib/bigfloatpm.t | |
1675 | ! MANIFEST ext/B/Makefile.PL pod/perldiag.pod | |
1676 | ____________________________________________________________________________ | |
1677 | [ 4148] By: gsar on 1999/09/14 08:35:00 | |
1678 | Log: win32 config tweak (suggested by Greg Chapman <glc@well.com>) | |
1679 | Branch: perl | |
1680 | ! win32/config_sh.PL | |
1681 | ____________________________________________________________________________ | |
1682 | [ 4147] By: jhi on 1999/09/14 08:07:49 | |
1683 | Log: Not that UVSIZE normally differs that much from IVSIZE... | |
1684 | Branch: cfgperl | |
1685 | ! perl.h | |
1686 | ____________________________________________________________________________ | |
1687 | [ 4146] By: jhi on 1999/09/14 08:04:40 | |
1688 | Log: Integrate with Sarathy. | |
1689 | Branch: cfgperl | |
1690 | !> Changes ext/DB_File/DB_File.xs | |
1691 | ____________________________________________________________________________ | |
1692 | [ 4145] By: jhi on 1999/09/14 07:10:02 | |
1693 | Log: I_PTHREAD was PTHREADEAD. | |
1694 | Branch: cfgperl | |
1695 | ! Configure config_h.SH | |
1696 | Branch: metaconfig | |
1697 | ! U/threads/i_pthread.U | |
1698 | ____________________________________________________________________________ | |
1699 | [ 4144] By: gsar on 1999/09/14 06:46:47 | |
1700 | Log: change#4113 was missing DB_File.xs changes | |
1701 | Branch: perl | |
1702 | ! ext/DB_File/DB_File.xs | |
1703 | ____________________________________________________________________________ | |
1704 | [ 4143] By: jhi on 1999/09/13 20:16:20 | |
1705 | Log: Small doc and whitespace edits. | |
1706 | Branch: cfgperl | |
1707 | ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs | |
1708 | ! ext/DynaLoader/dl_cygwin.xs ext/DynaLoader/dl_dld.xs | |
1709 | ! ext/DynaLoader/dl_hpux.xs ext/DynaLoader/dl_mpeix.xs | |
1710 | ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_rhapsody.xs | |
1711 | ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs | |
1712 | ! pod/perldelta.pod | |
1713 | ____________________________________________________________________________ | |
1714 | [ 4142] By: gsar on 1999/09/13 19:32:31 | |
1715 | Log: integrate cfgperl contents into mainline, update Changes | |
1716 | Branch: perl | |
1717 | +> ext/DB_File/version.c | |
1718 | ! Changes | |
1719 | !> (integrate 44 files) | |
1720 | ____________________________________________________________________________ | |
5319f02c GS |
1721 | [ 4141] By: jhi on 1999/09/13 16:16:56 |
1722 | Log: Scan for <pthread.h> always. | |
1723 | Branch: cfgperl | |
1724 | ! Configure config_h.SH perl.h | |
1725 | Branch: metaconfig | |
1726 | ! U/threads/i_pthread.U | |
1727 | ____________________________________________________________________________ | |
1728 | [ 4140] By: jhi on 1999/09/13 16:00:08 | |
1729 | Log: Integrate with Sarathy. | |
1730 | Branch: cfgperl | |
1731 | !> (integrate 27 files) | |
1732 | ____________________________________________________________________________ | |
1733 | [ 4139] By: jhi on 1999/09/13 15:35:18 | |
1734 | Log: Add -A option to Configure to diddle with variables | |
1735 | after the hints file has been applied. | |
1736 | Branch: cfgperl | |
1737 | ! Configure config_h.SH | |
1738 | Branch: metaconfig | |
1739 | ! U/modified/Oldconfig.U U/modified/Options.U | |
1740 | ____________________________________________________________________________ | |
1741 | [ 4138] By: jhi on 1999/09/13 13:42:56 | |
1742 | Log: Change #4136 edited DynaLoader.xs which is kind of fruitless. | |
1743 | Branch: cfgperl | |
1744 | ! ext/DynaLoader/dl_aix.xs ext/DynaLoader/dl_beos.xs | |
1745 | ! ext/DynaLoader/dl_cygwin.xs ext/DynaLoader/dl_dld.xs | |
1746 | ! ext/DynaLoader/dl_hpux.xs ext/DynaLoader/dl_mpeix.xs | |
1747 | ! ext/DynaLoader/dl_next.xs ext/DynaLoader/dl_rhapsody.xs | |
1748 | ! ext/DynaLoader/dl_vmesa.xs ext/DynaLoader/dl_vms.xs | |
1749 | ____________________________________________________________________________ | |
1750 | [ 4137] By: jhi on 1999/09/13 13:25:31 | |
1751 | Log: Applying change #4136 manually introduced patch residue. | |
1752 | Branch: cfgperl | |
1753 | ! perl.h | |
1754 | ____________________________________________________________________________ | |
1755 | [ 4136] By: jhi on 1999/09/13 13:23:04 | |
1756 | Log: Replace change #4100 with | |
1757 | From: Robin Barker <rmb1@cise.npl.co.uk> | |
1758 | To: gsar@activestate.com | |
1759 | Cc: perl5-porters@perl.org | |
1760 | Subject: Re: [ID 19990907.004] [PATCH perl5.005_61] compiler warnings with -Duse64bits | |
1761 | Date: Mon, 13 Sep 1999 14:15:11 +0100 (BST) | |
1762 | Message-Id: <199909131315.OAA24012@tempest.npl.co.uk> | |
1763 | Branch: cfgperl | |
1764 | ! doio.c dump.c ext/B/B.xs ext/B/typemap | |
1765 | ! ext/ByteLoader/bytecode.h ext/Devel/DProf/DProf.xs | |
1766 | ! ext/DynaLoader/dl_dlopen.xs ext/ODBM_File/ODBM_File.xs | |
1767 | ! ext/POSIX/POSIX.xs lib/ExtUtils/typemap malloc.c perl.h pp.c | |
1768 | ! pp_ctl.c pp_hot.c pp_sys.c sv.c | |
1769 | ____________________________________________________________________________ | |
1770 | [ 4135] By: jhi on 1999/09/13 10:22:31 | |
1771 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1772 | To: perl5-porters@perl.org (Mailing list Perl5) | |
1773 | Subject: [PATCH 5.005_61] MakeMaker supports uninstalled Perls | |
1774 | Date: Sat, 11 Sep 1999 05:31:03 -0400 (EDT) | |
1775 | Message-Id: <199909110931.FAA11036@monk.mps.ohio-state.edu> | |
1776 | ||
1777 | From: andreas.koenig@anima.de (Andreas J. Koenig) | |
1778 | To: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1779 | Cc: perl5-porters@perl.org (Mailing list Perl5) | |
1780 | Subject: Re: [PATCH 5.005_61] MakeMaker supports uninstalled Perls | |
1781 | Date: 11 Sep 1999 15:36:26 +0200 | |
1782 | Message-ID: <sfc906dr2n9.fsf@hohenstaufen.in-berlin.de> | |
1783 | Branch: cfgperl | |
1784 | ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm | |
1785 | ____________________________________________________________________________ | |
1786 | [ 4134] By: jhi on 1999/09/13 10:20:14 | |
1787 | Log: From: Tom Phoenix <rootbeer@redcat.com> | |
1788 | To: Perl Porters Mailing List <perl5-porters@perl.org> | |
1789 | Subject: [DOCPATCH] Server errors and perldiag | |
1790 | Date: Fri, 10 Sep 1999 16:45:02 -0700 (PDT) | |
1791 | Message-ID: <Pine.GSO.4.10.9909101639490.16999-100000@user2.teleport.com> | |
1792 | Branch: cfgperl | |
1793 | ! pod/perldiag.pod | |
1794 | ____________________________________________________________________________ | |
1795 | [ 4133] By: gsar on 1999/09/13 03:25:43 | |
1796 | Log: avoid assertion failure on C<@a'> | |
1797 | Branch: perl | |
1798 | ! toke.c | |
1799 | ____________________________________________________________________________ | |
1800 | [ 4132] By: gsar on 1999/09/13 03:03:57 | |
1801 | Log: add -DPERL_Y2KWARN build option that will generate additional | |
1802 | warnings on "19$yy" etc (reworked a patch suggested by | |
1803 | Ulrich Pfeifer <upf@de.uu.net>) | |
1804 | Branch: perl | |
1805 | ! pod/perldelta.pod pod/perldiag.pod pod/perllexwarn.pod | |
1806 | ! pp_hot.c sv.c t/pragma/warn/pp_hot t/pragma/warn/sv | |
1807 | ____________________________________________________________________________ | |
1808 | [ 4131] By: gsar on 1999/09/12 22:06:25 | |
1809 | Log: fix DATA leaks; reword documentation about the DATA filehandle | |
1810 | Branch: perl | |
1811 | ! ext/Opcode/Safe.pm lib/Pod/Functions.pm pod/perldata.pod | |
1812 | ____________________________________________________________________________ | |
1813 | [ 4130] By: gsar on 1999/09/12 20:08:56 | |
1814 | Log: make sprintf("%g",...) threadsafe; only taint its result iff the | |
1815 | formatted result looks nonstandard | |
1816 | Branch: perl | |
1817 | ! embed.pl embedvar.h intrpvar.h objXSUB.h perl.c perlapi.c | |
1818 | ! pod/perlfunc.pod pod/perlguts.pod proto.h sv.c | |
1819 | ! t/pragma/locale.t thrdvar.h | |
1820 | ____________________________________________________________________________ | |
1821 | [ 4129] By: gsar on 1999/09/12 17:04:11 | |
1822 | Log: From: Doug MacEachern <dougm@cp.net> | |
1823 | Date: Sun, 25 Jul 1999 15:49:00 -0700 (PDT) | |
1824 | Message-ID: <Pine.LNX.4.10.9907251538380.373-100000@mojo.eng.cp.net> | |
1825 | Subject: [PATCH 5.005_57] B::clearsym | |
1826 | Branch: perl | |
1827 | ! ext/B/B.pm ext/B/B/Bblock.pm ext/B/B/Debug.pm ext/B/B/Terse.pm | |
1828 | ____________________________________________________________________________ | |
1829 | [ 4128] By: gsar on 1999/09/12 16:59:12 | |
1830 | Log: better debugger help output (from Ilya Zakharevich) | |
1831 | Branch: perl | |
1832 | ! lib/perl5db.pl | |
1833 | ____________________________________________________________________________ | |
1834 | [ 4127] By: jhi on 1999/09/11 20:50:37 | |
1835 | Log: Integrate with Sarathy. | |
1836 | Branch: cfgperl | |
1837 | +> pod/perlcompile.pod t/lib/gol-basic.t t/lib/gol-compat.t | |
1838 | +> t/lib/gol-linkage.t | |
1839 | !> (integrate 43 files) | |
1840 | ____________________________________________________________________________ | |
1841 | [ 4126] By: nick on 1999/09/10 20:44:22 | |
1842 | Log: Get resolve -at mainline | |
1843 | Branch: utfperl | |
1844 | +> (branch 297 files) | |
1845 | - README.cygwin32 XSlock.h bytecode.h byterun.c byterun.h | |
1846 | - cygwin32/cw32imp.h cygwin32/gcc2 cygwin32/ld2 cygwin32/perlgcc | |
1847 | - cygwin32/perlld ext/B/byteperl.c ext/DynaLoader/dl_cygwin32.xs | |
1848 | - hints/cygwin32.sh interp.sym myconfig objpp.h perl_exp.SH | |
1849 | - t/pragma/warn-1global t/pragma/warning.t thread.sym | |
1850 | - win32/GenCAPI.pl win32/TEST win32/autosplit.pl | |
1851 | - win32/bin/network.pl win32/bin/webget.pl win32/bin/www.pl | |
1852 | - win32/genxsdef.pl win32/makedef.pl win32/makemain.pl | |
1853 | - win32/makeperldef.pl win32/perlhost.h | |
1854 | !> (integrate 847 files) | |
1855 | ____________________________________________________________________________ | |
1856 | [ 4125] By: gsar on 1999/09/10 19:22:14 | |
1857 | Log: s/dXS_TARGET/dXSTARG/ in change#4044 (to match dARGS vs dXSARGS | |
1858 | etc.) | |
1859 | Branch: perl | |
1860 | ! XSUB.h pp.h | |
1861 | ____________________________________________________________________________ | |
1862 | [ 4124] By: gsar on 1999/09/10 19:14:35 | |
1863 | Log: rewrote substantive parts of patch | |
1864 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1865 | Date: Fri, 27 Aug 1999 19:02:18 -0400 | |
1866 | Message-ID: <19990827190218.A19561@monk.mps.ohio-state.edu> | |
1867 | Subject: [PATCH 5.005_58] REx documentation | |
1868 | Branch: perl | |
1869 | ! pod/perlre.pod | |
1870 | ____________________________________________________________________________ | |
1871 | [ 4123] By: gsar on 1999/09/10 18:21:53 | |
1872 | Log: note about AVf_* | |
1873 | Branch: perl | |
1874 | ! av.h | |
1875 | ____________________________________________________________________________ | |
1876 | [ 4122] By: gsar on 1999/09/10 17:55:42 | |
1877 | Log: allow 'text' in L<text|A::B/"C"> (from Martin Lichtin | |
1878 | <lichtin@bivio.com>) | |
1879 | Branch: perl | |
1880 | ! lib/Pod/Html.pm | |
1881 | ____________________________________________________________________________ | |
1882 | [ 4121] By: gsar on 1999/09/10 17:49:35 | |
1883 | Log: dos-djgpp update (from Laszlo Molnar <laszlo.molnar@eth.ericsson.se>) | |
1884 | Branch: perl | |
1885 | ! AUTHORS Changes README.dos djgpp/config.over | |
1886 | ! djgpp/configure.bat djgpp/djgpp.c djgpp/djgppsed.sh dosish.h | |
1887 | ! lib/ExtUtils/MM_Unix.pm pod/pod2usage.PL pod/podchecker.PL | |
1888 | ! pod/podselect.PL sv.h t/io/openpid.t util.c | |
1889 | ____________________________________________________________________________ | |
1890 | [ 4120] By: gsar on 1999/09/10 12:25:01 | |
1891 | Log: add perlcompile.pod (edited content from Nathan Torkington | |
1892 | <gnat@frii.com> and others) | |
1893 | Branch: perl | |
1894 | + pod/perlcompile.pod | |
1895 | ! MANIFEST pod/Makefile pod/buildtoc pod/perl.pod pod/roffitall | |
1896 | ____________________________________________________________________________ | |
1897 | [ 4119] By: gsar on 1999/09/10 11:05:13 | |
1898 | Log: avoid leaking static local_patches unless patchlevel.h is | |
1899 | explicitly included | |
1900 | Branch: perl | |
1901 | ! patchlevel.h perl.c | |
1902 | ____________________________________________________________________________ | |
1903 | [ 4118] By: gsar on 1999/09/10 10:44:54 | |
1904 | Log: upgrade to Getopt::Long v2.20 (from Johan Vromans | |
1905 | <jvromans@squirrel.nl>) | |
1906 | Branch: perl | |
1907 | + t/lib/gol-basic.t t/lib/gol-compat.t t/lib/gol-linkage.t | |
1908 | ! Changes MANIFEST lib/Getopt/Long.pm | |
1909 | ____________________________________________________________________________ | |
1a505819 GS |
1910 | [ 4116] By: jhi on 1999/09/09 15:56:52 |
1911 | Log: perldeltify change #4115. | |
1912 | Branch: cfgperl | |
1913 | ! pod/perldelta.pod | |
1914 | ____________________________________________________________________________ | |
1915 | [ 4115] By: jhi on 1999/09/09 15:48:56 | |
1916 | Log: From: "John L. Allen" <allen@grumman.com> | |
1917 | To: perl5-porters@perl.org | |
1918 | Subject: [ID 19990901.003] Time::Local should not croak on "out-of-range" days | |
1919 | Date: Wed, 1 Sep 1999 13:33:39 -0400 (EDT) | |
1920 | Message-Id: <199909011733.NAA17356@gateway.grumman.com> | |
1921 | Branch: cfgperl | |
1922 | ! lib/Time/Local.pm | |
1923 | ____________________________________________________________________________ | |
1924 | [ 4114] By: jhi on 1999/09/09 15:42:30 | |
1925 | Log: From: "Daniel S. Lewart" <lewart@www.cvm.uiuc.edu> | |
1926 | To: perl5-porters@perl.org | |
1927 | Subject: [ID 19990909.003] MAXINT redefined warning on HP-UX 10.20 | |
1928 | Date: Thu, 9 Sep 1999 10:33:37 -0500 (CDT) | |
1929 | Message-Id: <199909091533.KAA01242@www.cvm.uiuc.edu> | |
1930 | Branch: cfgperl | |
1931 | ! pp_sys.c | |
1932 | ____________________________________________________________________________ | |
1933 | [ 4113] By: jhi on 1999/09/09 10:17:45 | |
1934 | Log: From: paul.marquess@bt.com | |
1935 | To: gsar@ActiveState.com | |
1936 | Cc: perl5-porters@perl.org | |
1937 | Subject: [PATCH 5.005_61] DB_File 1.71 | |
1938 | Date: Thu, 9 Sep 1999 11:20:13 +0100 | |
1939 | Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49BBE@mbtlipnt02.btlabs.bt.co.uk> | |
1940 | Branch: cfgperl | |
1941 | + ext/DB_File/version.c | |
1942 | ! MANIFEST ext/DB_File/Changes ext/DB_File/DB_File.pm | |
1943 | ! ext/DB_File/Makefile.PL ext/DB_File/dbinfo ext/DB_File/typemap | |
1944 | ! t/lib/db-btree.t | |
1945 | ____________________________________________________________________________ | |
1946 | [ 4112] By: jhi on 1999/09/09 09:05:32 | |
1947 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1948 | To: perl5-porters@perl.org (Mailing list Perl5) | |
1949 | Subject: [PATCH 5.005_58] Fix interaction of (?p{}) and (?>) | |
1950 | Date: Thu, 9 Sep 1999 04:40:11 -0400 (EDT) | |
1951 | Message-Id: <199909090840.EAA26471@monk.mps.ohio-state.edu> | |
1952 | Branch: cfgperl | |
1953 | ! regexec.c t/op/pat.t | |
1954 | ____________________________________________________________________________ | |
1a505819 GS |
1955 | [ 4110] By: jhi on 1999/09/09 07:29:17 |
1956 | Log: Tidy up 64-bit situation in perldelta. | |
1957 | Branch: cfgperl | |
1958 | ! pod/perldelta.pod | |
1959 | ____________________________________________________________________________ | |
1960 | [ 4109] By: jhi on 1999/09/09 07:26:53 | |
1961 | Log: Clear up PL_regcc issues. | |
1962 | ||
1963 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1964 | To: perl5-porters@perl.org (Mailing list Perl5) | |
1965 | Subject: [PATCH 5.005_60] Another regexec.c unobfuscation | |
1966 | Date: Thu, 9 Sep 1999 02:49:49 -0400 (EDT) | |
1967 | Message-Id: <199909090649.CAA26119@monk.mps.ohio-state.edu> | |
1968 | Branch: cfgperl | |
1969 | ! regexec.c | |
1970 | ____________________________________________________________________________ | |
1971 | [ 4108] By: gsar on 1999/09/08 20:52:51 | |
1972 | Log: avoid ass_u_ming uppercase types are not user objects (spotted | |
1973 | by Kurt Starsinic) | |
1974 | Branch: perl | |
1975 | ! ext/Data/Dumper/Dumper.pm | |
1976 | ____________________________________________________________________________ | |
1977 | [ 4107] By: gsar on 1999/09/08 20:35:18 | |
1978 | Log: From: akim@epita.fr (DEMAILLE Akim) | |
1979 | Date: Wed, 8 Sep 1999 18:18:44 +0200 (CEST) | |
1980 | Message-Id: <m11OkQm-003A4IC@beyrouth.lrde.epita.fr> | |
1981 | Subject: [ID 19990908.014] s2p does not quote @ | |
1982 | Branch: perl | |
1983 | ! x2p/s2p.PL | |
1984 | ____________________________________________________________________________ | |
1985 | [ 4106] By: gsar on 1999/09/08 20:25:12 | |
1986 | Log: integrate cfgperl contents into mainline | |
1987 | Branch: perl | |
1988 | !> (integrate 30 files) | |
1989 | ____________________________________________________________________________ | |
1990 | [ 4105] By: jhi on 1999/09/08 09:02:37 | |
1991 | Log: Minor touches at the [:class:] description. | |
1992 | Branch: cfgperl | |
1993 | ! pod/perlre.pod | |
1994 | ____________________________________________________________________________ | |
1995 | [ 4104] By: jhi on 1999/09/08 08:57:58 | |
1996 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
1997 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
1998 | Subject: [PATCH 5.005_58] Fix debugging output for REx | |
1999 | Date: Wed, 8 Sep 1999 05:02:02 -0400 | |
2000 | Message-ID: <19990908050201.A17682@monk.mps.ohio-state.edu> | |
2001 | Branch: cfgperl | |
2002 | ! regcomp.c | |
2003 | ____________________________________________________________________________ | |
2004 | [ 4103] By: gsar on 1999/09/08 00:53:50 | |
2005 | Log: fix memory leak in C<sub f { split ' ', "a b" } f() while 1> | |
2006 | Branch: perl | |
2007 | ! pp.c | |
2008 | ____________________________________________________________________________ | |
2009 | [ 4102] By: gsar on 1999/09/08 00:52:50 | |
2010 | Log: fix memory leak in C<sub f { @_ = 1 } f() while 1> | |
2011 | Branch: perl | |
2012 | ! cop.h pp_hot.c | |
2013 | ____________________________________________________________________________ | |
2014 | [ 4101] By: gsar on 1999/09/07 17:25:07 | |
2015 | Log: various fixups for windows | |
2016 | Branch: perl | |
2017 | ! embed.h embed.pl objXSUB.h op.c perlapi.c proto.h | |
2018 | ! win32/Makefile win32/makefile.mk xsutils.c | |
2019 | ____________________________________________________________________________ | |
2020 | [ 4100] By: jhi on 1999/09/07 12:49:15 | |
2021 | Log: Fix pointer casts. | |
2022 | ||
2023 | From: Robin Barker <rmb1@cise.npl.co.uk> | |
2024 | To: perl5-porters@perl.org | |
2025 | Subject: [ID 19990907.004] [PATCH perl5.005_61] compiler warnings with | |
2026 | -Duse64bits | |
2027 | Date: Tue, 7 Sep 1999 12:30:18 +0100 (BST) | |
2028 | Message-Id: <199909071130.MAA11435@tempest.npl.co.uk> | |
2029 | Branch: cfgperl | |
2030 | ! doio.c dump.c ext/B/B.xs ext/B/typemap | |
2031 | ! ext/ByteLoader/bytecode.h ext/Devel/DProf/DProf.xs | |
2032 | ! ext/DynaLoader/dl_dlopen.xs ext/ODBM_File/ODBM_File.xs | |
2033 | ! ext/POSIX/POSIX.xs lib/ExtUtils/typemap malloc.c perl.h pp.c | |
2034 | ! pp_ctl.c pp_hot.c pp_sys.c sv.c | |
2035 | ____________________________________________________________________________ | |
2036 | [ 4099] By: jhi on 1999/09/07 10:29:04 | |
2037 | Log: Add sig/pid/uid size and sign probes. | |
2038 | Branch: metaconfig | |
2039 | + U/typedefs/gidsign.U U/typedefs/gidsize.U U/typedefs/pidsign.U | |
2040 | + U/typedefs/pidsize.U U/typedefs/uidsign.U U/typedefs/uidsize.U | |
2041 | ____________________________________________________________________________ | |
2042 | [ 4098] By: jhi on 1999/09/07 10:27:06 | |
2043 | Log: Band-aid until we've got %{Uid_t} or something similar | |
2044 | for sv_catpvfn(). | |
2045 | Branch: cfgperl | |
2046 | ! taint.c | |
2047 | ____________________________________________________________________________ | |
2048 | [ 4097] By: jhi on 1999/09/07 09:41:23 | |
2049 | Log: Fix a printf thinko: now quads must have the ll L q prefix. | |
2050 | (in other words, a bare %d is an int/unsigned) | |
2051 | Branch: cfgperl | |
2052 | ! pp_sys.c sv.c t/op/64bit.t | |
2053 | ____________________________________________________________________________ | |
2054 | [ 4096] By: jhi on 1999/09/07 07:36:17 | |
2055 | Log: HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX. | |
2056 | ||
2057 | From: "Daniel S. Lewart" <lewart@www.cvm.uiuc.edu> | |
2058 | To: perl5-porters@perl.org | |
2059 | Subject: [ID 19990906.007] Not OK: perl 5.00561 on PA-RISC1.1 10.20 | |
2060 | Date: Mon, 6 Sep 1999 21:18:12 -0500 (CDT) | |
2061 | Message-Id: <199909070218.VAA29232@www.cvm.uiuc.edu> | |
2062 | Branch: cfgperl | |
2063 | ! hints/hpux.sh perl.h | |
2064 | ____________________________________________________________________________ | |
2065 | [ 4095] By: gsar on 1999/09/06 20:47:02 | |
2066 | Log: applied suggested patch with suitable test to detect MSVC | |
2067 | From: "Vishal Bhatia" <vishalb@my-deja.com> | |
2068 | Date: Wed, 11 Aug 1999 01:43:28 -0700 | |
2069 | Message-ID: <GFCJELIOGEENAAAA@my-deja.com> | |
2070 | Subject: compiler on win32 | |
2071 | Branch: perl | |
2072 | ! ext/B/B/C.pm | |
2073 | ____________________________________________________________________________ | |
2074 | [ 4094] By: jhi on 1999/09/06 20:34:44 | |
2075 | Log: Integrate with Sarathy. | |
2076 | Branch: cfgperl | |
2077 | !> ext/B/B/Bytecode.pm lib/Test/Harness.pm t/TEST t/UTEST | |
2078 | !> t/harness t/pragma/sub_lval.t utils/Makefile utils/perlcc.PL | |
2079 | ____________________________________________________________________________ | |
2080 | [ 4093] By: jhi on 1999/09/06 20:33:43 | |
2081 | Log: Fix UV_SIZEOF to UVSIZE; change the overflow tests | |
2082 | so that they overflow also on 64-bit platforms. | |
2083 | Branch: cfgperl | |
2084 | ! t/pragma/warn/toke t/pragma/warn/util toke.c util.c | |
2085 | ____________________________________________________________________________ | |
2086 | [ 4092] By: gsar on 1999/09/06 20:16:58 | |
2087 | Log: support bytecode and C backends in perlcc (patch suggested | |
2088 | by Tom Hughes <tom@compton.au>); s/-opt/-noopt/ and make the | |
2089 | C backend the default; describe new switches in pod; introduce | |
2090 | PERLCC_OPTS and s/COMPILE_TIMEOUT/PERLCC_TIMEOUT/; | |
2091 | s/COMPILE_TEST/HARNESS_COMPILE_TEST/; document these %ENV | |
2092 | entries | |
2093 | Branch: perl | |
2094 | ! ext/B/B/Bytecode.pm lib/Test/Harness.pm t/TEST t/UTEST | |
2095 | ! t/harness utils/Makefile utils/perlcc.PL | |
2096 | ____________________________________________________________________________ | |
2097 | [ 4091] By: jhi on 1999/09/06 19:10:41 | |
2098 | Log: Integrate with Sarathy. | |
2099 | Branch: cfgperl | |
2100 | +> t/pragma/sub_lval.t | |
2101 | !> (integrate 52 files) | |
2102 | ____________________________________________________________________________ | |
2103 | [ 4090] By: gsar on 1999/09/06 19:09:06 | |
2104 | Log: propagate changed error text | |
2105 | Branch: perl | |
2106 | ! t/pragma/sub_lval.t | |
2107 | ____________________________________________________________________________ | |
2108 | [ 4089] By: gsar on 1999/09/06 18:54:43 | |
2109 | Log: sprintf doc tweak (from Ian Phillipps <ian@dial.pipex.com>) | |
2110 | Branch: perl | |
2111 | ! pod/perlfunc.pod | |
2112 | ____________________________________________________________________________ | |
2113 | [ 4088] By: gsar on 1999/09/06 18:52:10 | |
2114 | Log: From: paul.marquess@bt.com | |
2115 | Date: Sun, 5 Sep 1999 15:11:08 +0100 | |
2116 | Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49BAB@mbtlipnt02.btlabs.bt.co.uk> | |
2117 | Subject: [PATCH 5.005_61] Another patch for Lexical Warnings | |
2118 | Branch: perl | |
2119 | ! pp_sys.c t/pragma/warn/doio t/pragma/warn/op | |
2120 | ! t/pragma/warn/pp_hot t/pragma/warn/pp_sys | |
2121 | ! t/pragma/warn/regcomp t/pragma/warn/sv t/pragma/warn/toke | |
2122 | ! t/pragma/warn/universal t/pragma/warn/utf8 t/pragma/warn/util | |
2123 | ! toke.c | |
2124 | ____________________________________________________________________________ | |
2125 | [ 4087] By: gsar on 1999/09/06 18:06:06 | |
2126 | Log: change#3612 is buggy when quotemeta argument matches target | |
2127 | (hope this is the last of the optimized-OP_SASSIGN bugs) | |
2128 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
2129 | Date: Sun, 5 Sep 1999 06:07:42 -0400 (EDT) | |
2130 | Message-Id: <199909051007.GAA06423@monk.mps.ohio-state.edu> | |
2131 | Subject: Re: [BUG: quotemeta] | |
2132 | Branch: perl | |
2133 | ! Changes op.c t/op/lex_assign.t | |
2134 | ____________________________________________________________________________ | |
3dbf192b IZ |
2135 | [ 4086] By: gsar on 1999/09/06 17:57:52 |
2136 | Log: misc tweaks | |
2137 | Branch: perl | |
2138 | ! bytecode.pl ext/ByteLoader/byterun.h pod/perlsyn.pod toke.c | |
2139 | ____________________________________________________________________________ | |
2140 | [ 4085] By: gsar on 1999/09/06 03:54:23 | |
2141 | Log: applied patch suggested by Hans Mulder to fix problems on | |
2142 | OPENSTEP-Mach; be more careful about PERL_POLLUTE_MALLOC | |
2143 | when they ask for bincompat (platforms that used to default | |
2144 | to EMBEDMYMALLOC continue to do so); disable warnings.t#192 | |
2145 | (appears unsalvageable on some platforms) | |
2146 | Branch: perl | |
2147 | ! embed.h embed.pl handy.h perl.h pp_sys.c t/pragma/warn/pp_hot | |
2148 | ____________________________________________________________________________ | |
2149 | [ 4084] By: bailey on 1999/09/06 02:39:11 | |
2150 | Log: Integrate mainline 5.05_61 | |
2151 | Branch: vmsperl | |
2152 | +> (branch 32 files) | |
2153 | - lib/unicode/EthiopicSyllables.txt | |
2154 | - lib/unicode/MakeEthiopicSyllables.PL t/pragma/warning.t | |
2155 | - warning.pl | |
2156 | ! vms/descrip_mms.template vms/gen_shrfls.pl vms/perly_c.vms | |
2157 | ! vms/perly_h.vms vms/vms.c | |
2158 | !> (integrate 346 files) | |
2159 | ____________________________________________________________________________ | |
2160 | [ 4083] By: gsar on 1999/09/06 00:10:40 | |
2161 | Log: optional warning on join(/foo/...) (reworked suggested patch | |
2162 | by Mark-Jason Dominus <mjd@plover.com>) | |
2163 | Branch: perl | |
2164 | ! embed.h objXSUB.h op.c opcode.h opcode.pl perlapi.c | |
2165 | ! pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod pp.sym | |
2166 | ! pp_proto.h t/pragma/warn/op | |
2167 | ____________________________________________________________________________ | |
2168 | [ 4082] By: gsar on 1999/09/05 22:28:57 | |
2169 | Log: fix data loss when more than one block is read from SDBM | |
2170 | *.dir file (suggested by Uwe Ohse <uwe@ohse.de>) | |
2171 | Branch: perl | |
2172 | ! ext/SDBM_File/sdbm/sdbm.c | |
2173 | ____________________________________________________________________________ | |
2174 | [ 4081] By: gsar on 1999/09/05 22:07:18 | |
2175 | Log: initial implementation of lvalue subroutines (slightly fixed | |
2176 | version of patch suggested by Ilya Zakharevich, which in turn | |
2177 | is based on the one suggested by Tuomas J. Lukka <lukka@iki.fi>) | |
2178 | Branch: perl | |
2179 | + t/pragma/sub_lval.t | |
2180 | ! MANIFEST cop.h cv.h dump.c embed.h ext/Opcode/Opcode.pm | |
2181 | ! ext/attrs/attrs.pm ext/attrs/attrs.xs global.sym objXSUB.h | |
2182 | ! op.c op.h opcode.h opcode.pl opnames.h perlapi.c | |
2183 | ! pod/perldiag.pod pod/perlsub.pod pp.c pp.sym pp_hot.c | |
2184 | ! pp_proto.h proto.h t/pragma/warn/pp_ctl | |
2185 | ____________________________________________________________________________ | |
2186 | [ 4080] By: jhi on 1999/09/05 22:02:18 | |
2187 | Log: Undo #4055 (related to #4079). | |
2188 | Branch: cfgperl | |
2189 | ! pod/perlop.pod | |
2190 | ____________________________________________________________________________ | |
2191 | [ 4079] By: jhi on 1999/09/05 21:30:54 | |
2192 | Log: Time is not yet ripe. | |
2193 | Branch: cfgperl | |
2194 | ! pod/perldelta.pod pod/perlop.pod pp.c t/op/64bit.t t/op/misc.t | |
2195 | ____________________________________________________________________________ | |
2196 | [ 4078] By: gsar on 1999/09/05 18:17:32 | |
2197 | Log: modified suggested patch to handle cross-refs and qr// objects | |
2198 | correctly; unfollowed refs are represented as simple string | |
2199 | value, not just the bare type; $VERSION stays the same until | |
2200 | it is ready for prime time (avoids CPAN confustication) | |
2201 | From: John Nolan <jpnolan@Op.Net> | |
2202 | Date: Wed, 04 Aug 1999 20:21:10 EDT | |
2203 | Message-Id: <199908050021.UAA09693@monet.op.net> | |
2204 | Subject: [ID 19990804.006] [PATCH]5.005_60 (Data::Dumper) - implements Maxdepth setting | |
2205 | Branch: perl | |
2206 | ! Changes ext/Data/Dumper/Changes ext/Data/Dumper/Dumper.pm | |
2207 | ! ext/Data/Dumper/Dumper.xs ext/Data/Dumper/Todo t/lib/dumper.t | |
2208 | ____________________________________________________________________________ | |
2209 | [ 4077] By: jhi on 1999/09/04 21:54:42 | |
2210 | Log: timesum() wasn't @EXPORTed as promised by the documentation. | |
2211 | Bug reported by Alex Efros <powerman@inart.kharkov.com>. | |
2212 | Branch: cfgperl | |
2213 | ! lib/Benchmark.pm | |
2214 | ____________________________________________________________________________ | |
a2126434 JN |
2215 | [ 4076] By: gsar on 1999/09/04 20:21:59 |
2216 | Log: integrate cfgperl contents into mainline | |
2217 | Branch: perl | |
2218 | +> lib/attributes.pm lib/warnings.pm t/lib/attrs.t t/op/attrs.t | |
2219 | +> t/pragma/warn/7fatal t/pragma/warn/8signal t/pragma/warnings.t | |
2220 | +> warnings.h warnings.pl xsutils.c | |
2221 | - lib/warning.pm t/pragma/warning.t warning.h warning.pl | |
2222 | !> (integrate 109 files) | |
2223 | ____________________________________________________________________________ | |
2224 | [ 4075] By: jhi on 1999/09/04 18:04:47 | |
2225 | Log: use integer on the problematic subtest. | |
2226 | Branch: cfgperl | |
2227 | ! t/op/misc.t | |
2228 | ____________________________________________________________________________ | |
2229 | [ 4074] By: jhi on 1999/09/04 17:57:40 | |
2230 | Log: Warn about numconvert.t in case somebody | |
2231 | wants to make sv_2pv more 64-bit aware. | |
2232 | Branch: cfgperl | |
2233 | ! sv.c | |
2234 | ____________________________________________________________________________ | |
2235 | [ 4073] By: jhi on 1999/09/04 17:54:51 | |
2236 | Log: Comment upgrading: the quad situation isn't quite as | |
2237 | bad as it used to be. | |
2238 | Branch: cfgperl | |
2239 | ! perl.h | |
2240 | ____________________________________________________________________________ | |
2241 | [ 4072] By: jhi on 1999/09/04 15:35:37 | |
2242 | Log: Integrate with Sarathy. | |
2243 | Branch: cfgperl | |
2244 | !> win32/win32.c | |
2245 | ____________________________________________________________________________ | |
2246 | [ 4071] By: jhi on 1999/09/04 15:28:11 | |
2247 | Log: Fix LFS with -Duseperlio in Solaris. Reported in | |
2248 | ||
2249 | From: Robin Barker <rmb1@cise.npl.co.uk> | |
2250 | To: perl5-porters@perl.org | |
2251 | Subject: [ID 19990823.009] [PATCH perl5.005_61] typo in perl.h | |
2252 | Date: Mon, 23 Aug 1999 16:41:11 +0100 (BST) | |
2253 | Message-Id: <199908231541.QAA10043@tempest.npl.co.uk> | |
2254 | ||
2255 | and later (in private email) found to be dependent | |
2256 | on useperlio. | |
2257 | ||
2258 | Mental note: the cpp magic done in perlsdio.h (and assumedly | |
2259 | also in perlsfio.h) may cause trouble later with lfs because | |
2260 | both the perlio scheme by Perl and the lfs support by vendors | |
2261 | like to play cpp games to map the stdio namespace back and forth. | |
2262 | The problem fixed here (fseek vs fseeko, ftell vs ftello) may be | |
2263 | just the beginning. | |
2264 | Branch: cfgperl | |
2265 | ! perlio.c | |
2266 | ____________________________________________________________________________ | |
2267 | [ 4070] By: jhi on 1999/09/04 13:12:14 | |
2268 | Log: Enable 64-bit clean bit ops. | |
2269 | (Disables the t/op/misc.t substest 3 in 64-bit platforms.) | |
2270 | Branch: cfgperl | |
2271 | ! pod/perldelta.pod pod/perlop.pod pp.c pp_hot.c t/op/64bit.t | |
2272 | ! t/op/misc.t | |
2273 | ____________________________________________________________________________ | |
2274 | [ 4069] By: jhi on 1999/09/03 21:17:30 | |
2275 | Log: Turn on USE_64_BIT_OFFSETS implicitly. | |
2276 | Branch: cfgperl | |
2277 | ! perl.h | |
2278 | ____________________________________________________________________________ | |
2279 | [ 4068] By: jhi on 1999/09/03 08:19:59 | |
2280 | Log: Fix from Spider for the sub attributes (there was an undocumented | |
2281 | dependency between force_word() and skipspace()). | |
2282 | Branch: cfgperl | |
2283 | ! toke.c | |
2284 | ____________________________________________________________________________ | |
2285 | [ 4067] By: jhi on 1999/09/01 23:17:06 | |
2286 | Log: From: John Tobey <spam@john-edwin-tobey.org> | |
2287 | To: ilya@math.ohio-state.edu | |
2288 | CC: perl5-porters@perl.org | |
2289 | Subject: Re: [PATCH 5.005_60] distclean forgot two | |
2290 | Date: Mon, 23 Aug 1999 02:10:11 -0400 (EDT) | |
2291 | Message-Id: <m11InJ5-000FPCC@feynman.localnet> | |
2292 | Branch: cfgperl | |
2293 | ! t/lib/dprof.t | |
2294 | ____________________________________________________________________________ | |
2295 | [ 4066] By: jhi on 1999/09/01 23:14:50 | |
2296 | Log: From: "Fifer, Eric" <EFifer@sanwaint.com> | |
2297 | To: perl5-porters@perl.org | |
2298 | Subject: [ID 19990821.001] [PATCH] perl5.005_60 cygwin port | |
2299 | Date: Fri, 20 Aug 1999 15:37:27 +0100 | |
2300 | Message-Id: <8A160D637356D311BC4300600849EC8122E217@POST> | |
2301 | Branch: cfgperl | |
2302 | ! cygwin/Makefile.SHs ext/ByteLoader/byterun.h | |
2303 | ! ext/SDBM_File/sdbm/sdbm.c hints/cygwin.sh perl.h pp_sys.c | |
2304 | ! t/io/fs.t t/io/tell.t t/lib/anydbm.t t/op/stat.t | |
2305 | ____________________________________________________________________________ | |
2306 | [ 4065] By: jhi on 1999/09/01 22:06:43 | |
2307 | Log: From: Dominic Dunlop <domo@vo.lu> | |
2308 | To: perl5-porters@perl.org | |
2309 | Subject: [ID 19990819.001] Not OK: perl 5.00560 on powerpc-machten 4.1.1 | |
2310 | (UNINSTALLED) [PATCH] | |
2311 | Date: Thu, 19 Aug 1999 09:48:03 +0200 | |
2312 | Message-Id: <v03110709b3e165b51dda@[212.24.192.132]> | |
2313 | ||
2314 | The PERL_POLLUTE_MALLOC part had to be manually applied. | |
2315 | Branch: cfgperl | |
2316 | ! hints/machten.sh perl.h | |
2317 | ____________________________________________________________________________ | |
2318 | [ 4064] By: jhi on 1999/09/01 13:56:14 | |
2319 | Log: From: Martin Lichtin <lichtin@bivio.com> | |
2320 | To: jhi@iki.fi | |
2321 | CC: perl5-porters@perl.org | |
2322 | Subject: Re: [ID 19990829.001] ExtUtils::Install.pm, minor umask problem | |
2323 | Date: Wed, 01 Sep 1999 15:50:04 +0200 | |
2324 | Message-ID: <37CD2F0C.944BFACE@bivio.com> | |
2325 | Branch: cfgperl | |
2326 | ! lib/ExtUtils/Install.pm | |
2327 | ____________________________________________________________________________ | |
2328 | [ 4063] By: jhi on 1999/09/01 13:16:11 | |
2329 | Log: Enhance lfs tests: check every seek and sysseek | |
2330 | and test also that -e and -f detect largefiles. | |
2331 | Branch: cfgperl | |
2332 | ! t/lib/syslfs.t t/op/lfs.t | |
2333 | ____________________________________________________________________________ | |
2334 | [ 4062] By: jhi on 1999/09/01 12:08:04 | |
2335 | Log: From: Colin Kuskie <ckuskie@Cadence.COM> | |
2336 | To: Ronald J Kimball <rjk@linguist.dartmouth.edu> | |
2337 | cc: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>, | |
2338 | The Perl Porters Mailing List <perl5-porters@perl.org> | |
2339 | Subject: [REPATCH 5.005_61] Re: perldiag.pod omissions | |
2340 | Date: Tue, 31 Aug 1999 11:24:31 -0700 (PDT) | |
2341 | Message-ID: <Pine.GSO.4.10.9908311055460.11290-100000@pdxult10a.cadence.com> | |
2342 | Branch: cfgperl | |
2343 | ! pod/perldiag.pod | |
2344 | ____________________________________________________________________________ | |
2345 | [ 4061] By: jhi on 1999/09/01 12:03:03 | |
2346 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
2347 | To: ilya@math.ohio-state.edu (Ilya Zakharevich) | |
2348 | Cc: perl5-porters@perl.org, cloos@adamsmith.ai | |
2349 | Subject: Re: [ID 19990830.005] Assigning value of an op on an SV to said SV | |
2350 | Date: Wed, 1 Sep 1999 02:56:06 -0400 (EDT) | |
2351 | Message-Id: <199909010656.CAA04478@monk.mps.ohio-state.edu> | |
2352 | Branch: cfgperl | |
2353 | ! op.c t/op/join.t | |
2354 | ____________________________________________________________________________ | |
2355 | [ 4060] By: jhi on 1999/09/01 07:59:42 | |
2356 | Log: IV_DIG and NV_DIG fixes. | |
2357 | Branch: cfgperl | |
2358 | ! perl.h | |
2359 | ____________________________________________________________________________ | |
2360 | [ 4059] By: jhi on 1999/08/31 14:47:18 | |
2361 | Log: \C{} -> \N{} residue. | |
2362 | Branch: cfgperl | |
2363 | ! toke.c | |
2364 | ____________________________________________________________________________ | |
a2126434 JN |
2365 | [ 4057] By: gsar on 1999/08/30 22:08:19 |
2366 | Log: avoid hiding child process window | |
2367 | Branch: perl | |
2368 | ! win32/win32.c | |
2369 | ____________________________________________________________________________ | |
a2126434 JN |
2370 | [ 4055] By: jhi on 1999/08/30 21:20:50 |
2371 | Log: Document the undefinedness of overshifting. | |
2372 | Branch: cfgperl | |
2373 | ! pod/perlop.pod | |
2374 | ____________________________________________________________________________ | |
2375 | [ 4054] By: jhi on 1999/08/30 20:18:18 | |
2376 | Log: History fixes and updates. | |
2377 | Branch: cfgperl | |
2378 | ! pod/perlhist.pod | |
2379 | ____________________________________________________________________________ | |
2380 | [ 4053] By: jhi on 1999/08/30 19:34:02 | |
2381 | Log: Shell quoting thinko broke installdirs. | |
2382 | From: JVromans@Squirrel.nl (Johan Vromans) | |
2383 | To: perl5-porters@perl.org | |
2384 | Subject: [ID 19990830.001] 5.005_61 Configure does not substitute | |
2385 | installprefix | |
2386 | Date: Mon, 30 Aug 1999 16:10:10 +0200 (MEST) | |
2387 | Message-Id: <14282.37058.934928.805633@plume.nl.compuware.com> | |
2388 | Branch: cfgperl | |
2389 | ! Configure config_h.SH | |
2390 | Branch: metaconfig | |
2391 | ! U/installdirs/archlib.U U/installdirs/bin.U | |
2392 | ! U/installdirs/html1dir.U U/installdirs/html3dir.U | |
2393 | ! U/installdirs/installprefix.U U/installdirs/man1dir.U | |
2394 | ! U/installdirs/man3dir.U U/installdirs/privlib.U | |
2395 | ! U/installdirs/scriptdir.U U/installdirs/sitearch.U | |
2396 | ! U/installdirs/sitebin.U U/installdirs/sitehtml1dir.U | |
2397 | ! U/installdirs/sitehtml3dir.U U/installdirs/sitelib.U | |
2398 | ! U/installdirs/siteman1dir.U U/installdirs/siteman3dir.U | |
2399 | ! U/installdirs/sitescriptdir.U U/installdirs/vendorarch.U | |
2400 | ! U/installdirs/vendorbin.U U/installdirs/vendorhtml1dir.U | |
2401 | ! U/installdirs/vendorhtml3dir.U U/installdirs/vendorlib.U | |
2402 | ! U/installdirs/vendorman1dir.U U/installdirs/vendorman3dir.U | |
2403 | ! U/installdirs/vendorscriptdir.U | |
2404 | ____________________________________________________________________________ | |
2405 | [ 4052] By: jhi on 1999/08/30 02:57:05 | |
2406 | Log: Use \N{named characters} instead of \C. | |
2407 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
2408 | To: jhi@iki.fi | |
2409 | Cc: larry@wall.org (Larry Wall), Tim.Bunce@ig.co.uk (Tim Bunce), | |
2410 | perl5-porters@perl.org (Mailing list Perl5) | |
2411 | Subject: Re: [PATCH 5.005_58] Named characters in Perl | |
2412 | Date: Sun, 29 Aug 1999 16:46:53 -0400 (EDT) | |
2413 | Message-Id: <199908292046.QAA05510@monk.mps.ohio-state.edu> | |
2414 | Branch: cfgperl | |
2415 | ! lib/charnames.pm lib/utf8.pm pod/perldiag.pod pod/perlop.pod | |
2416 | ! pod/perlre.pod regcomp.c t/lib/charnames.t toke.c | |
2417 | ____________________________________________________________________________ | |
2418 | [ 4051] By: jhi on 1999/08/30 02:54:20 | |
2419 | Log: From: Spider Boardman <spider@Orb.Nashua.NH.US> | |
2420 | To: perl5-porters@perl.org | |
2421 | Subject: [ID 19990829.004] Autoloaded &VERSION and UNIVERSAL::VERSION | |
2422 | don't mix | |
2423 | Date: Sun, 29 Aug 1999 19:04:53 -0400 | |
2424 | Message-Id: <199908292304.TAA13738@Orb.Nashua.NH.US> | |
2425 | Branch: cfgperl | |
2426 | ! universal.c | |
2427 | ____________________________________________________________________________ | |
2428 | [ 4050] By: jhi on 1999/08/29 16:38:58 | |
2429 | Log: Conditionally socksify the LIBS of Socket. | |
2430 | Branch: cfgperl | |
2431 | ! ext/Socket/Makefile.PL | |
2432 | ____________________________________________________________________________ | |
2433 | [ 4049] By: jhi on 1999/08/29 15:33:30 | |
2434 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
2435 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
2436 | Subject: Re: [PATCH 5.005_60] fix @DB::typeahead | |
2437 | Date: Wed, 25 Aug 1999 16:19:58 -0400 | |
2438 | Message-ID: <19990825161958.A4658@monk.mps.ohio-state.edu> | |
2439 | Branch: cfgperl | |
2440 | ! lib/perl5db.pl | |
2441 | ____________________________________________________________________________ | |
2442 | [ 4048] By: jhi on 1999/08/29 15:31:36 | |
2443 | Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu> | |
2444 | To: perl5-porters@perl.org | |
2445 | Subject: [PATCH _61] Lost arguments to simplified sort | |
2446 | Date: Wed, 25 Aug 1999 23:22:32 -0700 (PDT) | |
2447 | Message-ID: <14276.56616.879390.562685@metonymy.hip.berkeley.edu> | |
2448 | Branch: cfgperl | |
2449 | ! op.c t/op/sort.t | |
2450 | ____________________________________________________________________________ | |
2451 | [ 4047] By: jhi on 1999/08/29 15:29:29 | |
2452 | Log: From: Olaf Flebbe <olaf@science-computing.de> | |
2453 | Sender: owner-perl5-porters@perl.org | |
2454 | To: perl5-porters@perl.org | |
2455 | Subject: [ID 19990827.003] [PATCH]5.005_60 Patch for EPOC Support | |
2456 | Date: Fri, 27 Aug 1999 21:50:41 +0200 (MEST) | |
2457 | Branch: cfgperl | |
2458 | ! README.epoc epoc/config.h epoc/epoc.c epoc/epocish.h | |
2459 | ! epoc/perl.mmp epoc/perl.pkg | |
2460 | ____________________________________________________________________________ | |
2461 | [ 4046] By: jhi on 1999/08/29 15:21:18 | |
2462 | Log: From: pvhp@forte.com (Peter Prymmer) | |
2463 | To: perl5-porters@perl.org | |
2464 | Subject: [PATCH: 5.005_61] an EBCDIC friendly cgi-html.t test | |
2465 | Date: Fri, 27 Aug 99 18:51:04 PDT | |
2466 | Message-Id: <9908280151.AA05010@forte.com> | |
2467 | Branch: cfgperl | |
2468 | ! t/lib/cgi-html.t | |
2469 | ____________________________________________________________________________ | |
2470 | [ 4045] By: jhi on 1999/08/29 15:18:38 | |
2471 | Log: Fix scalar gmtime (and localtime) in quad environments, | |
2472 | bug reported by Robin Parker. | |
2473 | ||
2474 | From: Robin Barker <rmb1@cise.npl.co.uk> | |
2475 | To: jhi@iki.fi | |
2476 | Cc: perl5-porters@perl.org | |
2477 | Subject: Re: [ID 19990823.009] [PATCH perl5.005_61] typo in perl.h | |
2478 | Date: Tue, 24 Aug 1999 11:09:24 +0100 (BST) | |
2479 | Message-Id: <199908241009.LAA24394@tempest.npl.co.uk> | |
2480 | Branch: cfgperl | |
2481 | ! pp_sys.c t/op/time.t | |
2482 | ____________________________________________________________________________ | |
2483 | [ 4044] By: jhi on 1999/08/29 11:24:03 | |
2484 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
2485 | To: perl5-porters@perl.org (Mailing list Perl5) | |
2486 | Subject: [PATCH 5.005_60] Speeding up XSUB calls up to 66% | |
2487 | Date: Fri, 27 Aug 1999 03:33:01 -0400 (EDT) | |
2488 | Message-Id: <199908270733.DAA16927@monk.mps.ohio-state.edu> | |
2489 | ||
2490 | Addendum: it's "only" 33% speedup. | |
2491 | Branch: cfgperl | |
2492 | ! dump.c op.c op.h pp.h | |
2493 | ____________________________________________________________________________ | |
2494 | [ 4043] By: jhi on 1999/08/29 11:10:33 | |
2495 | Log: From: spider-perl@Orb.Nashua.NH.US | |
2496 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
2497 | Subject: [PATCH 5.005_61 CORE] sub : attrlist | |
2498 | Date: Sun, 29 Aug 1999 03:02:11 -0400 | |
2499 | Message-Id: <199908290702.DAA32191@Orb.Nashua.NH.US> | |
2500 | Branch: cfgperl | |
2501 | + lib/attributes.pm t/lib/attrs.t t/op/attrs.t xsutils.c | |
2502 | ! MANIFEST Makefile.SH embed.h embed.pl embedvar.h global.sym | |
2503 | ! gv.c lib/AutoSplit.pm lib/SelfLoader.pm objXSUB.h op.c perl.c | |
2504 | ! perl.h perlapi.c perlapi.h perly.c perly.fixer perly.h perly.y | |
2505 | ! perly_c.diff pod/perldelta.pod pod/perldiag.pod | |
2506 | ! pod/perlfunc.pod pod/perlmodlib.pod pod/perlsub.pod proto.h | |
2507 | ! toke.c vms/perly_c.vms vms/perly_h.vms warnings.h | |
2508 | ____________________________________________________________________________ | |
2509 | [ 4042] By: jhi on 1999/08/29 11:08:50 | |
2510 | Log: Turn off gcc-2.95's strict-alias optimization. | |
2511 | This, of course, should be only temporary. | |
2512 | From Andy Dougherty. | |
2513 | Branch: cfgperl | |
2514 | ! Configure config_h.SH | |
2515 | Branch: metaconfig | |
2516 | ! U/compline/ccflags.U U/modified/cc.U | |
2517 | ____________________________________________________________________________ | |
2518 | [ 4041] By: jhi on 1999/08/29 10:47:30 | |
2519 | Log: Fix a typo in #4036. | |
2520 | Branch: cfgperl | |
2521 | ! mg.c | |
2522 | ____________________________________________________________________________ | |
2523 | [ 4040] By: jhi on 1999/08/29 10:34:58 | |
2524 | Log: Add a missing #endif forgotten by #4035. | |
2525 | Branch: cfgperl | |
2526 | ! doop.c | |
2527 | ____________________________________________________________________________ | |
2528 | [ 4039] By: jhi on 1999/08/29 10:31:19 | |
2529 | Log: Remove an extra #endif introduced by #4036. | |
2530 | Branch: cfgperl | |
2531 | ! perl.h | |
2532 | ____________________________________________________________________________ | |
2533 | [ 4038] By: jhi on 1999/08/29 10:18:59 | |
2534 | Log: Rename warning to warnings, from Paul Marquess. | |
2535 | Branch: cfgperl | |
2536 | + lib/warnings.pm t/pragma/warn/7fatal t/pragma/warn/8signal | |
2537 | + t/pragma/warnings.t warnings.h warnings.pl | |
2538 | - lib/warning.pm t/pragma/warning.t warning.h warning.pl | |
2539 | ! MANIFEST Makefile.SH gv.c mg.c perl.h pod/perldelta.pod | |
2540 | ! pod/perldiag.pod pod/perlfunc.pod pod/perllexwarn.pod | |
2541 | ! pod/perlmodlib.pod pod/perlrun.pod pod/perltoc.pod | |
2542 | ! pod/perlvar.pod t/op/64bit.t t/op/tie.t t/pragma/warn/2use | |
2543 | ! t/pragma/warn/3both t/pragma/warn/4lint t/pragma/warn/5nolint | |
2544 | ! t/pragma/warn/6default t/pragma/warn/doio t/pragma/warn/doop | |
2545 | ! t/pragma/warn/gv t/pragma/warn/mg t/pragma/warn/op | |
2546 | ! t/pragma/warn/perl t/pragma/warn/perly t/pragma/warn/pp | |
2547 | ! t/pragma/warn/pp_ctl t/pragma/warn/pp_hot t/pragma/warn/pp_sys | |
2548 | ! t/pragma/warn/regcomp t/pragma/warn/regexec t/pragma/warn/sv | |
2549 | ! t/pragma/warn/taint t/pragma/warn/toke t/pragma/warn/universal | |
2550 | ! t/pragma/warn/utf8 t/pragma/warn/util toke.c | |
2551 | ____________________________________________________________________________ | |
2552 | [ 4037] By: jhi on 1999/08/29 10:08:47 | |
2553 | Log: Create the equivalence tables based on | |
2554 | the real Unicode decomposition, not on | |
2555 | the character name. | |
2556 | Branch: cfgperl | |
2557 | ! lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode | |
2558 | ! lib/unicode/mktables.PL | |
2559 | ____________________________________________________________________________ | |
2560 | [ 4036] By: jhi on 1999/08/29 09:29:08 | |
2561 | Log: Integrate with Sarathy. | |
2562 | Branch: cfgperl | |
2563 | +> lib/unicode/Is/SylA.pl lib/unicode/Is/SylC.pl | |
2564 | +> lib/unicode/Is/SylE.pl lib/unicode/Is/SylI.pl | |
2565 | +> lib/unicode/Is/SylO.pl lib/unicode/Is/SylU.pl | |
2566 | +> lib/unicode/Is/SylV.pl lib/unicode/Is/SylWA.pl | |
2567 | +> lib/unicode/Is/SylWC.pl lib/unicode/Is/SylWE.pl | |
2568 | +> lib/unicode/Is/SylWI.pl lib/unicode/Is/SylWV.pl | |
2569 | !> (integrate 190 files) | |
2570 | ____________________________________________________________________________ | |
2571 | [ 4035] By: jhi on 1999/08/29 08:56:15 | |
2572 | Log: Implement 64-bit vec(). | |
2573 | Branch: cfgperl | |
2574 | ! doop.c pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod | |
2575 | ! pp.h t/op/64bit.t | |
2576 | ____________________________________________________________________________ | |
2577 | [ 4034] By: gsar on 1999/08/29 03:35:18 | |
2578 | Log: deadcode removal | |
2579 | Branch: perl | |
2580 | ! XSUB.h embed.h embed.pl global.sym mg.c op.c perl.h perlapi.h | |
2581 | ! pp_ctl.c proto.h run.c sv.c | |
2582 | ____________________________________________________________________________ | |
2583 | [ 4033] By: jhi on 1999/08/28 17:31:07 | |
2584 | Log: From: Robin Barker <rmb1@cise.npl.co.uk> | |
2585 | To: perl5-porters@perl.org | |
2586 | Subject: [ID 19990823.009] [PATCH perl5.005_61] typo in perl.h | |
2587 | Date: Mon, 23 Aug 1999 16:41:11 +0100 (BST) | |
2588 | Message-Id: <199908231541.QAA10043@tempest.npl.co.uk> | |
2589 | Branch: cfgperl | |
2590 | ! perl.h | |
2591 | ____________________________________________________________________________ | |
2592 | [ 4032] By: gsar on 1999/08/26 23:53:33 | |
2593 | Log: new thread should set current interp in TLS | |
2594 | Branch: perl | |
2595 | ! ext/Thread/Thread.xs | |
2596 | ____________________________________________________________________________ | |
2597 | [ 4031] By: bailey on 1999/08/23 03:40:07 | |
2598 | Log: When extension doesn't have a "main" object file to anchor linker search, pull in all objct files | |
2599 | Branch: vmsperl | |
2600 | ! lib/ExtUtils/MM_VMS.pm | |
2601 | ____________________________________________________________________________ | |
2602 | [ 4030] By: bailey on 1999/08/23 03:37:43 | |
2603 | Log: Patch up holes in realclean target | |
2604 | Branch: vmsperl | |
2605 | ! vms/descrip_mms.template | |
2606 | ____________________________________________________________________________ | |
2607 | [ 4029] By: bailey on 1999/08/23 03:36:24 | |
2608 | Log: Fix handling of PERL_POLLUTE | |
2609 | Branch: vmsperl | |
2610 | ! lib/ExtUtils/MM_VMS.pm | |
2611 | ____________________________________________________________________________ | |
2612 | [ 4028] By: bailey on 1999/08/23 03:34:08 | |
2613 | Log: Update VMS version of perly.h | |
2614 | Branch: vmsperl | |
2615 | ! vms/perly_h.vms | |
2616 | ____________________________________________________________________________ | |
2617 | [ 4027] By: bailey on 1999/08/23 03:32:45 | |
2618 | Log: Update dependencies in Descrip.MMS | |
2619 | Branch: vmsperl | |
2620 | ! vms/descrip_mms.template | |
2621 | ____________________________________________________________________________ | |
2622 | [ 4026] By: bailey on 1999/08/23 03:30:01 | |
2623 | Log: Fix prototypes in perlapi.c (64-bit?) | |
2624 | Clear prior definition of getenv_len before defining VMS-specific macro | |
2625 | Branch: vmsperl | |
2626 | ! perlapi.c vms/vmsish.h | |
2627 | ____________________________________________________________________________ | |
2628 | [ 4025] By: bailey on 1999/08/23 03:25:51 | |
2629 | Log: Add '-m' option to Configure.com which skips the MANIFEST check | |
2630 | Branch: vmsperl | |
2631 | ! configure.com | |
2632 | ____________________________________________________________________________ | |
2633 | [ 4024] By: bailey on 1999/08/23 03:23:34 | |
2634 | Log: Skip open() tests that rely on Unix fork semantics | |
2635 | Branch: vmsperl | |
2636 | ! t/io/open.t | |
2637 | ____________________________________________________________________________ | |
2638 | [ 4023] By: bailey on 1999/08/23 03:21:46 | |
2639 | Log: Loosen conditons for recognizing a function name in perl.h to accomodate revisions | |
2640 | Branch: vmsperl | |
2641 | ! vms/gen_shrfls.pl | |
2642 | ____________________________________________________________________________ | |
2643 | [ 4022] By: bailey on 1999/08/23 03:17:33 | |
2644 | Log: update MM_VMS to use new File::Spec routines | |
2645 | Branch: vmsperl | |
2646 | ! lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm | |
2647 | ____________________________________________________________________________ | |
2648 | [ 4021] By: bailey on 1999/08/23 03:13:40 | |
2649 | Log: byteperl is now part of the ByteLoader ext | |
2650 | Branch: vmsperl | |
2651 | ! ext/ByteLoader/byterun.h vms/descrip_mms.template | |
2652 | ____________________________________________________________________________ | |
2653 | [ 4020] By: bailey on 1999/08/23 03:10:41 | |
2654 | Log: Allow option to treat barewords at start of Unix paths as simple words rather than logicals | |
2655 | Branch: vmsperl | |
2656 | ! vms/vms.c | |
2657 | ____________________________________________________________________________ | |
2658 | [ 4019] By: bailey on 1999/08/23 03:07:28 | |
2659 | Log: Update calls for new thread context handling | |
2660 | Branch: vmsperl | |
2661 | ! ext/Devel/DProf/DProf.xs ext/DynaLoader/dl_vms.xs | |
2662 | ! ext/POSIX/POSIX.xs vms/vms.c vms/vmsish.h vms/writemain.pl | |
2663 | ____________________________________________________________________________ | |
2664 | [ 4018] By: bailey on 1999/08/23 03:01:31 | |
2665 | Log: Allow for file versions in library when looking for .bs files | |
2666 | Branch: vmsperl | |
2667 | ! ext/DynaLoader/DynaLoader_pm.PL | |
2668 | ____________________________________________________________________________ | |
2669 | [ 4017] By: bailey on 1999/08/23 02:58:55 | |
2670 | Log: Update VMS configuration procedures for 5.005_60 | |
2671 | Branch: vmsperl | |
2672 | ! configure.com vms/subconfigure.com | |
2673 | ____________________________________________________________________________ | |
2674 | [ 4016] By: gsar on 1999/08/20 22:19:56 | |
2675 | Log: update Changes | |
2676 | Branch: perl | |
2677 | ! Changes | |
2678 | ||
2679 | ---------------- | |
2680 | Version 5.005_61 | |
651a3225 GS |
2681 | ---------------- |
2682 | ||
2683 | ____________________________________________________________________________ | |
7138795d GS |
2684 | [ 4015] By: gsar on 1999/08/20 22:17:41 |
2685 | Log: perl_free() should use PerlMem_free() | |
2686 | Branch: perl | |
2687 | ! perl.c | |
2688 | ____________________________________________________________________________ | |
2689 | [ 4014] By: gsar on 1999/08/20 22:10:46 | |
2690 | Log: win32 tweaks | |
2691 | Branch: perl | |
2692 | ! XSUB.h mg.c perl.c win32/config.bc win32/config.gc | |
2693 | ! win32/config.vc win32/config_H.bc win32/config_H.gc | |
2694 | ! win32/config_H.vc | |
2695 | ____________________________________________________________________________ | |
2696 | [ 4013] By: gsar on 1999/08/20 22:09:56 | |
2697 | Log: DEBUG_m() adjusted to internalize dTHX | |
2698 | Branch: perl | |
2699 | ! malloc.c perl.h util.c | |
2700 | ____________________________________________________________________________ | |
2701 | [ 4012] By: gsar on 1999/08/20 17:51:06 | |
2702 | Log: make autogenerated files writable | |
2703 | Branch: perl | |
2704 | ! (edit 171 files) | |
2705 | ____________________________________________________________________________ | |
2706 | [ 4011] By: gsar on 1999/08/20 17:43:47 | |
2707 | Log: update Changes | |
2708 | Branch: perl | |
2709 | ! Changes perl.h pod/perldelta.pod pod/perlguts.pod | |
2710 | ____________________________________________________________________________ | |
2711 | [ 4010] By: gsar on 1999/08/20 17:21:53 | |
2712 | Log: up patchlevel &c | |
2713 | Branch: perl | |
2714 | ! Changes patchlevel.h win32/Makefile win32/config_H.bc | |
2715 | ! win32/config_H.gc win32/config_H.vc win32/makefile.mk | |
2716 | ____________________________________________________________________________ | |
651a3225 GS |
2717 | [ 4009] By: gsar on 1999/08/20 16:46:26 |
2718 | Log: add missing Is/Syl*.pl files | |
2719 | Branch: perl | |
2720 | + lib/unicode/Is/SylA.pl lib/unicode/Is/SylC.pl | |
2721 | + lib/unicode/Is/SylE.pl lib/unicode/Is/SylI.pl | |
2722 | + lib/unicode/Is/SylO.pl lib/unicode/Is/SylU.pl | |
2723 | + lib/unicode/Is/SylV.pl lib/unicode/Is/SylWA.pl | |
2724 | + lib/unicode/Is/SylWC.pl lib/unicode/Is/SylWE.pl | |
2725 | + lib/unicode/Is/SylWI.pl lib/unicode/Is/SylWV.pl | |
2726 | ____________________________________________________________________________ | |
2727 | [ 4008] By: gsar on 1999/08/20 16:31:02 | |
2728 | Log: integrate cfgperl contents into mainline | |
2729 | Branch: perl | |
2730 | +> ext/ByteLoader/hints/sunos.pl lib/charnames.pm | |
2731 | +> lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode | |
2732 | +> lib/unicode/syllables.txt t/lib/charnames.t t/lib/syslfs.t | |
2733 | +> t/op/lfs.t | |
2734 | - lib/unicode/EthiopicSyllables.txt | |
2735 | - lib/unicode/MakeEthiopicSyllables.PL | |
2736 | !> (integrate 261 files) | |
2737 | ____________________________________________________________________________ | |
2738 | [ 4007] By: gsar on 1999/08/20 15:24:08 | |
2739 | Log: support USE_THREADS+MULTIPLICITY; source compat tweaks for | |
2740 | USE_THREADS and MULTIPLICITY; minor pod adjustments | |
2741 | Branch: perl | |
2742 | ! Porting/patching.pod Todo Todo-5.005 XSUB.h embed.pl | |
2743 | ! embedvar.h perl.c perl.h pod/perlguts.pod util.c | |
2744 | ____________________________________________________________________________ | |
2745 | [ 4006] By: jhi on 1999/08/19 19:01:41 | |
2746 | Log: Tighten the vec() code so that naughty BITS cause an error. | |
2747 | Branch: cfgperl | |
2748 | ! doop.c | |
2749 | ____________________________________________________________________________ | |
2750 | [ 4005] By: jhi on 1999/08/19 15:55:09 | |
2751 | Log: Don't document ill-defined vec() bits cases | |
2752 | (for which the code doesn't work right in any case) | |
2753 | Branch: cfgperl | |
2754 | ! pod/perldiag.pod pod/perlfunc.pod | |
2755 | ____________________________________________________________________________ | |
2756 | [ 4004] By: jhi on 1999/08/19 12:49:41 | |
2757 | Log: Removed duplicated code (in pp.c and mg.c) by introducing | |
2758 | do_vecget(). NOTE: the calling convention of do_vecset() | |
2759 | changes, too: the `offset' that is assigned to LvTARGOFF(TARG) | |
2760 | in pp_vec() is no more multiplied by `size' in pp_vec(), | |
2761 | the multiplication is now done in do_vecset(). | |
2762 | ||
2763 | Also fix a cpp thinko in change #4002. | |
2764 | Branch: cfgperl | |
2765 | ! doop.c embed.h embed.pl embedvar.h global.sym mg.c objXSUB.h | |
2766 | ! perl.h perlapi.c pod/perldiag.pod pod/perlfunc.pod pp.c | |
2767 | ! proto.h | |
2768 | ____________________________________________________________________________ | |
2769 | [ 4003] By: jhi on 1999/08/18 08:27:22 | |
2770 | Log: Warn about small spherical distances. | |
2771 | Branch: cfgperl | |
2772 | ! lib/Math/Trig.pm | |
2773 | ____________________________________________________________________________ | |
2774 | [ 4002] By: jhi on 1999/08/17 09:11:51 | |
2775 | Log: Enhance IV_FITS_IN_IV (though it's still unused). | |
2776 | Branch: cfgperl | |
2777 | ! perl.h | |
2778 | ____________________________________________________________________________ | |
2779 | [ 4001] By: jhi on 1999/08/17 08:13:34 | |
2780 | Log: From: andreas.koenig@anima.de (Andreas J. Koenig) | |
2781 | Message-ID: <sfcogg7ylk7.fsf@hohenstaufen.in-berlin.de> | |
2782 | To: The Perl5 Porters Mailing List <perl5-porters@perl.org> | |
2783 | Subject: [PATCH] overload.pm str/num confu | |
2784 | Date: 17 Aug 1999 08:21:12 +0200 | |
2785 | Branch: cfgperl | |
2786 | ! lib/overload.pm | |
2787 | ____________________________________________________________________________ | |
2788 | [ 4000] By: jhi on 1999/08/17 07:20:23 | |
2789 | Log: From: merlyn@stonehenge.com (Randal L. Schwartz) | |
2790 | To: perl5-porters@perl.org | |
2791 | Subject: [ID 19990816.006] small patch to perlobj.pod from 5.005_03 | |
2792 | Date: 16 Aug 1999 14:24:28 -0700 | |
2793 | Message-Id: <m1ogg7to4z.fsf@halfdome.holdit.com> | |
2794 | Branch: cfgperl | |
2795 | ! pod/perlobj.pod | |
2796 | ____________________________________________________________________________ | |
2797 | [ 3999] By: jhi on 1999/08/16 19:49:09 | |
2798 | Log: Integrate with Nick. | |
2799 | Branch: cfgperl | |
2800 | !> cop.h op.c perl.c t/op/eval.t t/pragma/warn/op util.c | |
2801 | ____________________________________________________________________________ | |
2802 | [ 3998] By: jhi on 1999/08/16 19:44:29 | |
2803 | Log: Fix most of the pod2man moanings reported in | |
2804 | ||
2805 | From: "Larry W. Virden" <lvirden@cas.org> | |
2806 | To: perl5-porters@perl.org | |
2807 | Subject: [ID 19990803.011] Not OK: perl 5.00560 on sun4-solaris 2.6 | |
2808 | (UNINSTALLED) | |
2809 | Date: Tue, 3 Aug 1999 15:35:06 -0400 (EDT) | |
2810 | Message-Id: <199908031935.PAA27692@cas.org> | |
2811 | ||
2812 | Configure regen'ed. | |
2813 | Branch: cfgperl | |
2814 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
2815 | ! config_h.SH ext/B/B/Stash.pm lib/Carp/Heavy.pm | |
2816 | ! lib/Dumpvalue.pm lib/Exporter/Heavy.pm lib/filetest.pm | |
2817 | ! lib/utf8.pm pod/perllexwarn.pod pod/perlxstut.pod | |
2818 | ! utils/h2xs.PL utils/perlcc.PL | |
2819 | ____________________________________________________________________________ | |
2820 | [ 3997] By: jhi on 1999/08/16 19:20:37 | |
2821 | Log: A fix of sorts for the flush-before-dup scenario. | |
2822 | Branch: cfgperl | |
2823 | ! doio.c | |
2824 | ____________________________________________________________________________ | |
2825 | [ 3996] By: jhi on 1999/08/16 19:14:37 | |
2826 | Log: More paranoia. | |
2827 | Branch: cfgperl | |
2828 | ! sv.c | |
2829 | ____________________________________________________________________________ | |
2830 | [ 3995] By: jhi on 1999/08/16 18:55:35 | |
2831 | Log: Batch of small 64-bit/long double/large file support tweaks: | |
2832 | - scan for LDBL_DIG | |
2833 | - from DBL_DIG and LDBL_DIG select NV_DIG | |
2834 | - introduce IVSIZE, UVSIZE, NVSIZE | |
2835 | - introduce IV_DIG | |
2836 | - remove stdio64 | |
2837 | - AIX uses `oslevel` when others use `uname -r` | |
2838 | - already AIX 4.2 goes 64-bit | |
2839 | - in HP-UX require the 64-bit libc, just the directory isn't enough | |
2840 | - group ids are not NVs | |
2841 | - #undef USE_LONG_DOUBLE if long double is no better than double | |
2842 | - introduce NV_WITHIN_*() and IV_FITS_IN_IV | |
2843 | - mention large file support in perldelta | |
2844 | - introduce quad TOPpin' and POPpin' | |
2845 | - the svcat... buffer was tiny for printing quads in %b | |
2846 | - fix the multiplication test in 64bit.t | |
2847 | - try to make VMS to comply with all this removal and "introducal" | |
2848 | of symbols | |
2849 | Branch: cfgperl | |
2850 | ! Configure config_h.SH dump.c hints/aix.sh hints/hpux.sh mg.c | |
2851 | ! perl.h perlio.c pod/perldelta.pod pp.h sv.c t/lib/syslfs.t | |
2852 | ! t/op/64bit.t t/op/lfs.t utf8.c vms/subconfigure.com | |
2853 | Branch: metaconfig | |
2854 | ! U/modified/d_longdbl.U | |
2855 | Branch: metaconfig/U/perl | |
2856 | + d_ldbl_dig.U | |
2857 | ____________________________________________________________________________ | |
2858 | [ 3994] By: jhi on 1999/08/16 07:53:44 | |
2859 | Log: More Configure/subconfigure.com syncing. | |
2860 | Branch: cfgperl | |
2861 | ! vms/subconfigure.com | |
2862 | ____________________________________________________________________________ | |
2863 | [ 3993] By: jhi on 1999/08/14 22:09:26 | |
2864 | Log: Remove from VMS what the change #3982 took away from Configure lands. | |
2865 | Branch: cfgperl | |
2866 | ! vms/subconfigure.com | |
2867 | ____________________________________________________________________________ | |
2868 | [ 3992] By: jhi on 1999/08/14 13:29:13 | |
2869 | Log: Small test tweaks. | |
2870 | Branch: cfgperl | |
2871 | ! t/io/dup.t t/lib/dprof.t t/lib/odbm.t | |
2872 | ____________________________________________________________________________ | |
2873 | [ 3991] By: jhi on 1999/08/14 13:08:41 | |
2874 | Log: Augment filesize limit note. | |
2875 | Branch: cfgperl | |
2876 | ! doio.c | |
2877 | ____________________________________________________________________________ | |
2878 | [ 3990] By: jhi on 1999/08/14 13:06:12 | |
2879 | Log: Note about filesize limits. | |
2880 | Branch: cfgperl | |
2881 | ! doio.c pp_sys.c | |
2882 | ____________________________________________________________________________ | |
2883 | [ 3989] By: jhi on 1999/08/14 11:31:58 | |
2884 | Log: Catch the case of filesize limits. | |
2885 | Branch: cfgperl | |
2886 | ! t/lib/syslfs.t t/op/lfs.t | |
2887 | ____________________________________________________________________________ | |
2888 | [ 3988] By: nick on 1999/08/14 09:20:58 | |
2889 | Log: New lightweight Carp has a require. If Carp is used in a __DIE__ handler | |
2890 | this causes a POPSTACK panic. The problem seems to be that although | |
2891 | die_where() has unwound the tail of perl_vdie() top_env setjmp has been | |
2892 | set to resume execution there. Avoiding setting CATCH_SET(TRUE) in | |
2893 | call_sv() avoids this. So invent a new G_NOCATCH flag to disable | |
2894 | messing with CATCH_SET() in call_sv, use it in perl_vdie(). | |
2895 | Add test to op/eval.t which will fail (panic) if bug comes back. | |
2896 | >>> I AM NOT CONVINCED THIS IS CORRECT LONG TERM FIX <<< | |
2897 | Branch: perl | |
2898 | ! cop.h perl.c t/op/eval.t util.c | |
2899 | ____________________________________________________________________________ | |
2900 | [ 3987] By: jhi on 1999/08/13 23:57:52 | |
2901 | Log: From: "Craig A. Berry" <craig.berry@metamor.com> | |
2902 | To: perl5-porters@perl.org, vmsperl@perl.org, sarathy@activestate.com | |
2903 | Subject: [PATCH 5.005_60] fix MM_VMS.pm for space-delimited lists | |
2904 | Date: Fri, 13 Aug 1999 17:42:47 -0500 | |
2905 | Message-Id: <v04210105b3da3ed9599d@[172.16.246.133]> | |
2906 | Branch: cfgperl | |
2907 | ! lib/ExtUtils/MM_VMS.pm | |
2908 | ____________________________________________________________________________ | |
2909 | [ 3986] By: jhi on 1999/08/13 23:56:44 | |
2910 | Log: Don't quit before printing out the message. | |
2911 | Branch: cfgperl | |
2912 | ! t/lib/syslfs.t t/op/lfs.t | |
2913 | ____________________________________________________________________________ | |
2914 | [ 3985] By: jhi on 1999/08/13 23:35:49 | |
2915 | Log: Remove more t/ trash on target "clean". | |
2916 | Branch: cfgperl | |
2917 | ! Makefile.SH | |
2918 | ____________________________________________________________________________ | |
2919 | [ 3984] By: jhi on 1999/08/13 23:02:53 | |
2920 | Log: Avoid double long double. | |
2921 | Branch: cfgperl | |
2922 | ! Configure config_h.SH | |
2923 | Branch: metaconfig/U/perl | |
2924 | ! uselongdbl.U | |
2925 | ____________________________________________________________________________ | |
2926 | [ 3983] By: jhi on 1999/08/13 22:59:56 | |
2927 | Log: BYTEORDER fix. | |
2928 | Branch: cfgperl | |
2929 | ! Configure config_h.SH | |
2930 | Branch: metaconfig | |
2931 | ! U/compline/byteorder.U | |
2932 | ____________________________________________________________________________ | |
2933 | [ 3982] By: jhi on 1999/08/13 22:48:40 | |
2934 | Log: Jumbo Configure and large file support update. | |
2935 | Remove a lot of unneeded 64-bitness cruft; | |
2936 | re-introduce BYTEORDER; update 64-bitness hints; | |
2937 | lfs should now work in Solaris; long doubles in AIX. | |
2938 | Branch: cfgperl | |
2939 | ! Configure config_h.SH doio.c hints/aix.sh hints/hpux.sh | |
2940 | ! hints/irix_6.sh hints/solaris_2.sh iperlsys.h perl.h perlio.c | |
2941 | ! perlsdio.h pp.h pp_sys.c | |
2942 | Branch: metaconfig | |
2943 | ! U/compline/byteorder.U U/compline/ccflags.U | |
2944 | Branch: metaconfig/U/perl | |
2945 | ! d_dlsymun.U io64.U uselongdbl.U | |
2946 | ____________________________________________________________________________ | |
651a3225 GS |
2947 | [ 3980] By: jhi on 1999/08/13 15:09:11 |
2948 | Log: Introduce HAS_LLSEEK. | |
2949 | Branch: cfgperl | |
2950 | ! Configure config_h.SH perl.h | |
2951 | ____________________________________________________________________________ | |
2952 | [ 3979] By: jhi on 1999/08/13 14:29:47 | |
2953 | Log: From: <dan@sidhe.org> | |
2954 | To: perl5-porters@perl.org, vmsperl@perl.org, bailey@newman.upenn.edu, | |
2955 | sarathy@activestate.com | |
2956 | Subject: [PATCH 5.005_60]fix up VMS->unix filename translation a bit | |
2957 | Date: Fri, 13 Aug 1999 09:00:42 -0700 (PDT) | |
2958 | Message-ID: <Pine.LNX.4.10.9908130849390.3950-100000@tuatha.sidhe.org> | |
2959 | Branch: cfgperl | |
2960 | ! vms/vms.c | |
2961 | ____________________________________________________________________________ | |
2962 | [ 3978] By: jhi on 1999/08/13 09:56:46 | |
2963 | Log: Make the 64-bit tests more paranoid. | |
2964 | Branch: cfgperl | |
2965 | ! t/op/64bit.t | |
2966 | ____________________________________________________________________________ | |
651a3225 GS |
2967 | [ 3976] By: jhi on 1999/08/12 21:49:16 |
2968 | Log: IRIX64 needs more -mabi=64 with gcc. | |
2969 | Branch: cfgperl | |
2970 | ! hints/irix_6.sh | |
2971 | ____________________________________________________________________________ | |
2972 | [ 3975] By: jhi on 1999/08/12 21:02:03 | |
2973 | Log: Reincarnate change #3967, now in more modest form. | |
2974 | Branch: cfgperl | |
2975 | ! hints/irix_6.sh | |
2976 | ____________________________________________________________________________ | |
2977 | [ 3974] By: jhi on 1999/08/12 20:49:36 | |
2978 | Log: Remove rt from libswanted (I added it many moons ago | |
2979 | when I thought it would be useful in Digital UNIX, | |
2980 | I was wrong); undo the recent IRIX hints changes, | |
2981 | getting rid of one warning brought new ones. | |
2982 | Branch: cfgperl | |
2983 | ! Configure config_h.SH hints/irix_6.sh | |
2984 | Branch: metaconfig | |
2985 | ! U/modified/Myinit.U | |
2986 | ____________________________________________________________________________ | |
2987 | [ 3973] By: jhi on 1999/08/12 19:42:53 | |
2988 | Log: st_blocks is in 512 byte blocks. | |
2989 | Branch: cfgperl | |
2990 | ! t/lib/syslfs.t t/op/lfs.t | |
2991 | ____________________________________________________________________________ | |
2992 | [ 3972] By: jhi on 1999/08/12 19:27:31 | |
2993 | Log: Don't claim defeat too early. | |
2994 | Branch: cfgperl | |
2995 | ! Configure config_h.SH | |
2996 | Branch: metaconfig/U/perl | |
2997 | ! longdblfio.U | |
2998 | ____________________________________________________________________________ | |
2999 | [ 3971] By: jhi on 1999/08/12 19:24:14 | |
3000 | Log: IRIX 64-bit hint tweak. | |
3001 | Branch: cfgperl | |
3002 | ! hints/irix_6.sh | |
3003 | ____________________________________________________________________________ | |
3004 | [ 3970] By: nick on 1999/08/12 19:17:20 | |
3005 | Log: Turn of deprecated warnings for defined(@Sompack::ISA) type | |
3006 | tests i.e. RV2AV and RV2HV | |
3007 | Branch: perl | |
3008 | ! op.c t/pragma/warn/op | |
3009 | ____________________________________________________________________________ | |
3010 | [ 3969] By: jhi on 1999/08/12 19:06:17 | |
3011 | Log: Add Configure -Duselongdouble and add a missing semicolon. | |
3012 | Branch: cfgperl | |
3013 | ! Configure config_h.SH sv.c | |
3014 | Branch: metaconfig/U/perl | |
3015 | + uselongdbl.U | |
3016 | ____________________________________________________________________________ | |
3017 | [ 3968] By: jhi on 1999/08/12 18:46:00 | |
3018 | Log: Simply exit() early if lfs support seems unlikely. | |
3019 | Branch: cfgperl | |
3020 | ! t/lib/syslfs.t t/op/lfs.t | |
3021 | ____________________________________________________________________________ | |
3022 | [ 3967] By: jhi on 1999/08/12 18:44:05 | |
3023 | Log: Suffer silently for unused libraries. | |
3024 | Branch: cfgperl | |
3025 | ! hints/irix_6.sh | |
3026 | ____________________________________________________________________________ | |
3027 | [ 3966] By: jhi on 1999/08/12 13:18:44 | |
3028 | Log: Update MANIFEST to follow change #3965. | |
3029 | Branch: cfgperl | |
3030 | ! MANIFEST | |
3031 | ____________________________________________________________________________ | |
3032 | [ 3965] By: jhi on 1999/08/12 13:15:38 | |
3033 | Log: Regenerate Unicode tables based on new syllable lists | |
3034 | from Daniel Yacob. | |
3035 | Branch: cfgperl | |
3036 | ! (edit 159 files) | |
3037 | ____________________________________________________________________________ | |
3038 | [ 3964] By: jhi on 1999/08/12 10:06:24 | |
3039 | Log: Remove more spurious casting. | |
3040 | Branch: cfgperl | |
3041 | ! pp_sys.c | |
3042 | ____________________________________________________________________________ | |
3043 | [ 3963] By: jhi on 1999/08/12 08:18:53 | |
3044 | Log: Minor niggles on the lfs tests. | |
3045 | Branch: cfgperl | |
3046 | ! t/lib/syslfs.t t/op/lfs.t | |
3047 | ____________________________________________________________________________ | |
3048 | [ 3962] By: jhi on 1999/08/11 22:48:25 | |
3049 | Log: Don't bother with lfs testing if off_t is too small. | |
3050 | Branch: cfgperl | |
3051 | ! t/lib/syslfs.t t/op/lfs.t | |
3052 | ____________________________________________________________________________ | |
3053 | [ 3961] By: jhi on 1999/08/11 22:22:54 | |
3054 | Log: Long double patches from Dan Sugalski. | |
3055 | Branch: cfgperl | |
3056 | ! sv.c | |
3057 | ____________________________________________________________________________ | |
3058 | [ 3960] By: jhi on 1999/08/11 22:17:55 | |
3059 | Log: Flush buffer before duplicating file descriptor. | |
3060 | ||
3061 | From: Mark-Jason Dominus <mjd@plover.com> | |
3062 | To: Graham Barr <gbarr@pobox.com> | |
3063 | cc: Vicki Brown <vlb@cfcl.com>, perl5-porters@perl.org, mjd@plover.com | |
3064 | Subject: Re: [ID 19990811.002] can't dup DATA? (PATCH (5.005_57)) | |
3065 | Date: Wed, 11 Aug 1999 15:56:09 -0400 | |
3066 | Message-ID: <19990811195610.5933.qmail@plover.com> | |
3067 | ||
3068 | From: Mark-Jason Dominus <mjd@plover.com> | |
3069 | To: perl5-porters@perl.org | |
3070 | Subject: Re: [ID 19990811.002] can't dup DATA? (PATCH (5.005_57)) | |
3071 | Date: Wed, 11 Aug 1999 16:05:46 -0400 | |
3072 | Message-ID: <19990811200546.6165.qmail@plover.com> | |
3073 | Branch: cfgperl | |
3074 | ! doio.c pod/perldelta.pod | |
3075 | ____________________________________________________________________________ | |
3076 | [ 3959] By: jhi on 1999/08/11 22:11:35 | |
3077 | Log: Bypass fsync(NULL) (crashes miniperl compiled with DEC C 5.2) | |
3078 | ||
3079 | From: "Craig A. Berry" <craig.berry@metamor.com> | |
3080 | Sender: owner-perl5-porters@perl.org | |
3081 | To: vmsperl@perl.org, perl5-porters@perl.org, sarathy@activestate.com, | |
3082 | bailey@newman.upenn.edu | |
3083 | Subject: [PATCH 5.005_60] vms.c my_flush patch to circumvent fileno | |
3084 | problem | |
3085 | Date: Wed, 11 Aug 1999 14:31:11 -0500 | |
3086 | Message-Id: <4.2.0.58.19990811141007.00b8f8a0@mmtnt11.metamor.com> | |
3087 | Branch: cfgperl | |
3088 | ! vms/vms.c | |
3089 | ____________________________________________________________________________ | |
3090 | [ 3958] By: jhi on 1999/08/11 15:35:45 | |
3091 | Log: Add a hopefully comforting message if there seems to be no LFS. | |
3092 | This seems to be the case with e.g. ext2fs, a somewhat popular fs. | |
3093 | The tests will fail on lfs tests only if quad is available, | |
3094 | if ENOQUAD, the lfs tests will be skipped. | |
3095 | Branch: cfgperl | |
3096 | ! t/lib/syslfs.t t/op/lfs.t | |
3097 | ____________________________________________________________________________ | |
3098 | [ 3957] By: jhi on 1999/08/11 12:25:59 | |
3099 | Log: Unapply an experimental patch that accidentally escaped | |
3100 | from the lab by piggybacking with the change #3955. | |
3101 | Branch: cfgperl | |
3102 | ! pp.c pp.h pp_hot.c | |
3103 | ____________________________________________________________________________ | |
3104 | [ 3956] By: jhi on 1999/08/11 08:19:23 | |
3105 | Log: Add sysio large file support testing. | |
3106 | Branch: cfgperl | |
3107 | + t/lib/syslfs.t | |
3108 | ! MANIFEST pod/perlfunc.pod t/op/64bit.t t/op/lfs.t | |
3109 | ____________________________________________________________________________ | |
3110 | [ 3955] By: jhi on 1999/08/10 22:39:11 | |
3111 | Log: From: <dan@sidhe.org> | |
3112 | To: vmsperl@perl.org, perl5-porters@perl.org, | |
3113 | sarathy@activestate.com, bailey@newman.upenn.edu | |
3114 | Subject: [PATCH 5.005_60]Patches needed to get _60 building with | |
3115 | threads on VMS | |
3116 | Date: Tue, 10 Aug 1999 16:34:56 -0700 (PDT) | |
3117 | Message-ID: <Pine.LNX.4.10.9908101631030.18266-100000@tuatha.sidhe.org> | |
3118 | Branch: cfgperl | |
3119 | ! ext/Devel/DProf/DProf.xs ext/DynaLoader/dl_vms.xs | |
3120 | ! ext/POSIX/POSIX.xs pp.c pp.h pp_hot.c vms/vms.c vms/vmsish.h | |
3121 | ! vms/writemain.pl | |
3122 | ____________________________________________________________________________ | |
3123 | [ 3954] By: jhi on 1999/08/10 20:37:55 | |
3124 | Log: LFS testing robustness. | |
3125 | Branch: cfgperl | |
3126 | ! t/op/lfs.t | |
3127 | ____________________________________________________________________________ | |
3128 | [ 3953] By: jhi on 1999/08/10 19:54:50 | |
3129 | Log: From: <dan@sidhe.org> | |
3130 | To: vmsperl@perl.org, perp5-porters@perl.org, bailey@newman.upenn.edu, | |
3131 | sarathy@activestate.com | |
3132 | Subject: [PATCH 5.005_60]Pathces to get _60 building on VMS | |
3133 | Date: Tue, 10 Aug 1999 13:28:18 -0700 (PDT) | |
3134 | Message-ID: <Pine.LNX.4.10.9908101323130.18266-100000@tuatha.sidhe.org> | |
3135 | Branch: cfgperl | |
3136 | ! configure.com vms/descrip_mms.template vms/gen_shrfls.pl | |
3137 | ! vms/subconfigure.com vms/vmsish.h | |
3138 | ____________________________________________________________________________ | |
3139 | [ 3952] By: jhi on 1999/08/10 17:18:57 | |
3140 | Log: AIX is different, again. Now in cc -E output. | |
3141 | Branch: cfgperl | |
3142 | ! Configure config_h.SH | |
3143 | Branch: metaconfig | |
3144 | ! U/modified/cppstdin.U | |
3145 | ____________________________________________________________________________ | |
3146 | [ 3951] By: jhi on 1999/08/10 14:37:08 | |
3147 | Log: Use Pid_t on pgrp matters. | |
3148 | Branch: cfgperl | |
3149 | ! pp_sys.c | |
3150 | ____________________________________________________________________________ | |
3151 | [ 3950] By: jhi on 1999/08/10 14:35:30 | |
3152 | Log: Use Pid_t. | |
3153 | Branch: cfgperl | |
3154 | ! doio.c embed.h embed.pl embedvar.h global.sym perlapi.c | |
3155 | ! pp_sys.c proto.h util.c | |
3156 | ____________________________________________________________________________ | |
3157 | [ 3949] By: jhi on 1999/08/10 14:11:15 | |
3158 | Log: Use Mode_t. | |
3159 | Branch: cfgperl | |
3160 | ! doio.c embed.h embed.pl embedvar.h global.sym perlapi.c | |
3161 | ! perlapi.h pp_sys.c proto.h | |
3162 | ____________________________________________________________________________ | |
3163 | [ 3948] By: jhi on 1999/08/10 13:53:19 | |
3164 | Log: Small perlbug doc tweaks from Jon Orwant. | |
3165 | Branch: cfgperl | |
3166 | ! utils/perlbug.PL | |
3167 | ____________________________________________________________________________ | |
3168 | [ 3947] By: jhi on 1999/08/10 09:55:11 | |
3169 | Log: Large file support testing. | |
3170 | Branch: cfgperl | |
3171 | + t/op/lfs.t | |
3172 | ! MANIFEST t/op/64bit.t | |
3173 | ____________________________________________________________________________ | |
3174 | [ 3946] By: jhi on 1999/08/10 09:13:54 | |
3175 | Log: Remove I32 casting from time-related functions. | |
3176 | Branch: cfgperl | |
3177 | ! pp_sys.c | |
3178 | ____________________________________________________________________________ | |
3179 | [ 3945] By: jhi on 1999/08/10 09:06:42 | |
3180 | Log: Gratuitous uid and gid casts to I32s and ints removed. | |
3181 | There are still problem spots in printfing such ids: | |
3182 | width (%d vs %ld) and signedness %d vs %u. | |
3183 | Branch: cfgperl | |
3184 | ! doio.c embed.h embed.pl embedvar.h global.sym intrpvar.h mg.c | |
3185 | ! perl.c perlapi.c pp_hot.c proto.h | |
3186 | ____________________________________________________________________________ | |
3187 | [ 3944] By: jhi on 1999/08/10 07:43:03 | |
3188 | Log: Remove I32 casts from pp_stat, these make stat() | |
3189 | very broken e.g. on files larger than 2 gigabytes. | |
3190 | Reported by | |
3191 | From: Phil Lobbes <phil@finchcomputer.com> | |
3192 | To: perl5-porters@perl.org | |
3193 | Subject: [ID 19990810.001] Possible bug using stat w/large files Digital | |
3194 | UNIX Perl 5.005_03 | |
3195 | Date: Mon, 09 Aug 1999 21:38:54 -0700 | |
3196 | Message-Id: <199908100438.VAA08292@ultra.finchcomputer.com> | |
3197 | ||
3198 | There are more of these I32 casts all over pp_sys.c, | |
3199 | all of them should be checked. | |
3200 | Branch: cfgperl | |
3201 | ! pp_sys.c | |
3202 | ____________________________________________________________________________ | |
3203 | [ 3943] By: jhi on 1999/08/10 07:38:30 | |
3204 | Log: Remove blathering. | |
3205 | Branch: cfgperl | |
3206 | ! lib/unicode/mktables.PL | |
3207 | ____________________________________________________________________________ | |
3208 | [ 3942] By: jhi on 1999/08/09 20:35:13 | |
3209 | Log: lexwarn maintenance: new warning class unsafe | |
3210 | subclasses 'overflow' and 'portable' created, | |
3211 | used by the recent integer overflow warnings. | |
3212 | Class syntax subclass 'octal' renamed to 'digit', | |
3213 | binary and hexadecimal parsing errors also 'digit' warnings. | |
3214 | Branch: cfgperl | |
3215 | ! lib/warning.pm pod/perllexwarn.pod t/pragma/warn/util toke.c | |
3216 | ! util.c warning.h warning.pl | |
3217 | ____________________________________________________________________________ | |
3218 | [ 3941] By: jhi on 1999/08/09 10:40:47 | |
3219 | Log: Integrate with Nick. | |
3220 | Branch: cfgperl | |
3221 | +> opnames.h | |
3222 | !> Changes MANIFEST embed.h embed.pl ext/B/B/C.pm ext/B/B/CC.pm | |
3223 | !> global.sym opcode.h opcode.pl perl.h perlapi.c pp.c | |
3224 | ____________________________________________________________________________ | |
3225 | [ 3940] By: jhi on 1999/08/09 10:32:43 | |
3226 | Log: Regenerate the Unicode tables after having updated the Unicode | |
3227 | database (change #3939). | |
3228 | Branch: cfgperl | |
3229 | ! (edit 157 files) | |
3230 | ____________________________________________________________________________ | |
3231 | [ 3939] By: jhi on 1999/08/09 10:27:22 | |
3232 | Log: Unicode data updated to be the latest beta of the Unicode 3.0. | |
3233 | Branch: cfgperl | |
3234 | ! lib/unicode/UnicodeData-Latest.txt | |
3235 | ____________________________________________________________________________ | |
3236 | [ 3938] By: jhi on 1999/08/09 10:25:54 | |
3237 | Log: Ethiopic changes via private email from Daniel Yacob, | |
3238 | <dmulholl@cs.indiana.edu>. Ethiopic and Cherokee done, | |
3239 | Canadian Syllabics and Yi under construction. | |
3240 | Branch: cfgperl | |
3241 | + lib/unicode/syllables.txt | |
3242 | - lib/unicode/EthiopicSyllables.txt | |
3243 | - lib/unicode/MakeEthiopicSyllables.PL | |
3244 | ! MANIFEST lib/unicode/UnicodeData-Latest.txt | |
3245 | ! lib/unicode/mktables.PL | |
3246 | ____________________________________________________________________________ | |
3247 | [ 3937] By: jhi on 1999/08/09 10:21:51 | |
3248 | Log: Move the equivalence class creation last. | |
3249 | Branch: cfgperl | |
3250 | ! lib/unicode/mktables.PL | |
3251 | ____________________________________________________________________________ | |
3252 | [ 3936] By: jhi on 1999/08/09 10:20:40 | |
3253 | Log: Compute equivalence classes (diacritics stripping) only | |
3254 | for letters, not for ligatures. | |
3255 | Branch: cfgperl | |
3256 | ! lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode | |
3257 | ! lib/unicode/mktables.PL | |
3258 | ____________________________________________________________________________ | |
3259 | [ 3935] By: nick on 1999/08/08 13:53:57 | |
3260 | Log: Will now correctly re-call | |
3261 | bootstrap "Foo"; | |
3262 | if requested. This should allow build on Win32 and other | |
3263 | platforms where you cannot link to loadables directly. | |
3264 | Branch: perl | |
3265 | ! ext/B/B/C.pm | |
3266 | ____________________________________________________________________________ | |
3267 | [ 3934] By: nick on 1999/08/07 12:23:55 | |
3268 | Log: Vishal Bhatia <vishalb@my-deja.com> | |
3269 | Subject: [PATCH 5.005_60] fix for some obscure bugs (compiler) | |
3270 | Message-ID: <HLPEBPHPAKHKAAAA@my-deja.com> | |
3271 | Branch: perl | |
3272 | ! ext/B/B/CC.pm | |
3273 | ____________________________________________________________________________ | |
3274 | [ 3933] By: nick on 1999/08/07 12:19:46 | |
3275 | Log: B::C changes to get simple Tk app. compiling again | |
3276 | Branch: perl | |
3277 | ! ext/B/B/C.pm | |
3278 | ____________________________________________________________________________ | |
3279 | [ 3932] By: jhi on 1999/08/06 21:17:16 | |
3280 | Log: Regen Configure to include change #3915. | |
3281 | Branch: cfgperl | |
3282 | ! Configure config_h.SH | |
3283 | ____________________________________________________________________________ | |
3284 | [ 3931] By: jhi on 1999/08/06 18:52:57 | |
3285 | Log: Todo update. | |
3286 | Branch: cfgperl | |
3287 | ! Todo Todo-5.005 lib/unicode/mktables.PL | |
3288 | ____________________________________________________________________________ | |
3289 | [ 3930] By: jhi on 1999/08/06 13:13:05 | |
3290 | Log: Character class equivalence tables. | |
3291 | Branch: cfgperl | |
3292 | + lib/unicode/Eq/Latin1 lib/unicode/Eq/Unicode | |
3293 | ! MANIFEST lib/unicode/mktables.PL | |
3294 | ____________________________________________________________________________ | |
3295 | [ 3929] By: jhi on 1999/08/06 11:59:11 | |
3296 | Log: More Fcntl constants. (This process really needs | |
3297 | to be automated, at least partly, see the Errno extension.) | |
3298 | Now also the SEEK_ constants are available via the Fcntl. | |
3299 | Yes, this is redundant (IO::Seekable and POSIX supply them already), | |
3300 | but now Fcntl is a one-stop shopping mall for all your | |
3301 | file-related constants. | |
3302 | Branch: cfgperl | |
3303 | ! ext/Fcntl/Fcntl.pm ext/Fcntl/Fcntl.xs pod/perlfunc.pod | |
3304 | ____________________________________________________________________________ | |
3305 | [ 3928] By: jhi on 1999/08/06 08:08:03 | |
3306 | Log: Protect against pack/unpack repeat count overflows, | |
3307 | based on: | |
3308 | ||
3309 | From: Nathan Torkington <gnat@frii.com> | |
3310 | To: Brian Keefer <mgomes@cwix.com> | |
3311 | Cc: perl5-porters@perl.org | |
3312 | Subject: Re: [ID 19990806.001] Core dump with obfuscated code | |
3313 | Date: Thu, 5 Aug 1999 23:01:51 -0600 (MDT) | |
3314 | Message-ID: <14250.27711.769942.100675@localhost.frii.com> | |
3315 | Branch: cfgperl | |
3316 | ! pod/perldiag.pod pp.c | |
3317 | ____________________________________________________________________________ | |
3318 | [ 3927] By: jhi on 1999/08/06 07:32:20 | |
3319 | Log: Fix for Nathan's fix (#3920) from Guy Decoux. | |
3320 | ||
3321 | From: Nathan Torkington <gnat@frii.com> | |
3322 | To: perl5-porters@perl.org | |
3323 | Subject: Bugfix for my bugfix | |
3324 | Date: Thu, 5 Aug 1999 21:25:47 -0600 (MDT) | |
3325 | Message-ID: <14250.21947.765134.940583@localhost.frii.com> | |
3326 | Branch: cfgperl | |
3327 | ! ext/B/B/Assembler.pm | |
3328 | ____________________________________________________________________________ | |
3329 | [ 3926] By: jhi on 1999/08/05 17:25:19 | |
3330 | Log: Fix regex charclass parsing so that bogus ranges | |
3331 | like [0-\d] and [[:word:]-z] are no more allowed. | |
3332 | The anomaly was noticed by Guy Decoux. | |
3333 | Branch: cfgperl | |
3334 | ! pod/perldiag.pod pod/perlre.pod regcomp.c t/op/re_tests | |
3335 | ____________________________________________________________________________ | |
3336 | [ 3925] By: jhi on 1999/08/05 10:31:47 | |
3337 | Log: split /^/ deprecation warning should not be on by default. | |
3338 | Branch: cfgperl | |
3339 | ! pp.c | |
3340 | ____________________________________________________________________________ | |
651a3225 GS |
3341 | [ 3923] By: jhi on 1999/08/05 09:16:57 |
3342 | Log: From: paul.marquess@bt.com | |
3343 | To: jhi@iki.fi, paul.marquess@bt.com | |
3344 | Cc: gsar@ActiveState.com, perl5-porters@perl.org | |
3345 | Subject: RE: [PATCH 5.005_60] anydbm.t + DB_File + Berkeley DB >= 2.4.10 | |
3346 | Date: Thu, 5 Aug 1999 09:33:14 +0100 | |
3347 | Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49B26@mbtlipnt02.btlabs.bt.co.uk> | |
3348 | Branch: cfgperl | |
3349 | ! t/lib/anydbm.t | |
3350 | ____________________________________________________________________________ | |
651a3225 GS |
3351 | [ 3921] By: jhi on 1999/08/05 08:05:13 |
3352 | Log: From: paul.marquess@bt.com | |
3353 | To: perl5-porters@perl.org | |
3354 | Cc: gsar@activestate.com, nik@tiuk.ti.com, jhi@iki.fi, | |
3355 | randy@theoryx5.uwinnipeg.ca | |
3356 | Subject: [PATCH 5.005_60] DB_File 1.70 | |
3357 | Date: Wed, 4 Aug 1999 23:22:22 +0100 | |
3358 | Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB202D49B21@mbtlipnt02.btlabs.bt.co.uk> | |
3359 | ||
3360 | (Replaces change #3917) | |
3361 | Branch: cfgperl | |
3362 | ! ext/DB_File/Changes ext/DB_File/DB_File.pm | |
3363 | ! ext/DB_File/DB_File.xs t/lib/db-btree.t t/lib/db-hash.t | |
3364 | ____________________________________________________________________________ | |
3365 | [ 3920] By: jhi on 1999/08/04 19:02:58 | |
3366 | Log: From: Nathan Torkington <gnat@frii.com> | |
3367 | To: perl5-porters@perl.org | |
3368 | Subject: [5.005_60 PATCH] Make B::Bytecode work | |
3369 | Date: Wed, 4 Aug 1999 11:24:56 -0600 (MDT) | |
3370 | Message-ID: <14248.30568.769427.216092@localhost.frii.com> | |
3371 | Branch: cfgperl | |
3372 | ! ext/B/B/Assembler.pm | |
3373 | ____________________________________________________________________________ | |
3374 | [ 3919] By: jhi on 1999/08/04 10:56:26 | |
3375 | Log: Update history records. | |
3376 | Branch: cfgperl | |
3377 | ! pod/perlhist.pod | |
3378 | ____________________________________________________________________________ | |
3379 | [ 3918] By: jhi on 1999/08/04 09:36:13 | |
3380 | Log: Minor fixes to linux -Dusethreads -Duseperlio. | |
3381 | Branch: cfgperl | |
3382 | ! perlio.c | |
3383 | ____________________________________________________________________________ | |
3384 | [ 3917] By: jhi on 1999/08/04 08:13:20 | |
3385 | Log: (Replaced by change #3921) | |
3386 | From: paul.marquess@bt.com | |
3387 | To: gsar@activestate.com | |
3388 | Cc: perl5-porters@perl.org | |
3389 | Subject: [PATCH 5.005_60] DB_File 1.69 | |
3390 | Date: Tue, 3 Aug 1999 22:55:00 +0100 | |
3391 | Message-ID: <5104D4DBC598D211B5FE0000F8FE7EB29C6D04@mbtlipnt02.btlabs.bt.co.uk> | |
3392 | Branch: cfgperl | |
3393 | ! ext/DB_File/Changes ext/DB_File/DB_File.pm | |
3394 | ! ext/DB_File/DB_File.xs t/lib/db-btree.t t/lib/db-hash.t | |
3395 | ____________________________________________________________________________ | |
3396 | [ 3916] By: jhi on 1999/08/04 07:59:05 | |
3397 | Log: Introduce the charnames pragma. | |
3398 | ||
3399 | Subject: [PATCH 5.005_58] Free \C (for named chars), move to \O | |
3400 | From: Ilya Zakharevich <[9]ilya@math.ohio-state.edu> | |
3401 | To: Chip Salzenberg <[11]chip@perlsupport.com> | |
3402 | Cc: Mailing list Perl5 <[12]perl5-porters@perl.org> | |
3403 | Date: Sat, 31 Jul 1999 05:44:05 -0400 | |
3404 | Message-Id: <[13]199907311407.IAA25042@localhost.frii.com> | |
3405 | ||
3406 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
3407 | To: Mailing list Perl5 <perl5-porters@perl.org> | |
3408 | Subject: [PATCH 5.005_58] Named characters in Perl | |
3409 | Date: Mon, 2 Aug 1999 19:25:40 -0400 | |
3410 | Message-ID: <19990802192540.B24407@monk.mps.ohio-state.edu> | |
3411 | Branch: cfgperl | |
3412 | + lib/charnames.pm t/lib/charnames.t | |
3413 | ! MAINTAIN MANIFEST lib/utf8.pm pod/perldiag.pod pod/perlop.pod | |
3414 | ! pod/perlre.pod regcomp.c toke.c | |
3415 | ____________________________________________________________________________ | |
3416 | [ 3915] By: jhi on 1999/08/03 21:18:49 | |
3417 | Log: Support Configure -Dmake=pmake. | |
3418 | Via private email from Andy. | |
3419 | NOTE: assumes "basename" command. | |
3420 | Branch: metaconfig | |
3421 | ! U/modified/Config_sh.U | |
3422 | ____________________________________________________________________________ | |
3423 | [ 3914] By: jhi on 1999/08/03 21:11:11 | |
3424 | Log: The op/filetest.t failed subtest 7 if testing as root. | |
3425 | ||
3426 | From: =?iso-8859-1?Q?Fran=E7ois=20D=E9sarm=E9nien?= <desar@club-internet.fr> | |
3427 | To: perl5-porters@perl.org | |
3428 | Subject: [ID 19990727.039] Not OK: perl 5.00558 on i386-sco 3.2v5.0.4 | |
3429 | Date: Tue, 27 Jul 1999 22:54:05 +0200 | |
3430 | Message-Id: <379E1C6D.626DC765@club-internet.fr> | |
3431 | Branch: cfgperl | |
3432 | ! t/op/filetest.t | |
3433 | ____________________________________________________________________________ | |
651a3225 GS |
3434 | [ 3911] By: jhi on 1999/08/03 19:52:38 |
3435 | Log: The "-Dusethreads -Duseperlio" combination failed. | |
3436 | ||
3437 | From: Spider Boardman <spider@leggy.zk3.dec.com> | |
3438 | To: perl5-porters@perl.org | |
3439 | Subject: [ID 19990803.007] Not OK: perl 5.00560 on alpha-dec_osf-thread | |
3440 | 4.0 (UNINSTALLED) | |
3441 | Date: Tue, 3 Aug 1999 14:25:00 -0400 | |
3442 | Message-Id: <199908031825.OAA29254@leggy.zk3.dec.com> | |
3443 | ||
3444 | See also change #3912. | |
3445 | Branch: cfgperl | |
3446 | ! perlio.c | |
3447 | ____________________________________________________________________________ | |
3448 | [ 3910] By: jhi on 1999/08/03 10:44:24 | |
3449 | Log: From: Chris Nandor <pudge@pobox.com> | |
3450 | To: perl5-porters@perl.org | |
3451 | Subject: [PATCH 5.005_58] perlbug.PL 1.27 | |
3452 | Date: Wed, 28 Jul 1999 23:42:49 -0400 | |
3453 | Message-Id: <v04210104b3c57ce9e3de@[152.167.11.247]> | |
3454 | Branch: cfgperl | |
3455 | ! utils/perlbug.PL | |
3456 | ____________________________________________________________________________ | |
3457 | [ 3909] By: jhi on 1999/08/03 10:41:04 | |
3458 | Log: Hints for building ByteLoader in SunoS. Based on | |
3459 | From: Andy Dougherty <doughera@lafayette.edu> | |
3460 | To: Gurusamy Sarathy <gsar@activestate.com> | |
3461 | Cc: Perl Porters <perl5-porters@perl.org> | |
3462 | Subject: Re: 5.005_58 Not OK SunOS 4.1.3 | |
3463 | Date: Mon, 2 Aug 1999 14:01:58 -0400 (EDT) | |
3464 | Message-Id: <Pine.GSU.4.05.9908021357410.5873-100000@newton.phys> | |
3465 | Branch: cfgperl | |
3466 | + ext/ByteLoader/hints/sunos.pl | |
3467 | ! MANIFEST ext/ByteLoader/ByteLoader.xs | |
3468 | ____________________________________________________________________________ | |
3469 | [ 3908] By: jhi on 1999/08/03 09:29:22 | |
3470 | Log: Clarify RE engine code; inline a static function to a macro; | |
3471 | make exact string nodes smaller. | |
3472 | ||
3473 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
3474 | To: perl5-porters@perl.org (Mailing list Perl5) | |
3475 | Subject: [PATCH 5.005_60] Cosmetic change to REx engine | |
3476 | Date: Mon, 2 Aug 1999 21:53:36 -0400 (EDT) | |
3477 | Message-Id: <199908030153.VAA10542@monk.mps.ohio-state.edu> | |
3478 | Branch: cfgperl | |
3479 | ! Makefile.SH embed.pl global.sym keywords.h lib/warning.pm | |
3480 | ! opcode.h pp.sym pp_proto.h regcomp.c regcomp.h regexec.c | |
3481 | ! regnodes.h warning.h | |
3482 | ____________________________________________________________________________ | |
3483 | [ 3907] By: jhi on 1999/08/03 08:11:49 | |
3484 | Log: 5_59 configured with -Dd_bincompat5005 can't be made | |
3485 | binary compatible with a 5_03 which was built with -DEMBEDMYMALLOC. | |
3486 | ||
3487 | From: Spider Boardman <spider@leggy.zk3.dec.com> | |
3488 | To: perl5-porters@perl.org | |
3489 | Subject: [ID 19990802.016] Not OK: perl 5.00559 | |
3490 | Date: Mon, 2 Aug 1999 16:11:13 -0400 | |
3491 | Message-Id: <199908022011.QAA30224@leggy.zk3.dec.com> | |
3492 | Branch: cfgperl | |
3493 | ! embed.pl | |
3494 | ____________________________________________________________________________ | |
3495 | [ 3906] By: jhi on 1999/08/03 07:48:59 | |
3496 | Log: Change #3790 redemption: with a little additional | |
3497 | patch from Ilya it works okay. | |
3498 | Branch: cfgperl | |
3499 | ! ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm | |
3500 | ! lib/ExtUtils/MakeMaker.pm os2/OS2/REXX/Makefile.PL perl.h | |
3501 | ____________________________________________________________________________ | |
3502 | [ 3905] By: gsar on 1999/08/02 21:03:23 | |
3503 | Log: this will be 5.005_60 | |
3504 | Branch: perl | |
3505 | ! Changes | |
3506 | ||
3507 | ---------------- | |
3508 | Version 5.005_60 | |
412582ad GS |
3509 | ---------------- |
3510 | ||
3511 | ____________________________________________________________________________ | |
def5be65 GS |
3512 | [ 3904] By: gsar on 1999/08/02 20:30:23 |
3513 | Log: don't enable PERL_POLLUTE_MALLOC when EMBEDMYMALLOC is | |
3514 | in effect (from Spider Boardman <spider@leggy.zk3.dec.com>); | |
3515 | regen headers | |
3516 | Branch: perl | |
3517 | ! embed.h embed.pl global.sym opcode.h perlapi.c | |
3518 | ____________________________________________________________________________ | |
3519 | [ 3903] By: gsar on 1999/08/02 20:26:07 | |
3520 | Log: native int pack/unpack fixes (from Spider Boardman | |
3521 | <spider@leggy.zk3.dec.com>) | |
3522 | Branch: perl | |
3523 | ! pp.c | |
3524 | ____________________________________________________________________________ | |
3525 | [ 3902] By: gsar on 1999/08/02 20:24:41 | |
3526 | Log: fix broken -DDEBUGGING_OPS (from Spider Boardman | |
3527 | <spider@leggy.zk3.dec.com>) | |
3528 | Branch: perl | |
3529 | + opnames.h | |
3530 | ! Changes MANIFEST opcode.pl perl.h | |
3531 | ____________________________________________________________________________ | |
abdd5c84 GS |
3532 | [ 3901] By: gsar on 1999/08/02 18:51:18 |
3533 | Log: integrate cfgperl contents | |
3534 | Branch: perl | |
3535 | !> INSTALL README pod/perldelta.pod | |
3536 | ____________________________________________________________________________ | |
3537 | [ 3900] By: jhi on 1999/08/02 18:46:21 | |
3538 | Log: Update README and INSTALL; partly based on the message | |
3539 | ||
3540 | From: "John L. Allen" <allen@grumman.com> | |
3541 | To: Jarkko Hietaniemi <jhi@iki.fi> | |
3542 | cc: perl5-porters@perl.org | |
3543 | Subject: Re: Perl Installation Problem | |
3544 | Date: Thu, 29 Jul 1999 14:55:05 -0400 (EDT) | |
3545 | Message-ID: <Pine.SOL.3.91.990729144440.1035A-100000@gateway.grumman.com> | |
3546 | ||
3547 | and private email from Andy Dougherty. | |
3548 | Branch: cfgperl | |
3549 | ! INSTALL README | |
3550 | ____________________________________________________________________________ | |
3551 | [ 3899] By: jhi on 1999/08/02 18:36:35 | |
3552 | Log: Integrate with Sarathy. | |
3553 | Branch: cfgperl | |
3554 | !> op.c | |
3555 | ____________________________________________________________________________ | |
3556 | [ 3898] By: jhi on 1999/08/02 18:34:49 | |
3557 | Log: Update PERL_BINCOMPAT_5005; update 64-bitness. | |
3558 | Branch: cfgperl | |
3559 | ! pod/perldelta.pod | |
3560 | ____________________________________________________________________________ | |
3561 | [ 3897] By: gsar on 1999/08/02 18:18:37 | |
3562 | Log: optimizations could sometimes bypass bareword check | |
3563 | Branch: perl | |
3564 | ! op.c | |
3565 | ____________________________________________________________________________ | |
3566 | [ 3896] By: jhi on 1999/08/02 18:18:34 | |
3567 | Log: Integrate with Sarathy. | |
3568 | Branch: cfgperl | |
3569 | !> Changes makedef.pl patchlevel.h win32/Makefile | |
3570 | !> win32/config_H.bc win32/config_H.gc win32/config_H.vc | |
3571 | !> win32/makefile.mk | |
3572 | ____________________________________________________________________________ | |
3573 | [ 3895] By: gsar on 1999/08/02 17:22:40 | |
3574 | Log: up patchlevel etc. | |
3575 | Branch: perl | |
3576 | ! Changes patchlevel.h win32/Makefile win32/config_H.bc | |
3577 | ! win32/config_H.gc win32/config_H.vc win32/makefile.mk | |
3578 | ____________________________________________________________________________ | |
412582ad GS |
3579 | [ 3894] By: gsar on 1999/08/02 17:12:31 |
3580 | Log: integrate change#3893, make it conditional on bincompat5005 | |
3581 | Branch: perl | |
3582 | ! makedef.pl | |
3583 | ____________________________________________________________________________ | |
3584 | [ 3893] By: jhi on 1999/08/02 16:49:08 | |
3585 | Log: PERL_BINCOMPAT_5005 symbol translation. | |
3586 | (AIX wouldn't link neither perl nor extensions.) | |
3587 | Branch: cfgperl | |
3588 | ! makedef.pl | |
3589 | ____________________________________________________________________________ | |
3590 | [ 3892] By: gsar on 1999/08/02 16:09:13 | |
3591 | Log: integrate cfgperl contents into mainline | |
3592 | Branch: perl | |
3593 | +> t/op/64bit.t | |
3594 | ! Changes | |
3595 | !> Configure MANIFEST config_h.SH doio.c dump.c hints/aix.sh op.c | |
3596 | !> pod/perlfunc.pod pp_hot.c pp_sys.c regcomp.c sv.c t/io/open.t | |
3597 | !> t/pragma/utf8.t t/pragma/warn/pp_hot toke.c util.c | |
3598 | ____________________________________________________________________________ | |
3599 | [ 3891] By: jhi on 1999/08/02 14:52:40 | |
3600 | Log: AIX long long probing requires LL suffix for | |
3601 | the ll constant. The suffix doesn't seem | |
3602 | to bother other ll platforms. | |
3603 | Branch: cfgperl | |
3604 | ! Configure config_h.SH hints/aix.sh | |
3605 | Branch: metaconfig/U/perl | |
3606 | ! quadfio.U | |
3607 | ____________________________________________________________________________ | |
3608 | [ 3890] By: jhi on 1999/08/02 14:21:55 | |
3609 | Log: Exact path to perl for open -|. | |
3610 | Branch: cfgperl | |
3611 | ! t/io/open.t | |
3612 | ____________________________________________________________________________ | |
3613 | [ 3889] By: jhi on 1999/08/02 14:18:03 | |
3614 | Log: Integrate with Sarathy. | |
3615 | Branch: cfgperl | |
3616 | !> Changes patchlevel.h pod/perlhist.pod pp_ctl.c util.c | |
3617 | !> win32/Makefile win32/config_H.bc win32/config_H.gc | |
3618 | !> win32/config_H.vc win32/makefile.mk win32/win32.c | |
3619 | ____________________________________________________________________________ | |
3620 | [ 3888] By: jhi on 1999/08/02 14:14:29 | |
3621 | Log: AIX -Duse64bits: old AIXen do not have the getconf variables. | |
3622 | Branch: cfgperl | |
3623 | ! hints/aix.sh | |
3624 | ____________________________________________________________________________ | |
3625 | [ 3887] By: jhi on 1999/08/02 12:53:10 | |
3626 | Log: Fix some of the {IV_IS_QUAD,UV_IS_QUAD} cases so that | |
3627 | emacs code indentation doesn't get wrong ideas-- | |
3628 | in other words, introduce a couple of "redundant" if:s. | |
3629 | Branch: cfgperl | |
3630 | ! doio.c dump.c op.c pp_hot.c pp_sys.c regcomp.c sv.c toke.c | |
3631 | ! util.c | |
3632 | ____________________________________________________________________________ | |
3633 | [ 3886] By: jhi on 1999/08/02 12:43:16 | |
3634 | Log: Mention that also *BSD systems with glibc are known to stumble. | |
3635 | Branch: cfgperl | |
3636 | ! t/pragma/warn/pp_hot | |
3637 | ____________________________________________________________________________ | |
3638 | [ 3885] By: jhi on 1999/08/02 12:34:15 | |
3639 | Log: Allow also non-long long but still quad platforms print quads. | |
3640 | Branch: cfgperl | |
3641 | ! Configure config_h.SH | |
3642 | Branch: metaconfig/U/perl | |
3643 | ! longdblfio.U quadfio.U | |
3644 | ____________________________________________________________________________ | |
3645 | [ 3884] By: jhi on 1999/08/02 11:56:14 | |
3646 | Log: Fix regclass utf8 hex ranges for quads. | |
3647 | Branch: cfgperl | |
3648 | ! regcomp.c | |
3649 | ____________________________________________________________________________ | |
3650 | [ 3883] By: jhi on 1999/08/02 11:42:14 | |
3651 | Log: Enhance the description of how to detect quad support. | |
3652 | Branch: cfgperl | |
3653 | ! pod/perlfunc.pod | |
3654 | ____________________________________________________________________________ | |
3655 | [ 3882] By: jhi on 1999/08/02 11:22:19 | |
3656 | Log: Fix printf %D %U %O for quads. | |
3657 | Branch: cfgperl | |
3658 | ! sv.c t/op/64bit.t | |
3659 | ____________________________________________________________________________ | |
3660 | [ 3881] By: jhi on 1999/08/02 11:16:12 | |
3661 | Log: Document quad printing. | |
3662 | Branch: cfgperl | |
3663 | ! pod/perlfunc.pod | |
3664 | ____________________________________________________________________________ | |
3665 | [ 3880] By: jhi on 1999/08/02 10:32:01 | |
3666 | Log: More 64-bit fixing. One known bug of that kind | |
3667 | remains, 32-bit platforms using long long in | |
3668 | the test t/pragma/utf8 subtests 1-3 fail. | |
3669 | (Update: change #3884 fixed that one.) | |
3670 | Branch: cfgperl | |
3671 | + t/op/64bit.t | |
3672 | ! Configure MANIFEST config_h.SH regcomp.c sv.c t/pragma/utf8.t | |
3673 | ||
3674 | ---------------- | |
3675 | Version 5.005_59 | |
4113c5bc GS |
3676 | ---------------- |
3677 | ||
3678 | ____________________________________________________________________________ | |
278c13c7 GS |
3679 | [ 3879] By: gsar on 1999/08/02 08:18:58 |
3680 | Log: integrate cfgperl changes into mainline | |
3681 | Branch: perl | |
3682 | !> Configure config_h.SH sv.c | |
3683 | ____________________________________________________________________________ | |
3684 | [ 3878] By: gsar on 1999/08/02 08:13:16 | |
3685 | Log: change#3692 had an unintentional patch leak through! | |
3686 | (this would explain the mysterious C<next LABEL> failures | |
3687 | people have seen) | |
3688 | Branch: perl | |
3689 | ! pp_ctl.c | |
3690 | ____________________________________________________________________________ | |
3691 | [ 3877] By: gsar on 1999/08/02 08:00:29 | |
3692 | Log: up patchlevel to 59 | |
3693 | Branch: perl | |
3694 | ! Changes patchlevel.h pod/perlhist.pod win32/Makefile | |
3695 | ! win32/config_H.bc win32/config_H.gc win32/config_H.vc | |
3696 | ! win32/makefile.mk | |
3697 | ____________________________________________________________________________ | |
a502f3d8 GS |
3698 | [ 3876] By: gsar on 1999/08/02 07:51:18 |
3699 | Log: fix coredump under usethreads+debug | |
3700 | Branch: perl | |
3701 | ! util.c | |
3702 | ____________________________________________________________________________ | |
3703 | [ 3875] By: jhi on 1999/08/02 07:50:51 | |
3704 | Log: d_bincompat5005 could be left empty. | |
3705 | Branch: cfgperl | |
3706 | ! Configure config_h.SH | |
3707 | Branch: metaconfig/U/perl | |
3708 | ! bincompat5005.U | |
3709 | ____________________________________________________________________________ | |
3710 | [ 3874] By: jhi on 1999/08/02 07:42:45 | |
3711 | Log: Fix printf %d when IV is quad. | |
3712 | Branch: cfgperl | |
3713 | ! sv.c | |
3714 | ____________________________________________________________________________ | |
3715 | [ 3873] By: gsar on 1999/08/02 07:41:03 | |
3716 | Log: fix d_bincompat5005='' junking config.h | |
3717 | Branch: perl | |
3718 | ! Configure | |
3719 | ____________________________________________________________________________ | |
3720 | [ 3872] By: gsar on 1999/08/02 07:38:48 | |
3721 | Log: C needs parameter list, not merely type | |
3722 | Branch: perl | |
3723 | ! win32/win32.c | |
3724 | ____________________________________________________________________________ | |
3725 | [ 3871] By: jhi on 1999/08/02 07:20:51 | |
3726 | Log: Integrate with Sarathy. | |
3727 | Branch: cfgperl | |
3728 | !> Changes ext/B/B/C.pm ext/B/B/CC.pm regexec.c | |
3729 | ____________________________________________________________________________ | |
3730 | [ 3870] By: gsar on 1999/08/02 07:12:18 | |
3731 | Log: integrate cfgperl changes into mainline | |
3732 | Branch: perl | |
3733 | ! Changes | |
3734 | !> Configure Makefile.SH Porting/Glossary Porting/config.sh | |
3735 | !> Porting/config_H config_h.SH doio.c dump.c mg.c op.c perl.h | |
3736 | !> pp_ctl.c pp_hot.c pp_sys.c scope.c sv.c t/pragma/warn/sv | |
3737 | !> toke.c util.c | |
3738 | ____________________________________________________________________________ | |
e1c4585f GS |
3739 | [ 3869] By: gsar on 1999/08/02 06:59:09 |
3740 | Log: From: "Vishal Bhatia" <vishalb@my-deja.com> | |
3741 | Date: Sat, 31 Jul 1999 19:08:33 -0700 | |
3742 | Message-ID: <LAONLKLELDJAFAAA@my-deja.com> | |
3743 | Subject: [PATCH 5.005_58] "use constant" in the compiler | |
3744 | Branch: perl | |
3745 | ! ext/B/B/C.pm ext/B/B/CC.pm | |
3746 | ____________________________________________________________________________ | |
3747 | [ 3868] By: gsar on 1999/08/02 06:55:51 | |
3748 | Log: debug build tweak | |
3749 | Branch: perl | |
3750 | ! regexec.c | |
3751 | ____________________________________________________________________________ | |
3752 | [ 3867] By: gsar on 1999/08/02 06:35:18 | |
3753 | Log: create vmsperl branch (to be owned and operated by: cbailey) | |
3754 | Branch: vmsperl | |
3755 | +> (branch 1476 files) | |
3756 | ____________________________________________________________________________ | |
3757 | [ 3866] By: jhi on 1999/08/01 23:34:40 | |
3758 | Log: so_locations once is enough. | |
3759 | Branch: cfgperl | |
3760 | ! Makefile.SH | |
3761 | ____________________________________________________________________________ | |
3762 | [ 3865] By: jhi on 1999/08/01 23:13:05 | |
3763 | Log: Simplicate duplicated code. | |
3764 | Branch: cfgperl | |
3765 | ! util.c | |
3766 | ____________________________________________________________________________ | |
3767 | [ 3864] By: jhi on 1999/08/01 22:41:41 | |
3768 | Log: Integrate with Sarathy. perl.h and util.c required manual resolving. | |
3769 | Branch: cfgperl | |
3770 | +> README.cygwin cygwin/Makefile.SHs cygwin/ld2.in | |
3771 | +> cygwin/perlld.in ext/DynaLoader/dl_cygwin.xs hints/cygwin.sh | |
3772 | - README.cygwin32 cygwin32/Makefile.SHs | |
3773 | - cygwin32/build-instructions.READFIRST | |
3774 | - cygwin32/build-instructions.charles-wilson | |
3775 | - cygwin32/build-instructions.sebastien-barre | |
3776 | - cygwin32/build-instructions.steven-morlock | |
3777 | - cygwin32/build-instructions.steven-morlock2 cygwin32/ld2.in | |
3778 | - cygwin32/perlld.in ext/DynaLoader/dl_cygwin32.xs | |
3779 | - hints/cygwin32.sh | |
3780 | !> (integrate 61 files) | |
3781 | ____________________________________________________________________________ | |
3782 | [ 3863] By: jhi on 1999/08/01 22:36:02 | |
3783 | Log: Regen Configure and Glossary once again. | |
3784 | Branch: cfgperl | |
3785 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
3786 | ! config_h.SH | |
3787 | ____________________________________________________________________________ | |
3788 | [ 3862] By: jhi on 1999/08/01 22:26:09 | |
3789 | Log: Glossary update for #3861. | |
3790 | Branch: cfgperl | |
3791 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
3792 | ! config_h.SH | |
3793 | ____________________________________________________________________________ | |
3794 | [ 3861] By: jhi on 1999/08/01 22:22:51 | |
3795 | Log: 64-bit work. Now 32-bit platforms get a 100% make test | |
3796 | with -Duse64bits (using long long). | |
3797 | Tested in Solaris 2.6 sparc RH Linux 6.0 x86 | |
3798 | (and Digital IX 4.0D, to get a true 64-bit opinion). Now e.g. | |
3799 | 'print unpack "q", pack "q", 12345678901' | |
3800 | should work on such 32-bit platforms. | |
3801 | Still a lot of printf()s behind -D which wrongly assume | |
3802 | that %ld/%lx and (long) are a good combination. | |
3803 | Introducing a slew of new macros intended to be used in printf() | |
3804 | format strings: e. g. PERL_PRId64 is the string to be used | |
3805 | when printing an IV, printf("%" PERL_PRId64 "\n", iv). | |
3806 | The PRI... naming follows the C9X naming of <inttypes.h> macros. | |
3807 | Branch: cfgperl | |
3808 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
3809 | ! config_h.SH doio.c dump.c mg.c op.c perl.h pp_ctl.c pp_hot.c | |
3810 | ! pp_sys.c scope.c sv.c t/pragma/warn/sv toke.c util.c | |
3811 | Branch: metaconfig/U/perl | |
3812 | + atolf.U atoll.U longdblfio.U quadfio.U strtoull.U | |
3813 | ____________________________________________________________________________ | |
3814 | [ 3860] By: gsar on 1999/08/01 21:23:18 | |
3815 | Log: integrate cfgperl contents into mainline | |
3816 | Branch: perl | |
3817 | ! toke.c | |
3818 | !> (integrate 29 files) | |
3819 | ____________________________________________________________________________ | |
3820 | [ 3859] By: gsar on 1999/08/01 21:13:09 | |
3821 | Log: From: Nathan Torkington <gnat@frii.com> | |
3822 | Date: Sun, 1 Aug 1999 11:23:35 -0600 (MDT) | |
3823 | Message-ID: <14244.33431.739419.806927@localhost.frii.com> | |
3824 | Subject: [PATCH 5.005_58] ext/B/B/Disassembler.pm patch | |
3825 | Branch: perl | |
3826 | ! ext/B/B/Disassembler.pm | |
3827 | ____________________________________________________________________________ | |
3828 | [ 3858] By: gsar on 1999/08/01 21:09:15 | |
3829 | Log: DB_File 1.68 update from Paul Marquess | |
3830 | Branch: perl | |
3831 | ! ext/DB_File/Changes ext/DB_File/DB_File.pm | |
3832 | ! ext/DB_File/DB_File.xs t/lib/db-btree.t t/lib/db-hash.t | |
3833 | ! t/lib/db-recno.t | |
3834 | ____________________________________________________________________________ | |
3835 | [ 3857] By: gsar on 1999/08/01 21:05:54 | |
3836 | Log: From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
3837 | Date: Sat, 31 Jul 1999 05:13:38 -0400 | |
3838 | Message-Id: <199907311407.IAA25038@localhost.frii.com> | |
3839 | Subject: [PATCH 5.005_58] More optimizations to REx engine | |
3840 | Branch: perl | |
3841 | ! embed.pl embedvar.h ext/Thread/Thread.xs objXSUB.h perl.c | |
3842 | ! perl.h proto.h regcomp.c regexec.c t/op/re_tests thrdvar.h | |
3843 | ____________________________________________________________________________ | |
3844 | [ 3856] By: gsar on 1999/08/01 20:59:59 | |
3845 | Log: slightly modified version of suggested patch | |
3846 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
3847 | Date: Sat, 31 Jul 1999 04:45:12 -0400 | |
3848 | Message-Id: <199907311406.IAA25034@localhost.frii.com> | |
3849 | Subject: [PATCH 5.005_58] Fix OS/2 build | |
3850 | Branch: perl | |
3851 | ! Makefile.SH lib/ExtUtils/MM_OS2.pm lib/ExtUtils/Mksymlists.pm | |
3852 | ! makedef.pl os2/Makefile.SHs os2/diff.configure perl.h sv.h | |
3853 | ____________________________________________________________________________ | |
3854 | [ 3855] By: gsar on 1999/08/01 20:49:06 | |
3855 | Log: cygwin update | |
3856 | From: "Fifer, Eric" <EFifer@sanwaint.com> | |
3857 | Date: Fri, 30 Jul 1999 18:31:48 +0100 | |
3858 | Message-Id: <71E287AB0D94D111BBD600600849EC8185EE06@POST> | |
3859 | Subject: [ID 19990730.003] PATCH] perl5.005_58 cygwin port | |
3860 | Branch: perl | |
3861 | ! doio.c dosish.h lib/File/Spec/Unix.pm mg.c perl.h perlsdio.h | |
3862 | ! pp_sys.c unixish.h util.c | |
3863 | ____________________________________________________________________________ | |
3864 | [ 3854] By: gsar on 1999/08/01 20:41:53 | |
3865 | Log: fixes from Stephen McCamant that address bugs in change#3612 | |
3866 | (the optimization shouldn't be enabled in expressions where | |
3867 | the variable is introduced), and fix Deparse to grok the | |
3868 | optimization | |
3869 | Date: Thu, 29 Jul 1999 21:21:49 -0500 (CDT) | |
3870 | Message-ID: <14241.3133.979257.953396@alias-2.pr.mcs.net> | |
3871 | Subject: [PATCH _58] Set OPpTARGET_MY more consistently | |
3872 | -- | |
3873 | Date: Thu, 29 Jul 1999 22:31:16 -0500 (CDT) | |
3874 | Message-ID: <14241.7300.181386.763503@alias-2.pr.mcs.net> | |
3875 | Subject: [PATCH _58] Disable TARGET_MY-ization on variable introduction | |
3876 | -- | |
3877 | Date: Fri, 30 Jul 1999 22:25:27 -0500 (CDT) | |
3878 | Message-Id: <199907310326.VAA24376@localhost.frii.com> | |
3879 | Subject: [PATCH _58, long] B::Deparse (was Re: New warning 'Useless use of...') | |
3880 | Branch: perl | |
3881 | ! ext/B/B/Deparse.pm op.c | |
3882 | ____________________________________________________________________________ | |
3883 | [ 3853] By: gsar on 1999/08/01 20:31:32 | |
3884 | Log: From: Stephen McCamant <smccam@uclink4.berkeley.edu> | |
3885 | Date: Thu, 29 Jul 1999 14:08:50 -0500 (CDT) | |
3886 | Message-ID: <14240.42690.292893.605292@alias-2.pr.mcs.net> | |
3887 | Subject: [PATCH _58] Two one-liner LOGOP tweaks | |
3888 | Branch: perl | |
3889 | ! op.c opcode.h opcode.pl | |
3890 | ____________________________________________________________________________ | |
3891 | [ 3852] By: gsar on 1999/08/01 20:29:17 | |
3892 | Log: rename cygwin32 to cygwin (from Eric Fifer <EFifer@sanwaint.com>) | |
3893 | Branch: perl | |
3894 | ! AUTHORS EXTERN.h INSTALL MAINTAIN Makefile.SH Porting/patchls | |
3895 | ! README.cygwin README.win32 XSUB.h cygwin/Makefile.SHs | |
3896 | ! ext/DynaLoader/dl_cygwin.xs ext/POSIX/POSIX.xs | |
3897 | ! ext/SDBM_File/sdbm/pair.c hints/cygwin.sh | |
3898 | ! lib/ExtUtils/MM_Cygwin.pm makedepend.SH perl.h pod/perl.pod | |
3899 | ! pod/perlport.pod pp_sys.c util.c | |
3900 | ____________________________________________________________________________ | |
3901 | [ 3851] By: gsar on 1999/08/01 20:20:05 | |
3902 | Log: move files around for s/cygwin32/cygwin/ renaming | |
3903 | Branch: perl | |
3904 | +> README.cygwin cygwin/Makefile.SHs cygwin/ld2.in | |
3905 | +> cygwin/perlld.in ext/DynaLoader/dl_cygwin.xs hints/cygwin.sh | |
3906 | - README.cygwin32 cygwin32/Makefile.SHs | |
3907 | - cygwin32/build-instructions.READFIRST | |
3908 | - cygwin32/build-instructions.charles-wilson | |
3909 | - cygwin32/build-instructions.sebastien-barre | |
3910 | - cygwin32/build-instructions.steven-morlock | |
3911 | - cygwin32/build-instructions.steven-morlock2 cygwin32/ld2.in | |
3912 | - cygwin32/perlld.in ext/DynaLoader/dl_cygwin32.xs | |
3913 | - hints/cygwin32.sh | |
3914 | ! MANIFEST | |
3915 | ____________________________________________________________________________ | |
3916 | [ 3850] By: gsar on 1999/08/01 20:05:14 | |
3917 | Log: posix-bc hints tweak (via private mail from Thomas Dorner | |
3918 | <Thomas.Dorner@start.de>) | |
3919 | Branch: perl | |
3920 | ! Changes hints/posix-bc.sh | |
3921 | ____________________________________________________________________________ | |
4113c5bc GS |
3922 | [ 3849] By: gsar on 1999/08/01 19:50:20 |
3923 | Log: notes on PERL_IMPLICIT_CONTEXT (from a version by Nathan Torkington | |
3924 | <gnat@frii.com>) | |
3925 | Branch: perl | |
3926 | ! perl.h pod/perldelta.pod pod/perlguts.pod | |
3927 | ____________________________________________________________________________ | |
3928 | [ 3848] By: gsar on 1999/08/01 18:34:41 | |
3929 | Log: fix defined(@foo) encarpments | |
3930 | Branch: perl | |
3931 | ! ext/B/B/C.pm lib/CGI.pm lib/Dumpvalue.pm lib/dumpvar.pl | |
3932 | ! pod/perltrap.pod | |
3933 | ____________________________________________________________________________ | |
3934 | [ 3847] By: jhi on 1999/08/01 17:17:07 | |
3935 | Log: Undo #3790 and the patches that attempted to fix it | |
3936 | (#3837, #3838, #3845). The #3790 caused linkage failures | |
3937 | and/or core dumps in Solaris 2.6, Digital UNIX 4.0D, and | |
3938 | IRIX 6.5. | |
3939 | Branch: cfgperl | |
3940 | - ext/SDBM_File/hints/dec_osf.pl ext/SDBM_File/hints/solaris.pl | |
3941 | ! MANIFEST ext/SDBM_File/Makefile.PL lib/ExtUtils/MM_Unix.pm | |
3942 | ! lib/ExtUtils/MakeMaker.pm os2/OS2/REXX/Makefile.PL perl.h | |
3943 | ____________________________________________________________________________ | |
3944 | [ 3846] By: jhi on 1999/08/01 11:41:52 | |
3945 | Log: Reading 64-bit decimal numbers was broken because | |
3946 | the NV was cast to an I32, not an IV. | |
3947 | Branch: cfgperl | |
3948 | ! toke.c | |
3949 | ____________________________________________________________________________ | |
3950 | [ 3845] By: jhi on 1999/08/01 11:00:24 | |
3951 | Log: Solaris doesn't like PERL_MALLOC_OK in SDBM_File. | |
3952 | Branch: cfgperl | |
3953 | + ext/SDBM_File/hints/solaris.pl | |
3954 | ____________________________________________________________________________ | |
3955 | [ 3844] By: jhi on 1999/08/01 10:55:44 | |
3956 | Log: Enable Solaris largefiles support only if -Duse64bits is used. | |
3957 | (Effectively removes #3311). | |
3958 | Branch: cfgperl | |
3959 | ! hints/solaris_2.sh | |
3960 | ____________________________________________________________________________ | |
3961 | [ 3843] By: jhi on 1999/07/31 22:44:56 | |
3962 | Log: Integer overflow iteration. | |
3963 | Branch: cfgperl | |
3964 | ! t/op/oct.t toke.c util.c | |
3965 | ____________________________________________________________________________ | |
3966 | [ 3842] By: jhi on 1999/07/31 22:11:03 | |
3967 | Log: Remove a lot of unused regnode codes. | |
3968 | Noticed by Ilya. | |
3969 | Branch: cfgperl | |
3970 | ! regcomp.c regcomp.sym regexec.c regnodes.h | |
3971 | ____________________________________________________________________________ | |
3972 | [ 3841] By: jhi on 1999/07/31 21:53:54 | |
3973 | Log: Make the use64bits and usethreads friendlier/braver; | |
3974 | they no more wimp out if the platform is unknown. | |
3975 | On use64bits if gcc used -DUSE_LONG_LONG is added | |
3976 | to the ccflags (this dependency on gcc caused a slightly weird | |
3977 | reordering of Configure, but things still seem to work.) | |
3978 | Branch: cfgperl | |
3979 | ! Configure README.threads config_h.SH | |
3980 | Branch: metaconfig | |
3981 | ! U/threads/usethreads.U | |
3982 | Branch: metaconfig/U/perl | |
3983 | ! use64bits.U | |
3984 | ____________________________________________________________________________ | |
3985 | [ 3840] By: jhi on 1999/07/31 20:26:22 | |
3986 | Log: Hack the "integer overflow" code some more. | |
3987 | Branch: cfgperl | |
3988 | ! perl.h toke.c util.c | |
3989 | ____________________________________________________________________________ | |
3990 | [ 3839] By: jhi on 1999/07/31 20:22:00 | |
3991 | Log: Test oct() at the 2^32-1 limit. | |
3992 | Branch: cfgperl | |
3993 | ! t/op/oct.t | |
3994 | ____________________________________________________________________________ | |
3995 | [ 3838] By: jhi on 1999/07/31 20:08:43 | |
3996 | Log: Update MANIFEST for #3837. | |
3997 | Branch: cfgperl | |
3998 | ! MANIFEST | |
3999 | ____________________________________________________________________________ | |
4000 | [ 3837] By: jhi on 1999/07/31 20:02:40 | |
4001 | Log: Digital UNIX 4.0D doesn't like perl malloc on sdbm | |
4002 | (a core dump with a corrput stack ensues). | |
4003 | Branch: cfgperl | |
4004 | + ext/SDBM_File/hints/dec_osf.pl | |
4005 | ____________________________________________________________________________ | |
4006 | [ 3836] By: jhi on 1999/07/29 21:09:01 | |
4007 | Log: Allow for Configure -Ubincompat5005 override. | |
4008 | Branch: cfgperl | |
4009 | ! Configure config_h.SH | |
4010 | Branch: metaconfig/U/perl | |
4011 | ! bincompat5005.U | |
4012 | ____________________________________________________________________________ | |
4013 | [ 3835] By: jhi on 1999/07/29 21:04:02 | |
4014 | Log: Make Configure support PERL_BINCOMPAT_5005. | |
4015 | Branch: cfgperl | |
4016 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
4017 | ! config_h.SH | |
4018 | Branch: metaconfig/U/perl | |
4019 | + bincompat5005.U | |
4020 | ____________________________________________________________________________ | |
4021 | [ 3834] By: jhi on 1999/07/29 19:25:35 | |
4022 | Log: AIX tweak, need reported by David R. Fravor <dfavor@austin.ibm.com> | |
4023 | Branch: cfgperl | |
4024 | ! Makefile.SH | |
4025 | ____________________________________________________________________________ | |
4026 | [ 3833] By: jhi on 1999/07/29 14:07:09 | |
4027 | Log: Integrate with Sarathy. I overruled on perldelta | |
4028 | and perldiag. | |
4029 | Branch: cfgperl | |
4030 | !> README.win32 emacs/cperl-mode.el globals.c installperl | |
4031 | !> iperlsys.h makedef.pl perl.h pod/perldelta.pod | |
4032 | !> pod/perldiag.pod pod/perllexwarn.pod toke.c utils/perldoc.PL | |
4033 | !> win32/Makefile win32/bin/pl2bat.pl win32/makefile.mk | |
4034 | !> win32/perllib.c win32/win32.c | |
4035 | ____________________________________________________________________________ | |
4036 | [ 3832] By: jhi on 1999/07/29 14:02:50 | |
4037 | Log: Repent and make overly large integerish | |
4038 | constants non-fatal. They are now promoted | |
4039 | to NVs, accompanied by an overflow warning that | |
4040 | is by default on. | |
4041 | Branch: cfgperl | |
4042 | ! embed.pl global.sym pod/perldelta.pod pod/perldiag.pod pp.c | |
4043 | ! proto.h t/op/oct.t t/pragma/warn/6default t/pragma/warn/util | |
4044 | ! toke.c util.c | |
4045 | ____________________________________________________________________________ | |
4046 | [ 3831] By: jhi on 1999/07/29 11:40:04 | |
4047 | Log: AIX exhibits different error on failed system(). | |
4048 | Slightly modified patch via private email from | |
4049 | David R. Favor <dfavor@austin.ibm.com> | |
4050 | Branch: cfgperl | |
4051 | ! t/op/exec.t | |
4052 | ____________________________________________________________________________ | |
4053 | [ 3830] By: gsar on 1999/07/29 07:46:11 | |
4054 | Log: cperl-mode.el v4.19 | |
4055 | Branch: perl | |
4056 | ! emacs/cperl-mode.el | |
4057 | ____________________________________________________________________________ | |
4058 | [ 3829] By: gsar on 1999/07/29 07:30:35 | |
4059 | Log: From: jan.dubois@ibm.net (Jan Dubois) | |
4060 | Date: Wed, 28 Jul 1999 22:01:42 +0200 | |
4061 | Message-ID: <37aa5f9b.12941448@smtp1.ibm.net> | |
4062 | Subject: [PATCH 5.005_58] win32/bin/pl2bat.pl doesn't work correctly | |
4063 | Branch: perl | |
4064 | ! win32/bin/pl2bat.pl | |
4065 | ____________________________________________________________________________ | |
4066 | [ 3828] By: gsar on 1999/07/29 07:19:27 | |
4067 | Log: tweak previous change for multiple hits | |
4068 | Branch: perl | |
4069 | ! utils/perldoc.PL | |
4070 | ____________________________________________________________________________ | |
4071 | [ 3827] By: gsar on 1999/07/29 07:10:00 | |
4072 | Log: band-aid for perldoc -t broken-ness (the new Pod::Text | |
4073 | really needs a pod2text() compatibility function) | |
4074 | Branch: perl | |
4075 | ! utils/perldoc.PL | |
4076 | ____________________________________________________________________________ | |
4077 | [ 3826] By: gsar on 1999/07/29 01:33:46 | |
4078 | Log: minor tweaks to pods and toke.c comments | |
4079 | Branch: perl | |
4080 | ! pod/perldelta.pod pod/perldiag.pod pod/perllexwarn.pod toke.c | |
4081 | ____________________________________________________________________________ | |
4082 | [ 3825] By: gsar on 1999/07/29 00:12:52 | |
4083 | Log: integrate cfgperl changes into mainline | |
4084 | Branch: perl | |
4085 | !> Configure Porting/Glossary Porting/config.sh Porting/config_H | |
4086 | !> README.threads config_h.SH ext/IO/lib/IO/Handle.pm | |
4087 | !> ext/IO/lib/IO/Socket.pm ext/IO/lib/IO/Socket/INET.pm | |
4088 | !> ext/POSIX/POSIX.xs lib/ExtUtils/Install.pm perl.h | |
4089 | !> pod/perldelta.pod pod/perldiag.pod pod/perlfunc.pod | |
4090 | !> pod/perllexwarn.pod pod/perlre.pod pp.c pp_sys.c | |
4091 | !> t/lib/io_unix.t t/op/oct.t t/pragma/warn/6default | |
4092 | !> t/pragma/warn/util toke.c util.c | |
4093 | ____________________________________________________________________________ | |
4094 | [ 3824] By: jhi on 1999/07/28 21:15:04 | |
4095 | Log: Tiny patch to go over #3820 (via private mail from Lincoln). | |
4096 | Branch: cfgperl | |
4097 | ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm | |
4098 | ! ext/IO/lib/IO/Socket/INET.pm | |
4099 | ____________________________________________________________________________ | |
4100 | [ 3823] By: jhi on 1999/07/28 20:29:17 | |
4101 | Log: Continue pack() doc honing. | |
4102 | Branch: cfgperl | |
4103 | ! pod/perlfunc.pod | |
4104 | ____________________________________________________________________________ | |
4105 | [ 3822] By: jhi on 1999/07/28 20:17:37 | |
4106 | Log: Enhance pack() doc. | |
4107 | Branch: cfgperl | |
4108 | ! pod/perlfunc.pod | |
4109 | ____________________________________________________________________________ | |
4110 | [ 3821] By: jhi on 1999/07/28 18:34:50 | |
4111 | Log: UNIX Domain Sockets are not implemented under QNX. | |
4112 | ||
4113 | From: Norton Allen <allen@huarp.harvard.edu> | |
4114 | To: perl5-porters@perl.org | |
4115 | Subject: [ID 19990728.010] Patch:t/lib/io_unix.t _58 QNX | |
4116 | Date: Wed, 28 Jul 1999 14:07:16 -0400 (edt) | |
4117 | Message-Id: <199907281807.OAA13167@bottesini.harvard.edu> | |
4118 | Branch: cfgperl | |
4119 | ! t/lib/io_unix.t | |
4120 | ____________________________________________________________________________ | |
4121 | [ 3820] By: jhi on 1999/07/28 18:13:37 | |
4122 | Log: IO::* enhancements. | |
4123 | ||
4124 | 1) write() and syswrite() will now accept a single-argument | |
4125 | form of the call, for consistency with Perl's syswrite(). | |
4126 | 2) You can create a TCP-based IO::Socket::INET without forcing | |
4127 | a connect attempt. This allows you to configure its options | |
4128 | (like making it non-blocking) and then call connect() manually. | |
4129 | 3) Fixed a bug that prevented the IO::Socket::protocol() accessor | |
4130 | from ever returning the correct value. | |
4131 | ||
4132 | From: Lincoln Stein <lstein@formaggio.cshl.org> | |
4133 | To: Graham Barr <gbarr@pobox.com> | |
4134 | Cc: Lincoln Stein <lstein@cshl.org>, perl5-porters@perl.org | |
4135 | Subject: Re: patch for IO::* | |
4136 | Date: Wed, 28 Jul 1999 13:55:05 -0400 (EDT) | |
4137 | Message-ID: <14239.17401.330408.145295@formaggio.cshl.org> | |
4138 | Branch: cfgperl | |
4139 | ! ext/IO/lib/IO/Handle.pm ext/IO/lib/IO/Socket.pm | |
4140 | ! ext/IO/lib/IO/Socket/INET.pm | |
4141 | ____________________________________________________________________________ | |
4142 | [ 3819] By: gsar on 1999/07/28 18:08:06 | |
4143 | Log: misc PERL_OBJECT tweaks; perlcore.dll is now perl56.dll | |
4144 | Branch: perl | |
4145 | ! README.win32 globals.c installperl iperlsys.h makedef.pl | |
4146 | ! perl.h win32/Makefile win32/makefile.mk win32/perllib.c | |
4147 | ! win32/win32.c | |
4148 | ____________________________________________________________________________ | |
4149 | [ 3818] By: jhi on 1999/07/28 17:48:16 | |
4150 | Log: Need to add QNX to the list for DONT_DECLARE_STD. | |
4151 | (The elimination of use of the _() macro apparently triggered | |
4152 | an incompatability with a #define of atof) | |
4153 | ||
4154 | From: Norton Allen <allen@huarp.harvard.edu> | |
4155 | To: perl5-porters@perl.org | |
4156 | Subject: [ID 19990728.008] Patch:perl.h _58 QNX | |
4157 | Date: Wed, 28 Jul 1999 13:06:23 -0400 (edt) | |
4158 | Message-Id: <199907281706.NAA07617@bottesini.harvard.edu> | |
4159 | Branch: cfgperl | |
4160 | ! perl.h | |
4161 | ____________________________________________________________________________ | |
4162 | [ 3817] By: jhi on 1999/07/28 17:46:30 | |
4163 | Log: Need to add some more conditions to deal with the case | |
4164 | defined(HAS_GETSPNAM) && ! defined(HAS_GETSPENT) | |
4165 | which is true for QNX4. | |
4166 | From: Norton Allen <allen@huarp.harvard.edu> | |
4167 | To: perl5-porters@perl.org | |
4168 | Subject: [ID 19990728.009] Patch:pp_sys.c _58 QNX | |
4169 | Date: Wed, 28 Jul 1999 13:08:42 -0400 (edt) | |
4170 | Message-Id: <199907281708.NAA07947@bottesini.harvard.edu> | |
4171 | Branch: cfgperl | |
4172 | ! pp_sys.c | |
4173 | ____________________________________________________________________________ | |
4174 | [ 3816] By: jhi on 1999/07/28 17:43:40 | |
4175 | Log: The QNX shell needs a couple more semicolons. | |
4176 | ||
4177 | From: Norton Allen <allen@huarp.harvard.edu> | |
4178 | To: perl5-porters@perl.org | |
4179 | Subject: [ID 19990728.007] Patch:Configure _58 QNX | |
4180 | Date: Wed, 28 Jul 1999 13:03:00 -0400 (edt) | |
4181 | Message-Id: <199907281703.NAA07363@bottesini.harvard.edu> | |
4182 | ||
4183 | plus silence metalint moanings on vendorprefix. | |
4184 | Branch: cfgperl | |
4185 | ! Configure Porting/Glossary Porting/config.sh Porting/config_H | |
4186 | ! config_h.SH | |
4187 | ____________________________________________________________________________ | |
4188 | [ 3815] By: jhi on 1999/07/28 17:31:11 | |
4189 | Log: Silence metalint on vendorprefix.U. | |
4190 | Branch: metaconfig | |
4191 | ! U/installdirs/vendorprefix.U | |
4192 | ____________________________________________________________________________ | |
4193 | [ 3814] By: jhi on 1999/07/28 17:13:29 | |
4194 | Log: QNX shell needs more semicolons. | |
4195 | Branch: metaconfig/U/perl | |
4196 | ! Extensions.U | |
4197 | ____________________________________________________________________________ | |
4198 | [ 3813] By: jhi on 1999/07/28 17:05:08 | |
4199 | Log: Integrate with Sarathy. | |
4200 | Branch: cfgperl | |
4201 | !> lib/ExtUtils/MM_Unix.pm | |
4202 | ____________________________________________________________________________ | |
4203 | [ 3812] By: jhi on 1999/07/28 16:20:17 | |
4204 | Log: Fix a typo, un-shout, and reformat the installation output. | |
4205 | Branch: cfgperl | |
4206 | ! lib/ExtUtils/Install.pm | |
4207 | ____________________________________________________________________________ | |
4208 | [ 3811] By: gsar on 1999/07/28 15:41:11 | |
4209 | Log: fix typo that caused INSTALLPRIVLIB to have doubled 'perl5' | |
4210 | Branch: perl | |
4211 | ! lib/ExtUtils/MM_Unix.pm | |
4212 | ____________________________________________________________________________ | |
4213 | [ 3810] By: jhi on 1999/07/28 13:55:57 | |
4214 | Log: Talk more about subsecond things in perlfunc. | |
4215 | (Yes, redundant with perlfaq8.) | |
4216 | Branch: cfgperl | |
4217 | ! pod/perlfunc.pod | |
4218 | ____________________________________________________________________________ | |
4219 | [ 3809] By: jhi on 1999/07/28 07:23:48 | |
4220 | Log: Integrate with Sarathy. | |
4221 | Branch: cfgperl | |
4222 | !> configpm hints/freebsd.sh lib/Pod/Html.pm perl.h t/op/grent.t | |
4223 | !> t/op/pwent.t | |
4224 | ____________________________________________________________________________ | |
4225 | [ 3808] By: jhi on 1999/07/28 07:23:03 | |
4226 | Log: Document toke.c. | |
4227 | From: Nathan Torkington <gnat@frii.com> | |
4228 | To: perl5-porters@perl.org | |
4229 | Subject: Re: toke.c patch, work in progress | |
4230 | Date: Tue, 27 Jul 1999 23:02:09 -0600 (MDT) | |
4231 | Message-ID: <14238.36561.979473.667842@localhost.frii.com> | |
4232 | Branch: cfgperl | |
4233 | ! toke.c | |
4234 | ____________________________________________________________________________ | |
4235 | [ 3807] By: jhi on 1999/07/28 07:10:56 | |
4236 | Log: perlre clarification. | |
4237 | ||
4238 | From: Ian Phillipps <ian@dial.pipex.com> | |
4239 | To: Perl 5 Porters <perl5-porters@perl.org> | |
4240 | Subject: [PATCH 5.00557] Add definite article to perlre.pod | |
4241 | Date: Tue, 27 Jul 1999 10:46:29 +0100 | |
4242 | Message-ID: <19990727104629.A10074@homer.diplex.co.uk> | |
4243 | Branch: cfgperl | |
4244 | ! pod/perlre.pod | |
4245 | ____________________________________________________________________________ | |
4246 | [ 3806] By: gsar on 1999/07/28 07:07:46 | |
4247 | Log: fix the perl -V breakage | |
4248 | ||
4249 | From: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
4250 | To: Jarkko Hietaniemi <jhi@iki.fi> | |
4251 | Cc: "John L. Allen" <allen@grumman.com>, perl5-porters@perl.org, | |
4252 | gsar@activestate.com | |
4253 | Subject: Re: Follow up to: _58 on AIX 431 | |
4254 | Date: Tue, 27 Jul 1999 17:42:00 -0400 | |
4255 | Message-ID: <19990727174200.A12775@monk.mps.ohio-state.edu> | |
4256 | Branch: perl | |
4257 | ! configpm | |
4258 | ____________________________________________________________________________ | |
4259 | [ 3805] By: gsar on 1999/07/28 07:03:34 | |
4260 | Log: avoid warning (from Doug MacEachern) | |
4261 | Branch: perl | |
4262 | ! perl.h | |
4263 | ____________________________________________________________________________ | |
4264 | [ 3804] By: gsar on 1999/07/28 06:59:30 | |
4265 | Log: Pod::Html tweak | |
4266 | ||
4267 | From: jan.dubois@ibm.net (Jan Dubois) | |
4268 | To: perl5-porters@perl.org | |
4269 | Subject: [PATCH 5.005_58] pod2html: Missing chunk for VMS filenames | |
4270 | Date: Tue, 27 Jul 1999 22:14:12 +0200 | |
4271 | Message-ID: <37a50af0.46171380@smtp1.ibm.net> | |
4272 | Branch: perl | |
4273 | ! lib/Pod/Html.pm | |
4274 | ____________________________________________________________________________ | |
4275 | [ 3803] By: gsar on 1999/07/28 06:56:38 | |
4276 | Log: freebsd hints update | |
4277 | ||
4278 | From: Anton Berezin <tobez@plab.ku.dk> | |
4279 | To: perl5-porters@perl.org | |
4280 | Subject: [ID 19990727.034] Not OK: perl 5.00558 on i386-freebsd-thread4.0-current (UNINSTALLED) | |
4281 | Date: Tue, 27 Jul 1999 20:29:39 +0200 (CEST) | |
4282 | Message-Id: <199907271829.UAA62861@lion.plab.ku.dk> | |
4283 | Branch: perl | |
4284 | ! hints/freebsd.sh | |
4285 | ____________________________________________________________________________ | |
4286 | [ 3802] By: gsar on 1999/07/28 06:51:32 | |
4287 | Log: cosmetic testsuite patch | |
4288 | ||
4289 | From: Graham Barr <gbarr@ti.com> | |
4290 | To: Perl5 Porters <perl5-porters@perl.org> | |
4291 | Subject: 5.005_58 build | |
4292 | Date: Tue, 27 Jul 1999 08:09:25 -0500 | |
4293 | Message-ID: <19990727080925.F4683@dal.asp.ti.com> | |
4294 | Branch: perl | |
4295 | ! t/op/grent.t t/op/pwent.t | |
4296 | ____________________________________________________________________________ | |
4297 | [ 3801] By: jhi on 1999/07/27 13:49:39 | |
4298 | Log: Minuscule cleanup of the integer overflow patch. | |
4299 | Branch: cfgperl | |
4300 | ! util.c | |
4301 | ____________________________________________________________________________ | |
4302 | [ 3800] By: jhi on 1999/07/27 13:37:23 | |
4303 | Log: Test hex('x...'). | |
4304 | Branch: cfgperl | |
4305 | ! t/op/oct.t | |
4306 | ____________________________________________________________________________ | |
4307 | [ 3799] By: jhi on 1999/07/27 12:45:45 | |
4308 | Log: Integrate with Sarathy (5.005_58). | |
4309 | Branch: cfgperl | |
4310 | - ext/B/byteperl.c | |
4311 | !> Changes MANIFEST Porting/makerel configpm embed.h embed.pl | |
4312 | !> ext/Devel/DProf/DProf.xs ext/POSIX/POSIX.pm | |
4313 | !> ext/SDBM_File/Makefile.PL lib/AutoLoader.pm | |
4314 | !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MakeMaker.pm | |
4315 | !> lib/Pod/Parser.pm lib/SelfLoader.pm os2/OS2/REXX/Makefile.PL | |
4316 | !> perl.h pod/perldelta.pod pod/perlfaq9.pod pod/perlhist.pod | |
4317 | !> win32/bin/pl2bat.pl win32/config_H.bc win32/config_H.gc | |
4318 | !> win32/config_H.vc | |
4319 | ____________________________________________________________________________ | |
4320 | [ 3798] By: jhi on 1999/07/27 12:42:43 | |
4321 | Log: Integer constants (0x, 0[0-7], 0b) now overflow fatally, | |
4322 | they used to be just optional lexical warnings. | |
4323 | Also, with warnings turned on, constants > 2**32-1 | |
4324 | trigger a non-portability warning. | |
4325 | Branch: cfgperl | |
4326 | ! pod/perldelta.pod pod/perldiag.pod pod/perllexwarn.pod pp.c | |
4327 | ! t/op/oct.t t/pragma/warn/6default t/pragma/warn/util toke.c | |
4328 | ! util.c | |
4329 | ____________________________________________________________________________ | |
4330 | [ 3797] By: gsar on 1999/07/27 10:48:27 | |
4331 | Log: here lies 5.005_58 | |
4332 | Branch: perl | |
4333 | - ext/B/byteperl.c | |
4334 | ! Changes MANIFEST Porting/makerel pod/perldelta.pod | |
4335 | ! pod/perlfaq9.pod pod/perlhist.pod | |
4336 | ||
4337 | ---------------- | |
4338 | Version 5.005_58 | |
69dec784 GS |
4339 | ---------------- |
4340 | ||
4341 | ____________________________________________________________________________ | |
f29c64d6 GS |
4342 | [ 3796] By: gsar on 1999/07/27 09:23:42 |
4343 | Log: regenerate win32/config_H.?c | |
4344 | Branch: perl | |
4345 | ! win32/config_H.bc win32/config_H.gc win32/config_H.vc | |
4346 | ____________________________________________________________________________ | |
4347 | [ 3795] By: gsar on 1999/07/27 09:02:31 | |
4348 | Log: From: Tye McQueen <tye@metronet.com> | |
4349 | Date: Mon, 26 Jul 1999 19:19:22 -0500 (CDT) | |