From a7f5fc94310ecb14f34bb75eac4020119399efd3 Mon Sep 17 00:00:00 2001 From: orbea Date: Sun, 30 Dec 2018 20:00:29 -0800 Subject: [PATCH] qb: Fix mpv check. This fixes the mpv configure check and disables it by default to avoid exposing other bugs. It can be enabled again when those isssues are fixed. --- qb/config.libs.sh | 5 ++--- qb/config.params.sh | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 1ae1e2bfc3..9d2312797d 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -409,9 +409,8 @@ else check_val '' ZLIB '-lz' fi -if [ "$HAVE_MPV" != 'no' ]; then - check_pkgconf MPV libmpv -fi +check_pkgconf MPV mpv +check_val '' MPV -lmpv if [ "$HAVE_THREADS" = 'no' ] && [ "$HAVE_FFMPEG" != 'no' ]; then HAVE_FFMPEG='no' diff --git a/qb/config.params.sh b/qb/config.params.sh index e73e273d39..0ed6fb676a 100644 --- a/qb/config.params.sh +++ b/qb/config.params.sh @@ -34,7 +34,7 @@ HAVE_THREADS=auto # Threading support HAVE_THREAD_STORAGE=auto # Thread Local Storage support HAVE_FFMPEG=auto # FFmpeg support C89_FFMPEG=no -HAVE_MPV=auto # MPV support +HAVE_MPV=no # MPV support HAVE_SSA=auto # SSA/ASS for FFmpeg subtitle support HAVE_DYLIB=auto # Dynamic loading support HAVE_NETWORKING=auto # Networking features (recommended)