summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-15 12:06:48 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-15 12:06:48 +0000
commit089111224de4e45ee303a4fce23ca41fa0850adf (patch)
tree373321cda7e7d6a321a6a809bf6d9c8264f17b79 /configure
parenteb7cd2b33ecf57b17fb69d39e54de96c764da79b (diff)
downloadmpv-089111224de4e45ee303a4fce23ca41fa0850adf.tar.bz2
mpv-089111224de4e45ee303a4fce23ca41fa0850adf.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 11 insertions, 5 deletions
diff --git a/configure b/configure
index b74a3f1686..e82b67a3cd 100755
--- a/configure
+++ b/configure
@@ -5266,13 +5266,19 @@ fi
if test "$_dvdread_internal" = yes; then
_def_dvdread_internal="#define USE_DVDREAD_INTERNAL 1"
_def_dvdread='#define USE_DVDREAD 1'
- _inputmodules="dvdread $_inputmodules"
+ _inputmodules="dvdread(internal) $_inputmodules"
_largefiles=yes
elif test "$_dvdread" = yes; then
_def_dvdread='#define USE_DVDREAD 1'
- _inputmodules="dvdread $_inputmodules"
_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
_def_dvdread_internal="#undef USE_DVDREAD_INTERNAL"
_def_dvdread='#undef USE_DVDREAD'
@@ -5296,10 +5302,10 @@ if test "$_libdvdcss_internal" = yes ; then
_def_dvd_darwin='#define DARWIN_DVD_IOCTL'
_ld_extra="$_ld_extra -framework IOKit"
fi
- _inputmodules="libdvdcss $_inputmodules"
+ _inputmodules="libdvdcss(internal) $_inputmodules"
_largefiles=yes
else
- _noinputmodules="libdvdcss $_noinputmodules"
+ _noinputmodules="libdvdcss(internal) $_noinputmodules"
fi
echores "$_libdvdcss_internal"