diff options
| author | Adam Vandenberg | 2014-03-19 20:30:33 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-03-19 20:30:33 -0700 |
| commit | 194f91fecbc096d7bb9217793a08df079b5c7ce4 (patch) | |
| tree | 39b66c69ba598bb22b9752b759a99019dc2de01e /Library/Formula/libssh2.rb | |
| parent | b9dfc912e6a87456338ab9d7de8ec8f83190ea4f (diff) | |
| download | homebrew-194f91fecbc096d7bb9217793a08df079b5c7ce4.tar.bz2 | |
libssh2: always use brewed openssl
Use newer openssl.
Diffstat (limited to 'Library/Formula/libssh2.rb')
| -rw-r--r-- | Library/Formula/libssh2.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/libssh2.rb b/Library/Formula/libssh2.rb index adff50cab..614211ec0 100644 --- a/Library/Formula/libssh2.rb +++ b/Library/Formula/libssh2.rb @@ -6,17 +6,16 @@ class Libssh2 < Formula sha1 'c27ca83e1ffeeac03be98b6eef54448701e044b0' bottle do - cellar :any - sha1 "521d10a3fee016c550a520777b863170814deefd" => :mavericks - sha1 "c070043e006da160d36f8fd9ff6dabe757181c40" => :mountain_lion - sha1 "0e7776c9e56b639013d8a50cdc932d8a3f81a150" => :lion end + depends_on "openssl" + def install system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-openssl", + "--with-libssl-prefix=#{Formula['openssl'].opt_prefix}", "--with-libz" system "make install" end |
