Skip to content

Instantly share code, notes, and snippets.

@mirkobrankovic
Last active November 7, 2018 13:39
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 mirkobrankovic/8df49741dd356d367eb2efbf5c22a834 to your computer and use it in GitHub Desktop.
Save mirkobrankovic/8df49741dd356d367eb2efbf5c22a834 to your computer and use it in GitHub Desktop.
Freeswitch dependencies
apt-get install autoconf automake devscripts gawk g++ git-core libjpeg-dev \
libncurses5-dev libtool libtool-bin make python-dev gawk pkg-config libtiff5-dev \
libperl-dev libgdbm-dev libdb-dev gettext libssl-dev libcurl4-openssl-dev \
libpcre3-dev libspeex-dev libspeexdsp-dev libsqlite3-dev libedit-dev bison \
libldns-dev libshout3-dev liblua5.2-dev libmp4v2-dev yasm nasm libhiredis-dev \
libmpg123-dev libpcre3-dev libmp3lame-dev libsndfile-dev zlib1g-dev libopus-dev
# The -j argument spawns multiple threads to speed the build process, but causes trouble on some systems
./bootstrap.sh -j
# if you want to add or remove modules from the build, edit modules.conf
vi modules.conf
# add a module by removing '#' comment character at the beginning of the line
# remove a module by adding the '#' comment character at the beginning of the line
# containing the name of the module to be skipped in the build process
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment