Commit c1a1507e authored by diego's avatar diego

Simplify libvorbis/libtheora check for libogg dependency.

patch by Ramiro Polla, ramiro lisha.ufsc br


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7850 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 899f7f33
......@@ -1220,12 +1220,9 @@ EOF
exit 1;
fi
if enabled libtheora && disabled libogg; then
die "libogg must be enabled to enable libtheora."
fi
if enabled libvorbis && disabled libogg; then
die "libogg must be enabled to enable libvorbis."
if disabled libogg; then
enabled libtheora && die "libogg must be enabled to enable libtheora."
enabled libvorbis && die "libogg must be enabled to enable libvorbis."
fi
if enabled_any libfaad libfaadbin ; then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment