Update of /cvsroot/hoc/hoc/Tests
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19794/Tests
Modified Files:
Makefile TestFoundation.hs
Log Message:
Update for GHC 6.6
Index: TestFoundation.hs
===================================================================
RCS file: /cvsroot/hoc/hoc/Tests/TestFoundation.hs,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- TestFoundation.hs 20 Mar 2006 06:25:26 -0000 1.9
+++ TestFoundation.hs 1 Nov 2006 15:45:05 -0000 1.10
@@ -1,3 +1,4 @@
+{-# OPTIONS -fth -fglasgow-exts #-}
module Main where
import Test.HUnit
Index: Makefile
===================================================================
RCS file: /cvsroot/hoc/hoc/Tests/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile 1 Apr 2005 04:35:29 -0000 1.2
+++ Makefile 1 Nov 2006 15:45:05 -0000 1.3
@@ -9,12 +9,12 @@
TestFoundation.dynamic: build TestFoundation.hs
ghc -dynamic -odir build/dynamic/objects -hidir build/dynamic/imports \
- -o $@ -fglasgow-exts -package-conf ../inplace.conf \
+ -o $@ -package-conf ../inplace.conf \
-package Foundation --make TestFoundation.hs
TestFoundation.static: build TestFoundation.hs
ghc -odir build/static/objects -hidir build/static/imports \
- -o $@ -fglasgow-exts -package-conf ../inplace.conf \
+ -o $@ -package-conf ../inplace.conf \
-package Foundation --make TestFoundation.hs
clean:
|