comparison src/Make_cyg_ming.mak @ 13468:539436dcb134 v8.0.1608

patch 8.0.1608: Win32: directx not enabled by default commit https://github.com/vim/vim/commit/43cb6262141c0a0853680bd8d0433e04db3bf182 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 14 21:39:02 2018 +0100 patch 8.0.1608: Win32: directx not enabled by default Problem: Win32: directx not enabled by default. Solution: Change Makefile to enable directx by default. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Wed, 14 Mar 2018 21:45:06 +0100
parents cfce9ac1d1e8
children c83ec560409c
comparison
equal deleted inserted replaced
13467:b073fa38b590 13468:539436dcb134
18 # it's just run out of memory or something. Run again, and it will continue 18 # it's just run out of memory or something. Run again, and it will continue
19 # with 'xxd'. 19 # with 'xxd'.
20 # 20 #
21 # "make upx" makes *compressed* versions of the 32 bit GUI and console EXEs, 21 # "make upx" makes *compressed* versions of the 32 bit GUI and console EXEs,
22 # using the excellent UPX compressor: 22 # using the excellent UPX compressor:
23 # http://upx.sourceforge.net/ 23 # https://upx.github.io/
24 # "make mpress" uses the MPRESS compressor for 32- and 64-bit EXEs: 24 # "make mpress" uses the MPRESS compressor for 32- and 64-bit EXEs:
25 # http://www.matcode.com/mpress.htm 25 # http://www.matcode.com/mpress.htm
26 # 26 #
27 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al. 27 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al.
28 # Updated 2014 Oct 13. 28 # Updated 2014 Oct 13.
32 DEBUG=no 32 DEBUG=no
33 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization 33 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization
34 OPTIMIZE=MAXSPEED 34 OPTIMIZE=MAXSPEED
35 # set to yes to make gvim, no for vim 35 # set to yes to make gvim, no for vim
36 GUI=yes 36 GUI=yes
37 # set to yes if you want to use DirectWrite (DirectX) 37 # set to no if you do not want to use DirectWrite (DirectX)
38 # MinGW-w64 is needed, and ARCH should be set to i686 or x86-64. 38 # MinGW-w64 is needed, and ARCH should be set to i686 or x86-64.
39 DIRECTX=no 39 DIRECTX=yes
40 # FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE] 40 # FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE]
41 # Set to TINY to make minimal version (few features). 41 # Set to TINY to make minimal version (few features).
42 FEATURES=HUGE 42 FEATURES=HUGE
43 # Set to one of i386, i486, i586, i686 as the minimum target processor. 43 # Set to one of i386, i486, i586, i686 as the minimum target processor.
44 # For amd64/x64 architecture set ARCH=x86-64 . 44 # For amd64/x64 architecture set ARCH=x86-64 .