From dedf10576abd303e8d9be4e9feae248677448f8e Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 5 Dec 2016 15:39:26 -0500 Subject: [PATCH] Fix: Add missing pthread.h include MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Some libc like musl and uClibc requires explicit includes of pthread.h Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- src/common/defaults.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/defaults.h b/src/common/defaults.h index 59fe8ec46..d00803086 100644 --- a/src/common/defaults.h +++ b/src/common/defaults.h @@ -20,6 +20,7 @@ #ifndef _DEFAULTS_H #define _DEFAULTS_H +#include #include /* Default unix group name for tracing. */ -- 2.34.1