diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-02-09 17:42:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-02-09 17:42:57 +0100 |
commit | 4e509b6369febbfca15b83c47394d30f7ce5e4a7 (patch) | |
tree | 61b9e4c137bc6eb56cd61ecbd476dd3be00c8f0c /src/auto | |
parent | 5ec3aea854387a5bfc02938546f5e8bd057e0113 (diff) | |
download | vim-git-4e509b6369febbfca15b83c47394d30f7ce5e4a7.tar.gz |
updated for version 7.3.117v7.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".
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auto/configure b/src/auto/configure index fae21ff90..4a4551511 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -9886,9 +9886,9 @@ rm -f core conftest.err conftest.$ac_objext \ else { $as_echo "$as_me:${as_lineno-$LINENO}: result: empty: automatic terminal library selection" >&5 $as_echo "empty: automatic terminal library selection" >&6; } - case "`uname -s 2>/dev/null`" in - OSF1|SCO_SV) tlibs="ncurses curses termlib termcap";; - *) tlibs="ncurses termlib termcap curses";; + case "`uname -s 2>/dev/null`" in + OSF1|SCO_SV) tlibs="tinfo ncurses curses termlib termcap";; + *) tlibs="tinfo ncurses termlib termcap curses";; esac for libname in $tlibs; do as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh` |