summaryrefslogtreecommitdiffstats
path: root/src/Make_cyg_ming.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-06-30 16:27:02 +0200
committerBram Moolenaar <Bram@vim.org>2018-06-30 16:27:02 +0200
commit304925e75031751fc87b51e387eb079bf3ae2066 (patch)
treeecc8d9c67626ca00beab2535760941d67b7213b9 /src/Make_cyg_ming.mak
parent7c365fb190225d98af818daf195dc19921fe01ca (diff)
patch 8.1.0128: building with MinGW does not work out-of-the-boxv8.1.0128
Problem: Building with MinGW does not work out-of-the-box. Solution: Add instructions for MSYS2. Set default WINVER. Add batch files to set $PATH for MSYS2.
Diffstat (limited to 'src/Make_cyg_ming.mak')
-rw-r--r--src/Make_cyg_ming.mak5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index cdec101fbb..16cd71259c 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -75,9 +75,10 @@ POSTSCRIPT=no
# Set to yes to enable OLE support.
OLE=no
-# Set the default $(WINVER) to make it work with WinXP.
+# Set the default $(WINVER). Use 0x0501 to make it work with WinXP.
ifndef WINVER
-WINVER = 0x0501
+# WINVER = 0x0501
+WINVER = 0x0600
endif
# Set to yes to enable Cscope support.