Mercurial > vim
annotate src/Make_ming.mak @ 10642:c10f367d0dfc v8.0.0211
patch 8.0.0211: cannot build without the multi-byte feature
commit https://github.com/vim/vim/commit/560379d7ae1bace259bbc29a275e73446346ce66
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 21 22:50:00 2017 +0100
patch 8.0.0211: cannot build without the multi-byte feature
Problem: Build fails if the multi-byte feature is disabled.
Solution: Change #ifdef around ins_char_bytes.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 21 Jan 2017 23:00:04 +0100 |
parents | 112c80234ce3 |
children | 626fb8e8bb8a |
rev | line source |
---|---|
7 | 1 # |
6326 | 2 # Makefile for VIM on Win32, using MinGW |
7 | 3 # |
6326 | 4 # Also read INSTALLpc.txt! |
7 | 5 # |
6326 | 6 # The old Make_ming.mak (maintained by Ron Aaron et al.) was merged into |
7 # Make_cyg_ming.mak. | |
8 # This file contains MinGW specific settings. Common settings are contained | |
9 # in Make_cyg_ming.mak. | |
10 # | |
11 # Last updated by Ken Takata. | |
12 # Last Change: 2014 Oct 21 | |
7 | 13 |
14 | |
15 # uncomment 'PERL' if you want a perl-enabled version | |
6326 | 16 #PERL=c:/perl |
7 | 17 |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2192
diff
changeset
|
18 # uncomment 'LUA' if you want a Lua-enabled version |
6326 | 19 #LUA=c:/lua |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2192
diff
changeset
|
20 |
14 | 21 # uncomment 'MZSCHEME' if you want a MzScheme-enabled version |
22 #MZSCHEME=d:/plt | |
128 | 23 |
6326 | 24 # uncomment 'PYTHON' if you want a python-enabled version |
7 | 25 # Put the path to the python distro here. If cross compiling from Linux, you |
26 # will also need to convert the header files to unix instead of dos format: | |
27 # for fil in *.h ; do vim -e -c 'set ff=unix|w|q' $fil | |
28 # and also, you will need to make a mingw32 'libpython20.a' to link with: | |
29 # cd $PYTHON/libs | |
30 # pexports python20.dll > python20.def | |
31 # dlltool -d python20.def -l libpython20.a | |
32 # on my Linux box, I put the Python stuff here: | |
33 #PYTHON=/home/ron/ActivePython-2.0.0-202/src/Core | |
34 # on my NT box, it's here: | |
35 #PYTHON=c:/python20 | |
36 | |
6326 | 37 # uncomment 'PYTHON3' if you want a python3-enabled version |
38 #PYTHON3=c:/python31 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
39 |
6326 | 40 # uncomment 'TCL' if you want a Tcl-enabled version |
41 #TCL=c:/tcl | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
42 |
6326 | 43 # uncomment 'RUBY' if you want a Ruby-enabled version |
44 #RUBY=c:/ruby | |
7 | 45 |
46 | |
6326 | 47 # Do not change this. |
48 UNDER_CYGWIN = no | |
49 include Make_cyg_ming.mak |