ilmari.vacklin:
> 2009/1/18 Matti Niemenmaa <matti.niemenmaa+n...@iki.fi>:
> > Announcing the release of Coadjute, version 0.0.1!
> 
> Hi,
> 
> trying to build on GHC 6.10.1 I get:
> 
> Building regex-dfa-0.91...
> 
> Text/Regex/DFA/Common.hs:6:7:
>     Could not find module `Data.IntMap':
>       it is a member of package containers-0.2.0.0, which is hidden
> cabal: Error: some packages failed to install:
> Coadjute-0.0.1 depends on regex-dfa-0.91 which failed to install.
> regex-dfa-0.91 failed during the building phase. The exception was:
> exit: ExitFailure 1

regex-dfa needs this patch, attached. Or use the native package for it
on your distro ... :)

-- Don

--- regex-dfa.cabal.old 2009-01-17 16:10:53.000000000 -0800
+++ regex-dfa.cabal     2009-01-17 16:12:26.000000000 -0800
@@ -13,7 +13,7 @@
 Description:            The lazy DFA engine, based on CTKLight, for regex-base
 Category:               Text
 Tested-With:            GHC
-Build-Depends:          regex-base >= 0.80, base >= 2.0, parsec, mtl
+Build-Depends:          regex-base >= 0.80, containers, base >= 2.0, 
bytestring, parsec, mtl, array
 -- Data-Files:
 -- Extra-Source-Files:
 -- Extra-Tmp-Files:
@@ -37,7 +37,7 @@
 -- HS-Source-Dirs:         "."
 Extensions:             MultiParamTypeClasses, FunctionalDependencies
 -- GHC-Options:            -Wall
-GHC-Options:            -Wall -Werror -O2
+GHC-Options:            -Wall -O2
 -- GHC-Options:            -Wall -ddump-minimal-imports
 -- GHC-Prof-Options: 
 -- Hugs-Options:
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to