[SCM] libav/experimental: Simplify libvorbis/libtheora check for libogg dependency. patch by Ramiro Polla, ramiro lisha.ufsc br

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:56:00 UTC 2013


The following commit has been merged in the experimental branch:
commit ddf50e4cc3a1c676133af886ad657b72473d09b9
Author: Ramiro Polla <ramiro at lisha.ufsc.br>
Date:   Tue Feb 6 07:57:56 2007 +0000

    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

diff --git a/configure b/configure
index a5c24a0..ce1585d 100755
--- a/configure
+++ b/configure
@@ -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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list