From 8afa62d88944247759d7144a2734afcac600c777 Mon Sep 17 00:00:00 2001 From: Jaak Ristioja Date: Mon, 30 Jan 2023 23:27:35 +0200 Subject: [PATCH] cmake/config.h.in: Added missing BUILD_ prefix to #cmakedefine for MOUSE_EVENTS Mouse events were introduced by commit 7fbdfbd4d45a99b06def7065d66e02337323066d which states in the commit message that MOUSE_EVENTS was also renamed to BUILD_MOUSE_EVENTS. However, this renamal seems to have been incomplete, as the respective option in cmake/config.h.in was left to MOUSE_EVENTS. This commit fixes this. Closes: https://github.com/brndnmtthws/conky/issues/1380 Signed-off-by: Jaak Ristioja --- cmake/config.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/config.h.in b/cmake/config.h.in index 098d3dc4..3261b648 100644 --- a/cmake/config.h.in +++ b/cmake/config.h.in @@ -48,7 +48,7 @@ #cmakedefine OWN_WINDOW 1 -#cmakedefine MOUSE_EVENTS 1 +#cmakedefine BUILD_MOUSE_EVENTS 1 #cmakedefine BUILD_XDAMAGE 1