summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* It's not necessary to hardcode skipping of benchmark tests in themRafael Garcia-Suarez2009-06-111-1/+0
| | | | since that's handled by TEST and harness
* Add t/benchmark to tests run if $ENV{PERL_BENCHMARK} is setMax Maischein2009-06-112-0/+3
|
* Sync to Data::Dumper 2.123Steffen Mueller2009-06-112-4/+9
| | | | A CPAN only fix for the INSTALLDIRS in Makefile.PL.
* Document findsym in Attribute::HandlersDavid Wheeler2009-06-112-4/+25
| | | | | Also removes unused variable $found. Bumps Attribute::Handlers version to 0.85.
* Do not honor TMPDIR for anonymous temporary files when taintingRafael Garcia-Suarez2009-06-102-8/+18
| | | | | | | Use a default of /tmp on Unixes when TMPDIR is unset or empty, or when creation of a temporary file in it fails This goes on top of commit 26e8050aaf2eeca2f04cdc7bc5df07f8dc4ff0f9
* Small typo in example.H.Merijn Brand2009-06-101-1/+1
| | | | Thanks to "Jim Ferguson"
* update comment in overload.pl following 813720522fDavid Mitchell2009-06-101-1/+1
|
* remove from blead, some files already removed from Makemaker 6.52David Mitchell2009-06-105-132/+0
|
* Merge branch 'blead' of ssh://stevep@perl5.git.perl.org/gitroot/perl into bleadSteve Peters2009-06-106-9/+11
|\
| * Upgrade Attribute::Handlers to 0.84Steffen Mueller2009-06-106-9/+11
| |
* | [perl #66452] TMPDIR not honored when opening an anonymous temporary fileNiko Tyni2009-06-102-2/+17
|/
* [PATCH] Filter-Util-Call (was RE: pmqs: dual life modules)Paul Marquess2009-06-091-8/+14
|
* Upgrade to MIME-Base64-3.08Gisle Aas2009-06-095-11/+15
|
* Upgrade to Digest-MD5-2.39Gisle Aas2009-06-094-13/+17
|
* Upgrade to Digest-1.16Gisle Aas2009-06-094-6/+21
|
* Upgrade to Data::Dumper stable release 2.122Steffen Mueller2009-06-092-1/+5
|
* Fix threads build on Win32Steve Hay2009-06-091-3/+5
| | | | Follow-up to 8264cf327251f9724c99b125cc3eea11be9b97c5.
* Add lib/NEXT/t/dynamically_scoped_regex_vars.t to MANIFEST.Nicholas Clark2009-06-091-0/+1
|
* Mask thread signal handling fix on Win32Jerry D. Hedden2009-06-091-8/+18
|
* Revised description of => operatorIan Goodacre2009-06-091-7/+11
| | | | | | Provided more explicit description of the words that are handled specially by the => operator and removed the incorrect description of how other expressions are handled.
* Fix regression test for RT 63110 when running with PERL_UNICODE setRafael Garcia-Suarez2009-06-091-1/+2
| | | | This is because block_start already does a copy of the hints in this case.
* Upgrade to threads 1.73Jerry D. Hedden2009-06-0921-101/+15
|
* Make h2xs add a dependency on Test.pm for < 5.6.2Steffen Mueller2009-06-081-8/+16
| | | | | Also replaces lots of 5.00702 (note missing 0) with 5.006002. This is to allow us to jettison Test.pm from core eventually.
* t/op/my_stash.t should use test.pl instead of Test.pmSteffen Mueller2009-06-081-3/+2
|
* Update Test.pm to CPAN's 1.25_02.Jesse Vincent2009-06-081-5/+4
|
* Update Maintainers.pl: Pod-Escapes and TestSteffen Mueller2009-06-081-4/+4
| | | | | Update Maintainers.pl to reflect new maintainer of Pod-Escapes. Correct Jesse's email address (Test maintainer update).
* Sync bleadperl and Net-Ping with the release of Net-Ping-2.36Steve Peters2009-06-081-1/+1
|
* Jesse Vincent now maintains Test.pmSteffen Mueller2009-06-081-1/+2
|
* Errno is no longer dual-livedSteffen Mueller2009-06-081-8/+1
| | | | | (cf. mail from Graham to p5p). Move to _PERLLIB section of Porting/Maintainers.pl.
* Bump lib.pm version to match CPAN releaseSteffen Mueller2009-06-081-1/+1
|
* add remaining Maintainers.pl EXCLUDED and MAP fieldsDavid Mitchell2009-06-081-8/+38
|
* Upgrade NEXT to 0.64.Florian Ragwitz2009-06-084-19/+62
|
* fix RT 39060, errno incorrectly set in perlioStepan Kasal2009-06-083-5/+34
|
* Add missing test boilerplates to new MakeMaker testsRafael Garcia-Suarez2009-06-084-0/+28
|
* Upgrade to MakeMaker 6.53_02Rafael Garcia-Suarez2009-06-0839-97/+358
|
* There is no pthread_sigmask on VMS, so use sigprocmask instead.Craig A. Berry2009-06-071-0/+5
| | | | | | | | | According to the standard, use of sigprocmask is undefined in a multi-threaded context, but in the absence of a per-thread signal blocking mechanism (likely impossible until and unless per-thread ASTs become available), this may be the best we can do. This is a follow-up to: b762d8667351cb765bc1d6419d30acff085da502.
* Upgrade to Test-Harness-3.17Steve Peters2009-06-0758-235/+605
|
* Bump version of threads.pmRafael Garcia-Suarez2009-06-071-1/+1
|
* Mask signals in thread creation and destruction to avoid a segfaultJohn Wright2009-06-071-0/+82
| | | | | | | | | | | | | | | | If our signal handler gets called before a thread got a chance to run PERL_SET_CONTEXT(), the call to get the thread-specific interpreter will fail, and we'll end up with aTHX == NULL. Prevent this from happening by blocking most signals right before creating the new thread. This way, the new thread starts out with most signals blocked, and it unblocks them when it's ready to handle them. This required saving the original signal mask somewhere - I put it in the thread struct. In several places, PERL_SET_CONTEXT() is called before the target perl interpreter struct has been fully initialized, so this patch adds code to block signals around those blocks of code.
* main: Unregister signal handler before destroying my_perlJohn Wright2009-06-071-1/+8
| | | | | | | | If the signal handler runs after perl_destruct() has been called, it will get an invalid (or NULL) my_perl when it asks for the thread-specific interpreter struct. This patch resets the signal handler for any signal previously handled by PL_csighandlerp to SIG_DFL before calling perl_destruct().
* add more Maintianers.pl EXCLUDED and MAP fieldsDavid Mitchell2009-06-071-9/+133
|
* sync a bunch of files with Test::Simple 0.86David Mitchell2009-06-06103-103/+103
| | | | | (the $Id$ changes didn't get picked up when blead was last synced with CPAN)
* Synchronize with Data::Dumper 2.121_20 on CPANSteffen Mueller2009-06-062-1/+8
|
* Mark all .t and .pm files as non executableRafael Garcia-Suarez2009-06-06289-0/+0
|
* Merge commit 'leto/debugger_symbols' into bleadRafael Garcia-Suarez2009-06-064-5/+27
|\
| * Fix my comment about DB::sub and make it DB::DBDuke Leto2009-06-041-1/+1
| |
| * Bump version of perl5db.pl to 1.33, add changelog comments and fix a POD typoDuke Leto2009-06-041-2/+6
| |
| * Merge branch 'debugger_symbols' of github.com:leto/perl into debugger_symbolsDuke Leto2009-06-034-3/+21
| |\
| | * Add lib/perl5db/t/symbol-table-bug to the MANIFESTDuke Leto2009-06-031-0/+1
| | |
| | * Fix shebang line and permissions of lib/perl5db.tDuke Leto2009-06-031-1/+1
| | |