comparison src/Make_cyg.mak @ 3652:8393a16069fb v7.3.586

updated for version 7.3.586 Problem: When compiling with Cygwin or MingW MEMORYSTATUSEX is not defined. Solution: Set the default for WINVER to 0x0500.
author Bram Moolenaar <bram@vim.org>
date Fri, 06 Jul 2012 13:40:50 +0200
parents d3758064ff99
children d3158bf4dee9
comparison
equal deleted inserted replaced
3651:b9288e863ce6 3652:8393a16069fb
1 # 1 #
2 # Makefile for VIM on Win32, using Cygnus gcc 2 # Makefile for VIM on Win32, using Cygnus gcc
3 # Last updated by Dan Sharp. Last Change: 2010 Nov 03 3 # Last updated by Dan Sharp. Last Change: 2012 Jun 30
4 # 4 #
5 # Also read INSTALLpc.txt! 5 # Also read INSTALLpc.txt!
6 # 6 #
7 # This compiles Vim as a Windows application. If you want Vim to run as a 7 # This compiles Vim as a Windows application. If you want Vim to run as a
8 # Cygwin application use the Makefile (just like on Unix). 8 # Cygwin application use the Makefile (just like on Unix).
46 # "no" does not work with latest version of Cygwin, use 46 # "no" does not work with latest version of Cygwin, use
47 # Make_ming.mak instead. Or set CC to gcc-3 and add 47 # Make_ming.mak instead. Or set CC to gcc-3 and add
48 # -L/lib/w32api to EXTRA_LIBS. 48 # -L/lib/w32api to EXTRA_LIBS.
49 # POSTSCRIPT no or yes: set to yes for PostScript printing (no) 49 # POSTSCRIPT no or yes: set to yes for PostScript printing (no)
50 # FEATURES TINY, SMALL, NORMAL, BIG or HUGE (BIG) 50 # FEATURES TINY, SMALL, NORMAL, BIG or HUGE (BIG)
51 # WINVER Lowest Win32 version to support. (0x0400) 51 # WINVER Lowest Win32 version to support. (0x0500)
52 # CSCOPE no or yes: to include cscope interface support (yes) 52 # CSCOPE no or yes: to include cscope interface support (yes)
53 # OPTIMIZE SPACE, SPEED, or MAXSPEED: set optimization level (MAXSPEED) 53 # OPTIMIZE SPACE, SPEED, or MAXSPEED: set optimization level (MAXSPEED)
54 # NETBEANS no or yes: to include netbeans interface support (yes when GUI 54 # NETBEANS no or yes: to include netbeans interface support (yes when GUI
55 # is yes) 55 # is yes)
56 # NBDEBUG no or yes: to include netbeans interface debugging support (no) 56 # NBDEBUG no or yes: to include netbeans interface debugging support (no)
83 ifndef ARCH 83 ifndef ARCH
84 ARCH = i386 84 ARCH = i386
85 endif 85 endif
86 86
87 ifndef WINVER 87 ifndef WINVER
88 WINVER = 0x0400 88 WINVER = 0x0500
89 endif 89 endif
90 90
91 ifndef CSCOPE 91 ifndef CSCOPE
92 CSCOPE = yes 92 CSCOPE = yes
93 endif 93 endif