Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
4c5426f2
提交
4c5426f2
authored
1月 18, 2011
作者:
Moises Silva
浏览文件
操作
浏览文件
下载
差异文件
Merge remote branch 'fsorig/master'
上级
0a38d776
190bd61d
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
352 行增加
和
5 行删除
+352
-5
sounds_version.txt
build/sounds_version.txt
+1
-1
freeswitch-sounds-en-us-callie.spec
freeswitch-sounds-en-us-callie.spec
+339
-0
freeswitch.spec
freeswitch.spec
+9
-2
mod_voicemail.c
src/mod/applications/mod_voicemail/mod_voicemail.c
+3
-2
没有找到文件。
build/sounds_version.txt
浏览文件 @
4c5426f2
en-us-callie 1.0.1
3
en-us-callie 1.0.1
4
ru-RU-elena 1.0.12
freeswitch-sounds-en-us-callie.spec
0 → 100644
浏览文件 @
4c5426f2
差异被折叠。
点击展开。
freeswitch.spec
浏览文件 @
4c5426f2
...
...
@@ -53,7 +53,7 @@ Vendor: http://www.freeswitch.org/
# Source files and where to get them
#
######################################################################################################################
Source0:
http://files.freeswitch.org/%{name}-%{version}.tar.bz2
Source0: http://files.freeswitch.org/%{name}-%{version}.tar.bz2
Source1: http://files.freeswitch.org/downloads/libs/celt-0.7.1.tar.gz
Source2: http://files.freeswitch.org/downloads/libs/flite-1.3.99-latest.tar.gz
Source3: http://files.freeswitch.org/downloads/libs/lame-3.97.tar.gz
...
...
@@ -89,8 +89,13 @@ BuildRequires: libtool >= 1.5.17
BuildRequires: ncurses-devel
BuildRequires: openssl-devel
BuildRequires: perl
%if 0%{?fedora_version} >= 8
BuildRequires: perl-ExtUtils-Embed
%endif
BuildRequires: pkgconfig
%if %{_vendor} == redhat && 0%{?fedora} <= 6
BuildRequires: termcap
%endif
BuildRequires: unixODBC-devel
BuildRequires: gdbm-devel
BuildRequires: db4-devel
...
...
@@ -893,7 +898,7 @@ fi
%files python
%defattr(-,freeswitch,daemon)
%{prefix}/mod/mod_python*.so*
%attr(0644, root, bin) /usr/lib/python
2.4
/site-packages/freeswitch.py*
%attr(0644, root, bin) /usr/lib/python
*
/site-packages/freeswitch.py*
%dir %attr(0750, freeswitch, daemon) %{prefix}/conf/autoload_configs
%config(noreplace) %attr(0640, freeswitch, daemon) %{prefix}/conf/autoload_configs/python.conf.xml
...
...
@@ -951,6 +956,8 @@ fi
#
######################################################################################################################
%changelog
* Tue Jan 18 2011 - michal.bielicki@seventhsignal.de
- Fedora adjustments
* Fri Oct 15 2010 - michal.bielicki@seventhsignal.de
- added mod_curl
* Sat Oct 09 2010 - michal.bielicki@seventhsignal.de
...
...
src/mod/applications/mod_voicemail/mod_voicemail.c
浏览文件 @
4c5426f2
...
...
@@ -311,6 +311,7 @@ static void destroy_profile(const char *profile_name, switch_bool_t block)
/* Static buffer, 2 bytes */
static
switch_xml_config_string_options_t
config_dtmf
=
{
NULL
,
2
,
"[0-9#
\\
*]"
};
static
switch_xml_config_string_options_t
config_dtmf_optional
=
{
NULL
,
2
,
"[0-9#
\\
*]?"
};
static
switch_xml_config_string_options_t
config_login_keys
=
{
NULL
,
16
,
"[0-9#
\\
*]*"
};
static
switch_xml_config_string_options_t
config_file_ext
=
{
NULL
,
10
,
NULL
};
static
switch_xml_config_int_options_t
config_int_0_10000
=
{
SWITCH_TRUE
,
0
,
SWITCH_TRUE
,
10000
};
...
...
@@ -520,8 +521,8 @@ vm_profile_t *profile_set_config(vm_profile_t *profile)
SWITCH_CONFIG_SET_ITEM
(
profile
->
config
[
i
++
],
"urgent-key"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
&
profile
->
urgent_key
,
"*"
,
&
config_dtmf
,
NULL
,
NULL
);
SWITCH_CONFIG_SET_ITEM
(
profile
->
config
[
i
++
],
"operator-key"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
&
profile
->
operator_key
,
""
,
&
config_dtmf
,
NULL
,
NULL
);
SWITCH_CONFIG_SET_ITEM
(
profile
->
config
[
i
++
],
"vmain-key"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
&
profile
->
vmain_key
,
""
,
&
config_dtmf
,
NULL
,
NULL
);
&
profile
->
operator_key
,
""
,
&
config_dtmf
_optional
,
NULL
,
NULL
);
SWITCH_CONFIG_SET_ITEM
(
profile
->
config
[
i
++
],
"vmain-key"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
&
profile
->
vmain_key
,
""
,
&
config_dtmf
_optional
,
NULL
,
NULL
);
SWITCH_CONFIG_SET_ITEM
(
profile
->
config
[
i
++
],
"vmain-extension"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
&
profile
->
vmain_ext
,
""
,
&
profile
->
config_str_pool
,
NULL
,
NULL
);
SWITCH_CONFIG_SET_ITEM
(
profile
->
config
[
i
++
],
"forward-key"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论