Difference between revisions of "FreeSWITCH compile"

From FusionPBX
Jump to: navigation, search
(modules.conf)
(File Permissions)
Line 40: Line 40:
  
 
==File Permissions==
 
==File Permissions==
Set the file permissions
+
Set the file permissions instructions may vary based on the OS and install directory.
 +
 
 +
Debian
 +
chown -R www-data:www-data /usr/local/freeswitch

Revision as of 00:43, 30 September 2014

Git

cd /usr/src
git clone -b v1.4 https://stash.freeswitch.org/scm/fs/freeswitch.git
cd freeswitch
./bootstrap.sh

or

files.freeswitch.org

wget http://files.freeswitch.org/freeswitch-1.4.9.zip
unzip freeswitch-1.4.9.zip
cd freeswitch-1.4.9

Ubuntu Dependencies

apt-get install autoconf automake devscripts gawk g++ git-core libjpeg-dev libncurses5-dev libtool make python-dev gawk pkg-config libtiff-dev libperl-dev libgdbm-dev libdb-dev gettext libssl-dev libcurl4-openssl-dev libpcre3-dev libspeex-dev libspeexdsp-dev libsqlite3-dev libedit-dev libldns-dev libpq-dev memcached libmemcached-dev

Debian Dependencies

apt-get install autoconf automake devscripts gawk g++ git-core libjpeg-dev libncurses5-dev libtool 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 libldns-dev libpq-dev memcached libmemcached-dev

modules.conf

uncomment the FreeSWITCH modules that are needed.

mod_avmd
mod_callcenter
mod_memcache
mod_cidlookup

Used for MP3 support

mod_shout

Postgres driver

./configure --enable-core-pgsql-support

Remove FreeSWITCH files

Remove files from previous version of FreeSWITCH

rm -rf /usr/local/freeswitch/{lib,mod,bin}/*

Run Make

make 
make install

File Permissions

Set the file permissions instructions may vary based on the OS and install directory.

Debian

chown -R www-data:www-data /usr/local/freeswitch