[MPlayer-cvslog] r19597 - trunk/configure
nicodvb
subversion at mplayerhq.hu
Tue Aug 29 23:09:58 CEST 2006
Author: nicodvb
Date: Tue Aug 29 23:09:58 2006
New Revision: 19597
Modified:
trunk/configure
Log:
accept dvdnav version >= 0.2.0; the previous code failed because the check test 020 -ge 0110 failed
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Tue Aug 29 23:09:58 2006
@@ -5175,7 +5175,8 @@
_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
More information about the MPlayer-cvslog
mailing list