diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-06-01 07:44:36 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-06-01 07:44:36 +0000 |
commit | d73f2a4c07354006ad04c13329b588348282d716 (patch) | |
tree | 549afdaa1a9e9f8f7dc1cedf8ac645b9fbbd67b0 | |
parent | 95a38dab339f0f34360c2f744363f50211593cd5 (diff) |
disable dvdnav when using the internal dvdread
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26953 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -7544,7 +7544,12 @@ cc_check -mno-omit-leaf-frame-pointer && CFLAG_NO_OMIT_LEAF_FRAME_POINTER="-mno- # to use its own copy of the library) echocheck "DVD support (libdvdnav)" if test "$_dvdnav" = auto ; then + if test "$_dvdread_internal" = yes ; then + _dvdnav=no + echores "disabled due to the usage of the internal copy of dvdread. Append --disable-dvdread-internal" + else $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no + fi fi if test "$_dvdnav" = auto ; then cat > $TMPC <<EOF |