comparison src/Make_mvc.mak @ 6326:112c80234ce3 v7.4.496

updated for version 7.4.496 Problem: Many lines are both in Make_cyg.mak and Make_ming.mak Solution: Move the common parts to one file. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Wed, 05 Nov 2014 13:53:32 +0100
parents 4c845a1600d2
children 56a735cff1a0
comparison
equal deleted inserted replaced
6325:08adef366ea2 6326:112c80234ce3
48 # MZSCHEME_DEBUG=no 48 # MZSCHEME_DEBUG=no
49 # 49 #
50 # Perl interface: 50 # Perl interface:
51 # PERL=[Path to Perl directory] 51 # PERL=[Path to Perl directory]
52 # DYNAMIC_PERL=yes (to load the Perl DLL dynamically) 52 # DYNAMIC_PERL=yes (to load the Perl DLL dynamically)
53 # PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x), etc] 53 # PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x),
54 # 510 (5.10.x), etc]
54 # (default is 56) 55 # (default is 56)
55 # 56 #
56 # Python interface: 57 # Python interface:
57 # PYTHON=[Path to Python directory] 58 # PYTHON=[Path to Python directory]
58 # DYNAMIC_PYTHON=yes (to load the Python DLL dynamically) 59 # DYNAMIC_PYTHON=yes (to load the Python DLL dynamically)
59 # PYTHON_VER=[Python version, eg 15, 20] (default is 22) 60 # PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 22)
60 # 61 #
61 # Python3 interface: 62 # Python3 interface:
62 # PYTHON3=[Path to Python3 directory] 63 # PYTHON3=[Path to Python3 directory]
63 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) 64 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
64 # PYTHON3_VER=[Python3 version, eg 30, 31] (default is 31) 65 # PYTHON3_VER=[Python3 version, eg 30, 31] (default is 31)
65 # 66 #
66 # Ruby interface: 67 # Ruby interface:
67 # RUBY=[Path to Ruby directory] 68 # RUBY=[Path to Ruby directory]
68 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically) 69 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
69 # RUBY_VER=[Ruby version, eg 16, 17] (default is 18) 70 # RUBY_VER=[Ruby version, eg 18, 19, 20] (default is 18)
70 # RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.8) 71 # RUBY_VER_LONG=[Ruby version, eg 1.8, 1.9.1, 2.0.0] (default is 1.8)
71 # You must set RUBY_VER_LONG when change RUBY_VER. 72 # You must set RUBY_VER_LONG when change RUBY_VER.
72 # You must set RUBY_API_VER to RUBY_VER_LONG. 73 # RUBY_API_VER is derived from RUBY_VER_LONG.
73 # Don't set ruby API version to RUBY_VER like 191. 74 # Note: If you use Ruby 1.9.3, set as follows:
75 # RUBY_VER=19
76 # RUBY_VER_LONG=1.9.1 (not 1.9.3, because the API version is 1.9.1.)
74 # 77 #
75 # Tcl interface: 78 # Tcl interface:
76 # TCL=[Path to Tcl directory] 79 # TCL=[Path to Tcl directory]
77 # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically) 80 # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically)
78 # TCL_VER=[Tcl version, e.g. 80, 83] (default is 83) 81 # TCL_VER=[Tcl version, e.g. 80, 83] (default is 83)