]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.117
- new
[packages/vim.git] / 7.3.117
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.117
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.117
11 Problem:    On some systems --as-needed does not work, because the "tinfo"
12             library is included indirectly from "ncurses". (Charles Campbell)
13 Solution:   In configure prefer using "tinfo" instead of "ncurses".
14 Files:      src/configure.in, src/auto/configure
15
16
17 *** ../vim-7.3.116/src/configure.in     2010-11-16 19:25:56.000000000 +0100
18 --- src/configure.in    2011-02-09 17:28:16.000000000 +0100
19 ***************
20 *** 2618,2630 ****
21     AC_MSG_RESULT([empty: automatic terminal library selection])
22     dnl  On HP-UX 10.10 termcap or termlib should be used instead of
23     dnl  curses, because curses is much slower.
24 !   dnl  Newer versions of ncurses are preferred over anything.
25     dnl  Older versions of ncurses have bugs, get a new one!
26     dnl  Digital Unix (OSF1) should use curses (Ronald Schild).
27     dnl  On SCO Openserver should prefer termlib (Roger Cornelius).
28     case "`uname -s 2>/dev/null`" in
29 !       OSF1|SCO_SV)    tlibs="ncurses curses termlib termcap";;
30 !       *)      tlibs="ncurses termlib termcap curses";;
31     esac
32     for libname in $tlibs; do
33       AC_CHECK_LIB(${libname}, tgetent,,)
34 --- 2618,2631 ----
35     AC_MSG_RESULT([empty: automatic terminal library selection])
36     dnl  On HP-UX 10.10 termcap or termlib should be used instead of
37     dnl  curses, because curses is much slower.
38 !   dnl  Newer versions of ncurses are preferred over anything, except
39 !   dnl  when tinfo has been split off, it conains all we need.
40     dnl  Older versions of ncurses have bugs, get a new one!
41     dnl  Digital Unix (OSF1) should use curses (Ronald Schild).
42     dnl  On SCO Openserver should prefer termlib (Roger Cornelius).
43     case "`uname -s 2>/dev/null`" in
44 !       OSF1|SCO_SV)    tlibs="tinfo ncurses curses termlib termcap";;
45 !       *)      tlibs="tinfo ncurses termlib termcap curses";;
46     esac
47     for libname in $tlibs; do
48       AC_CHECK_LIB(${libname}, tgetent,,)
49 *** ../vim-7.3.116/src/auto/configure   2010-11-16 19:25:56.000000000 +0100
50 --- src/auto/configure  2011-02-09 17:29:13.000000000 +0100
51 ***************
52 *** 9886,9894 ****
53   else
54     { $as_echo "$as_me:${as_lineno-$LINENO}: result: empty: automatic terminal library selection" >&5
55   $as_echo "empty: automatic terminal library selection" >&6; }
56 !               case "`uname -s 2>/dev/null`" in
57 !       OSF1|SCO_SV)    tlibs="ncurses curses termlib termcap";;
58 !       *)      tlibs="ncurses termlib termcap curses";;
59     esac
60     for libname in $tlibs; do
61       as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh`
62 --- 9886,9894 ----
63   else
64     { $as_echo "$as_me:${as_lineno-$LINENO}: result: empty: automatic terminal library selection" >&5
65   $as_echo "empty: automatic terminal library selection" >&6; }
66 !                 case "`uname -s 2>/dev/null`" in
67 !       OSF1|SCO_SV)    tlibs="tinfo ncurses curses termlib termcap";;
68 !       *)      tlibs="tinfo ncurses termlib termcap curses";;
69     esac
70     for libname in $tlibs; do
71       as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh`
72 *** ../vim-7.3.116/src/version.c        2011-02-09 17:09:26.000000000 +0100
73 --- src/version.c       2011-02-09 17:41:37.000000000 +0100
74 ***************
75 *** 716,717 ****
76 --- 716,719 ----
77   {   /* Add new patch number below this line */
78 + /**/
79 +     117,
80   /**/
81
82 -- 
83 hundred-and-one symptoms of being an internet addict:
84 220. Your wife asks for sex and you tell her where to find you on IRC.
85
86  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
87 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
88 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
89  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.072376 seconds and 3 git commands to generate.