From: Chris Marshall Date: Fri, 18 Feb 2011 03:42:02 +0000 (-0500) Subject: Make Sys::SigAction default=>0 for Win32 X-Git-Tag: v1.003015~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=3ad5a18553aa69a6cd89a78e5d14e69fe750989b Make Sys::SigAction default=>0 for Win32 This should allow Devel::REPL to install via CPAN until Sys::SigAction is fixed or the requirement for same in Devel::REPL is removed. --- diff --git a/Makefile.PL b/Makefile.PL index e8837ba..7b560e0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -41,7 +41,7 @@ feature 'INC completion driver - tab complete module names in use and require', 'File::Next' => 0; feature 'Interrupt plugin - traps SIGINT to kill long-running lines', - -default => 1, + -default => (($^O =~ /Win32/) ? 0 : 1), 'Sys::SigAction' => 0; feature 'Keywords completion driver - tab complete Perl keywords and operators',