Changeset 9001
- Timestamp:
- 11/01/09 18:40:41 (2 years ago)
- Location:
- trunk/Padre
- Files:
-
- 2 edited
-
Changes (modified) (2 diffs)
-
Makefile.PL (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/Changes
r8989 r9001 2 2 3 3 0.49 to be released 4 - Fixed #691: Ext ect subroutine does not work for a script without4 - Fixed #691: Extract subroutine does not work for a script without 5 5 subroutines (WAXHEAD) 6 6 - Bugfix: The split-beginner-error check got false positives (SEWI) … … 30 30 document types (SEWI) 31 31 - Modules/Plugins could now add their panels to the global preferences (SEWI) 32 - Workaround for Test::NoWarnings hiding issue which lead to missing 33 prerequisites or upgrades (#646 SZABGAB) 32 34 33 35 0.48 2009.10.12 -
trunk/Padre/Makefile.PL
r8858 r9001 9 9 use POSIX qw(locale_h); 10 10 11 # workaround for the fact that Module::Install loads the modules 12 # into memory and when Test::NoWarnings is loaded it will hide 13 # the warnings generated from that point. 14 # removed in r2208, added again in 15 eval { 16 require Test::NoWarnings; 17 $SIG{__WARN__} = 'DEFAULT'; 18 }; 19 11 20 BEGIN { 12 21 if ( author_context and not eval("use Locale::Msgfmt 0.14; 1;") ) { … … 15 24 } 16 25 26 17 27 # Configure-time dependencies MUST be done first 18 28 configure_requires 'ExtUtils::MakeMaker' => '6.52'; 19 29 30 # the above line does not seem to force an upgrade 31 # the below code might work but not tested 32 #eval "use ExtUtils::MakeMaker ()"; # avoid importing prompt() and other subs 33 #if ($@) { 34 # print STDERR "Warning: prerequisite ExtUtils::MakeMaker 6.52 not found.\n"; 35 # exit 0; 36 #} elsif ($ExtUtils::MakeMaker::VERSION <= 6.52) { 37 # print STDERR "Warning: prerequisite ExtUtils::MakeMaker 6.52 not found. We have $ExtUtils::MakeMaker::VERSION.\n"; 38 # exit 0; 39 #} 20 40 21 41
Note: See TracChangeset
for help on using the changeset viewer.
