From 7ae5d4712cba37e6484c40e5ca4525066db15339 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Mon, 21 Aug 2006 13:16:12 +0000 Subject: [PATCH] generate Haddock docs on all platforms --- GHC/ConsoleHandler.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 */ -- 1.7.10.4