Skip to content

Instantly share code, notes, and snippets.

@martinhbramwell
Created May 15, 2012 11:01
Show Gist options
  • Save martinhbramwell/2700849 to your computer and use it in GitHub Desktop.
Save martinhbramwell/2700849 to your computer and use it in GitHub Desktop.
Build secrets with Open-Transactions
Some req'd packages:
sudo apt-get install libbz2-dev python-dev
Getting the correct openssl
cd openssl
uname -m
./Configure---- then search in list for YOUR_PLATFORM
./Configure shared no-threads YOUR_PLATFORM
chaiscript problems
/usr/local/include/chaiscript/language/chaiscript_engine.hpp:275: error: ‘void chaiscript::ChaiScript::use(const std::string&)’ is private
Grab the latest version of ChaiScript:
git clone git://github.com/ChaiScript/ChaiScript
cd ChaiScript
mkdir build
cd build
cmake ..
make
sudo make install
This will fix the issue.
not finding ssl libraries
cp ../openssl/lib* /usr/local/lib
sudo nano /etc/ld.so.conf -- append new text -- /usr/local/lib
then -- sudo /sbin/ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment