FS-7019 add support for building on ubuntu trusty and utopic
This commit is contained in:
parent
79de78a0fb
commit
1f1103143d
|
@ -7,7 +7,9 @@ conf_dir="../conf"
|
||||||
lang_dir="../conf/vanilla/lang"
|
lang_dir="../conf/vanilla/lang"
|
||||||
fs_description="FreeSWITCH is a scalable open source cross-platform telephony platform designed to route and interconnect popular communication protocols using audio, video, text or any other form of media."
|
fs_description="FreeSWITCH is a scalable open source cross-platform telephony platform designed to route and interconnect popular communication protocols using audio, video, text or any other form of media."
|
||||||
mod_build_depends="." mod_depends="." mod_recommends="." mod_suggests="."
|
mod_build_depends="." mod_depends="." mod_recommends="." mod_suggests="."
|
||||||
supported_distros="squeeze wheezy jessie sid"
|
supported_debian_distros="squeeze wheezy jessie sid"
|
||||||
|
supported_ubuntu_distros="trusty utopic"
|
||||||
|
supported_distros=" $supported_debian_distros $supported_ubuntu_distros "
|
||||||
avoid_mods=(
|
avoid_mods=(
|
||||||
applications/mod_limit
|
applications/mod_limit
|
||||||
applications/mod_mongo
|
applications/mod_mongo
|
||||||
|
@ -50,6 +52,10 @@ avoid_mods_squeeze=(
|
||||||
formats/mod_vlc
|
formats/mod_vlc
|
||||||
languages/mod_managed
|
languages/mod_managed
|
||||||
)
|
)
|
||||||
|
avoid_mods_trusty=(
|
||||||
|
)
|
||||||
|
avoid_mods_utopic=(
|
||||||
|
)
|
||||||
manual_pkgs=(
|
manual_pkgs=(
|
||||||
freeswitch-all
|
freeswitch-all
|
||||||
freeswitch
|
freeswitch
|
||||||
|
@ -277,9 +283,11 @@ list_freeswitch_all_dbg_replaces () {
|
||||||
|
|
||||||
print_source_control () {
|
print_source_control () {
|
||||||
local libtool_dep="libtool, libtool-bin"
|
local libtool_dep="libtool, libtool-bin"
|
||||||
if test "$codename" = wheezy || test "$codename" = squeeze; then
|
case "$codename" in
|
||||||
libtool_dep="libtool"
|
squeeze|wheezy|trusty)
|
||||||
fi
|
libtool_dep="libtool"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
Source: freeswitch
|
Source: freeswitch
|
||||||
Section: comm
|
Section: comm
|
||||||
|
|
Loading…
Reference in New Issue