summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-28 15:46:38 +0200
committerwm4 <wm4@nowhere>2013-06-28 15:51:20 +0200
commit49fb242edb2dc582a5c6d72f53387b8160f829a7 (patch)
tree0f1f2f494b802d69419cf558edfe24627be43459
parent5f664d78e6e9bd5809dc7d0f12c4099e76582cb3 (diff)
downloadmpv-49fb242edb2dc582a5c6d72f53387b8160f829a7.tar.bz2
mpv-49fb242edb2dc582a5c6d72f53387b8160f829a7.tar.xz
configure: prefer libquvi 0.4.x over libquvi 0.9.x
Because 0.4.x is the current series of stable releases.
-rwxr-xr-xconfigure36
1 files changed, 18 insertions, 18 deletions
diff --git a/configure b/configure
index f325af284c..a8a41918aa 100755
--- a/configure
+++ b/configure
@@ -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 #
#########