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

Make static libavutil detection semantics explicit.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18196 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-04-22 17:31:10 +00:00
parent 22f7791e6c
commit 2cb7c8ab3f

11
configure vendored
View File

@ -1463,6 +1463,7 @@ _prefix="/usr/local"
# GOTCHA: the variables below defines the default behavior for autodetection
# and have - unless stated otherwise - at least 2 states : yes no
# If autodetection is available then the third state is: auto
_libavutil=auto
_libavcodec=auto
_amr_nb=auto
_amr_nb_fixed=auto
@ -5979,10 +5980,12 @@ echores "$_live"
echocheck "FFmpeg libavutil (static)"
if test -d libavutil ; then
_libavutil=yes
else
_libavutil=no
if test "$_libavutil" = auto ; then
if test -d libavutil ; then
_libavutil=yes
else
_libavutil=no
fi
fi
echores "$_libavutil"