From 969cbdf6a6ca12c1b4d2e960a37827e2fb23985e Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Tue, 30 Nov 2021 15:45:47 +0300 Subject: [PATCH] Added missing ifdef guard for --- src/microhttpd/mhd_sockets.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/microhttpd/mhd_sockets.h b/src/microhttpd/mhd_sockets.h index 35fdf6b4..ce9740e6 100644 --- a/src/microhttpd/mhd_sockets.h +++ b/src/microhttpd/mhd_sockets.h @@ -35,7 +35,9 @@ #include "mhd_options.h" #include +#ifdef HAVE_STDBOOL_H #include +#endif /* HAVE_STDBOOL_H */ #ifdef HAVE_UNISTD_H #include #endif /* HAVE_UNISTD_H */