accept dvdnav version >= 0.2.0; the previous code failed because the check test 020 -ge 0110 failed

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19597 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2006-08-29 21:09:58 +00:00
parent d81f4ecd8d
commit 5ee88aea4d
1 changed files with 2 additions and 1 deletions

3
configure vendored
View File

@ -5175,7 +5175,8 @@ EOF
_dvdnavlibs=`$_dvdnavconfig --libs`
_dvdnavvsn=`$_dvdnavconfig --version | sed "s/\.//g"`
_used_css=
test "$_dvdnavvsn" -ge 0110 && cc_check -I$_dvdnavdir $_dvdnavlibs $_used_css $_ld_dl $_ld_pthread && _dvdnav=yes
_dvdnavmajor=`echo $_dvdnavvsn | cut -d. -f2`
test "$_dvdnavmajor" -ge 2 -o "$_dvdnavvsn" -ge 0110 && cc_check -I$_dvdnavdir $_dvdnavlibs $_used_css $_ld_dl $_ld_pthread && _dvdnav=yes
fi
if test "$_dvdnav" = yes ; then
_largefiles=yes