From: Duncan C. <dun...@us...> - 2005-01-16 21:31:43
|
Update of /cvsroot/gtk2hs/gtk2hs/tools/c2hs/toplevel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32567/tools/c2hs/toplevel Modified Files: C2HSConfig.hs.in Log Message: Import Foreign.C rather than CForeign, since the latter is not available in older versions of ghc. Index: C2HSConfig.hs.in =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/tools/c2hs/toplevel/C2HSConfig.hs.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- C2HSConfig.hs.in 21 Nov 2004 21:05:42 -0000 1.1 +++ C2HSConfig.hs.in 16 Jan 2005 21:31:22 -0000 1.2 @@ -49,7 +49,7 @@ import Foreign (Ptr, FunPtr) -- on an extra line to trick the stupid `mkdependHS' import Foreign (Storable(sizeOf, alignment), toBool) -import CForeign (CInt) +import Foreign.C (CInt) -- program settings -- ---------------- |