From de23d7901289434b01f636a055b2649eaf95ac30 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Tue, 23 Sep 2025 09:46:29 +0200 Subject: [PATCH] [config] do not redefine WITHOUT_FREERDP_3x_DEPRECATED The define might already be defined by the build system. In that case do not redefine it. --- include/config/config.h.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/config/config.h.in b/include/config/config.h.in index cf64c3143..ccc9dc53a 100644 --- a/include/config/config.h.in +++ b/include/config/config.h.in @@ -231,6 +231,8 @@ * * \since version 3.17.2 */ +#if !defined(WITHOUT_FREERDP_3x_DEPRECATED) #cmakedefine WITHOUT_FREERDP_3x_DEPRECATED +#endif #endif /* FREERDP_CONFIG_H */