Changeset 21682 for inc

Show
Ignore:
Timestamp:
08/01/08 14:40:10 (5 months ago)
Author:
audreyt
Message:

* Module::Install::Pugs: We now want GHC 6.8.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • inc/Module/Install/Pugs.pm

    r17054 r21682  
    229229    $ghc_version or die << '.'; 
    230230*** Cannot find a runnable 'ghc' from path. 
    231 *** Please install GHC (6.6.1 or above) from http://haskell.org/ghc/. 
     231*** Please install GHC (6.8.0 or above) from http://haskell.org/ghc/. 
    232232. 
    233233 
    234     my $ghc_ge_661 = ( 
    235         ($ghc_version =~ /^(\d)\.(\d+)/ and $1 >= 6 and $2 >= 6) 
    236             and 
    237         $ghc_version ne '6.6' 
     234    my $ghc_ge_680 = ( 
     235        ($ghc_version =~ /^(\d)\.(\d+)/ and $1 >= 6 and $2 >= 8) 
     236#            and 
     237#        $ghc_version ne '6.8' 
    238238    ); 
    239239 
    240     unless ($ghc_ge_661) { 
     240    unless ($ghc_ge_680) { 
    241241        die << "."; 
    242 *** Cannot find GHC 6.6.1 or above from path (we have $ghc_version). 
     242*** Cannot find GHC 6.8.0 or above from path (we have $ghc_version). 
    243243*** Please install a newer version from http://haskell.org/ghc/. 
    244244.