This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5.git
17 years agoAn optimisation to the MRO code, by Brandon Black,
Rafael Garcia-Suarez [Mon, 23 Apr 2007 08:21:50 +0000 (08:21 +0000)]
An optimisation to the MRO code, by Brandon Black,
plus more comments.

p4raw-id: //depot/perl@31025

17 years agoShorten long symbols in mro.c to avoid name mangling on VMS.
Craig A. Berry [Mon, 23 Apr 2007 03:14:53 +0000 (03:14 +0000)]
Shorten long symbols in mro.c to avoid name mangling on VMS.

p4raw-id: //depot/perl@31024

17 years agoFix problems caused by downsizing in change 31017. (Which don't show
Nicholas Clark [Sun, 22 Apr 2007 22:57:54 +0000 (22:57 +0000)]
Fix problems caused by downsizing in change 31017. (Which don't show
up until you test on a "real" architecture)

p4raw-id: //depot/perl@31023

17 years agoReflect change of path for Module::Pluggable's tests in Maintainers.pl
Rafael Garcia-Suarez [Sun, 22 Apr 2007 15:08:45 +0000 (15:08 +0000)]
Reflect change of path for Module::Pluggable's tests in Maintainers.pl

p4raw-id: //depot/perl@31022

17 years agoAdd missing file to MANIFEST
Rafael Garcia-Suarez [Sun, 22 Apr 2007 15:03:27 +0000 (15:03 +0000)]
Add missing file to MANIFEST

p4raw-id: //depot/perl@31021

17 years agoUpdate CPANPLUS to 0.79_01
Jos I. Boumans [Sun, 22 Apr 2007 10:18:10 +0000 (12:18 +0200)]
Update CPANPLUS to 0.79_01
From: "Jos I. Boumans" <kane@xs4all.nl>
Message-Id: <BDAACA85-8D3E-4104-9B03-9DB247EDA080@xs4all.nl>

p4raw-id: //depot/perl@31020

17 years agoMove Module::Pluggable tests up under main test directory.
Craig A. Berry [Sun, 22 Apr 2007 14:34:28 +0000 (14:34 +0000)]
Move Module::Pluggable tests up under main test directory.

p4raw-id: //depot/perl@31019

17 years agoMake t/harness find the t/mro tests
Craig A. Berry [Sun, 22 Apr 2007 00:50:18 +0000 (00:50 +0000)]
Make t/harness find the t/mro tests

p4raw-id: //depot/perl@31018

17 years agoVarious variables in intrpvar.h and thrdvar.h are considerably larger
Nicholas Clark [Sat, 21 Apr 2007 21:47:34 +0000 (21:47 +0000)]
Various variables in intrpvar.h and thrdvar.h are considerably larger
than they need to be.

p4raw-id: //depot/perl@31017

17 years agoFix bug in change 31015 - saving the wrong size of variable.
Nicholas Clark [Sat, 21 Apr 2007 21:46:27 +0000 (21:46 +0000)]
Fix bug in change 31015 - saving the wrong size of variable.

p4raw-id: //depot/perl@31016

17 years agoSeveral members of struct yy_parser can go on a diet. Some I32s were
Nicholas Clark [Sat, 21 Apr 2007 19:05:08 +0000 (19:05 +0000)]
Several members of struct yy_parser can go on a diet. Some I32s were
actually only holding chars.

p4raw-id: //depot/perl@31015

17 years agoBy re-ordering declarations in interpvar.h and thrdvar.h, reduce the
Nicholas Clark [Sat, 21 Apr 2007 18:41:39 +0000 (18:41 +0000)]
By re-ordering declarations in interpvar.h and thrdvar.h, reduce the
size of the interpreter structure. (For LP64, from 3712 to 3584, for
ILP32, from 2288 to 2248).

p4raw-id: //depot/perl@31014

17 years agoRemove widesyscalls and numeric_compat1, two unused per-interpreter
Nicholas Clark [Sat, 21 Apr 2007 17:01:53 +0000 (17:01 +0000)]
Remove widesyscalls and numeric_compat1, two unused per-interpreter
variables retained for binary compatibility, something which we no
longer maintain back to 5.6.x.

p4raw-id: //depot/perl@31013

17 years agoEliminate Internals::inc_sub_generation, which nothing now calls.
Nicholas Clark [Sat, 21 Apr 2007 13:54:28 +0000 (13:54 +0000)]
Eliminate Internals::inc_sub_generation, which nothing now calls.

p4raw-id: //depot/perl@31012

17 years agoWhere possible, use SvIV instead of SvIVX, SvNV instead of SvNVX,
Nicholas Clark [Sat, 21 Apr 2007 11:42:43 +0000 (11:42 +0000)]
Where possible, use SvIV instead of SvIVX, SvNV instead of SvNVX,
SvUV instead of SvUVX, and SvPV* variants instead of SvPVX*.
Document that the non-x variants are preferable whenever the expression
has no side effects. (Compilers perform common subexression
elimination). Likewise SvREFCNT_inc simple variants are valid for all
cases apart from expressions with side effects.

p4raw-id: //depot/perl@31010

17 years agoStoring PL_sv_yes over itself is as cheap as calling hv_exists(), so
Nicholas Clark [Sat, 21 Apr 2007 10:28:59 +0000 (10:28 +0000)]
Storing PL_sv_yes over itself is as cheap as calling hv_exists(), so
always store it, to save the (second) store call. SvIVx is more
expensive than SvIVX, so use the latter. Reorder the other call to
hv_store() to be immediately after the call to hv_exists(), to try to
avoid thrashing the CPU cache.

p4raw-id: //depot/perl@31009

17 years agoIn Perl_mro_get_linear_isa_dfs(), by treating the local variable sv as
Nicholas Clark [Sat, 21 Apr 2007 09:43:27 +0000 (09:43 +0000)]
In Perl_mro_get_linear_isa_dfs(), by treating the local variable sv as
an array of size 1, we can merge two arms and reduce code duplication.

p4raw-id: //depot/perl@31008

17 years agoTypo fix by Abigail
Rafael Garcia-Suarez [Sat, 21 Apr 2007 09:29:45 +0000 (09:29 +0000)]
Typo fix by Abigail

p4raw-id: //depot/perl@31007

17 years agoUpgrade to version-0.7203.
Rafael Garcia-Suarez [Sat, 21 Apr 2007 09:20:56 +0000 (09:20 +0000)]
Upgrade to version-0.7203.
Plus a change in Module::Build::Version, specific to bleadperl.

p4raw-id: //depot/perl@31005

17 years agoCompletely remove Test::More from the MRO tests, by Brandon Black
Rafael Garcia-Suarez [Sat, 21 Apr 2007 09:08:04 +0000 (09:08 +0000)]
Completely remove Test::More from the MRO tests, by Brandon Black

p4raw-id: //depot/perl@31004

17 years agoSmall optimisations, by Brandon Black
Rafael Garcia-Suarez [Sat, 21 Apr 2007 09:06:38 +0000 (09:06 +0000)]
Small optimisations, by Brandon Black

p4raw-id: //depot/perl@31003

17 years agoCode comments, by Brandon Black
Rafael Garcia-Suarez [Sat, 21 Apr 2007 09:05:41 +0000 (09:05 +0000)]
Code comments, by Brandon Black

p4raw-id: //depot/perl@31002

17 years agoBug in Hash::Util::FieldHash
Anno Siegel [Sat, 21 Apr 2007 02:11:00 +0000 (04:11 +0200)]
Bug in Hash::Util::FieldHash
Message-Id: <DFEC2420-9301-40EC-A986-80D0290B2C8F@mailbox.tu-berlin.de>

p4raw-id: //depot/perl@31001

17 years agoTerser source code in Perl_mro_meta_dup()
Nicholas Clark [Fri, 20 Apr 2007 19:34:15 +0000 (19:34 +0000)]
Terser source code in Perl_mro_meta_dup()

p4raw-id: //depot/perl@31000

17 years agoMake struct mro_meta 4(ish) bytes smaller.
Nicholas Clark [Fri, 20 Apr 2007 16:09:31 +0000 (16:09 +0000)]
Make struct mro_meta 4(ish) bytes smaller.

p4raw-id: //depot/perl@30999

17 years agoShorten some file names
Rafael Garcia-Suarez [Fri, 20 Apr 2007 15:38:47 +0000 (15:38 +0000)]
Shorten some file names

p4raw-id: //depot/perl@30998

17 years agoSilence some diagnostic messages when running within the core tests.
Rafael Garcia-Suarez [Fri, 20 Apr 2007 15:03:57 +0000 (15:03 +0000)]
Silence some diagnostic messages when running within the core tests.
By Jerry D. Hedden

p4raw-id: //depot/perl@30997

17 years agoNit to S_isa_lookup by Brandon Black
Rafael Garcia-Suarez [Fri, 20 Apr 2007 14:22:26 +0000 (14:22 +0000)]
Nit to S_isa_lookup by Brandon Black

p4raw-id: //depot/perl@30996

17 years agoAdditions to perldiag for MRO, by Brandon Black.
Rafael Garcia-Suarez [Fri, 20 Apr 2007 14:20:42 +0000 (14:20 +0000)]
Additions to perldiag for MRO, by Brandon Black.

p4raw-id: //depot/perl@30995

17 years agoA little bit more safe version of HvMROMETA
Rafael Garcia-Suarez [Fri, 20 Apr 2007 13:54:26 +0000 (13:54 +0000)]
A little bit more safe version of HvMROMETA

p4raw-id: //depot/perl@30994

17 years agoDon't use Test::More in core tests (at least, where
Rafael Garcia-Suarez [Fri, 20 Apr 2007 13:42:21 +0000 (13:42 +0000)]
Don't use Test::More in core tests (at least, where
that's possible, that is where is_deeply() isn't used)

