[project @ 2002-05-16 11:39:36 by simonmar]
authorsimonmar <unknown>
Thu, 16 May 2002 11:39:36 +0000 (11:39 +0000)
committersimonmar <unknown>
Thu, 16 May 2002 11:39:36 +0000 (11:39 +0000)
Happy -g currently requires GlaExts, which means it can't be used
inside fptools/libraries (GlaExts comes from lang, and lang isn't
built yet).  So, until I've fixed Happy and everyone has built &
installed the vnew version...

   Add a dummy GlaExts module.

This is a TEMPORARY HACK to keep Happy happy during the switchover
period, and will go away before the release.

GlaExts.hs [new file with mode: 0644]

diff --git a/GlaExts.hs b/GlaExts.hs
new file mode 100644 (file)
index 0000000..8be45ee
--- /dev/null
@@ -0,0 +1,4 @@
+module GlaExts (module GHC.Exts, Addr(..)) where
+import GHC.Exts
+
+data Addr = A# Addr#   deriving (Eq, Ord)