From 5f702b607116a8303cb09fb091d8b9740c06baca 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 27f1ddc82..37d222a78 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