From 2bd267da31d06ef24b36b8e1943b88cb119ca02c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 5 Aug 2023 13:17:29 +0200 Subject: [PATCH] Fix build without X11 On Haiku it complained about missing X11 header. --- src/display-x11.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/display-x11.cc b/src/display-x11.cc index 93f6bfc0..fb8ef72f 100644 --- a/src/display-x11.cc +++ b/src/display-x11.cc @@ -56,11 +56,12 @@ #include "display-x11.hh" #include "gui.h" #include "llua.h" -#include "x11.h" /* TODO: cleanup global namespace */ #ifdef BUILD_X11 +#include "x11.h" + // TODO: cleanup externs (move to conky.h ?) #ifdef OWN_WINDOW extern int fixed_size, fixed_pos;