This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5.git
16 years agoUse vnewSVpvf() rather than sv_vcatpvf() onto a newly created empty
Nicholas Clark [Sat, 6 Oct 2007 12:54:32 +0000 (12:54 +0000)]
Use vnewSVpvf() rather than sv_vcatpvf() onto a newly created empty
string.

p4raw-id: //depot/perl@32044

16 years agoAvoid using *pvf functions when the format string is a fixed string.
Nicholas Clark [Sat, 6 Oct 2007 12:23:15 +0000 (12:23 +0000)]
Avoid using *pvf functions when the format string is a fixed string.

p4raw-id: //depot/perl@32043

16 years agoDirectly create the SV with Perl_newSVpvf() rather than using
Nicholas Clark [Sat, 6 Oct 2007 12:22:58 +0000 (12:22 +0000)]
Directly create the SV with Perl_newSVpvf() rather than using
Perl_catSVpvf() to extend a zero-length SV.

p4raw-id: //depot/perl@32042

16 years agoOptimise the logic in isPRINT(), possible following Jarkko's bugfix
Nicholas Clark [Sat, 6 Oct 2007 10:27:17 +0000 (10:27 +0000)]
Optimise the logic in isPRINT(), possible following Jarkko's bugfix
of change 10855. (to the implementation added in change 18)
Nothing that a decent compiler optimiser would have missed.

p4raw-id: //depot/perl@32041

16 years agoRevert one hunk of change 32034 that had the possibility of being buggy
Nicholas Clark [Sat, 6 Oct 2007 10:23:26 +0000 (10:23 +0000)]
Revert one hunk of change 32034 that had the possibility of being buggy
(the sprintf "%c" code will work correctly when the SV is UTF-8).
Audit all the rest for UTF-8 correctness, and force SvUTF-8_off() in
utf8.c to ensure correctness. (The string is reset to "", so this will
not be a behaviour change.)

p4raw-id: //depot/perl@32040

16 years agoIn the MAD code, eliminate one Perl_sv_catpvf() and convert one
Nicholas Clark [Fri, 5 Oct 2007 23:03:14 +0000 (23:03 +0000)]
In the MAD code, eliminate one Perl_sv_catpvf() and convert one
construction to *pvs.

p4raw-id: //depot/perl@32039

16 years agoChange a sv_catpv() to sv_catpvs().
Nicholas Clark [Fri, 5 Oct 2007 23:02:16 +0000 (23:02 +0000)]
Change a sv_catpv() to sv_catpvs().

p4raw-id: //depot/perl@32038

16 years agosymlink() wrapper for VMS that prevents the creation of symlinks
Craig A. Berry [Fri, 5 Oct 2007 22:37:23 +0000 (22:37 +0000)]
symlink() wrapper for VMS that prevents the creation of symlinks
with zero-length names.  The standards disallow that and the test
suite gets indigestion.

p4raw-id: //depot/perl@32037

16 years agoEliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHAR
Nicholas Clark [Fri, 5 Oct 2007 21:46:39 +0000 (21:46 +0000)]
Eliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHAR

p4raw-id: //depot/perl@32036

16 years agoPL_cshname is actually a constant value known at compile time.
Nicholas Clark [Fri, 5 Oct 2007 20:31:23 +0000 (20:31 +0000)]
PL_cshname is actually a constant value known at compile time.
PL_cshlen can be calculated by the compiler. So eliminate both as
interpreter variables, and the code that calculates PL_cshlen at
runtime.

p4raw-id: //depot/perl@32035

16 years agoEliminate most *printf-like calls that use a simple "%c" format,
Nicholas Clark [Fri, 5 Oct 2007 19:48:27 +0000 (19:48 +0000)]
Eliminate most *printf-like calls that use a simple "%c" format,
replacing them with constructions that are more efficient because they
avoid the overhead of the *printf format parser and interpreter code.

p4raw-id: //depot/perl@32034

16 years agoWith the demise of PERL_FLEXIBLE_EXCEPTIONS, S_docatch_body() can be
Nicholas Clark [Fri, 5 Oct 2007 18:15:06 +0000 (18:15 +0000)]
With the demise of PERL_FLEXIBLE_EXCEPTIONS, S_docatch_body() can be
inlined and eliminated.

p4raw-id: //depot/perl@32033

16 years agoAs PL_hinthv is actually tied, need to call SvSETMAGIC() after the
Nicholas Clark [Fri, 5 Oct 2007 16:08:12 +0000 (16:08 +0000)]
As PL_hinthv is actually tied, need to call SvSETMAGIC() after the
store to it. Gosh, the tied hash API is clunky.

p4raw-id: //depot/perl@32032

16 years agoNew [PATCH] use 5.006; use 5.10.0
Robin Barker [Fri, 5 Oct 2007 12:12:05 +0000 (13:12 +0100)]
New [PATCH] use 5.006; use 5.10.0
From: "Robin Barker" <Robin.Barker@npl.co.uk>
Message-ID: <2C2E01334A940D4792B3E115F95B7226016048DB@exchsvr1.npl.ad.local>

p4raw-id: //depot/perl@32031

16 years agoUpdate add-package.pl
Jos I. Boumans [Thu, 4 Oct 2007 11:24:05 +0000 (13:24 +0200)]
Update add-package.pl
From: "Jos I. Boumans" <jos@dwim.org>
Message-Id: <9D8CA217-8B5B-487E-96A4-92D9047FE921@dwim.org>

p4raw-id: //depot/perl@32030

16 years agopatch@32028 POD updates for VMS
John E. Malmberg [Thu, 4 Oct 2007 22:25:34 +0000 (17:25 -0500)]
patch@32028 POD updates for VMS
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <4705AEAE.9060100@qsl.net>

p4raw-id: //depot/perl@32029

16 years agoVMS override for Module::Build::Base::find_perl_interpreter,
Craig A. Berry [Thu, 4 Oct 2007 18:02:38 +0000 (18:02 +0000)]
VMS override for Module::Build::Base::find_perl_interpreter,
allowing tests to pass from t/TEST as well as harness.

p4raw-id: //depot/perl@32028

16 years agoTry a bit harder to get *PL_sighandlerp to agree with its
Craig A. Berry [Thu, 4 Oct 2007 15:06:59 +0000 (15:06 +0000)]
Try a bit harder to get *PL_sighandlerp to agree with its
prototype based on SA_SIGINFO definedness rather than Win32-ness.

p4raw-id: //depot/perl@32027

16 years agoPOD cleanups
David Landgren [Fri, 28 Sep 2007 20:42:56 +0000 (22:42 +0200)]
POD cleanups
Message-ID: <46FD4B30.9070802@landgren.net>

p4raw-id: //depot/perl@32026

16 years agoS_dopoptosub() is just a wrapper for S_dopoptosub_at(), so make it a
Nicholas Clark [Thu, 4 Oct 2007 10:39:05 +0000 (10:39 +0000)]
S_dopoptosub() is just a wrapper for S_dopoptosub_at(), so make it a
macro. (Also slightly shrinks the object code for x86 with -Os)

p4raw-id: //depot/perl@32024

16 years agoUpgrade to Devel::PPPort 3.13
Marcus Holland-Moritz [Thu, 4 Oct 2007 10:37:47 +0000 (10:37 +0000)]
Upgrade to Devel::PPPort 3.13

p4raw-id: //depot/perl@32023

16 years agoUpdate Module::Load::Conditional to 0.20
Rafael Garcia-Suarez [Thu, 4 Oct 2007 09:11:18 +0000 (09:11 +0000)]
Update Module::Load::Conditional to 0.20

p4raw-id: //depot/perl@32022

16 years agoUpdate Term::UI to 0.16
Rafael Garcia-Suarez [Thu, 4 Oct 2007 09:06:20 +0000 (09:06 +0000)]
Update Term::UI to 0.16

p4raw-id: //depot/perl@32021

16 years agoFix warnings about Sighandler_t type on Win32.
Rafael Garcia-Suarez [Thu, 4 Oct 2007 08:32:11 +0000 (08:32 +0000)]
Fix warnings about Sighandler_t type on Win32.

p4raw-id: //depot/perl@32020

16 years agoI can't spell (well know fact) and while I'm there correct other
Nicholas Clark [Wed, 3 Oct 2007 20:39:37 +0000 (20:39 +0000)]
I can't spell (well know fact) and while I'm there correct other
spelling, grammar and capitalisation imperfections.

p4raw-id: //depot/perl@32017

16 years agoTest for a subtle pre-5.10 bug. Before 5.10 the overloading flag was
Nicholas Clark [Wed, 3 Oct 2007 20:34:13 +0000 (20:34 +0000)]
Test for a subtle pre-5.10 bug. Before 5.10 the overloading flag was
stored on the reference rather than the referent. Despite the fact that
objects can only be accessed via references (even internally), the
referent actually knows that it's blessed, not the references. So
taking a new, unrelated, reference to it gives an object. However, the
overloading-or-not flag was on the reference prior to 5.10, and taking
a new reference didn't (use to) copy it (prior to 5.8.9).
So test that the bug can't return - overloading should work on a
reference to something already blessed into a package with overloading.

p4raw-id: //depot/perl@32016

16 years agoReverse change #31978
Rafael Garcia-Suarez [Wed, 3 Oct 2007 16:21:59 +0000 (16:21 +0000)]
Reverse change #31978
p4raw-link: @31978 on //depot/perl: d804f4346b490171e547d5cc512063e53da10708

p4raw-id: //depot/perl@32015

16 years agoOne const too much. (Unfortunately, the Copy macro casts
Marcus Holland-Moritz [Wed, 3 Oct 2007 11:29:58 +0000 (11:29 +0000)]
One const too much. (Unfortunately, the Copy macro casts
the constness away, so the compiler cannot detect this.)

p4raw-id: //depot/perl@32014

16 years agoAdapt definition of Sighandler_t to go with change #32012
Rafael Garcia-Suarez [Wed, 3 Oct 2007 11:21:59 +0000 (11:21 +0000)]
Adapt definition of Sighandler_t to go with change #32012
p4raw-link: @32012 on //depot/perl: b6455c53c26be8a62e12a3f2a24a3a5086dd2c7b

p4raw-id: //depot/perl@32013

16 years ago[perl #45513] Test failures on amd64-freebsd 6.2
Slaven Rezic [Sat, 29 Sep 2007 05:38:08 +0000 (22:38 -0700)]
[perl #45513] Test failures on amd64-freebsd 6.2
From: "slaven@rezic.de via RT" <perlbug-followup@perl.org>
Message-ID: <rt-3.6.HEAD-5916-1191069483-1553.45513-15-0@perl.org>

p4raw-id: //depot/perl@32012

16 years ago[perl #46019] Documentation for 'srand' has a problem in code snippet
ben@linuxgazette.net [Tue, 2 Oct 2007 21:33:49 +0000 (14:33 -0700)]
[perl #46019] Documentation for 'srand' has a problem in code snippet
From: ben@linuxgazette.net (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.6.HEAD-5916-1191386029-1116.46019-75-0@perl.org>

p4raw-id: //depot/perl@32011

16 years agoUpdate to a file missed in change #32008.
Steve Peters [Wed, 3 Oct 2007 04:07:08 +0000 (04:07 +0000)]
Update to a file missed in change #32008.
p4raw-link: @32008 on //depot/perl: 547d3dfd0918e1335aa86e352904fbb22cccfb6d

p4raw-id: //depot/perl@32010

16 years agoUpgrade to Getopt-Long-2.37
Steve Peters [Tue, 2 Oct 2007 13:56:07 +0000 (13:56 +0000)]
Upgrade to Getopt-Long-2.37

p4raw-id: //depot/perl@32009

16 years agoUpgrade to CPAN-1.9203
Steve Peters [Tue, 2 Oct 2007 13:39:06 +0000 (13:39 +0000)]
Upgrade to CPAN-1.9203

p4raw-id: //depot/perl@32008

16 years agoNeed to quote the version number of perl in perlivp, now
Rafael Garcia-Suarez [Tue, 2 Oct 2007 12:44:18 +0000 (12:44 +0000)]
Need to quote the version number of perl in perlivp, now
that it finishes by 0

p4raw-id: //depot/perl@32007

16 years ago/cygdrive is configurable
Jerry D. Hedden [Mon, 1 Oct 2007 19:32:19 +0000 (15:32 -0400)]
/cygdrive is configurable
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510710011632n175427fdx39e173372862526e@mail.gmail.com>

p4raw-id: //depot/perl@32006

16 years agouse base problem
Shawn [Mon, 1 Oct 2007 12:45:32 +0000 (05:45 -0700)]
use base problem
Message-ID: <1191267932.150186.12570@d55g2000hsg.googlegroups.com>

(This patch is actually not needed for 5.10, but useful for earlier perls)

p4raw-id: //depot/perl@32005

16 years agoRe: [patch] clean out remnants of DEBUGGING_OPS (was opcode op_type:9)
Jim Cromie [Mon, 1 Oct 2007 18:59:43 +0000 (12:59 -0600)]
Re: [patch] clean out remnants of DEBUGGING_OPS (was opcode op_type:9)
Message-ID: <470197FF.5040709@gmail.com>

p4raw-id: //depot/perl@32004

16 years agowas Re: Freeze ?
John Peacock [Tue, 2 Oct 2007 05:28:31 +0000 (01:28 -0400)]
was Re: Freeze ?
Message-ID: <47020F3F.9070604@havurah-software.org>

p4raw-id: //depot/perl@32003

16 years agoAudrey spotted a spurious "Unicode".
Nicholas Clark [Tue, 2 Oct 2007 07:21:12 +0000 (07:21 +0000)]
Audrey spotted a spurious "Unicode".

p4raw-id: //depot/perl@32002

16 years agoNothing is using IoSUBPROCESS() so eliminate xio_subprocess.
Nicholas Clark [Mon, 1 Oct 2007 12:13:36 +0000 (12:13 +0000)]
Nothing is using IoSUBPROCESS() so eliminate xio_subprocess.
Make xio_flags a U8, which is what it should have been all along
(rather than a char, which might be signed). B.xs had its wrapper as U8

p4raw-id: //depot/perl@32001

16 years agoPatch by jlv <jloverso@mathworks.com> to stop NEXT::AUTOLOAD
Rafael Garcia-Suarez [Mon, 1 Oct 2007 12:00:30 +0000 (12:00 +0000)]
Patch by jlv <jloverso@mathworks.com> to stop NEXT::AUTOLOAD
from emitting warnings under the debugger.
See: http://rt.cpan.org/Public/Bug/Display.html?id=25053

p4raw-id: //depot/perl@32000

16 years ago[patch@31998] Fix M:B: tilde.t tests on VMS
John E. Malmberg [Sun, 30 Sep 2007 09:13:09 +0000 (04:13 -0500)]
[patch@31998] Fix M:B: tilde.t tests on VMS
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <46FFAEF5.1060702@qsl.net>

p4raw-id: //depot/perl@31999

16 years agoRe: [patch@31988] Revised Module::Build fixes for VMS.
John E. Malmberg [Sat, 29 Sep 2007 14:50:37 +0000 (09:50 -0500)]
Re: [patch@31988] Revised Module::Build fixes for VMS.
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <46FEAC8D.1080506@qsl.net>

Missed one case in #31995.

p4raw-id: //depot/perl@31998

16 years agobring File::Path up to 2.01 (was: Re: Freeze ?)
David Landgren [Sun, 30 Sep 2007 15:19:49 +0000 (17:19 +0200)]
bring File::Path up to 2.01 (was: Re: Freeze ?)
Message-ID: <46FFA275.6010304@landgren.net>

p4raw-id: //depot/perl@31997

16 years ago[patch@31988] Revised Module::Build fixes for VMS.
John E. Malmberg [Fri, 28 Sep 2007 08:55:27 +0000 (03:55 -0500)]
[patch@31988] Revised Module::Build fixes for VMS.
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <46FD07CF.5040504@qsl.net>

p4raw-id: //depot/perl@31995

16 years agoMake all of B work on 5.8.x
Nicholas Clark [Fri, 28 Sep 2007 18:04:55 +0000 (18:04 +0000)]
Make all of B work on 5.8.x

p4raw-id: //depot/perl@31994

16 years agoDocument hint symbols in B::Concise
Rafael Garcia-Suarez [Fri, 28 Sep 2007 13:07:35 +0000 (13:07 +0000)]
Document hint symbols in B::Concise

p4raw-id: //depot/perl@31993

16 years agoHopefully really fix test failures with -C
Nicholas Clark [Fri, 28 Sep 2007 12:40:39 +0000 (12:40 +0000)]
Hopefully really fix test failures with -C

p4raw-id: //depot/perl@31992

16 years agoRemove unneeded cast
Rafael Garcia-Suarez [Fri, 28 Sep 2007 08:20:32 +0000 (08:20 +0000)]
Remove unneeded cast

p4raw-id: //depot/perl@31991

16 years agoChange 31987 forgot to re-run embed.pl
Nicholas Clark [Fri, 28 Sep 2007 07:32:28 +0000 (07:32 +0000)]
Change 31987 forgot to re-run embed.pl

p4raw-id: //depot/perl@31990

16 years ago[patch] s/thinngy/thingy/
Jim Cromie [Thu, 27 Sep 2007 19:29:43 +0000 (13:29 -0600)]
[patch] s/thinngy/thingy/
Message-ID: <46FC5907.4010205@gmail.com>

p4raw-id: //depot/perl@31989

16 years agoI forgot to patch for the threaded case
Rafael Garcia-Suarez [Thu, 27 Sep 2007 09:55:35 +0000 (09:55 +0000)]
I forgot to patch for the threaded case

p4raw-id: //depot/perl@31988

16 years agoMove the bool v_string_ok into the U16-sized gap in the interpreter
Nicholas Clark [Thu, 27 Sep 2007 09:40:58 +0000 (09:40 +0000)]
Move the bool v_string_ok into the U16-sized gap in the interpreter
structure. Add a "spare" variable so that we can add the first post-
5.10.0 bool variable without growing the interpreter structure.

p4raw-id: //depot/perl@31987

16 years agoHopefully fix test failures with -C
Rafael Garcia-Suarez [Thu, 27 Sep 2007 09:38:53 +0000 (09:38 +0000)]
Hopefully fix test failures with -C

p4raw-id: //depot/perl@31986

16 years agoFix test introduced in #31973 that failed on Win32
Steve Hay [Thu, 27 Sep 2007 08:56:05 +0000 (08:56 +0000)]
Fix test introduced in #31973 that failed on Win32
(Win32 doesn't like the runperl() prog having newlines in it)

p4raw-id: //depot/perl@31985

16 years agoMake large file support the default on VMS systems that have it. This in turn
Craig A. Berry [Thu, 27 Sep 2007 00:57:00 +0000 (00:57 +0000)]
Make large file support the default on VMS systems that have it.  This in turn
makes _USE_STD_STAT and symbolic link support the defaults where available.

p4raw-id: //depot/perl@31984

16 years agoAPI spelling patch, by Jerry D. Hedden
Rafael Garcia-Suarez [Wed, 26 Sep 2007 16:57:34 +0000 (16:57 +0000)]
API spelling patch, by Jerry D. Hedden

p4raw-id: //depot/perl@31983

16 years agoMaybe the default order of directories in @INC should be modified.
Rafael Garcia-Suarez [Wed, 26 Sep 2007 16:46:36 +0000 (16:46 +0000)]
Maybe the default order of directories in @INC should be modified.

p4raw-id: //depot/perl@31982

16 years agoChange 31977 introduced a bug (failing to set the return value of
Nicholas Clark [Wed, 26 Sep 2007 16:32:45 +0000 (16:32 +0000)]
Change 31977 introduced a bug (failing to set the return value of
mro::get_linear_isa() when passed a second parameter). However, there
were no tests for this. Fix both.

p4raw-id: //depot/perl@31981

16 years agoCheck rename() under Cygwin
Jerry D. Hedden [Tue, 25 Sep 2007 11:55:53 +0000 (07:55 -0400)]
Check rename() under Cygwin
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510709250855o2c9115cdi6ce830a9ccaec696@mail.gmail.com>

p4raw-id: //depot/perl@31980

16 years agoNo more ld2 and perlld under Cygwin
Jerry D. Hedden [Tue, 25 Sep 2007 10:45:47 +0000 (06:45 -0400)]
No more ld2 and perlld under Cygwin
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510709250745s1d17ae54y6403711e00b306a0@mail.gmail.com>

p4raw-id: //depot/perl@31979

16 years agoRE: [PATCH] use 5.010 is ugly; use 5.10.0 warns
Robin Barker [Wed, 26 Sep 2007 13:25:49 +0000 (14:25 +0100)]
RE: [PATCH] use 5.010 is ugly; use 5.10.0 warns
From: "Robin Barker" <Robin.Barker@npl.co.uk>
Message-ID: <2C2E01334A940D4792B3E115F95B7226C9D1C3@exchsvr1.npl.ad.local>

p4raw-id: //depot/perl@31978

16 years agoChange the way of determining the MRO algorithm used from an enum
Nicholas Clark [Wed, 26 Sep 2007 10:21:50 +0000 (10:21 +0000)]
Change the way of determining the MRO algorithm used from an enum
defined in the header, to a pointer to a structure. This allows the
flexibility to easily add more MROs in the future, and to provide an
API to do so. Dispatch in mro.c is now via the structure pointed to,
rather than switch statements on the value of the enum.

p4raw-id: //depot/perl@31977

16 years agoOption spelling nit for AIX
Rafael Garcia-Suarez [Wed, 26 Sep 2007 09:07:59 +0000 (09:07 +0000)]
Option spelling nit for AIX

p4raw-id: //depot/perl@31976

16 years agoOn VAX, feeding a bare "NaN" to nawk causes nawk to core dump since
Rafael Garcia-Suarez [Wed, 26 Sep 2007 09:00:08 +0000 (09:00 +0000)]
On VAX, feeding a bare "NaN" to nawk causes nawk to core dump since
it tries to interpret it as a number, which causes an FP exception.
(Patch from NetBSD)

p4raw-id: //depot/perl@31975

16 years agoAssume NetBSD has touch
Rafael Garcia-Suarez [Wed, 26 Sep 2007 08:57:41 +0000 (08:57 +0000)]
Assume NetBSD has touch
(patch from NetBSD package)

p4raw-id: //depot/perl@31974

16 years agoRe: [patch] improve B::Concise -src support
Jim Cromie [Tue, 25 Sep 2007 17:34:09 +0000 (11:34 -0600)]
Re: [patch] improve B::Concise -src support
Message-ID: <46F99AF1.1080108@gmail.com>

p4raw-id: //depot/perl@31973

16 years agoUpdate to README.cygwin by Jerry D. Hedden
Rafael Garcia-Suarez [Wed, 26 Sep 2007 08:20:14 +0000 (08:20 +0000)]
Update to README.cygwin by Jerry D. Hedden

p4raw-id: //depot/perl@31972

16 years agoextend PL_veto_cleanup to all platforms
Dave Mitchell [Tue, 25 Sep 2007 18:59:02 +0000 (18:59 +0000)]
extend PL_veto_cleanup to all platforms
The conditional skip of PERL_SYS_TERM introduced by change #29827
now happens on all platforms, not just UNIX.
p4raw-link: @29827 on //depot/perl: c301d6064f299b8a77670348b81d25d2d94d6a2f

p4raw-id: //depot/perl@31971

16 years agomake PERL_SYS_INIT/INIT3/TERM into functions
Dave Mitchell [Tue, 25 Sep 2007 18:00:32 +0000 (18:00 +0000)]
make PERL_SYS_INIT/INIT3/TERM into functions

p4raw-id: //depot/perl@31970

16 years agoHey, but "or" is low-prec. So this statement never worked.
Rafael Garcia-Suarez [Tue, 25 Sep 2007 14:28:20 +0000 (14:28 +0000)]
Hey, but "or" is low-prec. So this statement never worked.

p4raw-id: //depot/perl@31969

16 years agoDragonflyBSD is a BSD too
Rafael Garcia-Suarez [Tue, 25 Sep 2007 14:24:53 +0000 (14:24 +0000)]
DragonflyBSD is a BSD too

p4raw-id: //depot/perl@31968

16 years agoRe: [perl #45513] Test failures on amd64-freebsd 6.2
Slaven Rezic [Wed, 19 Sep 2007 21:56:00 +0000 (23:56 +0200)]
Re: [perl #45513] Test failures on amd64-freebsd 6.2
Message-ID: <87abri1lbj.fsf@biokovo-amd64.herceg.de>

p4raw-id: //depot/perl@31967

16 years agoUpgrade to Test::Simple 0.72
Rafael Garcia-Suarez [Tue, 25 Sep 2007 12:20:25 +0000 (12:20 +0000)]
Upgrade to Test::Simple 0.72

p4raw-id: //depot/perl@31966

16 years agoRe: [PATCH 5.10] Improve diagnostic for reloads of bad modules
Rick Delaney [Sat, 22 Sep 2007 16:30:40 +0000 (12:30 -0400)]
Re: [PATCH 5.10] Improve diagnostic for reloads of bad modules
Message-ID: <20070922203040.GK11931@bort.ca>

p4raw-id: //depot/perl@31965

16 years agoMake OptreeCheck.pm more forgiving about parent pad indexes
Rafael Garcia-Suarez [Tue, 25 Sep 2007 09:45:46 +0000 (09:45 +0000)]
Make OptreeCheck.pm more forgiving about parent pad indexes

p4raw-id: //depot/perl@31964

16 years agoTrans.: CPAN Upload: S/SA/SAPER/constant-1.11.tar.gz
Sébastien Aperghis-Tramoni [Tue, 25 Sep 2007 11:55:48 +0000 (13:55 +0200)]
Trans.: CPAN Upload: S/SA/SAPER/constant-1.11.tar.gz
Message-ID: <1190714148.46f8db2431f0c@imp.free.fr>

p4raw-id: //depot/perl@31963

16 years agoRe: Smoke [5.10.0] 31938 FAIL(F) netbsd 3.1 (i386/1 cpu)
Abe Timmerman [Sun, 23 Sep 2007 01:02:22 +0000 (03:02 +0200)]
Re: Smoke [5.10.0] 31938 FAIL(F) netbsd 3.1 (i386/1 cpu)
Message-ID: <46F59EFE.7050303@ztreet.demon.nl>

p4raw-id: //depot/perl@31962

16 years agoRe: [perl #45605] Regexp failure with utf8-flagged string and byte-flagged pattern
Tels [Sat, 22 Sep 2007 14:27:29 +0000 (16:27 +0200)]
Re: [perl #45605] Regexp failure with utf8-flagged string and byte-flagged pattern
Message-Id: <200709221427.30425@bloodgate.com>

p4raw-id: //depot/perl@31961

16 years ago[patch] Dual-lifing constant.pm
Sébastien Aperghis-Tramoni [Tue, 25 Sep 2007 02:11:46 +0000 (04:11 +0200)]
[patch] Dual-lifing constant.pm
Message-Id: <454B4D1C-48EE-4CA3-834A-A0F872C9E5FC@free.fr>

p4raw-id: //depot/perl@31960

16 years agostop lib/perl5db.t failure if Term::ReadLine::Perl is installed
Slaven Rezic [Mon, 24 Sep 2007 23:24:37 +0000 (01:24 +0200)]
stop lib/perl5db.t failure if Term::ReadLine::Perl is installed
Message-ID: <871wcnwycq.fsf@biokovo-amd64.herceg.de>

p4raw-id: //depot/perl@31959

16 years agoREADME.cygwin update
Jerry D. Hedden [Mon, 24 Sep 2007 20:58:00 +0000 (16:58 -0400)]
README.cygwin update
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510709241758o4027c237w7387e7ab86680d55@mail.gmail.com>

p4raw-id: //depot/perl@31958

16 years ago$^E is not Win32::GetLastError under Cygwin
Jerry D. Hedden [Mon, 24 Sep 2007 20:39:44 +0000 (16:39 -0400)]
$^E is not Win32::GetLastError under Cygwin
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510709241739q62b4f2eaycf13cb9956f8fab3@mail.gmail.com>

p4raw-id: //depot/perl@31957

16 years agoRe: Change 31935: Upgrade to Win32-0.32
Jerry D. Hedden [Mon, 24 Sep 2007 20:23:49 +0000 (16:23 -0400)]
Re: Change 31935: Upgrade to Win32-0.32
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510709241723o58cc1167m2c44221b77959994@mail.gmail.com>

(Check Win32::GetLastError() rather than $^E for Cygwin, on which $^E
is the last posix error (the same as $!), not the last Win32 error)

p4raw-id: //depot/perl@31956

16 years ago[patch] improve B::Concise -src support
Jim Cromie [Mon, 24 Sep 2007 00:28:28 +0000 (18:28 -0600)]
[patch] improve B::Concise -src support
Message-ID: <46F7590C.1070101@gmail.com>

p4raw-id: //depot/perl@31955

16 years agosixth attempt to silence S_emulate_eaccess compiler warning
Dave Mitchell [Mon, 24 Sep 2007 14:18:03 +0000 (14:18 +0000)]
sixth attempt to silence S_emulate_eaccess compiler warning

p4raw-id: //depot/perl@31954

16 years agoUpgrade to Compress::Zlib 2.007
Rafael Garcia-Suarez [Mon, 24 Sep 2007 13:19:10 +0000 (13:19 +0000)]
Upgrade to Compress::Zlib 2.007

p4raw-id: //depot/perl@31953

16 years agoUpgrade to threads::shared 1.14
Rafael Garcia-Suarez [Mon, 24 Sep 2007 12:50:02 +0000 (12:50 +0000)]
Upgrade to threads::shared 1.14
Corrects warnings reported by Devel::PPPort.

p4raw-id: //depot/perl@31952

16 years agoRe: BigInt bug with non-integer accuracy/precision
Tels [Sat, 22 Sep 2007 11:33:34 +0000 (13:33 +0200)]
Re: BigInt bug with non-integer accuracy/precision
Message-Id: <200709221133.35110@bloodgate.com>

p4raw-id: //depot/perl@31951

16 years agoAnnounce plans for -Duse32bit* options for Configure, and document
H.Merijn Brand [Mon, 24 Sep 2007 08:34:14 +0000 (08:34 +0000)]
Announce plans for -Duse32bit* options for Configure, and document
that there is no guarantee on 32bit builds when no args passed

p4raw-id: //depot/perl@31950

16 years agoAllow IEEE math to be deselected on OpenVMS I64 (but it remains
Craig A. Berry [Mon, 24 Sep 2007 02:51:23 +0000 (02:51 +0000)]
Allow IEEE math to be deselected on OpenVMS I64 (but it remains
the default).

p4raw-id: //depot/perl@31949

16 years agosilence a spurious compiler warning in regcomp.c
Dave Mitchell [Mon, 24 Sep 2007 01:20:00 +0000 (01:20 +0000)]
silence a spurious compiler warning in regcomp.c

p4raw-id: //depot/perl@31948

16 years agofifth attempt to silence S_emulate_eaccess compiler warning
Dave Mitchell [Mon, 24 Sep 2007 00:42:07 +0000 (00:42 +0000)]
fifth attempt to silence S_emulate_eaccess compiler warning

p4raw-id: //depot/perl@31947

16 years agoAnd some more VMS-specific additions to PL_bincompat_options.
Craig A. Berry [Sun, 23 Sep 2007 23:44:59 +0000 (23:44 +0000)]
And some more VMS-specific additions to PL_bincompat_options.

p4raw-id: //depot/perl@31946

16 years agoAdd USE_IEEE to PL_bincompat_options, as use_ieee in the configuration
Nicholas Clark [Sun, 23 Sep 2007 21:10:27 +0000 (21:10 +0000)]
Add USE_IEEE to PL_bincompat_options, as use_ieee in the configuration
on VMS affects binary compatibility.

p4raw-id: //depot/perl@31945

16 years agoRecord IEEE usage in config.h on VMS.
Craig A. Berry [Sun, 23 Sep 2007 15:09:51 +0000 (15:09 +0000)]
Record IEEE usage in config.h on VMS.

p4raw-id: //depot/perl@31944

16 years agoRevert #31942, as it was inconsistent between threaded and
H.Merijn Brand [Sun, 23 Sep 2007 13:57:00 +0000 (13:57 +0000)]
Revert #31942, as it was inconsistent between threaded and
non-threaded builds

p4raw-id: //depot/perl@31943

16 years agonetbsd's setlocale () doesn't support LC_COLLATE and LC_NUMERIC
Abe Timmerman [Sun, 23 Sep 2007 01:11:50 +0000 (03:11 +0200)]
netbsd's setlocale () doesn't support LC_COLLATE and LC_NUMERIC
Subject: Re: Smoke [5.10.0] 31938 FAIL(F) netbsd 3.1 (i386/1 cpu)
Message-ID: <46F5A136.8080000@ztreet.demon.nl>

p4raw-id: //depot/perl@31942

16 years agoUnder -DDEBUGGING (on gcc), assert that SvRV(sv) is being called on
Nicholas Clark [Sun, 23 Sep 2007 07:20:49 +0000 (07:20 +0000)]
Under -DDEBUGGING (on gcc), assert that SvRV(sv) is being called on
a valid SvTYPE().

p4raw-id: //depot/perl@31941