From 4ac40e6054fa72c3b96ab7267db52ab53d8a3b1b Mon Sep 17 00:00:00 2001 From: Nikolas Garofil Date: Sun, 14 Nov 2010 01:25:11 +0100 Subject: [PATCH] Fix compiling without builtin config --- src/conky.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/conky.cc b/src/conky.cc index 9c0fb289..4b2ddc79 100644 --- a/src/conky.cc +++ b/src/conky.cc @@ -2654,9 +2654,11 @@ void load_config_file() lua::stack_sentry s(l); l.checkstack(2); +#ifdef BUILD_BUILTIN_CONFIG if(current_config == builtin_config_magic) l.loadstring(defconfig); else +#endif l.loadfile(current_config.c_str()); l.call(0, 0);