Hi! We have a couple of patches in pkgsrc for guile which I'd like to see merged.
The attached ones are for supporting DragonFly (https://www.dragonflybsd.org/) better. Can you please merge them? Thomas
$NetBSD: patch-lib_signal.in.h,v 1.1 2016/12/03 03:15:33 marino Exp $ DragonFly support. --- lib/signal.in.h.orig 2016-06-29 09:12:27 UTC +++ lib/signal.in.h @@ -61,6 +61,7 @@ #if (@GNULIB_PTHREAD_SIGMASK@ || defined GNULIB_POSIXCHECK) \ && ((defined __APPLE__ && defined __MACH__) \ || defined __FreeBSD__ || defined __OpenBSD__ || defined __osf__ \ + || defined __DragonFly__ \ || defined __sun || defined __ANDROID__) \ && ! defined __GLIBC__ # include <pthread.h>
$NetBSD: patch-libguile_threads.c,v 1.1 2016/12/03 03:15:33 marino Exp $ DragonFly support. --- libguile/threads.c.orig 2016-06-20 20:35:06 UTC +++ libguile/threads.c @@ -2252,7 +2252,7 @@ scm_ia64_ar_bsp (const void *opaque) return (void *) ctx->uc_mcontext.sc_ar_bsp; } # endif /* linux */ -# ifdef __FreeBSD__ +# if defined __FreeBSD__ || defined __DragonFly__ # include <ucontext.h> void * scm_ia64_register_backing_store_base (void)