mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-05 03:41:53 +00:00
3e8e2ce151
Revert "depend on fs before install" This reverts commit6c52217920. Revert "removing commented work in progress on SDES and logging tunning on" This reverts commit6df5288f5a. Revert "more formatting and logging tuning" This reverts commit0e89bbd033. Revert "logging adjustment" This reverts commit764faad671. Revert "missing host to network conversion highest_sequence_number_received" This reverts commit50c62cdfd7. Revert "logging correction" This reverts commitea973b0b4c. Revert "[FS-6623] implement RTCP report generation" This reverts commit0b7863a9b7.
35 lines
1.4 KiB
Makefile
35 lines
1.4 KiB
Makefile
#
|
|
# FreeSWITCH auto-build Makefile (CentOS 6.5/Debian 7 Nike Edition, JUST DO IT!)
|
|
# http://www.freeswitch.org
|
|
# put this file anywhere and type make to
|
|
# create a fully-built freeswitch.git from scratch
|
|
# in that same directory.
|
|
#
|
|
#
|
|
RPMS=git gcc-c++ autoconf automake libtool wget python ncurses-devel zlib-devel libjpeg-devel openssl-devel e2fsprogs-devel sqlite-devel libcurl-devel pcre-devel speex-devel ldns-devel libedit-devel
|
|
DEBS=git build-essential automake autoconf libtool wget python zlib1g-dev libjpeg-dev libncurses5-dev libssl-dev libpcre3-dev libcurl4-openssl-dev libldns-dev libedit-dev libspeexdsp-dev libspeexdsp-dev libsqlite3-dev
|
|
|
|
freeswitch: deps has-git freeswitch.git/Makefile
|
|
cd freeswitch.git && make
|
|
|
|
freeswitch.git/Makefile: freeswitch.git/configure
|
|
cd freeswitch.git && ./configure
|
|
|
|
freeswitch.git/configure: freeswitch.git/bootstrap.sh
|
|
cd freeswitch.git && sh bootstrap.sh
|
|
|
|
freeswitch.git/bootstrap.sh: has-git
|
|
test -d freeswitch.git || git clone https://stash.freeswitch.org/scm/fs/freeswitch.git freeswitch.git
|
|
|
|
rpmforge:
|
|
(which rpm && rpm -i http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm) || true
|
|
|
|
install:
|
|
cd freeswitch.git && make install cd-sounds-install cd-moh-install
|
|
|
|
has-git:
|
|
@git --version || (echo "please install git" && false)
|
|
|
|
deps: rpmforge
|
|
((which yum && yum -y install $(RPMS)) || (which apt-get && apt-get -y install $(DEBS))) || true
|