Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
6a272a55
提交
6a272a55
authored
9月 02, 2013
作者:
Steve Underwood
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix compile problem with the last spandsp update
上级
cfe6fcce
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
23 行增加
和
15 行删除
+23
-15
configure.ac
libs/spandsp/configure.ac
+23
-6
Makefile.am
libs/spandsp/tests/Makefile.am
+0
-9
没有找到文件。
libs/spandsp/configure.ac
浏览文件 @
6a272a55
...
@@ -125,6 +125,9 @@ AC_TYPE_SIGNAL
...
@@ -125,6 +125,9 @@ AC_TYPE_SIGNAL
AC_ARG_ENABLE(doc, [ --enable-doc Build the documentation])
AC_ARG_ENABLE(doc, [ --enable-doc Build the documentation])
AC_ARG_ENABLE(tests, [ --enable-tests Build the test programs])
AC_ARG_ENABLE(tests, [ --enable-tests Build the test programs])
AC_ARG_ENABLE(t43, [ --enable-t43 Enable T.43 support])
AC_ARG_ENABLE(v32bis, [ --enable-v32bis Enable V.32bis support])
AC_ARG_ENABLE(v34, [ --enable-v34 Enable V.34 support])
AC_ARG_ENABLE(mmx, [ --enable-mmx Enable MMX support])
AC_ARG_ENABLE(mmx, [ --enable-mmx Enable MMX support])
AC_ARG_ENABLE(sse, [ --enable-sse Enable SSE support])
AC_ARG_ENABLE(sse, [ --enable-sse Enable SSE support])
AC_ARG_ENABLE(sse2, [ --enable-sse2 Enable SSE2 support])
AC_ARG_ENABLE(sse2, [ --enable-sse2 Enable SSE2 support])
...
@@ -548,12 +551,26 @@ LIBS="$LIBS $TIFF_LIBS $JPEG_LIBS"
...
@@ -548,12 +551,26 @@ LIBS="$LIBS $TIFF_LIBS $JPEG_LIBS"
TESTLIBS="$SIMLIBS $TESTLIBS"
TESTLIBS="$SIMLIBS $TESTLIBS"
AC_DEFINE([SPANDSP_SUPPORT_T43], [0], [Support T.43 JBIG gray and colour compression])
if test "$enable_t43" = "yes" ; then
SPANDSP_SUPPORT_T43="#undef SPANDSP_SUPPORT_T43"
AC_DEFINE([SPANDSP_SUPPORT_T43], [1], [Support T.43 JBIG gray and colour compression])
AC_DEFINE([SPANDSP_SUPPORT_V32BIS], [0], [Support the V.32bis modem])
SPANDSP_SUPPORT_T43="#define SPANDSP_SUPPORT_T43 1"
SPANDSP_SUPPORT_V32BIS="#undef SPANDSP_SUPPORT_V32BIS"
else
AC_DEFINE([SPANDSP_SUPPORT_V34], [0], [Support the V.34 FAX modem])
SPANDSP_SUPPORT_T43="#undef SPANDSP_SUPPORT_T43"
SPANDSP_SUPPORT_V34="#undef SPANDSP_SUPPORT_V34"
fi
if test "$enable_v32bis" = "yes" ; then
AC_DEFINE([SPANDSP_SUPPORT_V32BIS], [1], [Support the V.32bis modem])
SPANDSP_SUPPORT_V32BIS="#define SPANDSP_SUPPORT_V32BIS 1"
else
SPANDSP_SUPPORT_V32BIS="#undef SPANDSP_SUPPORT_V32BIS"
fi
if test "$enable_v34" = "yes" ; then
AC_DEFINE([SPANDSP_SUPPORT_V34], [1], [Support the V.34 FAX modem])
SPANDSP_SUPPORT_V34="#define SPANDSP_SUPPORT_V34 1"
else
SPANDSP_SUPPORT_V34="#undef SPANDSP_SUPPORT_V34"
fi
AM_CONDITIONAL([COND_DOC], [test "$enable_doc" = yes])
AM_CONDITIONAL([COND_DOC], [test "$enable_doc" = yes])
AM_CONDITIONAL([COND_TESTS], [test "$enable_tests" = yes])
AM_CONDITIONAL([COND_TESTS], [test "$enable_tests" = yes])
...
...
libs/spandsp/tests/Makefile.am
浏览文件 @
6a272a55
...
@@ -73,12 +73,10 @@ noinst_PROGRAMS = ademco_contactid_tests \
...
@@ -73,12 +73,10 @@ noinst_PROGRAMS = ademco_contactid_tests \
complex_vector_float_tests
\
complex_vector_float_tests
\
complex_vector_int_tests
\
complex_vector_int_tests
\
crc_tests
\
crc_tests
\
data_modems_tests
\
dc_restore_tests
\
dc_restore_tests
\
dds_tests
\
dds_tests
\
dtmf_rx_tests
\
dtmf_rx_tests
\
dtmf_tx_tests
\
dtmf_tx_tests
\
dummy_modems_tests
\
echo_tests
\
echo_tests
\
fax_decode
\
fax_decode
\
fax_tests
\
fax_tests
\
...
@@ -153,7 +151,6 @@ noinst_HEADERS = echo_monitor.h \
...
@@ -153,7 +151,6 @@ noinst_HEADERS = echo_monitor.h \
modem_monitor.h
\
modem_monitor.h
\
pcap_parse.h
\
pcap_parse.h
\
pseudo_terminals.h
\
pseudo_terminals.h
\
socket_harness.h
\
udptl.h
udptl.h
ademco_contactid_tests_SOURCES
=
ademco_contactid_tests.c
ademco_contactid_tests_SOURCES
=
ademco_contactid_tests.c
...
@@ -201,9 +198,6 @@ complex_vector_int_tests_LDADD = $(LIBDIR) -lspandsp
...
@@ -201,9 +198,6 @@ complex_vector_int_tests_LDADD = $(LIBDIR) -lspandsp
crc_tests_SOURCES
=
crc_tests.c
crc_tests_SOURCES
=
crc_tests.c
crc_tests_LDADD
=
$(LIBDIR)
-lspandsp
crc_tests_LDADD
=
$(LIBDIR)
-lspandsp
data_modems_tests_SOURCES
=
data_modems_tests.c media_monitor.cpp
data_modems_tests_LDADD
=
-L
$(top_builddir)
/spandsp-sim
-lspandsp-sim
$(LIBDIR)
-lspandsp
dc_restore_tests_SOURCES
=
dc_restore_tests.c
dc_restore_tests_SOURCES
=
dc_restore_tests.c
dc_restore_tests_LDADD
=
$(LIBDIR)
-lspandsp
dc_restore_tests_LDADD
=
$(LIBDIR)
-lspandsp
...
@@ -216,9 +210,6 @@ dtmf_rx_tests_LDADD = -L$(top_builddir)/spandsp-sim -lspandsp-sim $(LIBDIR) -lsp
...
@@ -216,9 +210,6 @@ dtmf_rx_tests_LDADD = -L$(top_builddir)/spandsp-sim -lspandsp-sim $(LIBDIR) -lsp
dtmf_tx_tests_SOURCES
=
dtmf_tx_tests.c
dtmf_tx_tests_SOURCES
=
dtmf_tx_tests.c
dtmf_tx_tests_LDADD
=
-L
$(top_builddir)
/spandsp-sim
-lspandsp-sim
$(LIBDIR)
-lspandsp
dtmf_tx_tests_LDADD
=
-L
$(top_builddir)
/spandsp-sim
-lspandsp-sim
$(LIBDIR)
-lspandsp
dummy_modems_tests_SOURCES
=
dummy_modems_tests.c media_monitor.cpp socket_harness.c
dummy_modems_tests_LDADD
=
-L
$(top_builddir)
/spandsp-sim
-lspandsp-sim
$(LIBDIR)
-lspandsp
echo_tests_SOURCES
=
echo_tests.c echo_monitor.cpp
echo_tests_SOURCES
=
echo_tests.c echo_monitor.cpp
echo_tests_LDADD
=
-L
$(top_builddir)
/spandsp-sim
-lspandsp-sim
$(LIBDIR)
-lspandsp
echo_tests_LDADD
=
-L
$(top_builddir)
/spandsp-sim
-lspandsp-sim
$(LIBDIR)
-lspandsp
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论