annotate src/xpm/README.txt @ 17781:04245f071792 v8.1.1887

patch 8.1.1887: the +cmdline_compl feature is not in the tiny version commit https://github.com/vim/vim/commit/0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 18 22:26:31 2019 +0200 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Aug 2019 22:30:04 +0200
parents 219dbe63ad2a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3764
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 This is XPM library compiled for Windows which is intended for use with Vim
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 'signs' feature.
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 Libraries in x86 directory were compiled with MSVC6 and MinGW. Proposed
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 commands to compile Vim are:
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6
9719
219dbe63ad2a commit https://github.com/vim/vim/commit/89eaa4185efacab253b23a182c1c8a7bbf1096c9
Christian Brabandt <cb@256bit.org>
parents: 3790
diff changeset
7 If you want to build XPM library by yourself, you may want to use the
219dbe63ad2a commit https://github.com/vim/vim/commit/89eaa4185efacab253b23a182c1c8a7bbf1096c9
Christian Brabandt <cb@256bit.org>
parents: 3790
diff changeset
8 following Win32 port:
219dbe63ad2a commit https://github.com/vim/vim/commit/89eaa4185efacab253b23a182c1c8a7bbf1096c9
Christian Brabandt <cb@256bit.org>
parents: 3790
diff changeset
9 https://github.com/koron/libXpm-win32
219dbe63ad2a commit https://github.com/vim/vim/commit/89eaa4185efacab253b23a182c1c8a7bbf1096c9
Christian Brabandt <cb@256bit.org>
parents: 3790
diff changeset
10
3764
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 Any version of MSVC starting from version 6.0:
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 nmake -f Make_mvc.mak GUI=yes CSCOPE=yes NETBEANS=yes XPM=e:\hg\xpm\x86
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 MinGW:
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 mingw32-make -f Make_ming.mak GUI=yes CSCOPE=yes XPM=e:/hg/xpm/x86
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16
3790
fd0c7452fa51 updated for version 7.3.653
Bram Moolenaar <bram@vim.org>
parents: 3764
diff changeset
17 MinGW 64 for x64:
fd0c7452fa51 updated for version 7.3.653
Bram Moolenaar <bram@vim.org>
parents: 3764
diff changeset
18 mingw32-make -f Make_ming.mak GUI=yes ARCH=x86-64 XPM=E:\HG\xpm\x64
fd0c7452fa51 updated for version 7.3.653
Bram Moolenaar <bram@vim.org>
parents: 3764
diff changeset
19
3764
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 Microsoft Visual C++ on x64 (tested with versions 2008 and 2010):
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 nmake -f Make_mvc.mak GUI=yes CSCOPE=yes XPM=E:\HG\xpm\x64
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 To test, open some file in Vim and execute commands below:
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 :exe 'sign define vimxpm icon='.$VIMRUNTIME.'\\vim32x32.xpm'
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25 :exe 'sign place 1 line=1 name=vimxpm file='.expand('%:p')
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
28 See COPYRIGHT for XPM licence.
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
29
c2c3577021ed updated for version 7.3.640
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
30 If you have questions please email sergey.khorev@gmail.com.