From 0b3431289f2184c201a20a194b22623f30f2331b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 1 Mar 2020 13:02:29 +0100 Subject: [PATCH] Fix libbacktrace config for BSD. --- libbacktrace/config.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libbacktrace/config.h b/libbacktrace/config.h index becdbcbb..7ab5a937 100644 --- a/libbacktrace/config.h +++ b/libbacktrace/config.h @@ -13,3 +13,8 @@ #define HAVE_DL_ITERATE_PHDR 1 #define HAVE_ATOMIC_FUNCTIONS 1 #define HAVE_DECL_STRNLEN 1 + +#ifdef BSD +# define HAVE_KERN_PROC 1 +# define HAVE_KERN_PROC_ARGS 1 +#endif