Skip to content

Instantly share code, notes, and snippets.

@tgflynn
Created August 14, 2016 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tgflynn/f6bcfcfdd4d555db945b4112c812642d to your computer and use it in GitHub Desktop.
Save tgflynn/f6bcfcfdd4d555db945b4112c812642d to your computer and use it in GitHub Desktop.
Dash build script for FreeBSD
#!/bin/csh
setenv BDB_CPPFLAGS "-I/usr/local/include -I/usr/local/include/db48"
setenv BDB_LIBS "-ldb_cxx-4.8"
setenv CFLAGS "-I/usr/local/include -I/usr/local/include/db48"
setenv CXXFLAGS "-I/usr/local/include -I/usr/local/include/db48"
setenv CPPFLAGS "-I/usr/local/include -I/usr/local/include/db48"
setenv LDFLAGS "-L/usr/local/lib -L/usr/local/lib/db48"
cd /root/dash/dash
git clean -x -f -d
./autogen.sh
./configure --without-miniupnpc
#./configure --enable-debug
gmake
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment