Make Sys::SigAction default=>0 for Win32
Chris Marshall [Fri, 18 Feb 2011 03:42:02 +0000 (22:42 -0500)]
This should allow Devel::REPL to install via CPAN
until Sys::SigAction is fixed or the requirement for
same in Devel::REPL is removed.

Makefile.PL

index e8837ba..7b560e0 100644 (file)
@@ -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',