mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
updated for version 7.3.117
Problem: On some systems --as-needed does not work, because the "tinfo" library is included indirectly from "ncurses". (Charles Campbell) Solution: In configure prefer using "tinfo" instead of "ncurses".
This commit is contained in:
parent
5ec3aea854
commit
4e509b6369
6
src/auto/configure
vendored
6
src/auto/configure
vendored
@ -9886,9 +9886,9 @@ rm -f core conftest.err conftest.$ac_objext \
|
|||||||
else
|
else
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: empty: automatic terminal library selection" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: empty: automatic terminal library selection" >&5
|
||||||
$as_echo "empty: automatic terminal library selection" >&6; }
|
$as_echo "empty: automatic terminal library selection" >&6; }
|
||||||
case "`uname -s 2>/dev/null`" in
|
case "`uname -s 2>/dev/null`" in
|
||||||
OSF1|SCO_SV) tlibs="ncurses curses termlib termcap";;
|
OSF1|SCO_SV) tlibs="tinfo ncurses curses termlib termcap";;
|
||||||
*) tlibs="ncurses termlib termcap curses";;
|
*) tlibs="tinfo ncurses termlib termcap curses";;
|
||||||
esac
|
esac
|
||||||
for libname in $tlibs; do
|
for libname in $tlibs; do
|
||||||
as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh`
|
as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh`
|
||||||
|
@ -2618,13 +2618,14 @@ else
|
|||||||
AC_MSG_RESULT([empty: automatic terminal library selection])
|
AC_MSG_RESULT([empty: automatic terminal library selection])
|
||||||
dnl On HP-UX 10.10 termcap or termlib should be used instead of
|
dnl On HP-UX 10.10 termcap or termlib should be used instead of
|
||||||
dnl curses, because curses is much slower.
|
dnl curses, because curses is much slower.
|
||||||
dnl Newer versions of ncurses are preferred over anything.
|
dnl Newer versions of ncurses are preferred over anything, except
|
||||||
|
dnl when tinfo has been split off, it conains all we need.
|
||||||
dnl Older versions of ncurses have bugs, get a new one!
|
dnl Older versions of ncurses have bugs, get a new one!
|
||||||
dnl Digital Unix (OSF1) should use curses (Ronald Schild).
|
dnl Digital Unix (OSF1) should use curses (Ronald Schild).
|
||||||
dnl On SCO Openserver should prefer termlib (Roger Cornelius).
|
dnl On SCO Openserver should prefer termlib (Roger Cornelius).
|
||||||
case "`uname -s 2>/dev/null`" in
|
case "`uname -s 2>/dev/null`" in
|
||||||
OSF1|SCO_SV) tlibs="ncurses curses termlib termcap";;
|
OSF1|SCO_SV) tlibs="tinfo ncurses curses termlib termcap";;
|
||||||
*) tlibs="ncurses termlib termcap curses";;
|
*) tlibs="tinfo ncurses termlib termcap curses";;
|
||||||
esac
|
esac
|
||||||
for libname in $tlibs; do
|
for libname in $tlibs; do
|
||||||
AC_CHECK_LIB(${libname}, tgetent,,)
|
AC_CHECK_LIB(${libname}, tgetent,,)
|
||||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
117,
|
||||||
/**/
|
/**/
|
||||||
116,
|
116,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user