From: Ivan Maidanski Date: Wed, 17 Jan 2018 08:45:56 +0000 (+0300) Subject: Do not declare dl_iterate_phdr as weak for DragonFly X-Git-Tag: v8.0.0~417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59a1215bd265fbc48b1196e88f1765cf4830c6e7;p=gc Do not declare dl_iterate_phdr as weak for DragonFly * dyn_load.c [!USE_PROC_FOR_LIBRARIES && __DragonFly__] (HAVE_DL_ITERATE_PHDR, DL_ITERATE_PHDR_STRONG): Define. --- diff --git a/dyn_load.c b/dyn_load.c index d036364e..0271d71c 100644 --- a/dyn_load.c +++ b/dyn_load.c @@ -422,7 +422,7 @@ GC_INNER GC_bool GC_register_main_static_data(void) # endif #endif /* __GLIBC__ >= 2 || PLATFORM_ANDROID */ -#if (defined(FREEBSD) && __FreeBSD__ >= 7) +#if (defined(FREEBSD) && __FreeBSD__ >= 7) || defined(__DragonFly__) /* On the FreeBSD system, any target system at major version 7 shall */ /* have dl_iterate_phdr; therefore, we need not make it weak as below. */ # ifndef HAVE_DL_ITERATE_PHDR