mirror of https://git.ffmpeg.org/ffmpeg.git
Slightly shorten libvorbis check.
Originally committed as revision 7371 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
eb11380499
commit
b8bd34305e
|
@ -1117,11 +1117,9 @@ EOF
|
|||
exit 1;
|
||||
fi
|
||||
|
||||
if test "$libvorbis" = "yes" ; then
|
||||
if test "$libogg" = "no"; then
|
||||
echo "libogg must be enabled to enable Vorbis."
|
||||
if test "$libvorbis" = "yes" && test "$libogg" = "no"; then
|
||||
echo "libogg must be enabled to enable libvorbis."
|
||||
fail="yes"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$gpl" != "yes"; then
|
||||
|
|
Loading…
Reference in New Issue