From 95fc2f922dac4e380fe492b0a569723176b464b5 Mon Sep 17 00:00:00 2001 From: wolfgang Date: Thu, 4 Aug 2005 02:09:36 +0000 Subject: [project @ 2005-08-04 02:09:36 by wolfgang] Check for RTLD_DEFAULT in dlfcn.h and use it if it is available. (On Mac OS X its value is -2, and using NULL instead does not work.) MERGE TO STABLE --- include/HsUnix.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/HsUnix.h b/include/HsUnix.h index cce4e5e..51bf111 100644 --- a/include/HsUnix.h +++ b/include/HsUnix.h @@ -103,6 +103,10 @@ INLINE int __hsunix_wstopsig (int stat) { return WSTOPSIG(stat); } INLINE void *__hsunix_rtldNext (void) {return RTLD_NEXT;} #endif +#ifdef HAVE_RTLDDEFAULT +INLINE void *__hsunix_rtldDefault (void) {return RTLD_DEFAULT;} +#endif + /* O_SYNC doesn't exist on Mac OS X and (at least some versions of) FreeBSD, fall back to O_FSYNC, which should be the same */ #ifndef O_SYNC -- cgit v1.2.3