mirror of https://github.com/mpv-player/mpv
Report if internal, external of dvdnav version of dvdread is used.
patch by Yaroslav, yar_tour mail ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22998 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
eb7cd2b33e
commit
089111224d
|
@ -5266,13 +5266,19 @@ fi
|
||||||
if test "$_dvdread_internal" = yes; then
|
if test "$_dvdread_internal" = yes; then
|
||||||
_def_dvdread_internal="#define USE_DVDREAD_INTERNAL 1"
|
_def_dvdread_internal="#define USE_DVDREAD_INTERNAL 1"
|
||||||
_def_dvdread='#define USE_DVDREAD 1'
|
_def_dvdread='#define USE_DVDREAD 1'
|
||||||
_inputmodules="dvdread $_inputmodules"
|
_inputmodules="dvdread(internal) $_inputmodules"
|
||||||
_largefiles=yes
|
_largefiles=yes
|
||||||
elif test "$_dvdread" = yes; then
|
elif test "$_dvdread" = yes; then
|
||||||
_def_dvdread='#define USE_DVDREAD 1'
|
_def_dvdread='#define USE_DVDREAD 1'
|
||||||
_inputmodules="dvdread $_inputmodules"
|
|
||||||
_largefiles=yes
|
_largefiles=yes
|
||||||
test "$_dvdnav" != yes && _ld_extra="$_ld_extra -ldvdread"
|
if test "$_dvdnav" != yes; then
|
||||||
|
_ld_extra="$_ld_extra -ldvdread"
|
||||||
|
_inputmodules="dvdread(external) $_inputmodules"
|
||||||
|
_res_comment="external"
|
||||||
|
else
|
||||||
|
_inputmodules="dvdread(from dvdnav) $_inputmodules"
|
||||||
|
_res_comment="from dvdnav"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
_def_dvdread_internal="#undef USE_DVDREAD_INTERNAL"
|
_def_dvdread_internal="#undef USE_DVDREAD_INTERNAL"
|
||||||
_def_dvdread='#undef USE_DVDREAD'
|
_def_dvdread='#undef USE_DVDREAD'
|
||||||
|
@ -5296,10 +5302,10 @@ if test "$_libdvdcss_internal" = yes ; then
|
||||||
_def_dvd_darwin='#define DARWIN_DVD_IOCTL'
|
_def_dvd_darwin='#define DARWIN_DVD_IOCTL'
|
||||||
_ld_extra="$_ld_extra -framework IOKit"
|
_ld_extra="$_ld_extra -framework IOKit"
|
||||||
fi
|
fi
|
||||||
_inputmodules="libdvdcss $_inputmodules"
|
_inputmodules="libdvdcss(internal) $_inputmodules"
|
||||||
_largefiles=yes
|
_largefiles=yes
|
||||||
else
|
else
|
||||||
_noinputmodules="libdvdcss $_noinputmodules"
|
_noinputmodules="libdvdcss(internal) $_noinputmodules"
|
||||||
fi
|
fi
|
||||||
echores "$_libdvdcss_internal"
|
echores "$_libdvdcss_internal"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue