From bbf60d3bf07a3cd53e94b5d0725b68f628387d39 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 16 May 2002 11:39:36 +0000 Subject: [PATCH] [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. --- GlaExts.hs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 GlaExts.hs 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) -- 1.7.10.4