[Haskell-cafe] hdbc-mysql fails to compile
Thomas Girod
thomas at 0xc29.net
Thu Feb 25 14:51:49 EST 2010
replying to myself. there is only one line to fix in Setup.lhs
(mysqlConfigProg, _) <- requireProgram verbosity
mysqlConfigProgram AnyVersion (withPrograms lbi)
becomes :
(mysqlConfigProg, _) <- requireProgram verbosity
mysqlConfigProgram (withPrograms lbi)
obviously the new cabal version makes a difference between
"requireProgram" and "requireProgramVersion"
On Thu, Feb 25, 2010 at 08:01:34PM +0100, Thomas Girod wrote:
> Hi there. Looks like hdbc-mysql cannot compile against GHC-6.12 --
> confirmed by the hackage build logs. [1]
>
> anyone know a way to dodge the problem ?
>
> cheers,
>
> Tom
>
> [1]
> http://hackage.haskell.org/packages/archive/HDBC-mysql/0.6/logs/failure/ghc-6.12
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
More information about the Haskell-Cafe
mailing list