From 48cbffa345a0dc5b59af08cc821b2e47ba4c78f9 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Thu, 11 Jan 2024 15:38:16 +0100 Subject: [PATCH] debug.h: include config.h DEBUG macro is usedi in this file and it is defined with autoconf in config.h. --- src/debug.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/debug.h b/src/debug.h index aac03d29f..9cd9a9aed 100644 --- a/src/debug.h +++ b/src/debug.h @@ -47,6 +47,9 @@ #include // FILE #endif // defined __cplusplus +#ifdef HAVE_CONFIG_H +#include "config.h" // DEBUG +#endif // defined HAVE_CONFIG_H #include "tv.h" #define UNUSED(x) (x=x)