From 7f788ada6ceebd48d129a6a6c9375944fea83ff7 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 24 Mar 2005 09:27:20 +0000 Subject: [PATCH] [project @ 2005-03-24 09:27:20 by simonmar] omit __hscore_getFolderPath if __GLASGOW_HASKELL__ < 604 --- ghc/lib/compat/cbits/directory.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ghc/lib/compat/cbits/directory.c b/ghc/lib/compat/cbits/directory.c index 1479a25..79d6cd4 100644 --- a/ghc/lib/compat/cbits/directory.c +++ b/ghc/lib/compat/cbits/directory.c @@ -1,7 +1,7 @@ -#include "../../../includes/ghcconfig.h" - #include "HsFFI.h" +#include "../../../includes/ghcconfig.h" + #if HAVE_LIMITS_H #include #endif @@ -49,6 +49,7 @@ INLINE int __hscore_CSIDL_APPDATA() { return CSIDL_APPDATA; } INLINE int __hscore_CSIDL_WINDOWS() { return CSIDL_WINDOWS; } INLINE int __hscore_CSIDL_PERSONAL() { return CSIDL_PERSONAL; } +#if __GLASGOW_HASKELL__ < 604 /* * Function: __hscore_getFolderPath() * @@ -91,4 +92,5 @@ __hscore_getFolderPath(HWND hwndOwner, return (int)funcPtr(hwndOwner,nFolder,hToken,dwFlags,pszPath); /* ToDo: unload the DLL on shutdown? */ } +#endif /* __GLASGOW_HASKELL__ < 604 */ #endif -- 1.7.10.4