diff options
| author | Jack Nagel | 2014-05-26 19:14:00 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-26 21:32:15 -0500 |
| commit | d60b8fd0331b8aca9f7fed66615df982c922869a (patch) | |
| tree | c2151417f7d6e54119d6d590471df52d91e9e793 /Library | |
| parent | 73ef199d35d54c6a7d5512229887c79e78fbe757 (diff) | |
| download | homebrew-d60b8fd0331b8aca9f7fed66615df982c922869a.tar.bz2 | |
erlang: add openssl dep
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/erlang.rb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Library/Formula/erlang.rb b/Library/Formula/erlang.rb index ce80cf72a..385f7091d 100644 --- a/Library/Formula/erlang.rb +++ b/Library/Formula/erlang.rb @@ -55,12 +55,13 @@ class Erlang < Formula option 'with-dirty-schedulers', 'Enable experimental dirty schedulers' option 'no-docs', 'Do not install documentation' - depends_on :autoconf - depends_on :automake - depends_on :libtool - depends_on 'unixodbc' if MacOS.version >= :mavericks - depends_on 'fop' => :optional # enables building PDF docs - depends_on 'wxmac' => :recommended # for GUI apps like observer + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + depends_on "openssl" + depends_on "unixodbc" if MacOS.version >= :mavericks + depends_on "fop" => :optional # enables building PDF docs + depends_on "wxmac" => :recommended # for GUI apps like observer fails_with :llvm @@ -84,6 +85,7 @@ class Erlang < Formula --enable-threads --enable-sctp --enable-dynamic-ssl-lib + --with-ssl=#{Formula["openssl"].opt_prefix} --enable-shared-zlib --enable-smp-support ] |
