diff options
author | Pierre Ossman <ossman@cendio.se> | 2015-11-12 12:17:34 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2015-11-27 11:03:28 +0100 |
commit | 1cc323df534c521fe17bf58d1a8501b4ecf8f185 (patch) | |
tree | f31efae84dbacfd7a57fd8ee1dc09a7678ddfd06 | |
parent | 7d6bf1158360c2e9a348de79cf9916a3e9f04cb6 (diff) | |
download | tigervnc-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.txt | 4 |
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) |