2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-01 13:05:18 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Thrift < Formula
|
2011-08-30 23:13:57 +00:00
|
|
|
homepage 'http://thrift.apache.org'
|
2012-10-17 06:04:42 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=thrift/0.9.0/thrift-0.9.0.tar.gz'
|
|
|
|
sha1 'fefcf4d729bf80da419407dfa028740aa95fa2e3'
|
2009-09-01 13:05:18 +00:00
|
|
|
|
2012-06-09 01:34:14 +00:00
|
|
|
head 'http://svn.apache.org/repos/asf/thrift/trunk'
|
|
|
|
|
2012-09-05 15:47:06 +00:00
|
|
|
option "with-haskell", "Install Haskell binding"
|
|
|
|
option "with-erlang", "Install Erlang binding"
|
|
|
|
option "with-java", "Install Java binding"
|
|
|
|
option "with-perl", "Install Perl binding"
|
|
|
|
option "with-php", "Install Php binding"
|
|
|
|
|
2009-10-04 23:36:13 +00:00
|
|
|
depends_on 'boost'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2013-02-05 09:39:52 +00:00
|
|
|
# Includes are fixed in the upstream. Please remove this patch in the next version > 0.9.0
|
|
|
|
def patches
|
|
|
|
DATA
|
|
|
|
end
|
|
|
|
|
2009-09-01 13:05:18 +00:00
|
|
|
def install
|
2012-08-23 04:23:14 +00:00
|
|
|
system "./bootstrap.sh" if build.head?
|
2010-10-30 22:59:05 +00:00
|
|
|
|
2012-09-05 15:47:06 +00:00
|
|
|
exclusions = ["--without-python", "--without-ruby"]
|
|
|
|
|
|
|
|
exclusions << "--without-haskell" unless build.include? "with-haskell"
|
|
|
|
exclusions << "--without-java" unless build.include? "with-java"
|
|
|
|
exclusions << "--without-perl" unless build.include? "with-perl"
|
|
|
|
exclusions << "--without-php" unless build.include? "with-php"
|
|
|
|
exclusions << "--without-erlang" unless build.include? "with-erlang"
|
|
|
|
|
2010-10-30 22:59:05 +00:00
|
|
|
# Language bindings try to install outside of Homebrew's prefix, so
|
|
|
|
# omit them here. For ruby you can install the gem, and for Python
|
|
|
|
# you can use pip or easy_install.
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--libdir=#{lib}",
|
2012-09-05 15:47:06 +00:00
|
|
|
*exclusions
|
2011-01-20 22:39:13 +00:00
|
|
|
ENV.j1
|
2009-09-01 13:05:18 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-03-28 01:41:03 +00:00
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2013-02-02 23:49:43 +00:00
|
|
|
To install Python bindings:
|
|
|
|
pip install thrift
|
2009-09-01 13:05:18 +00:00
|
|
|
|
2013-02-02 23:49:43 +00:00
|
|
|
To install Ruby bindings:
|
2012-08-23 04:23:14 +00:00
|
|
|
gem install thrift
|
2010-03-28 01:41:03 +00:00
|
|
|
|
2013-02-02 23:49:43 +00:00
|
|
|
To install PHP bindings:
|
|
|
|
export PHP_PREFIX=/path/to/homebrew/thrift/0.9.0/php
|
|
|
|
export PHP_CONFIG_PREFIX=/path/to/homebrew/thrift/0.9.0/php_extensions
|
|
|
|
brew install thrift --with-php
|
2009-09-01 13:05:18 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 09:39:52 +00:00
|
|
|
__END__
|
|
|
|
diff --git a/lib/cpp/src/thrift/transport/TSocket.h b/lib/cpp/src/thrift/transport/TSocket.h
|
|
|
|
index ff5e541..65e6aea 100644
|
|
|
|
--- a/lib/cpp/src/thrift/transport/TSocket.h
|
|
|
|
+++ b/lib/cpp/src/thrift/transport/TSocket.h
|
|
|
|
@@ -21,6 +21,8 @@
|
|
|
|
#define _THRIFT_TRANSPORT_TSOCKET_H_ 1
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
+#include <sys/socket.h>
|
|
|
|
+#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include "TTransport.h"
|
|
|
|
#include "TVirtualTransport.h"
|