aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-03-19 20:30:33 -0700
committerAdam Vandenberg2014-03-19 20:30:33 -0700
commit194f91fecbc096d7bb9217793a08df079b5c7ce4 (patch)
tree39b66c69ba598bb22b9752b759a99019dc2de01e /Library/Formula
parentb9dfc912e6a87456338ab9d7de8ec8f83190ea4f (diff)
downloadhomebrew-194f91fecbc096d7bb9217793a08df079b5c7ce4.tar.bz2
libssh2: always use brewed openssl
Use newer openssl.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libssh2.rb7
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