diff options
| author | Adam Vandenberg | 2012-10-15 11:40:55 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-15 11:40:55 -0700 |
| commit | cc0206dfa4339cd6e7d583cb6ddec9b0b23b6992 (patch) | |
| tree | 67ba812b26ce817d03d5d3c615d1ec4632435fd2 /Library | |
| parent | 5a4a2f2ec2ed6db7a1ec8ac295342441640253e3 (diff) | |
| download | homebrew-cc0206dfa4339cd6e7d583cb6ddec9b0b23b6992.tar.bz2 | |
IO: fix deps
Closes #15183.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/io.rb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Formula/io.rb b/Library/Formula/io.rb index 155cbc0e8..6ae4b69b8 100644 --- a/Library/Formula/io.rb +++ b/Library/Formula/io.rb @@ -11,11 +11,17 @@ class Io < Formula option 'without-python', 'Build without python addon' depends_on 'cmake' => :build - depends_on 'ossp-uuid' depends_on 'libevent' - depends_on 'yajl' depends_on 'libffi' + depends_on 'ossp-uuid' depends_on 'pcre' + depends_on 'yajl' + + # Used by Bignum add-on + depends_on 'gmp' unless build.include? 'without-addons' + + # Used by Fonts add-on + depends_on :freetype unless build.include? 'without-addons' fails_with :clang do build 421 |
