From 5066a6db4b53d9ab8986a36489328a4e9f7f92e7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 12 Aug 2016 12:15:46 +0200 Subject: [PATCH] s3:lib/pthreadpool: fix the build on older systems Some systems required an explicit , which comes via "system/wait.h" Signed-off-by: Stefan Metzmacher Reviewed-by: Volker Lendecke Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Tue Aug 16 19:09:55 CEST 2016 on sn-devel-144 --- source3/lib/pthreadpool/pthreadpool.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/lib/pthreadpool/pthreadpool.c b/source3/lib/pthreadpool/pthreadpool.c index 917bafa82fe..b071e5393db 100644 --- a/source3/lib/pthreadpool/pthreadpool.c +++ b/source3/lib/pthreadpool/pthreadpool.c @@ -20,9 +20,10 @@ #include "replace.h" #include "system/time.h" #include "system/filesys.h" +#include "system/wait.h" +#include "system/threads.h" #include "pthreadpool.h" #include "lib/util/dlinklist.h" -#include "system/threads.h" #include struct pthreadpool_job { -- 2.11.4.GIT