From: simonmar Date: Thu, 16 May 2002 11:39:36 +0000 (+0000) Subject: [project @ 2002-05-16 11:39:36 by simonmar] X-Git-Tag: nhc98-1-18-release~1014 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=bbf60d3bf07a3cd53e94b5d0725b68f628387d39;p=haskell-directory.git [project @ 2002-05-16 11:39:36 by simonmar] 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. --- diff --git a/GlaExts.hs b/GlaExts.hs new file mode 100644 index 0000000..8be45ee --- /dev/null +++ b/GlaExts.hs @@ -0,0 +1,4 @@ +module GlaExts (module GHC.Exts, Addr(..)) where +import GHC.Exts + +data Addr = A# Addr# deriving (Eq, Ord)