[Haskell-cafe] ANNOUNCE: Coadjute 0.0.1, generic build tool

Don Stewart dons at galois.com
Sat Jan 17 19:19:45 EST 2009


ilmari.vacklin:
> 2009/1/18 Matti Niemenmaa <matti.niemenmaa+news at 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

-------------- next part --------------
--- 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:


More information about the Haskell-Cafe mailing list