diff options
| author | Hampton Catlin | 2010-08-04 13:32:29 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-04 08:37:40 -0700 |
| commit | bec4d704151c7eaf3427c0aad896cd3857c806df (patch) | |
| tree | a679ba708ad17dc507b538b0daa7c24a664da204 /Library/Formula/ffmpeg.rb | |
| parent | 10263bb6ebe0c1a255ea8b0a7803da999816bdfe (diff) | |
| download | homebrew-bec4d704151c7eaf3427c0aad896cd3857c806df.tar.bz2 | |
using the proper libvorbis libraries
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ffmpeg.rb')
| -rw-r--r-- | Library/Formula/ffmpeg.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb index 77bc26d60..41d0d46b2 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -16,6 +16,7 @@ class Ffmpeg <Formula depends_on 'faad2' => :optional depends_on 'lame' => :optional depends_on 'theora' => :optional + depends_on 'libvorbis' => :optional depends_on 'libogg' => :optional def install @@ -33,7 +34,7 @@ class Ffmpeg <Formula configure_flags << "--enable-libfaad" if Formula.factory('faad2').installed? configure_flags << "--enable-libmp3lame" if Formula.factory('lame').installed? configure_flags << "--enable-libtheora" if Formula.factory('theora').installed? - configure_flags << "--enable-libvorbis" if Formula.factory('lame').installed? + configure_flags << "--enable-libvorbis" if Formula.factory('libvorbis').installed? # For 32-bit compilation under gcc 4.2, see: # http://trac.macports.org/ticket/20938#comment:22 |
