cadaver: always use Homebrew's openssl

This commit is contained in:
Jack Nagel 2014-04-22 16:11:04 -05:00
parent 83cf17e809
commit d24fd6bf89

View file

@ -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