summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-11-12 12:17:34 +0100
committerPierre Ossman <ossman@cendio.se>2015-11-27 11:03:28 +0100
commit1cc323df534c521fe17bf58d1a8501b4ecf8f185 (patch)
treef31efae84dbacfd7a57fd8ee1dc09a7678ddfd06
parent7d6bf1158360c2e9a348de79cf9916a3e9f04cb6 (diff)
downloadtigervnc-1cc323df534c521fe17bf58d1a8501b4ecf8f185.tar.gz
tigervnc-1cc323df534c521fe17bf58d1a8501b4ecf8f185.zip
Raise system requirement on Windows to Vista/2008
We need the newer versions of Windows to get access to better thread primitives.
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d788b602..7fb7b1e6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -84,9 +84,9 @@ if(NOT DEFINED BUILD_WINVNC)
set(BUILD_WINVNC 1)
endif()
-# Minimum version is Windows XP SP2 (5.2)
+# Minimum version is Windows Vista/2008 (6.0)
if(WIN32)
- add_definitions(-D_WIN32_IE=0x0502 -D_WIN32_WINNT=0x0502)
+ add_definitions(-D_WIN32_WINNT=0x0600)
endif()
if(CMAKE_SIZEOF_VOID_P MATCHES 8)