Skip to content

Instantly share code, notes, and snippets.

@nnzo
Last active June 19, 2020 10:35
Show Gist options
  • Save nnzo/ba9ceec96135aea5940963667adedc15 to your computer and use it in GitHub Desktop.
Save nnzo/ba9ceec96135aea5940963667adedc15 to your computer and use it in GitHub Desktop.
Install libdb4.8
# Make sure unzip, make etc are installed
wget http://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
make install
# You might need to run export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" after
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment