commit | 9b39dc5e490c58b73eaddf3848547691955f0988 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jul 08 00:54:10 2014 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue Jul 08 01:13:33 2014 +0200 |
tree | 92148a241739262128019062580669fd28cbd45b | |
parent | 2d0caa38e040b081903e50faa56bae52599b3949 [diff] |
BUILD: checks: external checker needs signal.h check.c doesn't build on solaris since 98637e5 ("MEDIUM: Add external check") because sigset_t is unknown. Simply include signal.h to fix the issue. No need to backport, this is 1.6-only.
diff --git a/src/checks.c b/src/checks.c index 59d9514..0571c58 100644 --- a/src/checks.c +++ b/src/checks.c
@@ -15,6 +15,7 @@ #include <ctype.h> #include <errno.h> #include <fcntl.h> +#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h>