summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorInari Listenmaa <inari.listenmaa@gmail.com>2022-10-04 16:59:53 +0200
committerGitHub <noreply@github.com>2022-10-04 16:59:53 +0200
commit3122590e351f769ca6e60dfd4eeaafba1c5c22e8 (patch)
treeffa268d361530d907133f6aa8271f75b4b9cab19 /src/compiler
parent223f92d4f67bc4a168409b20e019b0ec6ad4b904 (diff)
parent0a16b76875fa8d99c81a4e840083faff771b3cda (diff)
Merge pull request #148 from anka-213/fix-ghc-7.10-build
Fix ghc-7.10 build
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/GF/Interactive.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/GF/Interactive.hs b/src/compiler/GF/Interactive.hs
index 676511680..1970533d6 100644
--- a/src/compiler/GF/Interactive.hs
+++ b/src/compiler/GF/Interactive.hs
@@ -38,6 +38,10 @@ import GF.Server(server)
#endif
import GF.Command.Messages(welcome)
+#if !(MIN_VERSION_base(4,9,0))
+-- Needed to make it compile on GHC < 8
+import Control.Monad.Trans.Instances ()
+#endif
-- | Run the GF Shell in quiet mode (@gf -run@).
mainRunGFI :: Options -> [FilePath] -> IO ()