diff options
| author | ijohn | 2013-01-19 21:43:28 +0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-19 12:05:04 -0800 |
| commit | 22a1db11e7062531444de8e5306b6578e17736c4 (patch) | |
| tree | b7e0e9f72b063ab306c3f63377c34bc3b43a15e7 /Library/Formula | |
| parent | da9c8d8bb68b85e753e88c74b58c417c46f40d52 (diff) | |
| download | homebrew-22a1db11e7062531444de8e5306b6578e17736c4.tar.bz2 | |
libpurple: add libgcrypt as a build-time dep so that finding gnutls works
Closes #17187.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libpurple.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/libpurple.rb b/Library/Formula/libpurple.rb index ce825d3f2..e77774d25 100644 --- a/Library/Formula/libpurple.rb +++ b/Library/Formula/libpurple.rb @@ -11,6 +11,11 @@ class Libpurple < Formula depends_on 'intltool' depends_on 'libidn' depends_on 'gnutls' + # guntls used to use libgcrypt, and the configure script links this + # library when testing for gnutls, so include it as a build-time + # dependency. See: + # https://github.com/mxcl/homebrew/issues/17129 + depends_on 'libgcrypt' => :build def install # Just build the library, so disable all this UI stuff |
