aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-09-22 14:03:04 -0500
committerJack Nagel2014-09-22 14:04:43 -0500
commitc0c6e5e22e1bb8f63169f9cec1a79340d91ba9de (patch)
tree53e94c3f3ec520803461798ac67c57a203126c96 /Library
parente06e3c83f01a12f17053462379d097b5752d9d21 (diff)
downloadhomebrew-c0c6e5e22e1bb8f63169f9cec1a79340d91ba9de.tar.bz2
duo_unix: use Homebrew's openssl
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/duo_unix.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/duo_unix.rb b/Library/Formula/duo_unix.rb
index aae3385a2..0a0f4f5c2 100644
--- a/Library/Formula/duo_unix.rb
+++ b/Library/Formula/duo_unix.rb
@@ -5,9 +5,14 @@ class DuoUnix < Formula
url "https://dl.duosecurity.com/duo_unix-1.9.11.tar.gz"
sha1 "4cb4e585b69fbc6a0a3635bc241fa22653c2f9c4"
+ depends_on "openssl"
+
def install
- system "./configure", "--prefix=#{prefix}",
- "--sysconfdir=#{etc}"
+ system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}",
+ "--sysconfdir=#{etc}",
+ "--with-openssl=#{Formula["openssl"].opt_prefix}"
system "make", "install"
end