summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-25 14:00:04 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-25 14:00:04 +0000
commit2fc81699cab303d8a232530d37f164d13f6899f9 (patch)
tree5c2bc89b5b3deef53f9e6c7a6464d900469d079f /configure
parent6a837d7f0dba60ebcc290e3cdfe94a1b70a5139e (diff)
downloadmpv-2fc81699cab303d8a232530d37f164d13f6899f9.tar.bz2
mpv-2fc81699cab303d8a232530d37f164d13f6899f9.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index badbf40bc4..bef47f069a 100755
--- a/configure
+++ b/configure
@@ -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