diff options
| author | Stefan | 2012-11-15 19:27:17 +0100 |
|---|---|---|
| committer | Jack Nagel | 2012-11-15 13:20:22 -0600 |
| commit | 7cd89cd5d19730ff2a2f8c3df57ec6fc333c454e (patch) | |
| tree | bdfb16b9a6e64c00bcf627f02b987345c55e7a2b /Library/Formula/inspircd.rb | |
| parent | d6640a805903734ad902b24c46302048eee6a42c (diff) | |
| download | homebrew-7cd89cd5d19730ff2a2f8c3df57ec6fc333c454e.tar.bz2 | |
Add missing libgcrypt dependencies post-gnutls 3 update
Closes #16093.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/inspircd.rb')
| -rw-r--r-- | Library/Formula/inspircd.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/inspircd.rb b/Library/Formula/inspircd.rb index 4d426c877..8ff8460a6 100644 --- a/Library/Formula/inspircd.rb +++ b/Library/Formula/inspircd.rb @@ -13,7 +13,8 @@ class Inspircd < Formula option 'with-tre', 'Enable the TRE module' depends_on 'pkg-config' => :build - depends_on 'gnutls' unless build.include? 'without-gnutls' + depends_on 'gnutls' => :recommended unless build.include? 'without-gnutls' + depends_on 'libgcrypt' unless build.include? 'without-gnutls' depends_on 'openssl' if build.include? 'with-openssl' depends_on 'pcre' if build.include? 'with-pcre' depends_on 'tre' if build.include? 'with-tre' |
