Browse Source

Slightly shorten libvorbis check.

Originally committed as revision 7371 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 19 years ago
parent
commit
b8bd34305e
1 changed files with 3 additions and 5 deletions
  1. +3
    -5
      configure

+ 3
- 5
configure View File

@@ -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."
fail="yes"
fi
if test "$libvorbis" = "yes" && test "$libogg" = "no"; then
echo "libogg must be enabled to enable libvorbis."
fail="yes"
fi

if test "$gpl" != "yes"; then


Loading…
Cancel
Save