aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2012-10-04 10:35:06 +0100
committerMike McQuaid2012-10-04 10:35:10 +0100
commita96e684eec54f30c9521ba2af352a780f1d10f9f (patch)
tree94e21a2f7ef3968f3e8f56dd0a7ebd06f84c672f /Library
parent119f8fac5163b7cc7ca4ead77abd762e497e8c24 (diff)
downloadhomebrew-a96e684eec54f30c9521ba2af352a780f1d10f9f.tar.bz2
ffmpeg: remove missing libogg option.
Fixes #15288.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ffmpeg.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb
index 6b9aa1f95..75c5269f2 100644
--- a/Library/Formula/ffmpeg.rb
+++ b/Library/Formula/ffmpeg.rb
@@ -15,7 +15,6 @@ class Ffmpeg < Formula
option "with-freetype", "Enable FreeType"
option "with-theora", "Enable Theora video format"
option "with-libvorbis", "Enable Vorbis audio format"
- option "with-libogg", "Enable Ogg container format"
option "with-libvpx", "Enable VP8 video format"
option "with-rtmpdump", "Enable RTMP protocol"
option "with-opencore-amr", "Enable AMR audio format"
@@ -37,7 +36,6 @@ class Ffmpeg < Formula
depends_on :freetype if build.include? 'with-freetype'
depends_on 'theora' if build.include? 'with-theora'
depends_on 'libvorbis' if build.include? 'with-libvorbis'
- depends_on 'libogg' if build.include? 'with-libogg'
depends_on 'libvpx' if build.include? 'with-libvpx'
depends_on 'rtmpdump' if build.include? 'with-rtmpdump'
depends_on 'opencore-amr' if build.include? 'with-opencore-amr'
@@ -67,7 +65,6 @@ class Ffmpeg < Formula
args << "--enable-libfreetype" if build.include? 'with-freetype'
args << "--enable-libtheora" if build.include? 'with-theora'
args << "--enable-libvorbis" if build.include? 'with-libvorbis'
- args << "--enable-libogg" if build.include? 'with-libogg'
args << "--enable-libvpx" if build.include? 'with-libvpx'
args << "--enable-librtmp" if build.include? 'with-rtmpdump'
args << "--enable-libopencore-amrnb" << "--enable-libopencore-amrwb" if build.include? 'with-opencore-amr'