p4raw-id: //depot/perl@30993

17 years agoRe: [PATCH] madprop about forced words
Gerard Goossen [Thu, 19 Apr 2007 13:33:21 +0000 (15:33 +0200)]
Re: [PATCH] madprop about forced words
Message-ID: <20070419113321.GE19244@ostwald>

p4raw-id: //depot/perl@30992

17 years ago[perl #42614] NAN_COMPARE_BROKEN.DIV_BY_NAN_BUG (with patch)
Patrick Dugnolle [Thu, 19 Apr 2007 06:34:18 +0000 (23:34 -0700)]
[perl #42614] NAN_COMPARE_BROKEN.DIV_BY_NAN_BUG (with patch)
From: patrick.dugnolle@bnpparibas.com (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.6.HEAD-6655-1176989657-125.42614-75-0@perl.org>

p4raw-id: //depot/perl@30991

17 years agoClean the MRO documentation up
Rafael Garcia-Suarez [Fri, 20 Apr 2007 08:04:41 +0000 (08:04 +0000)]
Clean the MRO documentation up

p4raw-id: //depot/perl@30990

17 years agoUpgrade to CPAN-1.91
Steve Peters [Fri, 20 Apr 2007 01:58:55 +0000 (01:58 +0000)]
Upgrade to CPAN-1.91

p4raw-id: //depot/perl@30989

17 years agoSimpler version, and that zeroes the allocated memory
Rafael Garcia-Suarez [Thu, 19 Apr 2007 17:28:38 +0000 (17:28 +0000)]
Simpler version, and that zeroes the allocated memory

p4raw-id: //depot/perl@30988

17 years agoUse Newxc instead of casting by hand
Rafael Garcia-Suarez [Thu, 19 Apr 2007 17:15:25 +0000 (17:15 +0000)]
Use Newxc instead of casting by hand

p4raw-id: //depot/perl@30987

17 years agoA Tolkien quote for mro.c, found by Audrey Tang.
Rafael Garcia-Suarez [Thu, 19 Apr 2007 17:07:14 +0000 (17:07 +0000)]
A Tolkien quote for mro.c, found by Audrey Tang.

p4raw-id: //depot/perl@30986

17 years agoFix non-threaded build on Win32 following #30980
Steve Hay [Thu, 19 Apr 2007 16:20:09 +0000 (16:20 +0000)]
Fix non-threaded build on Win32 following #30980

p4raw-id: //depot/perl@30985

17 years agoFix compilation error with threads
Rafael Garcia-Suarez [Thu, 19 Apr 2007 15:06:53 +0000 (15:06 +0000)]
Fix compilation error with threads

p4raw-id: //depot/perl@30984

17 years agoAdjust the warning category in the test, too
Rafael Garcia-Suarez [Thu, 19 Apr 2007 15:04:19 +0000 (15:04 +0000)]
Adjust the warning category in the test, too

p4raw-id: //depot/perl@30983

17 years agoPut the "Can't locate package..." warnings in the "syntax"
Rafael Garcia-Suarez [Thu, 19 Apr 2007 14:53:36 +0000 (14:53 +0000)]
Put the "Can't locate package..." warnings in the "syntax"
category, as documented

p4raw-id: //depot/perl@30982

17 years agoChange an "Internal error" message to the more common "panic"
Rafael Garcia-Suarez [Thu, 19 Apr 2007 14:50:11 +0000 (14:50 +0000)]
Change an "Internal error" message to the more common "panic"
in the C3 MRO code

p4raw-id: //depot/perl@30981

17 years agoRe: new C3 MRO patch
Brandon Black [Tue, 17 Apr 2007 13:14:36 +0000 (08:14 -0500)]
Re: new C3 MRO patch
From: "Brandon Black" <blblack@gmail.com>
Message-ID: <84621a60704171114k29b0460el5b08ce5185d55ed5@mail.gmail.com>

p4raw-id: //depot/perl@30980

17 years agoAllow sending SIGINT to child processes on Windows *if* they are running Perl
Jan Dubois [Mon, 16 Apr 2007 17:52:25 +0000 (10:52 -0700)]
Allow sending SIGINT to child processes on Windows *if* they are running Perl
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <01e301c7808a$ac0cca30$04265e90$@com>

p4raw-id: //depot/perl@30979

17 years agoRe: [perl #41574] cond_wait hang ups under MSWin32
Jerry D. Hedden [Wed, 18 Apr 2007 14:32:16 +0000 (10:32 -0400)]
Re: [perl #41574] cond_wait hang ups under MSWin32
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704181132qf94b413mfda6aaa0f347df28@mail.gmail.com>

Makes the test "TODO" on Win32, where it is not reliable, and turns
the 50 separate tests in one single test for less line noise

p4raw-id: //depot/perl@30978

17 years ago1. Move #30327 to the generation location
H.Merijn Brand [Wed, 18 Apr 2007 19:04:40 +0000 (19:04 +0000)]
1. Move #30327 to the generation location
2. Regen after backports
3. Include Jarkko's $run and \n patch

p4raw-id: //depot/perl@30977

17 years agoAdd a test for the bug fixed by #30970
Steve Hay [Wed, 18 Apr 2007 08:40:42 +0000 (08:40 +0000)]
Add a test for the bug fixed by #30970

p4raw-id: //depot/perl@30973

17 years agoSys::Syslog was missing from Maintainers.pl
Rafael Garcia-Suarez [Wed, 18 Apr 2007 08:36:24 +0000 (08:36 +0000)]
Sys::Syslog was missing from Maintainers.pl

p4raw-id: //depot/perl@30972

17 years agoThese test scripts probably wanted BEGIN blocks,
Steve Hay [Tue, 17 Apr 2007 17:12:23 +0000 (17:12 +0000)]
These test scripts probably wanted BEGIN blocks,
not just blocks with "BEGIN:" labels.

p4raw-id: //depot/perl@30971

17 years agoFix kill(0, $pid) on Windows
Jan Dubois [Mon, 16 Apr 2007 17:35:48 +0000 (10:35 -0700)]
Fix kill(0, $pid) on Windows
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <01df01c78088$59718d30$0c54a790$@com>

Fixes breakage caused by #29605.

p4raw-id: //depot/perl@30970

17 years agoRemove the "performance hack" that suppressed used only once warnings
Nicholas Clark [Mon, 16 Apr 2007 16:17:05 +0000 (16:17 +0000)]
Remove the "performance hack" that suppressed used only once warnings
for files in the standard library.

p4raw-id: //depot/perl@30969

17 years agoRe: [PATCH] Mention sorting MANIFEST in perlhack.pod
Jerry D. Hedden [Mon, 16 Apr 2007 10:44:36 +0000 (06:44 -0400)]
Re: [PATCH] Mention sorting MANIFEST in perlhack.pod
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704160744j9ae934cv9fef077afe3ca516@mail.gmail.com>

p4raw-id: //depot/perl@30968

17 years agoRe: Thread.t hangs, even under normal test...
Jerry D. Hedden [Mon, 16 Apr 2007 09:31:39 +0000 (05:31 -0400)]
Re: Thread.t hangs, even under normal test...
From: "Jerry D. Hedden" <jdhedden@gmail.com>
Message-ID: <1ff86f510704160631ue286a97kb66a0ce649c9aae4@mail.gmail.com>

p4raw-id: //depot/perl@30967

17 years agosv.c: %d ne size_t
Jarkko Hietaniemi [Mon, 16 Apr 2007 14:31:42 +0000 (17:31 +0300)]
sv.c: %d ne size_t
Message-Id: <200704161131.l3GBVg3n104476@kosh.hut.fi>

p4raw-id: //depot/perl@30966

17 years agofix casting warning in pp_ord()
Dave Mitchell [Sun, 15 Apr 2007 23:33:13 +0000 (23:33 +0000)]
fix casting warning in pp_ord()

p4raw-id: //depot/perl@30965

17 years agoget rid of warning due to empty dangling else in malloc.c
Dave Mitchell [Sun, 15 Apr 2007 23:24:21 +0000 (23:24 +0000)]
get rid of warning due to empty dangling else in malloc.c

p4raw-id: //depot/perl@30964

17 years agofollow PL_watchaddr when cloning a thread
Dave Mitchell [Sun, 15 Apr 2007 21:10:55 +0000 (21:10 +0000)]
follow PL_watchaddr when cloning a thread

p4raw-id: //depot/perl@30963

17 years agowith DEBUG_LEAKING_SCALARS, dump multiply-freed scalars
Dave Mitchell [Sun, 15 Apr 2007 16:32:42 +0000 (16:32 +0000)]
with DEBUG_LEAKING_SCALARS, dump multiply-freed scalars

p4raw-id: //depot/perl@30962

17 years agoRemove wince/ from checkcfgvar.pl, now that it is gone in 5.8.x too.
Nicholas Clark [Sun, 15 Apr 2007 12:37:44 +0000 (12:37 +0000)]
Remove wince/ from checkcfgvar.pl, now that it is gone in 5.8.x too.

p4raw-id: //depot/perl@30958

17 years agoAdd the Default Unicode Collation Element Table for UCD 5.0.0
Rafael Garcia-Suarez [Sun, 15 Apr 2007 12:35:38 +0000 (12:35 +0000)]
Add the Default Unicode Collation Element Table for UCD 5.0.0
to Unicode::Collate

p4raw-id: //depot/perl@30957

17 years agoChange prototype of async() to be compatible with the one
Rafael Garcia-Suarez [Sun, 15 Apr 2007 07:26:28 +0000 (07:26 +0000)]
Change prototype of async() to be compatible with the one
of threads::async()

p4raw-id: //depot/perl@30955

17 years agoRemove 5005threads from Thread.pm
Jerry D. Hedden [Fri, 13 Apr 2007 13:19:26 +0000 (09:19 -0400)]
Remove 5005threads from Thread.pm
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704131019i3ea1f99es7067ba2ef60171ca@mail.gmail.com>

p4raw-id: //depot/perl@30954

17 years agoFix Thread.pm
Jerry D. Hedden [Fri, 13 Apr 2007 12:51:40 +0000 (08:51 -0400)]
Fix Thread.pm
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704130951t5f66baa0m4ed13018539976a3@mail.gmail.com>

p4raw-id: //depot/perl@30953

17 years agoMove PL_comppad nulling from do_clean_all to sv_clear
Dave Mitchell [Sat, 14 Apr 2007 21:53:17 +0000 (21:53 +0000)]
Move PL_comppad nulling from do_clean_all to sv_clear

p4raw-id: //depot/perl@30952

17 years agoTypo in croak message
H.Merijn Brand [Sat, 14 Apr 2007 20:52:56 +0000 (20:52 +0000)]
Typo in croak message

p4raw-id: //depot/perl@30951

17 years agoTypo in =item say
Abigail [Sat, 14 Apr 2007 19:22:41 +0000 (21:22 +0200)]
Typo in =item say
Message-ID: <20070414172241.GB3191@abigail.nl>

p4raw-id: //depot/perl@30950

17 years agoRE: [PATCH] Restore Win64 compilation with the Windows Platform SDK
Jan Dubois [Tue, 10 Apr 2007 16:49:21 +0000 (09:49 -0700)]
RE: [PATCH] Restore Win64 compilation with the Windows Platform SDK
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <001b01c77bca$dcae7720$960b6560$@com>

p4raw-id: //depot/perl@30943

17 years agoIntegrate:
Alexey Tourbin [Sat, 24 Feb 2007 15:52:23 +0000 (18:52 +0300)]
Integrate:
[ 30391]
Subject: [PATCH] ExtUtils/Constant/Base.pm: use constant folding to eliminated dead code
Message-ID: <20070224125223.GA17227@localhost.localdomain>

[ 30940]
Bump the VERSION of ExtUtils::Constant::Base.
p4raw-link: @30940 on //depot/perl: 1abe45988edc1c4df0edabb952007ef1b6fe20e5
p4raw-link: @30391 on //depot/perl: 47520512bcc7563438628185c4d388f7da46a22c

p4raw-id: //depot/perl@30941
p4raw-edited: from //depot/maint-5.8/perl@30940 'copy'
lib/ExtUtils/Constant/Base.pm (@28114..)

17 years agoBump the VERSION of ExtUtils::Constant::Base.
Nicholas Clark [Thu, 12 Apr 2007 21:03:08 +0000 (21:03 +0000)]
Bump the VERSION of ExtUtils::Constant::Base.

p4raw-id: //depot/perl@30940

17 years agoPL_madskills is a bool, so save it as one (else Solaris rightly
Nicholas Clark [Thu, 12 Apr 2007 20:45:21 +0000 (20:45 +0000)]
PL_madskills is a bool, so save it as one (else Solaris rightly
SIGBUSes)

p4raw-id: //depot/perl@30939

17 years agoFix two errors in the OP debugging code. Now all test errors relate
Nicholas Clark [Thu, 12 Apr 2007 18:52:49 +0000 (18:52 +0000)]
Fix two errors in the OP debugging code. Now all test errors relate
to newCONSTSUB().

p4raw-id: //depot/perl@30936

17 years agoRe: [PATCH] Add CPANPLUS 0.78 to the core
Yves Orton [Tue, 10 Apr 2007 18:31:28 +0000 (20:31 +0200)]
Re: [PATCH] Add CPANPLUS 0.78 to the core
Message-ID: <9b18b3110704100931t5c0c97e0n9d3c059e6f404dd5@mail.gmail.com>

p4raw-id: //depot/perl@30932

17 years agoChange 18797 (Patch for [perl #9402], known also as "glibc _moddi3 bug
Nicholas Clark [Thu, 12 Apr 2007 15:51:58 +0000 (15:51 +0000)]
Change 18797 (Patch for [perl #9402], known also as "glibc _moddi3 bug
with negative quads", or also as RedHat bug #65612.) was a bit brute
force. In reality, we don't need to have an auto-detecting pp_i_modulo
unless we're compiled with 64 bit IVs and on glibc.

p4raw-id: //depot/perl@30931

17 years agoRun buildtoc --build-all
Rafael Garcia-Suarez [Thu, 12 Apr 2007 14:50:04 +0000 (14:50 +0000)]
Run buildtoc --build-all

p4raw-id: //depot/perl@30926

17 years agoAdd $VERSION to Module::Build::Version
Jerry D. Hedden [Wed, 11 Apr 2007 12:45:19 +0000 (08:45 -0400)]
Add $VERSION to Module::Build::Version
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704110945q173f2ac8p399171428fd182cd@mail.gmail.com>

p4raw-id: //depot/perl@30925

17 years agoUpgrade to Archive::Extract 0.18
Rafael Garcia-Suarez [Thu, 12 Apr 2007 14:33:33 +0000 (14:33 +0000)]
Upgrade to Archive::Extract 0.18

p4raw-id: //depot/perl@30923

17 years agoAdd the perlreapi man page, by Ã\86var Arnfjörð Bjarmason
Rafael Garcia-Suarez [Thu, 12 Apr 2007 14:27:23 +0000 (14:27 +0000)]
Add the perlreapi man page, by Ã\86var Arnfjörð Bjarmason
(largely from perlreguts)

p4raw-id: //depot/perl@30922

17 years agoRe: [PATCH] extflags/pmflags Change 30841, in dump.c:pm_description regex does not...
Ævar Arnfjörð Bjarmason [Wed, 11 Apr 2007 20:54:43 +0000 (20:54 +0000)]
Re: [PATCH] extflags/pmflags Change 30841, in dump.c:pm_description regex does not have to exist
Message-ID: <51dd1af80704111354h4bbd0212hc96a9f1911d2ffb4@mail.gmail.com>

p4raw-id: //depot/perl@30921

17 years agoRe: [PATCH] perlreguts.pod: use the unicode name for ß and show the codepoint
Ævar Arnfjörð Bjarmason [Fri, 6 Apr 2007 21:41:57 +0000 (21:41 +0000)]
Re: [PATCH] perlreguts.pod: use the unicode name for ß and show the codepoint
Message-ID: <51dd1af80704061441v4b972257ta4c95230bdbc47c5@mail.gmail.com>

p4raw-id: //depot/perl@30920

17 years agoWhen removing the test program source, also remove the compiled
Nicholas Clark [Thu, 12 Apr 2007 11:57:26 +0000 (11:57 +0000)]
When removing the test program source, also remove the compiled
executable.

p4raw-id: //depot/perl@30919

17 years agog++ in Tru64: align sockaddr and sockaddr_in defs
Jarkko Hietaniemi [Thu, 12 Apr 2007 05:19:30 +0000 (08:19 +0300)]
g++ in Tru64: align sockaddr and sockaddr_in defs
Message-Id: <200704120219.l3C2JUGZ294947@kosh.hut.fi>

p4raw-id: //depot/perl@30918

17 years agoFor symbolic references test the defined path through the pp functions.
Nicholas Clark [Wed, 11 Apr 2007 19:48:36 +0000 (19:48 +0000)]
For symbolic references test the defined path through the pp functions.

p4raw-id: //depot/perl@30915

17 years agoBe a bit more specific in what our second typeglob isn't. It is actually
Nicholas Clark [Wed, 11 Apr 2007 17:51:02 +0000 (17:51 +0000)]
Be a bit more specific in what our second typeglob isn't. It is actually
expected to be undef.

p4raw-id: //depot/perl@30913

17 years agoFix spelling nit.
Steve Peters [Wed, 11 Apr 2007 17:16:00 +0000 (17:16 +0000)]
Fix spelling nit.

p4raw-id: //depot/perl@30912

17 years agoRun pod/buildtoc --build-all
Nicholas Clark [Wed, 11 Apr 2007 14:15:19 +0000 (14:15 +0000)]
Run pod/buildtoc --build-all

p4raw-id: //depot/perl@30910

17 years agoperl5.9.5delta is about 5, not 4.
Nicholas Clark [Wed, 11 Apr 2007 14:09:31 +0000 (14:09 +0000)]
perl5.9.5delta is about 5, not 4.

p4raw-id: //depot/perl@30909

17 years agoUpdate MANIFEST to include 3 files added in change 30893.
Nicholas Clark [Wed, 11 Apr 2007 13:52:43 +0000 (13:52 +0000)]
Update MANIFEST to include 3 files added in change 30893.

p4raw-id: //depot/perl@30908

17 years agoCorrect Shell.pm POD regarding $Shell::capture_stderr
Jerry D. Hedden [Tue, 10 Apr 2007 13:54:10 +0000 (09:54 -0400)]
Correct Shell.pm POD regarding $Shell::capture_stderr
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510704101054q2ccc7c10l66d62971716877f9@mail.gmail.com>

p4raw-id: //depot/perl@30907

17 years agoAdd Shell.pm to the list of dual-life modules
Rafael Garcia-Suarez [Wed, 11 Apr 2007 13:06:49 +0000 (13:06 +0000)]
Add Shell.pm to the list of dual-life modules

p4raw-id: //depot/perl@30906

17 years agoUpgrade to Shell 0.72 (noticed by Jerry D. Hedden)
Rafael Garcia-Suarez [Wed, 11 Apr 2007 13:05:28 +0000 (13:05 +0000)]
Upgrade to Shell 0.72 (noticed by Jerry D. Hedden)

p4raw-id: //depot/perl@30905

17 years agoIf the test programs for strtoul(), strtoull() or strtouq() fail, don't
Nicholas Clark [Wed, 11 Apr 2007 08:02:43 +0000 (08:02 +0000)]
If the test programs for strtoul(), strtoull() or strtouq() fail, don't
assume that the functions work.

p4raw-id: //depot/perl@30904

17 years agoWork round what appears to be a bug in Sun C++ 5.8 2005/10/13
Nicholas Clark [Wed, 11 Apr 2007 07:39:21 +0000 (07:39 +0000)]
Work round what appears to be a bug in Sun C++ 5.8 2005/10/13
If we just cast GvSVn(gv) to void, it ignores evaluating it for
its side effect.

p4raw-id: //depot/perl@30903

17 years agoFully VMSify CPANPLUS util names following #30885
Craig A. Berry [Wed, 11 Apr 2007 04:08:47 +0000 (04:08 +0000)]
Fully VMSify CPANPLUS util names following #30885

p4raw-id: //depot/perl@30902

17 years agoSilence the g++ warnings "right-hand operand of comma has no effect"
Nicholas Clark [Tue, 10 Apr 2007 19:39:01 +0000 (19:39 +0000)]
Silence the g++ warnings "right-hand operand of comma has no effect"

p4raw-id: //depot/perl@30900

17 years agoCast needed to get POSIX compiling with g++ on FreeBSD.
Nicholas Clark [Tue, 10 Apr 2007 18:56:17 +0000 (18:56 +0000)]
Cast needed to get POSIX compiling with g++ on FreeBSD.

p4raw-id: //depot/perl@30898

17 years agoMake the don't-use-nm symbol table probes work under C++.
Nicholas Clark [Tue, 10 Apr 2007 18:30:04 +0000 (18:30 +0000)]
Make the don't-use-nm symbol table probes work under C++.

p4raw-id: //depot/perl@30897

17 years agoVersion change to ExtUtils::MM_Unix missed in change #30380.
Steve Peters [Tue, 10 Apr 2007 16:36:08 +0000 (16:36 +0000)]
Version change to ExtUtils::MM_Unix missed in change #30380.
p4raw-link: @30380 on //depot/perl: 1e65eb70bcb514e61cdd8408bdbe4e5a20b7fd95

p4raw-id: //depot/perl@30896

17 years agoSomehow, version.pm was missed from change #30629.
Steve Peters [Tue, 10 Apr 2007 16:23:10 +0000 (16:23 +0000)]
Somehow, version.pm was missed from change #30629.
p4raw-link: @30629 on //depot/perl: ac0e6a2fd2970df72270aecb94d407fe170b43a7

p4raw-id: //depot/perl@30895

17 years agoUndo the non-maint part of change 30816. Silly Nicholas.
Nicholas Clark [Tue, 10 Apr 2007 16:11:41 +0000 (16:11 +0000)]
Undo the non-maint part of change 30816. Silly Nicholas.

p4raw-id: //depot/perl@30894