aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cadaver.rb
diff options
context:
space:
mode:
authorJack Nagel2014-04-22 16:11:04 -0500
committerJack Nagel2014-04-22 16:15:44 -0500
commitaa4d3da0d759feb2a66f52eb12f64997f90997dc (patch)
tree89af700a0e209302c1954581ecce37a6058de810 /Library/Formula/cadaver.rb
parentf6f009e3d7b75911fdcbc695745308ef6c14d4e8 (diff)
downloadhomebrew-aa4d3da0d759feb2a66f52eb12f64997f90997dc.tar.bz2
cadaver: always use Homebrew's openssl
Diffstat (limited to 'Library/Formula/cadaver.rb')
-rw-r--r--Library/Formula/cadaver.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/cadaver.rb b/Library/Formula/cadaver.rb
index 50a42d8a9..dfedbee09 100644
--- a/Library/Formula/cadaver.rb
+++ b/Library/Formula/cadaver.rb
@@ -9,16 +9,16 @@ class Cadaver < Formula
depends_on 'gettext'
depends_on 'readline'
depends_on 'neon'
+ depends_on 'openssl'
# enable build with the latest neon
patch :DATA
def install
- neon_prefix = Formula['neon'].opt_prefix
-
system "./configure", "--prefix=#{prefix}",
- "--with-neon=#{neon_prefix}",
- "--with-ssl"
+ "--with-ssl=openssl",
+ "--with-libs=#{Formula["openssl"].opt_prefix}",
+ "--with-neon=#{Formula["neon"].opt_prefix}"
system "make", "-C", "lib/intl"
system "make install"
end