diff options
| author | Dominyk Tiller | 2014-11-12 20:27:45 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-13 08:31:53 +0000 |
| commit | 69cce364a1edfcc77407f4e9c5ee2612dbdd97f9 (patch) | |
| tree | 50b096fdd86f80cbb662cfc7b2b91e7d12d981b2 /Library/Formula | |
| parent | 6b9d60d474d72b1848304297d91adc6120ea6f96 (diff) | |
| download | homebrew-69cce364a1edfcc77407f4e9c5ee2612dbdd97f9.tar.bz2 | |
ffmpeg: openssl fix
When OpenSSL is used as an option, it currently taps the system
OpenSSL. This fixes that by adding an optional dependency to our
OpenSSL.
Closes #34136.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -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 376b6504d..74764c01e 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -33,7 +33,7 @@ class Ffmpeg < Formula depends_on "pkg-config" => :build - # manpages won"t be built without texi2html + # manpages won't be built without texi2html depends_on "texi2html" => :build if MacOS.version >= :mountain_lion depends_on "yasm" => :build @@ -62,6 +62,7 @@ class Ffmpeg < Formula depends_on "libquvi" => :optional depends_on "libvidstab" => :optional depends_on "x265" => :optional + depends_on "openssl" => :optional def install args = ["--prefix=#{prefix}", |
