On Tue, Feb 27, 2007 at 05:36:29AM +0100, Dunric wrote:
> 
> Graphics/UI/SDL/Rotozoomer.hs:15:7:
>     Could not find module `Foreign.C':
>       it is a member of package base, which is hidden

This is normally caused by forgetting to include

    build-depends: base

in a .cabal file. When cabal builds a package with GHC it hides all
packages and then only exposes those which are listed as dependencies.

If you are compiling by hand then add the
    -package base
flag to the commandline.


Thanks
Ian

_______________________________________________
Haskell-Cafe mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to