summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Detabify manicheckJesse Vincent2009-12-181-2/+2
|
* When discarding a token free the op associated with itGerard Goossen2009-12-181-0/+2
| | | | | | | | | | | | | | | | | | | | When discarding a token free the op associated with it. Fixes memory leak in comp/parser.t Gerard Goossen From 7694ec023ec8856f34964b5eeea58f1b588c89bc Mon Sep 17 00:00:00 2001 From: Gerard Goossen <gerard@ggoossen.net> Date: Fri, 18 Dec 2009 18:32:11 +0100 Subject: [PATCH 4/4] When discarding a token free the op associated with it. Status: O Content-Length: 438 Lines: 20 Fixes memory leak in comp/parser.t Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
* Bring up ExtUtils::MakeMaker to 6.56 - no functional changes from 6.55_03Jesse Vincent2009-12-1829-28/+43
|
* Import CPAN.pm 1.94_53 from CPANJesse Vincent2009-12-1816-660/+2063
|
* Free the PL_scopestack_nameGerard Goossen2009-12-181-0/+3
| | | | | | | | | | | | | Free the PL_scopestack_name Gerard Goossen From 4652807944b1b7efc8a66b3fe8d7562d23a2189f Mon Sep 17 00:00:00 2001 From: Gerard Goossen <gerard@ggoossen.net> Date: Fri, 18 Dec 2009 15:09:49 +0100 Subject: [PATCH 2/2] Free the PL_scopestack_name Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
* Export PL_curinterp symbol for MULTIPLICITY without USE_ITHREADSJan Dubois2009-12-171-0/+4
| | | | | | | | | This is necessary for XS extensions that define PERL_CORE. In that situation PERL_GET_CONTEXT will resolve to PL_curinterp, which is normally not exported (extensions call Perl_Gcurinterp_ptr() to get a pointer to PL_curinterp instead). With USE_ITHREADS defined PERL_GET_CONTEXT will expand to Perl_get_context() even inside the core because the context needs to be fetched from threadlocal storage.
* Correct some #ifdef USE_ITHREADS / USE_MULTIMax Maischein2009-12-173-3/+9
|
* Updated Module::Build to 0.35_15David Golden2009-12-1730-51/+42
| | | | | | | | | | | This is just to sync with CPAN -- these changes should not impact blead. 0.35_15 - Thu Dec 17 17:51:22 EST 2009 Bug fixes: - Make sure PPM tests are skipped if IO::File is too old [David Golden]
* Updated Module::Build to 0.35_14David Golden2009-12-1746-408/+615
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0.35_14 - Thu Dec 17 16:02:14 EST 2009 Bug fixes: - If not set, the 'module_name' is detected from 'dist_version_from' or from 'dist_name'. The directory is no longer used. [David Golden] - The 'share_dir' property no longer defaults to 'share' and must be explicitly set instead; this fixes problems for CPAN distributions that already have a 'share' directory for whatever reason [David Golden] - Change t/00-compile.t test for more portability [David Golden] - Skip ppm.t if Pod::Html is not available [David Goldenj] - Changed guts of inc::latest to work properly on older versions of Perl [David Golden] - Ensure bundle_inc.t doesn't accidentally uninstall the installed M::B during testing if the user had 'uninst=1' set during Build.PL [David Golden] 0.35_13 - Sat Dec 5 11:26:36 EST 2009 Bug fixes: - Protect against tempfile errors when checking ExtUtils::Installed [David Golden] 0.35_12 - Fri Dec 4 23:06:49 EST 2009 Bug fixes: - Protect inc/ bundling tests against broken ExtUtils::Installed [David Golden] 0.35_11 - Thu Dec 3 11:07:44 EST 2009 *** API CHANGE *** - The old API for prepare_metadata() has been restored to avoid breaking distributions that were overriding it (e.g. BioPerl), but the method has been marked deprecated and may be made private or may disappear in some future version of Module::Build. [David Golden] - A new get_metadata() method has been added as a simpler wrapper around the old, kludgy prepare_metadata() API. [David Golden] 0.35_10 - Tue Nov 24 22:49:19 EST 2009 Bug fixes: - bundle_inc.t is more careful about permissions and open filehandles to avoid failures/skips on Win32 [David Golden] - Fix compilation error in Module::Build::Platform::VMS (RT#51766) [David Golden] - Don't generate a MANIFEST.SKIP during distclean and add any generated MANIFEST.SKIP to cleanup list [reported by Zefram, fixed by David Golden] - Module::Build::ModuleInfo version parsing would fail if a module sets its $VERSION from another module, but the other module is not installed. We now try to detect such failures, prepend 'lib' to @INC and try again. [David Golden] - MYMETA.yml used to be generated from scratch, overriding any customizations used to create META.yml. Now, if META.yml exists, that will be used as the base for MYMETA and only prereq fields will be updated (to reflect any dynamic configuration); also, 'dynamic_config' will be set to false and 'generated_by' will be updated [David Golden] 0.35_09 - Thu Nov 19 01:30:42 EST 2009 Bug fixes: - The DB package should not be included in 'provides' in META files [David Golden] - Fixed t/xs.t build failures in bleadperl for noexec temp directories [Nicholas Clark] - Adjusted order of @INC in resume() (fixes par.t, ppm.t, xs.t fails): @INC = @new_additions_to_inc, @saved_additions_to_inc, @default_inc [David Golden] - Skip bundle_inc.t tests if bundled Module::Build for test can't be tweaked (Works around test crashes on Win2) [David Golden] Other: - 'C_support' is no longer an optional feature. Modern ExtUtils::CBuilder and ExtUtils::ParseXS added to the 'requires' list. This ensures that upgrading Module::Build will upgrade this critical modules. ExtUtils::CBuilder no longer requires a compiler, so it is "safe" to require.
* Updated CPANPLUS to cpan release 0.90Chris Williams2009-12-174-4/+4
| | | | | | Changes for 0.90 Thu Dec 17 21:40:13 2009 ================================================ * Version bump
* Implement win32_isatty()Jan Dubois2009-12-174-16/+25
| | | | | | | | Commit 827da6a38 added a custom isatty() implementation in win32/perlhost.h, but that code will only be used when perl is compiled with -DPERL_IMPLICIT_SYS. This change makes sure that the custom implementation will be used on Windows for all choices of build options.
* -t should only return TRUE for file handles connected to a TTYJan Dubois2009-12-163-1/+43
| | | | | | | | | The Microsoft C version of isatty() returns TRUE for all character mode devices, including the /dev/null style "nul" device and printers like "lpt1". The included test has only been tested on Windows and Linux; the device names for OS/2 and VMS are just best guesses...
* Document issues when using named captures in combination with a branch reset ↵Abigail2009-12-161-2/+18
| | | | pattern (see also #71136)
* Fix casting warningsRafael Garcia-Suarez2009-12-161-3/+3
|
* Add a test that "eval" does not create additional reference to ouside variables.Gerard Goossen2009-12-161-1/+10
|
* Store the PL_compcv instead of the the PL_comppad in parser stack, and make ↵Gerard Goossen2009-12-163-16/+31
| | | | it reference counted. Properly solves [perl #66094]
* tweak to pp_ctl.c gives smaller object codeAlex Davies2009-12-161-5/+10
|
* Update File::Copy tests to skip on OpenBSD, as it mounts too many ↵Jesse Vincent2009-12-151-0/+3
| | | | | | filesystems nosuid. [perl #71334] is the TODO for a better fix for this
* Allow override of PERL5OPT etc in t/TESTTim Bunce2009-12-161-3/+13
|
* Don't make C<use legacy> die on unknown legacy namesRafael Garcia-Suarez2009-12-161-3/+0
| | | | | So we can use C<use legacy "qubits"> to avoid the new "qubit" behaviour, without worrying about perls that didn't have qubit support at all. :)
* [perl #22977] Bug in format/writeZefram2009-12-155-157/+188
|
* [perl #68640] Wrong error for undef constant nameZefram2009-12-152-7/+12
|
* more regex folding testsKarl Williamson2009-12-151-15/+45
|
* [perl #70171] 5.10.0 -> 5.10.1 Regression in fafafbaf70 (Big slowdown in ↵Father Chrysostomos2009-12-142-2/+16
| | | | | | | | | | | | | 5.10 @_ parameter passing) In this case my %x = %$x assigns a hash to itself. This causes the hv_clear in pp_aassign to wipe away the hash before it can be copied. The ‘panic: attempt to copy freed scalar’ error is triggered by this line, which copies the value: sv_setsv(tmpstr,*relem); /* value */ The solution is to make sure the OPpASSIGN_COMMON flag is on in such cases, so that pp_aassign copies everything before doing the assignment.
* fix bug 67156: overload: nomethod(..., '!') return value invertedMichael Breen2009-12-142-22/+27
|
* [perl #71204] diagnostics.pm suppresses 'Use of uninitialized value in range ↵Gene Sullivan2009-12-141-1/+2
| | | | | | (or flip)' warning (and bump version of diagnostics.pm)
* cygwin IPv6 since 1.7Reini Urban2009-12-141-10/+17
| | | | | Use g++ as default linker IPv6 support for 1.7
* [perl #70764] $' fails to initialized for pre-compiled regular expression ↵Father Chrysostomos2009-12-143-2/+86
| | | | | | | | | | | | | | | | | | | matches The match vars are associated with the regexp that last matched successfully. In the case of $str =~ $qr or /$qr/, since the $qr could be used in multiple scopes that need their own sets of match vars, the $qr is cloned by Perl_reg_temp_copy as of change 30677/28d8d7f. This happens in pp_regcomp before pp_match has stringified the LHS, hence the bug. In short, /$gror/ is not equivalent to ($which = !$which) ? /$gror/ : /$gror/, which is weird. Attached is a patch, which admittedly is a hack, but fixes this particular side effect of what is probably a bad design, by stringifying the LHS in pp_regcomp, and having pp_match skip get-magic in such cases. A real fix far exceeds my capabalities, and would also be very intrusive according to <http://www.nntp.perl.org/group/perl.perl5.porters/2007/03/msg122415.html>.
* Fix compile failure introduced in 37e2e78edfe0a224b8a615820f46db879584f523.Craig A. Berry2009-12-131-9/+9
| | | | | | | | | | Solaris, VMS, and Win32 all failed to build after this change. In C99's description of: do statement while ( expression ) ; the trailing semicolon does not appear to be optional. And at least three compilers from three vendors agree.
* Eliminate OP_SETSTATE from cop.h headerReini Urban2009-12-131-3/+3
| | | | | | | | | It had been added with change 3728 to track linenumbers in optimized else, disabled by change 4309, and removed with change 33072. Bump copyright, latest change was "Fix MULTICALL in List-Util" 2009-03-07 with commit 1bbbfc50
* Make new is_utf8_X_* functions publicRafael Garcia-Suarez2009-12-133-12/+22
|
* Doc nitsRafael Garcia-Suarez2009-12-121-5/+4
|
* Merge commit 'khwilliamson/x' into bleadRafael Garcia-Suarez2009-12-1215-143/+1221
|\
| * qr/\X/ expansionKarl Williamson2009-12-0515-143/+1221
| |
* | Notes on why PathTools is in Cwd/Jesse Vincent2009-12-101-0/+3
| |
* | Update Cwd / PathTools to 3.31 to get us a non-devel version number based on ↵Jesse Vincent2009-12-104-3/+17
| | | | | | | | a chat with Steffen. No code changes.
* | Updated to Pod::Simple 3.11 from CPAN [perl #71004]Jesse Vincent2009-12-1037-169/+1319
| |
* | Update CPANPLUS to cpan version 0.89_12Chris Williams2009-12-109-18/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes for 0.89_12 Mon Dec 7 13:33:16 2009 ================================================ * Resolve RT #52348 Duplicate test output, reported by Apocalypse * Fixed typo in Shell::Default, RT #52376, reported by Apocalypse Changes for 0.89_11 Tue Dec 1 13:14:24 2009 ================================================ * Fixed RT #52287 reported by Apocalypse regarding Test::Reporter barfing on send() * Change SQLite to AutoCommit, resolves RT #52308, reported by Apocalypse Changes for 0.89_10 Sat Nov 28 23:20:09 2009 ================================================ * Resolve RT #51516 setting conf options which include spaces. * Explicitly use Cwd's chdir in _chdir() Update to allow various perl smokers test before update to 0.90
* | Update Archive::Extract to cpan version 0.36Chris Williams2009-12-102-3/+3
| | | | | | | | | | | | | | | | Changes for 0.36 Tue Nov 24 10:27:16 2009 ============================================ * Explicitly use Cwd's chdir Required for CPANPLUS update
* | OS/2 doesn't support inplace editing without backupsJan Dubois2009-12-091-1/+1
| |
* | Updated docpointer for illgutsReini Urban2009-12-091-5/+3
| |
* | Fix for [perl #70910] wrong line number in syntax error messageZefram2009-12-093-1/+16
| |
* | Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into bleadAndy Dougherty2009-12-082-5/+12
|\ \
| * | proper error on "grep $x (1,2,3)". Solves [perl #37314]Gerard Goossen2009-12-082-5/+12
| | |
* | | Document config_args limitations reported in [perl #70912]Andy Dougherty2009-12-081-0/+17
|/ /
* | [perl #70802] -i'*' refuses to workTony Cook2009-12-081-1/+53
| | | | | | | | | | Add regression tests (the bug was fixed by commit c9930541bfa04399c3b648e83c9b750cee1154fb)
* | undef $! before running the errno testsBram2009-12-081-1/+1
| |
* | legalize =begin foo barRicardo Signes2009-12-081-3/+7
| |
* | more aggressively deprecate L<section> and L<"section">Ricardo Signes2009-12-082-10/+11
| |
* | remove prohibition against L<text|href>Ricardo Signes2009-12-082-4/+12
| |