From 40aab05e77d746beca4119bb254e534e449f9130 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 27 Dec 2019 13:03:20 +0200 Subject: build: include config.h manually Previously we included it with an `-include` compiler directive. But that's not portable. And it's better to be explicit anyway. Every .c file should have `include "config.h"` first thing. Signed-off-by: Ran Benita --- src/utf8.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/utf8.c') diff --git a/src/utf8.c b/src/utf8.c index a76b001..15aa237 100644 --- a/src/utf8.c +++ b/src/utf8.c @@ -24,6 +24,8 @@ * Author: Rob Bradford */ +#include "config.h" + #include #include #include -- cgit v1.2.1