[Ffmpeg-cvslog] r7850 - trunk/configure

diego subversion
Tue Feb 6 08:57:56 CET 2007


Author: diego
Date: Tue Feb  6 08:57:56 2007
New Revision: 7850

Modified:
   trunk/configure

Log:
Simplify libvorbis/libtheora check for libogg dependency.
patch by Ramiro Polla, ramiro lisha.ufsc br


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Tue Feb  6 08:57:56 2007
@@ -1220,12 +1220,9 @@
     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




More information about the ffmpeg-cvslog mailing list