aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-02-05 20:37:36 -0500
committerJack Nagel2014-02-05 20:38:39 -0500
commit01ff75a354e9bf6e8f9c7061a50c9802af361f07 (patch)
tree37a3b7f4fce1d910d6d168666071b6f6462111e0 /Library
parent01dce2283a1bb33f4be89d1d27fc2ffe4f7827e1 (diff)
downloadhomebrew-01ff75a354e9bf6e8f9c7061a50c9802af361f07.tar.bz2
ruby: add optional deps on gmp and libffi
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ruby.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb
index 89dbe24b2..110d8a53d 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -18,6 +18,8 @@ class Ruby < Formula
depends_on 'pkg-config' => :build
depends_on 'readline' => :recommended
depends_on 'gdbm' => :optional
+ depends_on 'gmp' => :optional
+ depends_on 'libffi' => :optional
depends_on 'libyaml'
depends_on 'openssl'
depends_on :x11 if build.with? 'tcltk'