From 4c943fd60b0cf460d5277e2af7d8d0436191d9a4 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 28 Jan 2022 12:25:14 +0100 Subject: [PATCH] BUILD: mworker: include tools.h for platforms without unsetenv() In this case we fall back to my_unsetenv() thus we need tools.h to avoid a warning. --- src/mworker-prog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mworker-prog.c b/src/mworker-prog.c index 75f64c5a9..75cfc4255 100644 --- a/src/mworker-prog.c +++ b/src/mworker-prog.c @@ -27,6 +27,7 @@ #include #include #include +#include static int use_program = 0; /* do we use the program section ? */ -- 2.47.3