Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save minaguib/44918 to your computer and use it in GitHub Desktop.
Save minaguib/44918 to your computer and use it in GitHub Desktop.
Added by Mina Naguib
Trying to get HyperTable going on my mac. Installed it's deps it needed using macports.
Compiling would simply not work, however I finally got it to work under Mac OS X 10.5 (Leopard) after the following changes:
The first problem occurred as soon as you run cmake - got errors about an internal hadoop java file being format 50 while 49 was expected (or vice-versa). fixed with:
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
Next problem was a few seconds into running `make`, it would croak with an error from the linker about being unable to find the symbol "boost::system::get_system_category" - this was fixed by editing cmake/FindBoost.cmake and replacing the whole section (if root matches boost-[0-9]) -> endif with just:
set(Boost_HAS_SYSTEM_LIB true)
then restart the whole process (cmake as well)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment