summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-02 17:08:36 +0200
committerwm4 <wm4@nowhere>2013-08-02 17:08:36 +0200
commit878a94d000093d253206cc50e10632d64f8728cb (patch)
treed6d840d49e4b73a556448ae95b951c22f5677b07
parentbd0454c31dd7f7c7d05668841d2f689f60fa1f6b (diff)
downloadmpv-878a94d000093d253206cc50e10632d64f8728cb.tar.bz2
mpv-878a94d000093d253206cc50e10632d64f8728cb.tar.xz
configure: lower libdvdread minimum required version
This version number was essentially random. When I switched the test to pkg-config, I took the libdvdread version from my Debian unstable system as the minimum (as I knew that this version worked). A user reported that the libdvdread version 4.1.4 appeared to work fine, so lower the minimum version to the 4.1.x series.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6d12fccfa9..25d755918f 100755
--- a/configure
+++ b/configure
@@ -2440,7 +2440,7 @@ echores "$_bluray"
echocheck "dvdread"
if test "$_dvdread" = auto ; then
_dvdread=no
- pkg_config_add 'dvdread >= 4.2.0' && _dvdread=yes
+ pkg_config_add 'dvdread >= 4.1.0' && _dvdread=yes
fi
if test "$_dvdread" = yes ; then
def_dvdread='#define CONFIG_DVDREAD 1'