From: Simon Marlow Date: Mon, 21 Aug 2006 13:16:12 +0000 (+0000) Subject: generate Haddock docs on all platforms X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7ae5d4712cba37e6484c40e5ca4525066db15339;p=ghc-base.git generate Haddock docs on all platforms --- diff --git a/GHC/ConsoleHandler.hs b/GHC/ConsoleHandler.hs index d84f533..1654163 100644 --- a/GHC/ConsoleHandler.hs +++ b/GHC/ConsoleHandler.hs @@ -2,19 +2,21 @@ ----------------------------------------------------------------------------- -- | -- Module : GHC.ConsoleHandler --- Copyright : whatevah +-- Copyright : (c) The University of Glasgow -- License : see libraries/base/LICENSE -- -- Maintainer : cvs-ghc@haskell.org -- Stability : internal -- Portability : non-portable (GHC extensions) -- +-- NB. the contents of this module are only available on Windows. +-- -- Installing Win32 console handlers. -- ----------------------------------------------------------------------------- module GHC.ConsoleHandler -#ifndef mingw32_HOST_OS +#if !defined(mingw32_HOST_OS) && !defined(__HADDOCK__) where import Prelude -- necessary to get dependencies right #else /* whole file */