aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-04-22 16:58:07 -0500
committerJack Nagel2014-04-22 16:58:07 -0500
commit91dc2df33a50df37416be448298ddebdd95a849e (patch)
tree6950a610b414078f30900ae42b81d6ab51f3d107
parent116ed7ef632107b3003abf343554a94a7576eefc (diff)
downloadhomebrew-91dc2df33a50df37416be448298ddebdd95a849e.tar.bz2
libmowgli: use Homebrew's openssl
-rw-r--r--Library/Formula/libmowgli.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/libmowgli.rb b/Library/Formula/libmowgli.rb
index 7a9f08fe8..7c78ea951 100644
--- a/Library/Formula/libmowgli.rb
+++ b/Library/Formula/libmowgli.rb
@@ -7,8 +7,11 @@ class Libmowgli < Formula
head 'https://github.com/atheme/libmowgli-2.git'
+ depends_on "openssl"
+
def install
- system "./configure", "--prefix=#{prefix}", "--with-openssl=/usr"
+ system "./configure", "--prefix=#{prefix}",
+ "--with-openssl=#{Formula["openssl"].opt_prefix}"
system "make"
system "make", "install"
end