From 1d3fb73ff3e9ea30d179d85607f0e10b698b85a9 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Sun, 7 Dec 2025 17:55:23 -0300 Subject: [PATCH] libgimpbase: Fix broken Win32 check due to absense of glib header --- libgimpbase/gimpreloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgimpbase/gimpreloc.c b/libgimpbase/gimpreloc.c index cdbc1b6c25..890196230b 100644 --- a/libgimpbase/gimpreloc.c +++ b/libgimpbase/gimpreloc.c @@ -16,11 +16,11 @@ #include #include -#if defined(ENABLE_RELOCATABLE_RESOURCES) && ! defined(G_OS_WIN32) +#if defined(ENABLE_RELOCATABLE_RESOURCES) && ! defined(_WIN32) #include #include #include -#endif /* ENABLE_RELOCATABLE_RESOURCES && ! G_OS_WIN32 */ +#endif /* ENABLE_RELOCATABLE_RESOURCES && ! _WIN32 */ #include #include