0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

removed unneeded checks on the version of dvdnav (the acceptance of

--minilibs guarantees it's ok) and unneeded assignments


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25050 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2007-11-14 22:20:19 +00:00
parent 9932764f90
commit bddc913a27

6
configure vendored
View File

@ -7526,16 +7526,11 @@ EOF
_dvdnav=no
_dvdnavdir=`$_dvdnavconfig --cflags`
_dvdnavlibs=`$_dvdnavconfig --libs`
_dvdnavvsn=`$_dvdnavconfig --version | sed "s/\.//g"`
_dvdnavmajor=`echo $_dvdnavvsn | cut -d. -f2`
test "$_dvdnavmajor" -ge 2 -o "$_dvdnavvsn" -ge 0110 && \
cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
fi
if test "$_dvdnav" = yes ; then
_largefiles=yes
_def_dvdnav='#define USE_DVDNAV 1'
_dvdnav_version=`$_dvdnavconfig --version | sed "s/\.//g"`
_def_dvdnav_version="#define DVDNAVVERSION $_dvdnav_version"
_inc_extra="$_inc_extra `$_dvdnavconfig --cflags`"
_ld_extra="$_ld_extra `$_dvdnavconfig --minilibs`"
_inputmodules="dvdnav $_inputmodules"
@ -8054,7 +8049,6 @@ $_def_lircc
/* DVD navigation support using libdvdnav */
$_def_dvdnav
$_def_dvdnav_version
/* Define this to enable MPEG 1/2 image postprocessing (requires a FAST CPU!) */
#define MPEG12_POSTPROC 1