From 0a98ef79ef20eb2bd28df0cf73fb93d503d68ab1 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Thu, 27 Sep 2018 17:10:43 +0200 Subject: [PATCH] Fix build with NO_LIBCONFIG=1 This got broken in commit fcef5e706d52fe. Signed-off-by: Uli Schlachter --- src/config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.h b/src/config.h index 922b94a..5a0acb1 100644 --- a/src/config.h +++ b/src/config.h @@ -2,7 +2,9 @@ #include +#ifdef CONFIG_LIBCONFIG #include +#endif #include "common.h"