You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Simplify libvorbis/libtheora check for libogg dependency.
patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7850 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Diego Biurrun
parent
ac91185fb7
commit
ddf50e4cc3
9
configure
vendored
9
configure
vendored
@@ -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
|
||||
|
Reference in New Issue
Block a user