From 0b040b99091cee8048cfb4b164f3e0ddfa0d1631 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Wed, 10 Feb 2021 22:17:20 +0000 Subject: [PATCH] fix setproctitle detection on FreeBSD --- have/setproctitle.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/have/setproctitle.c b/have/setproctitle.c index 69a5f8c..dd3119c 100644 --- a/have/setproctitle.c +++ b/have/setproctitle.c @@ -14,7 +14,14 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +/* + * FreeBSD has setproctitle in a different header than OpenBSD. + */ + +#include + #include +#include int main(void)