From 30041dab9a9f0a92109665977eee8674385dc83c Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Mon, 22 Jun 2009 08:39:57 +0000 Subject: [PATCH] Make this file independent of HsBase.h, use HsBaseConfig.h only --- System/CPUTime.hsc | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/System/CPUTime.hsc b/System/CPUTime.hsc index 7fe4fc2..9dc62db 100644 --- a/System/CPUTime.hsc +++ b/System/CPUTime.hsc @@ -34,7 +34,30 @@ import CPUTime ( getCPUTime, cpuTimePrecision ) import Foreign import Foreign.C -#include "HsBase.h" +#include "HsBaseConfig.h" + +-- For _SC_CLK_TCK +#if HAVE_UNISTD_H +#include +#endif + +-- For struct rusage +#if !defined(mingw32_HOST_OS) && !defined(irix_HOST_OS) +# if HAVE_SYS_RESOURCE_H +# include +# endif +#endif + +-- For FILETIME etc. on Windows +#if HAVE_WINDOWS_H +#include +#endif + +-- for CLK_TCK +#if HAVE_TIME_H +#include +#endif + #endif #if !defined(mingw32_HOST_OS) && !defined(cygwin32_HOST_OS) -- 1.7.10.4