From 62f9c3a7267b31fb8b6059f94c61d8367286d5a3 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 13 Jul 2025 13:43:53 +0200 Subject: [PATCH] add Windows release to comments for clarity --- lib/config-win32.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/config-win32.h b/lib/config-win32.h index 690def3222..e3048f93c9 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -300,26 +300,26 @@ /* Define some minimum and default build targets for Visual Studio */ #ifdef _MSC_VER -# define VS2008_MIN_TARGET 0x0501 +# define VS2008_MIN_TARGET 0x0501 /* XP */ /* The minimum build target for VS2012 is Vista unless Update 1 is installed and the v110_xp toolset is chosen. */ # ifdef _USING_V110_SDK71_ -# define VS2012_MIN_TARGET 0x0501 +# define VS2012_MIN_TARGET 0x0501 /* XP */ # else -# define VS2012_MIN_TARGET 0x0600 +# define VS2012_MIN_TARGET 0x0600 /* Vista */ # endif /* VS2008 default build target is Windows Vista. We override default target to be Windows XP. */ -# define VS2008_DEF_TARGET 0x0501 +# define VS2008_DEF_TARGET 0x0501 /* XP */ /* VS2012 default build target is Windows 8 unless Update 1 is installed and the v110_xp toolset is chosen. */ # ifdef _USING_V110_SDK71_ -# define VS2012_DEF_TARGET 0x0501 +# define VS2012_DEF_TARGET 0x0501 /* XP */ # else -# define VS2012_DEF_TARGET 0x0602 +# define VS2012_DEF_TARGET 0x0602 /* 8 */ # endif #endif