-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Nils Schimmelmann edited this page Dec 2, 2019
·
9 revisions
Welcome to the powwow wiki!
sudo apt install -y build-essential autoconf ncurses5-dev libpcre3-dev
./autogen.sh
sudo make install
brew install ncurses pcre automake pkg-config
./autogen.sh
sudo make install
If you want to link statically against pcre then type the below before running sudo make install
:
ln -sf /usr/local/opt/pcre/lib/libpcre.a /usr/local/opt/pcre/lib/libpcre_s.a
ln -sf /usr/local/opt/pcre/lib/libpcreposix.a /usr/local/opt/pcre/lib/libpcreposix_s.a
perl -pi -e 's#-lpcreposix#-L/usr/local/opt/pcre/lib/ -lpcre_s -L/usr/local/opt/pcre/lib/ -lpcreposix_s#' src/Makefile