0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

configure: prefer libquvi 0.4.x over libquvi 0.9.x

Because 0.4.x is the current series of stable releases.
This commit is contained in:
wm4 2013-06-28 15:46:38 +02:00
parent 5f664d78e6
commit 49fb242edb

36
configure vendored
View File

@ -1732,25 +1732,7 @@ fi
echores "$_smb"
echocheck "libquvi 0.9.0 support"
if test "$_libquvi9" = auto ; then
_libquvi9=no
if pkg_config_add 'libquvi-0.9 >= 0.9.0' ; then
_libquvi9=yes
fi
fi
if test "$_libquvi9" = yes; then
def_libquvi9="#define CONFIG_LIBQUVI9 1"
else
def_libquvi9="#undef CONFIG_LIBQUVI9"
fi
echores "$_libquvi9"
echocheck "libquvi support"
if test "$_libquvi9" = yes ; then
_libquvi=no
res_comment="using libquvi 0.9.x"
fi
if test "$_libquvi" = auto ; then
_libquvi=no
if pkg_config_add 'libquvi >= 0.4.1' ; then
@ -1764,6 +1746,24 @@ else
fi
echores "$_libquvi"
echocheck "libquvi 0.9.x support"
if test "$_libquvi" = yes ; then
_libquvi9=no
res_comment="using libquvi 0.4.x"
fi
if test "$_libquvi9" = auto ; then
_libquvi9=no
if pkg_config_add 'libquvi-0.9 >= 0.9.0' ; then
_libquvi9=yes
fi
fi
if test "$_libquvi9" = yes; then
def_libquvi9="#define CONFIG_LIBQUVI9 1"
else
def_libquvi9="#undef CONFIG_LIBQUVI9"
fi
echores "$_libquvi9"
#########
# VIDEO #
#########