Mercurial > vim
annotate src/Make_ming.mak @ 20563:a5a24d688e11 v8.2.0835
patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Commit: https://github.com/vim/vim/commit/c998370562425e70f4cf202a87112d638f5f7b38
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 28 21:03:53 2020 +0200
patch 8.2.0835: Motif: mapping <C-bslash> still doesn't work
Problem: Motif: mapping <C-bslash> still doesn't work.
Solution: Accept CSI for K_SPECIAL. Do not apply CTRL to the character
early. (closes #6150)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 28 May 2020 21:15:04 +0200 |
parents | 626fb8e8bb8a |
children |
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 | |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
6326
diff
changeset
|
50 |
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
6326
diff
changeset
|
51 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |