comparison src/Make_cyg_ming.mak @ 14222:78449866e9a9 v8.1.0128

patch 8.1.0128: building with MinGW does not work out-of-the-box commit https://github.com/vim/vim/commit/304925e75031751fc87b51e387eb079bf3ae2066 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 30 16:27:02 2018 +0200 patch 8.1.0128: building with MinGW does not work out-of-the-box 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 30 Jun 2018 16:30:06 +0200
parents 352c2832d17f
children 195e8b1fcbbf
comparison
equal deleted inserted replaced
14221:21a68013cae2 14222:78449866e9a9
73 POSTSCRIPT=no 73 POSTSCRIPT=no
74 74
75 # Set to yes to enable OLE support. 75 # Set to yes to enable OLE support.
76 OLE=no 76 OLE=no
77 77
78 # Set the default $(WINVER) to make it work with WinXP. 78 # Set the default $(WINVER). Use 0x0501 to make it work with WinXP.
79 ifndef WINVER 79 ifndef WINVER
80 WINVER = 0x0501 80 # WINVER = 0x0501
81 WINVER = 0x0600
81 endif 82 endif
82 83
83 # Set to yes to enable Cscope support. 84 # Set to yes to enable Cscope support.
84 CSCOPE=yes 85 CSCOPE=yes
85 86