Show
Ignore:
Timestamp:
05/26/05 04:01:01 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
5482
Message:

* fix hs-plugins build; cdpruden++ for catching this.

We now require a newer "-package plugins" version of hs-plugins.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Embed/Haskell.hs

    r3568 r3897  
    1 {-# OPTIONS_GHC -fglasgow-exts -cpp -package eval #-} 
     1{-# OPTIONS_GHC -fglasgow-exts -cpp -package plugins #-} 
    22 
    33module Pugs.Embed.Haskell where 
     
    1313#else 
    1414 
    15 import qualified Eval 
     15import qualified System.Eval 
    1616import Pugs.AST 
    1717 
     
    2121    -- eval_ code [import] [flags] [package.confs] [load paths] 
    2222    --   -> IO (Either [error-strings] (Maybe a)) 
    23     ret <- liftIO $ Eval.eval_ code imports [] [] [] 
     23    ret <- liftIO $ System.Eval.eval_ code imports [] [] [] 
    2424    case ret of 
    2525        Right (Just x) -> return $ VStr x