diff options
Diffstat (limited to 'gc/gc_dlopen.c')
-rw-r--r-- | gc/gc_dlopen.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gc/gc_dlopen.c b/gc/gc_dlopen.c index 943c4b0..eafaa2b 100644 --- a/gc/gc_dlopen.c +++ b/gc/gc_dlopen.c @@ -24,8 +24,7 @@ #include "private/gc_priv.h" -# if defined(LINUX_THREADS) || defined(SOLARIS_THREADS) \ - || defined(HPUX_THREADS) || defined(IRIX_THREADS) +# if defined(GC_PTHREADS) || defined(GC_SOLARIS_THREADS) # if defined(dlopen) && !defined(GC_USE_LD_WRAP) /* To support various threads pkgs, gc.h interposes on dlopen by */ @@ -90,7 +89,7 @@ # endif return(result); } -# endif /* LINUX_THREADS || SOLARIS_THREADS || ... */ +# endif /* GC_PTHREADS || GC_SOLARIS_THREADS ... */ |