hdbc-mysql fails to compile

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-...

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-...
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Hi Thomas, up to 3/3/2010 I am looking after nearly 100 Haskell newbies in their project end phase -- but Marc Weber promised to kick my ass in time so I look after the hsql-XXX repos. Anyway, I just uploaded 1.8.1, since it seems to work. Cheers, Nick Thomas Girod wrote:
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-...
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Am Donnerstag 25 Februar 2010 20:01:34 schrieb Thomas Girod:
Hi there. Looks like hdbc-mysql cannot compile against GHC-6.12 -- confirmed by the hackage build logs. [1]
Change in the Cabal API.
anyone know a way to dodge the problem ?
Rewrite Setup.[l]hs to work with the new API or pester the maintainer to do it.
cheers,
Tom
participants (3)
-
Daniel Fischer
-
Nick Rudnick
-
Thomas Girod