1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

prefer newer terminfo-capable libraries (ncurses or terminfo)

over the old termcap


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17238 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
rathann 2005-12-25 14:00:04 +00:00
parent 6a837d7f0d
commit 2fc81699ca

2
configure vendored
View File

@ -3063,7 +3063,7 @@ if test "$_termcap" = auto ; then
int main(void) { tgetent(); return 0; }
EOF
_termcap=no
for _ld_tmp in "-ltermcap" "-ltinfo" "-lncurses"; do
for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
cc_check $_ld_tmp && _ld_termcap="$_ld_tmp" && _termcap=yes && break
done
fi