diff options
| author | Jack Nagel | 2014-04-22 16:58:07 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-04-22 16:58:07 -0500 | 
| commit | 91dc2df33a50df37416be448298ddebdd95a849e (patch) | |
| tree | 6950a610b414078f30900ae42b81d6ab51f3d107 | |
| parent | 116ed7ef632107b3003abf343554a94a7576eefc (diff) | |
| download | homebrew-91dc2df33a50df37416be448298ddebdd95a849e.tar.bz2 | |
libmowgli: use Homebrew's openssl
| -rw-r--r-- | Library/Formula/libmowgli.rb | 5 | 
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 | 
