Last active
May 26, 2022 02:50
-
-
Save bgunebakan/c6f163be7d88c54b5f53cd4ba9f921bc to your computer and use it in GitHub Desktop.
PJSIP and PJSUA installation on Debian 8.8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#install depencies | |
apt install python-dev gcc make gcc binutils build-essential | |
#get pjsip | |
wget http://www.pjsip.org/release/2.6/pjproject-2.6.tar.bz2 | |
tar -xjf pjproject-2.6.tar.bz2 | |
cd pjproject-2.6 | |
#configure | |
export CFLAGS="$CFLAGS -fPIC" | |
#build pjsip | |
./configure && make dep && make | |
#build python modules | |
cd pjsip-apps/src/python/ | |
sudo python setup.py install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment