* CMakeLists.txt: Define _WIN32_WINNT to 0x0601 by default, since Windows 7
  is minimum supported Windows version.


git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1859514 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b424814..3609d6c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -85,7 +85,7 @@
 ENDIF()
 
 IF("${MIN_WINDOWS_VER}" STREQUAL "")
-  SET(win32_winnt_str "0x0600")
+  SET(win32_winnt_str "0x0601")
 ELSEIF(${MIN_WINDOWS_VER} STREQUAL "Vista")
   SET(win32_winnt_str "0x0600")
 ELSEIF(${MIN_WINDOWS_VER} STREQUAL "Windows7")