I am making a small Haskell game in Windows, where I would like to respond each time the user presses a key. Because getChar behaves strangely on Windows, I use FFI to get access to getch in conio.h, as described here. The relevant code is:
foreign import ccall unsafe "conio.h getch" c_getch :: IO CInt
This works fine, when I run it in ghci, or compile it with ghc. I also want to try making a cabal package out of it, so extending from this question, I include the following in my cabal file:
...
executable noughts
Includes: conio.h
Extra-libraries conio
...
But when I run cabal configure, it tells me:
cabal: Missing dependency on a foreign library:
* Missing C library: conio
It makes sense, because in my haskell platform directory, under ...\Haskell Platform\2012.4.0.0\mingw there is a conio.h file under the include directory, but no other conio file to provide the object code.
Am I doing this the right way, and if so, how can I find out which library to include in my cabal file?

Extra-Libraries: crtdllorExtra-Libraries: msvcrt? By the way, according to MSDN, you should use_getchinstead ofgetch, but the header file might do that for you. – Rhymoid Nov 24 '12 at 19:42Extra-libraries: msvcrtandExtra-libraries: crtdllalone and in combination. It didn't change the output ofcabal build. I foundmsvcrt.libandcrtdll.cunder my visual studio installation, and copied them to my folder, but it didn't change anything. – Boris Nov 24 '12 at 20:20getchand_getch.conio.hincludesgetch#ifndef _NO_OLDNAMES, so I guess that's not defined for me. But thanks, changed to_getch. – Boris Nov 24 '12 at 20:30Extra-Libraries: NAME, Cabal should be looking for...\Haskell Platform\2012.4.0.0\mingw\lib\libNAME.a. I havelibcrtdll.ain that directory, so a dependency oncrtdllworks fine for me. Have you tried supplying the--extra-lib-dirsparameter tocabal, pointing to that directory? – Rhymoid Nov 24 '12 at 22:33