aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCameron Ring2014-11-04 23:05:20 -0800
committerMike McQuaid2014-11-05 11:25:01 +0000
commitf10255dd2969e97f58c62a5790ce0e4d82aaf18f (patch)
tree5a94c100e884e608e2afbe59cb95bb32e59622a9 /Library/Formula
parent453e706835261512aab97cde71ef676e99de2f15 (diff)
downloadhomebrew-f10255dd2969e97f58c62a5790ce0e4d82aaf18f.tar.bz2
thrift: fix HEAD build.
Newer versions of thrift require >= Bison 2.5 but Mavericks has 2.3. It also requires an updated OpenSSL library so include that too. Closes #33928. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/thrift.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/thrift.rb b/Library/Formula/thrift.rb
index d6c9f4e5f..08b76a244 100644
--- a/Library/Formula/thrift.rb
+++ b/Library/Formula/thrift.rb
@@ -36,6 +36,8 @@ class Thrift < Formula
depends_on :automake
depends_on :libtool
depends_on 'pkg-config' => :build
+ depends_on 'bison' => :build
+ depends_on 'openssl'
end
option "with-haskell", "Install Haskell binding"
@@ -50,7 +52,7 @@ class Thrift < Formula
def install
system "./bootstrap.sh" unless build.stable?
- exclusions = ["--without-ruby", "--without-tests", "--without-php_extension"]
+ exclusions = ["--without-ruby", "--disable-tests", "--without-php_extension"]
exclusions << "--without-python" if build.without? "python"
exclusions << "--without-haskell" if build.without? "haskell"