From: Andre Noll Date: Thu, 17 Nov 2011 09:27:30 +0000 (+0100) Subject: Compilation fix for FreeBSD. X-Git-Tag: v0.4.9~5 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=1b5c824581612cf5bf6c34f7f4472ed7a2eedbdd Compilation fix for FreeBSD. Commit 25ca796b (daemon: Introduce parent_waits flag for daemonize().) broke the compilation on FreeBSD due to signal.h not being included. This patch adds the missing include. --- diff --git a/daemon.c b/daemon.c index 541e44de..0bf2f0ac 100644 --- a/daemon.c +++ b/daemon.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "para.h" #include "daemon.h"