aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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