From 0bf48903c14af24d4afe1c5ce71ba7572745c062 Mon Sep 17 00:00:00 2001 From: Konstantin Ryabitsev Date: Mon, 18 Sep 2023 14:06:35 -0400 Subject: [PATCH] Fix compilation on older platforms When attempting to compile on older platforms (e.g. CentOS 7), there is a failure due to the wrong stat.h being included via dependencies. This makes sure that it finds sys/stat.h first. --- src/send_help.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/send_help.c b/src/send_help.c index c9e3fd59..cf47ccf5 100644 --- a/src/send_help.c +++ b/src/send_help.c @@ -21,6 +21,7 @@ * IN THE SOFTWARE. */ +#include #include #include "mlmmj.h" -- 2.47.2