class Rethinkdb < Formula homepage "http://www.rethinkdb.com/" url "http://download.rethinkdb.com/dist/rethinkdb-1.15.3-1.tgz" version "1.15.3-1" sha1 "16b6ff1eedd592287b841c0c5fc0bae3ab896a44" bottle do sha1 "06487ec43710bbfae00586d5ed3324b4ae2f1f6e" => :yosemite sha1 "535de5a50649be803c111fb2ace8a2bf2b21cfbd" => :mavericks sha1 "d549b2044132c0686dcddaf431fea57ae20e6dc5" => :mountain_lion end depends_on :macos => :lion # Embeds an older V8, whose gyp still requires the full Xcode # Reported upstream: https://github.com/rethinkdb/rethinkdb/issues/2581 depends_on :xcode => :build depends_on "boost" => :build depends_on "openssl" fails_with :gcc do build 5666 # GCC 4.2.1 cause "RethinkDB uses C++0x" end # boost 1.56 compatibility # https://github.com/rethinkdb/rethinkdb/issues/3044#issuecomment-55478774 patch :DATA def install args = ["--prefix=#{prefix}"] # brew's v8 is too recent. rethinkdb uses an older v8 API args += ["--fetch", "v8"] # rethinkdb requires that protobuf be linked against libc++ # but brew's protobuf is sometimes linked against libstdc++ args += ["--fetch", "protobuf"] # support gcc with boost 1.56 # https://github.com/rethinkdb/rethinkdb/issues/3044#issuecomment-55471981 args << "CXXFLAGS=-DBOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES" system "./configure", *args system "make" system "make", "install-osx" mkdir_p "#{var}/log/rethinkdb" end def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_bin}/rethinkdb -d #{var}/rethinkdb WorkingDirectory #{HOMEBREW_PREFIX} StandardOutPath #{var}/log/rethinkdb/rethinkdb.log StandardErrorPath #{var}/log/rethinkdb/rethinkdb.log RunAtLoad KeepAlive EOS end test do shell_output("#{bin}/rethinkdb create -d test") assert File.read("test/metadata").start_with?("RethinkDB") end end __END__ diff --git a/src/clustering/reactor/reactor_be_primary.cc b/src/clustering/reactor/reactor_be_primary.cc index 3f583fc..945f78b 100644 --- a/src/clustering/reactor/reactor_be_primary.cc +++ b/src/clustering/reactor/reactor_be_primary.cc @@ -290,7 +290,7 @@ void do_backfill( bool check_that_we_see_our_broadcaster(const boost::optional > &maybe_a_ guarantee(maybe_a_business_card, "Not connected to ourselves\n"); - return maybe_a_business_card.get(); + return static_cast(maybe_a_business_card.get()); } bool reactor_t::attempt_backfill_from_peers(directory_entry_t *directory_entry,