Repository : ssh://darcs.haskell.org//srv/darcs/packages/base On branch : master
http://hackage.haskell.org/trac/ghc/changeset/140279a2df43a58e45a34f766a7e3a463e1cb139 >--------------------------------------------------------------- commit 140279a2df43a58e45a34f766a7e3a463e1cb139 Author: Ian Lynagh <[email protected]> Date: Mon Sep 17 19:17:48 2012 +0100 Fix build; GHC.Constants is now empty We should put things back in it somehow, but for now this keeps the build going through. >--------------------------------------------------------------- GHC/Constants.hs | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/GHC/Constants.hs b/GHC/Constants.hs index ca63184..fcea20b 100644 --- a/GHC/Constants.hs +++ b/GHC/Constants.hs @@ -3,10 +3,9 @@ module GHC.Constants where -import Prelude +import Prelude () --- We use stage1 here, because that's guaranteed to exist -#include "../../../compiler/stage1/ghc_boot_platform.h" - -#include "../../../includes/HaskellConstants.hs" +-- TODO: This used to include HaskellConstants.hs, but that has now gone. +-- We probably want to include the constants in platformConstants somehow +-- instead. _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
