aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/blogc-make/exec.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/blogc-make/exec.c b/src/blogc-make/exec.c
index 74af2ed..547e214 100644
--- a/src/blogc-make/exec.c
+++ b/src/blogc-make/exec.c
@@ -10,13 +10,18 @@
#include <config.h>
#endif /* HAVE_CONFIG_H */
+#ifdef HAVE_SYSEXITS_H
+#include <sysexits.h>
+#else
+#define EX_CONFIG 78
+#endif /* HAVE_SYSEXITS_H */
+
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
-#include <sysexits.h>
#include <errno.h>
#include <libgen.h>
#include "../common/compat.h"