diff options
| author | Christopher Eby | 2013-11-22 17:46:44 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-22 18:15:35 -0800 |
| commit | 15aacd498fd458b118a34e85cd3af2c29d7ed051 (patch) | |
| tree | 816b5e0e67827cb8f9826d79d5eb49911fc8348e /Library | |
| parent | 498ae0cdc2a8bf06dcf786fdd7cee3e28e88bae3 (diff) | |
| download | homebrew-15aacd498fd458b118a34e85cd3af2c29d7ed051.tar.bz2 | |
lftp: add --with-brewed-openssl
Closes #24602.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lftp.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/lftp.rb b/Library/Formula/lftp.rb index 7c37a9d1b..4351d6840 100644 --- a/Library/Formula/lftp.rb +++ b/Library/Formula/lftp.rb @@ -7,10 +7,12 @@ class Lftp < Formula sha1 '56cefb9aa683acfa5c5713d530f594085ea7b149' option 'with-gnutls', "Use GnuTLS instead of the default OpenSSL" + option 'with-brewed-openssl', 'Build with Homebrew OpenSSL instead of the system version' depends_on 'pkg-config' => :build depends_on 'readline' depends_on 'gnutls' => :optional + depends_on 'openssl' if build.with? 'brewed-openssl' def install # Bus error |
