15 years agoAs PERL_ARCH_FMT_PATH is a compile time constant, can simplify one sv_setpvf()
Nicholas Clark [Mon, 16 Feb 2009 22:03:35 +0000]
As PERL_ARCH_FMT_PATH is a compile time constant, can simplify one sv_setpvf()
to sv_setsv() and sv_catpvs().

15 years agoPERL_FS_VER_FMT is only used with the current perl version, which is known at
Nicholas Clark [Mon, 16 Feb 2009 22:00:14 +0000]
PERL_FS_VER_FMT is only used with the current perl version, which is known at
compile time, so replace it with PERL_FS_VERSION, a compile time constant.

15 years agoAbolish PERL_AV_SUFFIX_FMT, which was rendered obsolescent 8 years ago with
Nicholas Clark [Mon, 16 Feb 2009 21:42:54 +0000]
Abolish PERL_AV_SUFFIX_FMT, which was rendered obsolescent 8 years ago with
084592ab0b76f3cbd4d089afb08ccea7ba1c9dd8.

15 years agoReplace *printf "%d.%d.%d", PERL_REVISION, PERL_VERSION, PERL_SUBVERSION
Nicholas Clark [Mon, 16 Feb 2009 21:16:21 +0000]
Replace *printf "%d.%d.%d", PERL_REVISION, PERL_VERSION, PERL_SUBVERSION
with PERL_VERSION_STRING, which can be determined at compile time, as a
constant string.

15 years agoUpdate copyright years. 2008 sneaks in because of 46807d8e809cc127621bf85d9e9
Nicholas Clark [Mon, 16 Feb 2009 21:15:17 +0000]
Update copyright years. 2008 sneaks in because of 46807d8e809cc127621bf85d9e9

15 years agoadd missing perforce-era entry to Changes files
David Mitchell [Mon, 16 Feb 2009 16:37:00 +0000]
add missing perforce-era entry to Changes files

15 years agoUse tempfile() in tests
Bram [Mon, 16 Feb 2009 15:07:19 +0000]
Use tempfile() in tests

15 years agoDon't add PRIVLIB_EXP to @INC twice.
Nicholas Clark [Mon, 16 Feb 2009 11:14:28 +0000]
Don't add PRIVLIB_EXP to @INC twice.

15 years ago[perl #63234] [DOC PATCH] fix some missing parts of IO::Handle pod
Zsban Ambrus [Mon, 16 Feb 2009 11:18:19 +0000]
[perl #63234] [DOC PATCH] fix some missing parts of IO::Handle pod

This documents the previously undocumented fcntl and ioctl methods, and
adds a see also to the IO::File module where the documentation refers
to one of its methods.

15 years agoUpgrade to Encode 2.31
Dan Kogai [Mon, 16 Feb 2009 10:45:53 +0000]
Upgrade to Encode 2.31

15 years agoExtra regex tests
Bram [Mon, 16 Feb 2009 10:22:40 +0000]
Extra regex tests

Message-ID: <20090215185207.gsnhhqdegckws0co@horde.wizbit.be>
Message-ID: <20090215210634.u02f15b284ogc4s4@horde.wizbit.be>

15 years agoYves states that patches to ExtUtils::Install should go to blead first
Rafael Garcia-Suarez [Mon, 16 Feb 2009 10:09:12 +0000]
Yves states that patches to ExtUtils::Install should go to blead first

15 years agoEnsure that the pointer to S_incpush_use_sep() is never NULL.
Nicholas Clark [Sun, 15 Feb 2009 21:53:50 +0000]
Ensure that the pointer to S_incpush_use_sep() is never NULL.

15 years agoIn @INC, move ARCHLIB and PRIVLIB after the current version's site_perl and
Nicholas Clark [Sun, 15 Feb 2009 16:51:10 +0000]
In @INC, move ARCHLIB and PRIVLIB after the current version's site_perl and
vendor_perl.

15 years agoLoop in S_init_perllib(), only calling S_incpush*() with INCPUSH_ADD_OLD_VERS
Nicholas Clark [Sun, 15 Feb 2009 16:18:34 +0000]
Loop in S_init_perllib(), only calling S_incpush*() with INCPUSH_ADD_OLD_VERS
the second time (and only for those entries at had it). Implement the loop by
calling init_perllib() twice, to avoid a rats nest of re-indenting. Add a new
flag to S_incpush() INCPUSH_NOT_BASEDIR, to supress pushing the base directory
a second time on the secnod call.

With this change, re-ordering of @INC from version-orientated to prefix-
orientated is partly complete. ARCHLIB and PRIVLIB remain at their old place in
the @INC order.

15 years agoRefactor the separator splitting loop of S_incpush() into a S_incpush_use_sep().
Nicholas Clark [Sun, 15 Feb 2009 14:35:36 +0000]
Refactor the separator splitting loop of S_incpush() into a S_incpush_use_sep().
Add a parameter to S_incpush() to optionally pass in the length. As S_incpush()
treats the directory parameter as const char, remove some malloc()s elsewhere
that were copying data on the assumption that it was not const safe.

15 years agoIn S_incpush(), rename the parameter from dir to p, rather than copying it.
Nicholas Clark [Sun, 15 Feb 2009 14:01:18 +0000]
In S_incpush(), rename the parameter from dir to p, rather than copying it.

15 years agoExtUtils::Install VMS extended character set support
John Malmberg [Sun, 15 Feb 2009 15:25:10 +0000]
ExtUtils::Install VMS extended character set support

Preview from https://rt.cpan.org/Ticket/Display.html?id=42149

15 years agoRefactor S_incpush() to take 1 flags parameter, instead of 5 positional booleans
Nicholas Clark [Sun, 15 Feb 2009 12:05:55 +0000]
Refactor S_incpush() to take 1 flags parameter, instead of 5 positional booleans
(which are impossible to remember).

15 years agoFor -I, need to also unshift version and architecture libs onto @INC (RT#6665)
Nicholas Clark [Sun, 15 Feb 2009 11:27:51 +0000]
For -I, need to also unshift version and architecture libs onto @INC (RT#6665)
(20189146be79a0596543441fa369c6bf7f85103f only added the given directory.)

15 years agoClear Module::Build smoke on VMS while waiting for upstream.
Craig A. Berry [Sat, 14 Feb 2009 19:08:33 +0000]
Clear Module::Build smoke on VMS while waiting for upstream.

Except for the version bump, this is the same as:

https://rt.cpan.org/Public/Bug/Display.html?id=42724

15 years agoAdd git_version.h to private so that make distclean deletes it.
Nicholas Clark [Sat, 14 Feb 2009 18:53:32 +0000]
Add git_version.h to private so that make distclean deletes it.
(It was already in a different target that caused make clean to delete it.)

15 years agoIgnore the OS X GNUmakefile*s, and t/test_state.
Nicholas Clark [Sat, 14 Feb 2009 18:30:02 +0000]
Ignore the OS X GNUmakefile*s, and t/test_state.

15 years agoIgnore lib/NDBM_File.pm
Nicholas Clark [Sat, 14 Feb 2009 18:29:37 +0000]
Ignore lib/NDBM_File.pm

15 years agoMake git-find-p4-change only find changes done under perforce.
David Mitchell [Sat, 14 Feb 2009 17:26:11 +0000]
Make git-find-p4-change only find changes done under perforce.
That way, later cherry-picking that happens to copy the 'p4raw-id:'
text won't be located by mistake.

15 years agoForbid to use "foreach" as an attribute
Rafael Garcia-Suarez [Sat, 14 Feb 2009 09:04:07 +0000]
Forbid to use "foreach" as an attribute

(like all other control flow statements)

15 years agoMore tests for coderefs and smart match
Rafael Garcia-Suarez [Fri, 13 Feb 2009 23:16:20 +0000]
More tests for coderefs and smart match

15 years agoRemove code that has never been used in any test
Rafael Garcia-Suarez [Fri, 13 Feb 2009 22:20:11 +0000]
Remove code that has never been used in any test

15 years agoHandle uninitialized interpreter when performing vmsish pragma checks.
Craig A. Berry [Fri, 13 Feb 2009 21:26:00 +0000]
Handle uninitialized interpreter when performing vmsish pragma checks.

15 years ago$object ~~ undef should always test for definedness
Rafael Garcia-Suarez [Fri, 13 Feb 2009 21:08:06 +0000]
$object ~~ undef should always test for definedness

(even if $object hasn't overloaded the ~~ operator)

15 years agoAdd tests for undef smart-matching
Rafael Garcia-Suarez [Fri, 13 Feb 2009 20:57:41 +0000]
Add tests for undef smart-matching

15 years agoDocument error "Smart matching a non-overloaded object breaks encapsulation"
Rafael Garcia-Suarez [Fri, 13 Feb 2009 15:59:22 +0000]
Document error "Smart matching a non-overloaded object breaks encapsulation"

That error was added in e67b97bd974194ad616acbb7813c5631aacd6be7

15 years agoRemove obsolete comment; document test format
Rafael Garcia-Suarez [Fri, 13 Feb 2009 14:59:28 +0000]
Remove obsolete comment; document test format

15 years agoMore tests for array-ref smart match
Rafael Garcia-Suarez [Fri, 13 Feb 2009 15:23:28 +0000]
More tests for array-ref smart match

15 years agoRemove one of the two definitions of the a_const contant sub
Rafael Garcia-Suarez [Fri, 13 Feb 2009 15:17:30 +0000]
Remove one of the two definitions of the a_const contant sub

15 years agoMore gitignore adjustments
Rafael Garcia-Suarez [Fri, 13 Feb 2009 14:47:39 +0000]
More gitignore adjustments

Ignore lib/Attribute, now that Attribute::Handlers is under ext/.

Ignore generated Makefile.PL files for Safe and Attribute-Handlers.
I preferred putting those in specific .gitignore files instead of
ignoring Makefile.PLs in the whole ext/ hierarchy, in order to
ensure a less confusing git behaviour for future generations.

15 years agoRemove double slash in MANIFEST
Rafael Garcia-Suarez [Thu, 12 Feb 2009 21:21:44 +0000]
Remove double slash in MANIFEST

(so Porting/manicheck does not complain)

15 years agoMove Attribute::Handlers from lib to ext. The layout in ext is the same as the
Nicholas Clark [Thu, 12 Feb 2009 21:02:24 +0000]
Move Attribute::Handlers from lib to ext. The layout in ext is the same as the
CPAN distribution, which simplifies dual life module maintenance.

15 years agomake_ext.pl now generates a Makefile.PL if needed.
Nicholas Clark [Thu, 12 Feb 2009 20:43:49 +0000]
make_ext.pl now generates a Makefile.PL if needed.
Remove ext/Safe/Makefile.PL as a proof of concept.

15 years agoFind extensions on VMS even when they don't have a Makefile.PL.
Craig A. Berry [Thu, 12 Feb 2009 19:22:22 +0000]
Find extensions on VMS even when they don't have a Makefile.PL.

15 years agoUnigue test file names in t/lib/warnings/9enabled
Jerry D. Hedden [Thu, 12 Feb 2009 16:16:15 +0000]
Unigue test file names in t/lib/warnings/9enabled

15 years agoUpgrade to Math-Complex-1.56
Steve Hay [Thu, 12 Feb 2009 14:50:16 +0000]
Upgrade to Math-Complex-1.56

15 years agowin32/ext doesn't exist any more, so no need to look there for extensions
Steve Hay [Thu, 12 Feb 2009 11:16:20 +0000]
win32/ext doesn't exist any more, so no need to look there for extensions

15 years agowin32/ext doesn't exist any more, so no need to look there for tests
Steve Hay [Thu, 12 Feb 2009 10:46:32 +0000]
win32/ext doesn't exist any more, so no need to look there for tests

15 years agoIgnore some temporary files created by ext/DB_File.
Florian Ragwitz [Thu, 12 Feb 2009 10:42:24 +0000]
Ignore some temporary files created by ext/DB_File.

15 years agoUpdate .gitignore with new flat extension path
Steve Hay [Thu, 12 Feb 2009 10:17:21 +0000]
Update .gitignore with new flat extension path

15 years agoSkip tests for flattened extensions that weren't built.
Steve Hay [Thu, 12 Feb 2009 10:14:07 +0000]
Skip tests for flattened extensions that weren't built.

Commit 6ebb0601826917b6ce1b97a2bdd6577110416c64 missed t/harness,
which Win32 uses rather than t/TEST.

Also, make the new variable my().

15 years agoFix MANIFEST for CPAN 1.93_51 inclusion
Rafael Garcia-Suarez [Thu, 12 Feb 2009 09:20:52 +0000]
Fix MANIFEST for CPAN 1.93_51 inclusion

15 years agoUpdate CPAN.pm to 1.93_51
Andreas Koenig [Thu, 12 Feb 2009 04:44:17 +0000]
Update CPAN.pm to 1.93_51

15 years agovms fgetname wrapper.
John Malmberg [Mon, 9 Feb 2009 14:50:29 +0000]
vms fgetname wrapper.

fgetname() does not always return the correct Unix format file
specification when the decc$filename_unix_report feature is active and
is ignoring the decc$readdir_dropdot_notype setting.

So always have fgetname() return a VMS format file specification.  When
decc$filename_unix_report is active, use unixify() to convert it to the
expected syntax.

This bug shows up doing rename tests on an open file that has no file
extension with decc$filename_unix_report and decc$readdir_dropdot_notype
both active.

Message-ID: <499042B5.4030803@gmail.com>

15 years agoavoid confusing gcc with -2147483648
H.Merijn Brand [Wed, 11 Feb 2009 13:52:41 +0000]
avoid confusing gcc with -2147483648

As Robin explained, -123UL will be (should be) parsed as -(123UL), which should make all compilers happy

15 years agoFix previous patch. Actually it's written PAREN, not PARENT.
Robin Barker [Wed, 11 Feb 2009 12:52:52 +0000]
Fix previous patch. Actually it's written PAREN, not PARENT.

There is a typo in English.pm test

Robin Barker

15 years agoUpdate makerel to make a release from a git checkout.
Nicholas Clark [Wed, 11 Feb 2009 11:17:38 +0000]
Update makerel to make a release from a git checkout.
(Ignore .git directory, .gitignore files, and references to removed perforce
related scripts.)

15 years agoFix previous patch. Actually it's written PAREN, not PARENT.
Rafael Garcia-Suarez [Tue, 10 Feb 2009 17:22:09 +0000]
Fix previous patch. Actually it's written PAREN, not PARENT.

15 years agomention English name of %+ in perlvar.pod
Moritz Lenz [Tue, 10 Feb 2009 17:17:49 +0000]
mention English name of %+ in perlvar.pod

15 years agoComment inside evaluated shell string causes havoc
H.Merijn Brand [Tue, 10 Feb 2009 16:35:12 +0000]
Comment inside evaluated shell string causes havoc

15 years agoRestore old behavior for perl builds with (still) unflattened ext/.
H.Merijn Brand [Tue, 10 Feb 2009 14:58:14 +0000]
Restore old behavior for perl builds with (still) unflattened ext/.

Backported assorted changes and regenerated Configure

15 years agometaconfig needs these two symlinks
H.Merijn Brand [Tue, 10 Feb 2009 14:19:49 +0000]
metaconfig needs these two symlinks

15 years agolib/Config_git.pl mustn't be built concurrently with lib/Config.pm, else there
Nicholas Clark [Tue, 10 Feb 2009 13:14:28 +0000]
lib/Config_git.pl mustn't be built concurrently with lib/Config.pm, else there
is a race condition which loses if configpm happens to test lib/Config.pm just
at the point where lib/Config_git.pl is freshly created, but has no content, and
hence returns false. So make it an explicit dependency of lib/Config.pm

15 years agoAll extensions are at the top level, so no longer any need to recurse.
Nicholas Clark [Tue, 10 Feb 2009 09:36:47 +0000]
All extensions are at the top level, so no longer any need to recurse.

15 years agoAdjust name of Test-Harness directory in .gitignore
Rafael Garcia-Suarez [Tue, 10 Feb 2009 09:13:23 +0000]
Adjust name of Test-Harness directory in .gitignore

15 years agoMove Safe.pm into ext/Safe, and temporarily give it a Makfile.PL
Nicholas Clark [Tue, 10 Feb 2009 08:26:20 +0000]
Move Safe.pm into ext/Safe, and temporarily give it a Makfile.PL

15 years agoSys-Syslog I18N-Langinfo have long names now.
Nicholas Clark [Tue, 10 Feb 2009 06:19:42 +0000]
Sys-Syslog I18N-Langinfo have long names now.

15 years agoLogic changes for the VMS-specific mkdir/chdir/chmod/symlink routines.
John Malmberg [Mon, 9 Feb 2009 03:47:33 +0000]
Logic changes for the VMS-specific mkdir/chdir/chmod/symlink routines.

15 years agoRemove special casing for extensions nested inside other extensions.
Nicholas Clark [Mon, 9 Feb 2009 21:49:11 +0000]
Remove special casing for extensions nested inside other extensions.
(Incorporates "[PATCH] Don't include Hash::Utils::FieldHash twice" from
Jerry Hedden.)

15 years agoRename ext/threads/shared to ext/threads-shared
Nicholas Clark [Mon, 9 Feb 2009 21:07:00 +0000]
Rename ext/threads/shared to ext/threads-shared

15 years agoRename ext/XS/Typemap to ext/XS-Typemap
Nicholas Clark [Mon, 9 Feb 2009 20:33:53 +0000]
Rename ext/XS/Typemap to ext/XS-Typemap

15 years agoRename ext/XS/APItest to ext/XS-APItest
Nicholas Clark [Mon, 9 Feb 2009 20:27:54 +0000]
Rename ext/XS/APItest to ext/XS-APItest

15 years agoRename ext/Unicode/Normalize to ext/Unicode-Normalize
Nicholas Clark [Mon, 9 Feb 2009 20:47:07 +0000]
Rename ext/Unicode/Normalize to ext/Unicode-Normalize

15 years agoRename ext/Time/Piece to ext/Time-Piece
Nicholas Clark [Mon, 9 Feb 2009 20:17:23 +0000]
Rename ext/Time/Piece to ext/Time-Piece

15 years agoRename ext/Time/HiRes to ext/Time-HiRes
Nicholas Clark [Mon, 9 Feb 2009 20:08:32 +0000]
Rename ext/Time/HiRes to ext/Time-HiRes

15 years agoRename ext/Text/Soundex to ext/Text-Soundex
Nicholas Clark [Mon, 9 Feb 2009 19:53:14 +0000]
Rename ext/Text/Soundex to ext/Text-Soundex

15 years agocorrect typo, replacing "complement" with "compliment"
rmgiroux@acm.org [Wed, 4 Feb 2009 23:42:07 +0000]
correct typo, replacing "complement" with "compliment"

15 years agoRename ext/Test/Harness to ext/Test-Harness
Nicholas Clark [Mon, 9 Feb 2009 19:31:24 +0000]
Rename ext/Test/Harness to ext/Test-Harness

15 years agoRename ext/Sys/Hostname to ext/Sys-Hostname
Nicholas Clark [Mon, 9 Feb 2009 19:15:54 +0000]
Rename ext/Sys/Hostname to ext/Sys-Hostname

15 years agoRename ext/PerlIO/via to ext/PerlIO-via
Nicholas Clark [Mon, 9 Feb 2009 18:45:58 +0000]
Rename ext/PerlIO/via to ext/PerlIO-via

15 years agoRename ext/PerlIO/scalar to ext/PerlIO-scalar
Nicholas Clark [Mon, 9 Feb 2009 18:18:32 +0000]
Rename ext/PerlIO/scalar to ext/PerlIO-scalar

15 years agoRename ext/PerlIO/encoding to ext/PerlIO-encoding
Nicholas Clark [Mon, 9 Feb 2009 18:07:54 +0000]
Rename ext/PerlIO/encoding to ext/PerlIO-encoding

15 years agoMove the 4 tests of core PerlIO functionality to t/io. PerlIO::Layer::find is
Nicholas Clark [Mon, 9 Feb 2009 17:56:53 +0000]
Move the 4 tests of core PerlIO functionality to t/io. PerlIO::Layer::find is
implemented in perlio.c

15 years agoMove 3 tests from ext/PerlIO/t to their relevant PerlIO::* module directories.
Nicholas Clark [Mon, 9 Feb 2009 17:43:05 +0000]
Move 3 tests from ext/PerlIO/t to their relevant PerlIO::* module directories.

15 years agoRename ext/Module/Pluggable to ext/Module-Pluggable
Nicholas Clark [Mon, 9 Feb 2009 18:45:18 +0000]
Rename ext/Module/Pluggable to ext/Module-Pluggable

15 years agoRename ext/Math/BigInt/FastCalc to ext/Math-BigInt-FastCalc
Nicholas Clark [Mon, 9 Feb 2009 16:54:14 +0000]
Rename ext/Math/BigInt/FastCalc to ext/Math-BigInt-FastCalc

15 years agoRename ext/MIME/Base64 to ext/MIME-Base64
Nicholas Clark [Mon, 9 Feb 2009 16:40:56 +0000]
Rename ext/MIME/Base64 to ext/MIME-Base64

15 years agoRename ext/List/Util as ext/List-Util
Nicholas Clark [Mon, 9 Feb 2009 16:20:28 +0000]
Rename ext/List/Util as ext/List-Util

15 years agoRename ext/I18N/Langinfo to ext/I18N-Langinfo
Nicholas Clark [Mon, 9 Feb 2009 16:04:26 +0000]
Rename ext/I18N/Langinfo to ext/I18N-Langinfo

15 years agoRename ext/Hash/Util to ext/Hash-Util
Nicholas Clark [Mon, 9 Feb 2009 15:40:02 +0000]
Rename ext/Hash/Util to ext/Hash-Util

15 years agoRename ext/Hash/Util/FieldHash to ext/Hash-Util-FieldHash
Nicholas Clark [Mon, 9 Feb 2009 15:22:27 +0000]
Rename ext/Hash/Util/FieldHash to ext/Hash-Util-FieldHash

15 years agoRename ext/Filter/Util/Call to ext/Filter-Util-Call
Nicholas Clark [Mon, 9 Feb 2009 14:41:51 +0000]
Rename ext/Filter/Util/Call to ext/Filter-Util-Call

15 years agoRename ext/File/Glob to ext/File-Glob
Nicholas Clark [Mon, 9 Feb 2009 13:32:21 +0000]
Rename ext/File/Glob to ext/File-Glob

15 years agoRename ext/Digest/SHA to ext/Digest-SHA
Nicholas Clark [Mon, 9 Feb 2009 12:58:18 +0000]
Rename ext/Digest/SHA to ext/Digest-SHA

15 years agoRename ext/Digest/MD5 to ext/Digest-MD5
Nicholas Clark [Mon, 9 Feb 2009 11:50:04 +0000]
Rename ext/Digest/MD5 to ext/Digest-MD5

15 years agoRename ext/Devel/Peek to ext/Devel-Peek
Nicholas Clark [Mon, 9 Feb 2009 11:33:59 +0000]
Rename ext/Devel/Peek to ext/Devel-Peek

15 years agoRename ext/Devel/PPPort to ext/Devel-PPPort
Nicholas Clark [Mon, 9 Feb 2009 11:19:11 +0000]
Rename ext/Devel/PPPort to ext/Devel-PPPort
It has its tentacles in many other places.

15 years agoRename ext/Devel/DProf to ext/Devel-DProf
Nicholas Clark [Mon, 9 Feb 2009 09:27:52 +0000]
Rename ext/Devel/DProf to ext/Devel-DProf

15 years agoIn The Grand Trek, Filter::Util::Call's call.t didn't trek far enough.
Nicholas Clark [Mon, 9 Feb 2009 13:44:32 +0000]
In The Grand Trek, Filter::Util::Call's call.t didn't trek far enough.

15 years agoRename ext/Data/Dumper to ext/Data-Dumper
Nicholas Clark [Mon, 9 Feb 2009 09:14:40 +0000]
Rename ext/Data/Dumper to ext/Data-Dumper

15 years agoRename ext/Compress/Zlib to ext/Compress-Zlib
Nicholas Clark [Mon, 9 Feb 2009 08:53:52 +0000]
Rename ext/Compress/Zlib to ext/Compress-Zlib

15 years agoRename ext/Compress/Raw/Zlib to ext/Compress-Raw-Zlib
Nicholas Clark [Mon, 9 Feb 2009 08:23:25 +0000]
Rename ext/Compress/Raw/Zlib to ext/Compress-Raw-Zlib

15 years agoGoodbye, make_ext.com; make_ext.pl will take over now.
Craig A. Berry [Mon, 9 Feb 2009 01:15:41 +0000]
Goodbye, make_ext.com; make_ext.pl will take over now.

But thanks for 7 1/2 years of faithful service.

15 years agoRename ext/Win32API/File to ext/Win32API-File
Nicholas Clark [Sun, 8 Feb 2009 22:28:04 +0000]
Rename ext/Win32API/File to ext/Win32API-File