1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 10:35:10 +00:00

Include hsv_gradient.h even if BUILTIN_CONFIG is disabled.

This commit is contained in:
Miroslav Lichvar 2021-09-21 10:30:18 +02:00 committed by Brenden Matthews
parent 54e40520ae
commit a6f955cbf4

View File

@ -138,6 +138,10 @@
#include <microhttpd.h> #include <microhttpd.h>
#endif /* BUILD_HTTP */ #endif /* BUILD_HTTP */
#ifdef BUILD_HSV_GRADIENT
#include "hsv_gradient.h"
#endif /* BUILD_HSV_GRADIENT */
#ifdef BUILD_OLD_CONFIG #ifdef BUILD_OLD_CONFIG
#include "convertconf.h" #include "convertconf.h"
#endif /* BUILD_OLD_CONFIG */ #endif /* BUILD_OLD_CONFIG */
@ -145,10 +149,6 @@
#ifdef BUILD_BUILTIN_CONFIG #ifdef BUILD_BUILTIN_CONFIG
#include "defconfig.h" #include "defconfig.h"
#ifdef BUILD_HSV_GRADIENT
#include "hsv_gradient.h"
#endif /* BUILD_HSV_GRADIENT */
namespace { namespace {
const char builtin_config_magic[] = "==builtin=="; const char builtin_config_magic[] = "==builtin==";
} // namespace } // namespace