mirror of https://github.com/mpv-player/mpv
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.
This commit is contained in:
parent
bd0454c31d
commit
878a94d000
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue