]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.183
- new
[packages/vim.git] / 7.3.183
CommitLineData
bb987377
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.183
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.183 (after 7.3.174)
11Problem: When Exuberant ctags binary is exuberant-ctags it's not found.
12Solution: Add configure check for exuberant-ctags.
13Files: src/configure.in, src/auto/configure
14
15
16*** ../vim-7.3.182/src/configure.in 2011-05-05 18:10:11.000000000 +0200
17--- src/configure.in 2011-05-10 15:39:38.000000000 +0200
18***************
19*** 3375,3384 ****
20 dnl -i+m to test for older Exuberant ctags
21 AC_MSG_CHECKING(how to create tags)
22 test -f tags && mv tags tags.save
23! if (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
24! TAGPRG="exctags -I INIT+ --fields=+S"
25! elif (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
26 TAGPRG="ctags -I INIT+ --fields=+S"
27 else
28 TAGPRG="ctags"
29 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags"
30--- 3375,3386 ----
31 dnl -i+m to test for older Exuberant ctags
32 AC_MSG_CHECKING(how to create tags)
33 test -f tags && mv tags tags.save
34! if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
35 TAGPRG="ctags -I INIT+ --fields=+S"
36+ elif (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
37+ TAGPRG="exctags -I INIT+ --fields=+S"
38+ elif (eval exuberant-ctags --version /dev/null | grep Exuberant) < /dev/null 1>&AC_FD_CC 2>&1; then
39+ TAGPRG="exuberant-ctags -I INIT+ --fields=+S"
40 else
41 TAGPRG="ctags"
42 (eval etags /dev/null) < /dev/null 1>&AC_FD_CC 2>&1 && TAGPRG="etags"
43*** ../vim-7.3.182/src/auto/configure 2011-05-05 18:10:11.000000000 +0200
44--- src/auto/configure 2011-05-10 15:39:41.000000000 +0200
45***************
46*** 12028,12037 ****
47 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create tags" >&5
48 $as_echo_n "checking how to create tags... " >&6; }
49 test -f tags && mv tags tags.save
50! if (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
51! TAGPRG="exctags -I INIT+ --fields=+S"
52! elif (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
53 TAGPRG="ctags -I INIT+ --fields=+S"
54 else
55 TAGPRG="ctags"
56 (eval etags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags"
57--- 12028,12039 ----
58 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create tags" >&5
59 $as_echo_n "checking how to create tags... " >&6; }
60 test -f tags && mv tags tags.save
61! if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
62 TAGPRG="ctags -I INIT+ --fields=+S"
63+ elif (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
64+ TAGPRG="exctags -I INIT+ --fields=+S"
65+ elif (eval exuberant-ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
66+ TAGPRG="exuberant-ctags -I INIT+ --fields=+S"
67 else
68 TAGPRG="ctags"
69 (eval etags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags"
70*** ../vim-7.3.182/src/version.c 2011-05-10 14:44:07.000000000 +0200
71--- src/version.c 2011-05-10 15:40:48.000000000 +0200
72***************
73*** 716,717 ****
74--- 716,719 ----
75 { /* Add new patch number below this line */
76+ /**/
77+ 183,
78 /**/
79
80--
81hundred-and-one symptoms of being an internet addict:
8278. You find yourself dialing IP numbers on the phone.
83
84 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
85/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
86\\\ an exciting new programming language -- http://www.Zimbu.org ///
87 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.034474 seconds and 4 git commands to generate.