summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Doc patch about PerlIO::encoding:Tels2007-03-061-1/+4
| | | | | | Subject: [PATCH] Re: 'Unknown PerlIO layer "encoding"...' message Message-Id: <200703021131.41085@bloodgate.com> p4raw-id: //depot/perl@30484
* dumpvar.pl must load re::Tie::Hash::NamedCapture if it wantsRafael Garcia-Suarez2007-03-061-0/+1
| | | | | to dump %+ and %-. p4raw-id: //depot/perl@30483
* Reinstate part of #28744 that was accidentally reverted in #30454Steve Hay2007-03-062-4/+4
| | | | | to suppress a couple of warnings (at least on Win32) p4raw-id: //depot/perl@30482
* As SvUPGRADE() is a macro wrapping a call to sv_upgrade() insideNicholas Clark2007-03-052-5/+2
| | | | | | | a check on the existing SvTYPE(), there's no need to wrap it inside another explcit check of SvTYPE(). This won't make any difference to the output of an optimising compiler, but it makes the source clearer. p4raw-id: //depot/perl@30481
* Change 30461 was wrong. As ext/re (re)builds the regexp engine withNicholas Clark2007-03-053-11/+6
| | | | | | | -DDEBUGGING, it's going to need PL_reg_name even if core perl doesn't. So something is always going to use it, so always define it, and always export it. (But only define it once, so that static builds work.) p4raw-id: //depot/perl@30464
* In vms/gen_shrfls.pl, no more special handling of vars fromCraig A. Berry2007-03-051-8/+6
| | | | | regcomp.h -- just process the file. (Needed for PL_reg_name.) p4raw-id: //depot/perl@30463
* Use linker flags rather than compiler flags in ExtUtils::Liblist::Kid::_vms_ext Craig A. Berry2007-03-041-3/+2
| | | | | | when determining whether the perlshr library was linked debug. Also submitted to CPAN RT queue at <http://rt.cpan.org/Ticket/Display.html?id=25268>. p4raw-id: //depot/perl@30462
* It seems that change 30451 should also have arranged to exportNicholas Clark2007-03-042-0/+2
| | | | | | PL_reg_name properly. Hopefuly this will fix it, but I don't have access to any platform where I can test this directly. p4raw-id: //depot/perl@30461
* Math::BigInt 1.80Tels2007-03-0413-29/+156
| | | | | Message-Id: <200703041557.02996@bloodgate.com> p4raw-id: //depot/perl@30460
* Rename exception() to apitest_exception() in XS/APItest, so that itNicholas Clark2007-03-044-6/+10
| | | | | | doesn't clash with the exception() in Devel/PPPort. This way, all tests pass when both modules are staticly linked. p4raw-id: //depot/perl@30459
* Upgrade to IO-Compress-Base-2.004, Compress-Raw-Zlib-2.004, Steve Peters2007-03-0441-274/+326
| | | | | IO-Compress-Zlib-2.004, and Compress-Zlib-2.004. p4raw-id: //depot/perl@30458
* Upgrade to Time-HiRes-1.9707Steve Peters2007-03-042-5/+26
| | | p4raw-id: //depot/perl@30457
* Clean up the right file in vms/test.com (following #30414).Craig A. Berry2007-03-031-1/+1
| | | p4raw-id: //depot/perl@30456
* Add missing file from change #30454Rafael Garcia-Suarez2007-03-031-0/+34
| | | | | p4raw-link: @30454 on //depot/perl: caa6400115a38c0669db5e1b28eaa0eb8d1aad26 p4raw-id: //depot/perl@30455
* Math::BigInt::FastCalc 0.12 (plug leaks)Tels2007-03-033-33/+27
| | | | | Message-Id: <200703031710.00203@bloodgate.com> p4raw-id: //depot/perl@30454
* Must only use dynamic extensions in the Dynaloader test. If theNicholas Clark2007-03-031-1/+1
| | | | | extensions are static, it doesn't work :-) p4raw-id: //depot/perl@30453
* As the test is about the parser, not actually running the code, betterNicholas Clark2007-03-031-1/+1
| | | | | to avoid running <STDOUT> rather than run it with warnings disabled. p4raw-id: //depot/perl@30452
* Define and initialise reg_name only once.Nicholas Clark2007-03-034-23/+25
| | | | | | | This allows re to be a static extension. As it's now no-longer a static variable in regcomp.c, it needs a PL_ prefix. p4raw-id: //depot/perl@30451
* Don't let feature.pm interfere with the tests for use VERSION.Rafael Garcia-Suarez2007-03-031-0/+1
| | | | | That probably needs to be refined. p4raw-id: //depot/perl@30450
* Don't copy DynaLoader.o unnecessarilyJerry D. Hedden2007-03-031-1/+3
| | | | | | From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <566598.96493.qm@web30204.mail.mud.yahoo.com> p4raw-id: //depot/perl@30449
* Add a volatile modifier to avoid possible cloberring by longjmp,Rafael Garcia-Suarez2007-03-031-1/+1
| | | | | as the compiler used by Jerry D. Hedden warns. p4raw-id: //depot/perl@30448
* Compilation warnings fixes by Jerry D. HeddenRafael Garcia-Suarez2007-03-034-1/+39
| | | p4raw-id: //depot/perl@30447
* Make use VERSION also load feature.pmRafael Garcia-Suarez2007-03-035-2/+109
| | | p4raw-id: //depot/perl@30446
* Fix a few errors and ambiguities in configure.com caught byCraig A. Berry2007-03-031-5/+6
| | | | | Charlie Hammond's DCL Checker. p4raw-id: //depot/perl@30445
* Avoid an assertion failure when overloading readpipe.Nicholas Clark2007-03-022-2/+6
| | | p4raw-id: //depot/perl@30444
* More assertion failures, found by auditing the code.Nicholas Clark2007-03-024-6/+28
| | | p4raw-id: //depot/perl@30443
* Don't crash if the symbol table entry for ISA isn't a typeglob.Nicholas Clark2007-03-022-2/+8
| | | p4raw-id: //depot/perl@30442
* More work on perldeltaRafael Garcia-Suarez2007-03-021-12/+91
| | | p4raw-id: //depot/perl@30441
* The bug fixed by change 29610 would have been avoided with thisNicholas Clark2007-03-011-0/+1
| | | | | | | assertion - ensure that the hek argument to Perl_unshare_hek() is not NULL, because if it is, then S_unshare_hek_or_pvn() will merrily unshare the string "" instead. p4raw-id: //depot/perl@30440
* Don't SEGV when dumping an undefined typeglob. The HEK used to storeNicholas Clark2007-03-011-1/+1
| | | | | the GV's name can be NULL. p4raw-id: //depot/perl@30439
* Mention the syntax C<use feature ':5.10'> in feature.pm's synopsisRafael Garcia-Suarez2007-03-011-0/+2
| | | p4raw-id: //depot/perl@30438
* Upgrade to Params::Check 0.26Rafael Garcia-Suarez2007-03-012-8/+32
| | | p4raw-id: //depot/perl@30437
* Re: New file: t/op/regexp_email.tYves Orton2007-03-015-14/+118
| | | | | Message-ID: <9b18b3110702280845p7860ca08taf1aead39a178aa4@mail.gmail.com> p4raw-id: //depot/perl@30436
* A new test by Abigail: Check that certain modules don'tRafael Garcia-Suarez2007-03-012-0/+42
| | | | | get loaded when other modules are used. p4raw-id: //depot/perl@30435
* Re: Revisits in 'make install'Jerry D. Hedden2007-03-011-1/+1
| | | | | | From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <95346.11233.qm@web30207.mail.mud.yahoo.com> p4raw-id: //depot/perl@30434
* A couple of casting nits by JarkkoRafael Garcia-Suarez2007-03-012-2/+2
| | | p4raw-id: //depot/perl@30433
* Teach Module::Build about DragonflyBSDRafael Garcia-Suarez2007-03-011-1/+2
| | | p4raw-id: //depot/perl@30432
* Missing dual-lived modules in maintainers listRafael Garcia-Suarez2007-02-281-1/+30
| | | p4raw-id: //depot/perl@30431
* Update my email addressRafael Garcia-Suarez2007-02-282-1/+2
| | | p4raw-id: //depot/perl@30430
* Win32 doc update for Win32CORE changesYitzchak Scott-Thoennes2007-02-282-33/+46
| | | | | | From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org> Message-ID: <13678.68.166.55.187.1172518080.squirrel@68.166.55.187> p4raw-id: //depot/perl@30429
* Unexpected outputAbigail2007-02-281-2/+2
| | | | | Message-ID: <20070227220028.GA460@abigail.nl> p4raw-id: //depot/perl@30428
* Remove obsolete test for the deprecation warning I just removed.Rafael Garcia-Suarez2007-02-281-2/+0
| | | p4raw-id: //depot/perl@30427
* Fix ext/Win32API/File/t/file.t under test harnessJerry D. Hedden2007-02-281-0/+2
| | | | | | From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <994673.36516.qm@web30215.mail.mud.yahoo.com> p4raw-id: //depot/perl@30426
* Re: [PATCH] Re: Math::BigInt and Win32API::File whines a lot during make test...Jerry D. Hedden2007-02-281-14/+14
| | | | | | | | | From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <738238.57355.qm@web30201.mail.mud.yahoo.com> (Silences warnings about math lib(s), avoids using Math::BigInt when using 64-bit ints and changes "new" to "->new()") p4raw-id: //depot/perl@30425
* (?p{}) has been deprecated for a long time.Rafael Garcia-Suarez2007-02-283-25/+1
| | | | | | Remove it, so people are not confused with regard to the new /p regexp modifier. p4raw-id: //depot/perl@30424
* Add new tests for keys in %+ and %-Rafael Garcia-Suarez2007-02-281-1/+21
| | | p4raw-id: //depot/perl@30423
* perltodo nit for SelfLoaderRafael Garcia-Suarez2007-02-281-0/+2
| | | p4raw-id: //depot/perl@30422
* Fix a couple of typos in internal docsRafael Garcia-Suarez2007-02-282-3/+3
| | | p4raw-id: //depot/perl@30421
* Change of email address.Abigail2007-02-271-1/+1
| | | | | | Message-ID: <20070227225456.GA1808@abigail.nl> Date: Tue, 27 Feb 2007 23:54:56 +0100 p4raw-id: //depot/perl@30420
* Skip tests if Encode not builtJerry D. Hedden2007-02-272-1/+15
| | | | | | From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <176638.9767.qm@web30207.mail.mud.yahoo.com> p4raw-id: //depot/perl@30419