From 522240740849cb6818e9648fc3220910425f11c3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 6 Sep 2016 23:53:44 +0200 Subject: [PATCH] Add HAVE_CONFIG_H ifdefs --- cheevos.c | 4 ++++ core_impl.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/cheevos.c b/cheevos.c index dd1bfaef04..712a116a3f 100644 --- a/cheevos.c +++ b/cheevos.c @@ -21,6 +21,10 @@ #include #include +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "cheevos.h" #include "command.h" #include "dynamic.h" diff --git a/core_impl.c b/core_impl.c index 7e4741996e..ddf1ef687c 100644 --- a/core_impl.c +++ b/core_impl.c @@ -26,6 +26,10 @@ #include #include +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "configuration.h" #include "dynamic.h" #include "core.h"