summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2019-05-19 17:16:34 +0000
committerivan <ivan@13f79535-47bb-0310-9956-ffa450edef68>2019-05-19 17:16:34 +0000
commitc02ab86e6d82f9759a5ab1dcf0729414d39f5bcc (patch)
tree9d17a43771deae44feb699340a3ac5ca6f298273
parent72fbeb70ac5464a12096c99224ca77577c515b4a (diff)
downloadlibapr-c02ab86e6d82f9759a5ab1dcf0729414d39f5bcc.tar.gz
* CMakeLists.txt: Error if MIN_WINDOWS_VER set to Vista.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1859516 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b8caa1479..37e3c4359 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -87,7 +87,7 @@ ENDIF()
IF("${MIN_WINDOWS_VER}" STREQUAL "")
SET(win32_winnt_str "0x0601")
ELSEIF(${MIN_WINDOWS_VER} STREQUAL "Vista")
- SET(win32_winnt_str "0x0600")
+ MESSAGE(FATAL_ERROR "Minimum supported Windows version is Windows 7/Windows Server 2008 R2")
ELSEIF(${MIN_WINDOWS_VER} STREQUAL "Windows7")
SET(win32_winnt_str "0x0601")
ELSE()