Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
34c48368
提交
34c48368
authored
3月 14, 2017
作者:
Mike Jerris
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-10074: [libtiff] stop using embedded libtiff. Build now requires system libtiff
上级
6187c303
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
7 行增加
和
21 行删除
+7
-21
Makefile.am
Makefile.am
+1
-7
configure.ac
configure.ac
+0
-1
configure.gnu
libs/spandsp/configure.gnu
+1
-1
Makefile.am
src/mod/applications/mod_spandsp/Makefile.am
+5
-12
没有找到文件。
Makefile.am
浏览文件 @
34c48368
...
...
@@ -125,7 +125,6 @@ CORE_CFLAGS += -DSWITCH_HAVE_YUV
endif
CORE_CFLAGS
+=
-I
$(switch_srcdir)
/libs/srtp/crypto/include
-Ilibs
/srtp/crypto/include
CORE_CFLAGS
+=
-I
$(switch_builddir)
/libs/spandsp/src
-I
$(switch_srcdir)
/libs/spandsp/src
CORE_CFLAGS
+=
-I
$(switch_builddir)
/libs/tiff-4.0.2/libtiff
-I
$(switch_srcdir)
/libs/tiff-4.0.2/libtiff
if
ENABLE_LIBVPX
CORE_CFLAGS
+=
-DSWITCH_HAVE_VPX
endif
...
...
@@ -741,11 +740,6 @@ sndfile-reconf:
cd
libs/libsndfile
&&
./config.status
--recheck
cd
libs/libsndfile
&&
./config.status
tiff-reconf
:
cd
libs/tiff-4.0.2
&&
autoreconf
-fi
cd
libs/tiff-4.0.2
&&
sh ./configure.gnu
$(MY_DEFAULT_ARGS)
cd
libs/tiff-4.0.2
&&
make
python-reconf
:
rm
-f
src/mod/languages/mod_python/Makefile
./config.status
...
...
@@ -767,7 +761,7 @@ iks-reconf:
cd
libs/iksemel
&&
sh ./configure.gnu
$(MY_DEFAULT_ARGS)
$(MAKE)
mod_dingaling-clean
spandsp-reconf
:
tiff-reconf
spandsp-reconf
:
cd
libs/spandsp
&&
$(MAKE)
clean
||
echo
cd
libs/spandsp
&&
autoreconf
-fi
cd
libs/spandsp
&&
sh ./configure.gnu
$(MY_DEFAULT_ARGS)
...
...
configure.ac
浏览文件 @
34c48368
...
...
@@ -2012,7 +2012,6 @@ AC_CONFIG_SUBDIRS([libs/libdingaling])
AC_CONFIG_SUBDIRS([libs/sofia-sip])
AC_CONFIG_SUBDIRS([libs/freetdm])
AC_CONFIG_SUBDIRS([libs/unimrcp])
AC_CONFIG_SUBDIRS([libs/tiff-4.0.2])
AC_CONFIG_SUBDIRS([libs/spandsp])
if test "x${enable_zrtp}" = "xyes"; then
AC_CONFIG_SUBDIRS([libs/libzrtp])
...
...
libs/spandsp/configure.gnu
浏览文件 @
34c48368
#! /bin/sh
srcpath
=
$(
dirname
$0
2>/dev/null
)
||
srcpath
=
"."
$srcpath
/configure
"
$@
"
--disable-shared
--with-pic
--enable-builtin-tiff
$srcpath
/configure
"
$@
"
--disable-shared
--with-pic
src/mod/applications/mod_spandsp/Makefile.am
浏览文件 @
34c48368
include
$(top_srcdir)/build/modmake.rulesam
MODNAME
=
mod_spandsp
TIFF_DIR
=
$(switch_srcdir)
/libs/tiff-4.0.2
TIFF_BUILDDIR
=
$(switch_builddir)
/libs/tiff-4.0.2
TIFF_LA
=
$(TIFF_BUILDDIR)
/libtiff/libtiff.la
SPANDSP_DIR
=
$(switch_srcdir)
/libs/spandsp
SPANDSP_BUILDDIR
=
$(switch_builddir)
/libs/spandsp
SPANDSP_LA
=
$(SPANDSP_BUILDDIR)
/src/libspandsp.la
mod_LTLIBRARIES
=
mod_spandsp.la
mod_spandsp_la_SOURCES
=
mod_spandsp.c udptl.c mod_spandsp_fax.c mod_spandsp_dsp.c mod_spandsp_codecs.c mod_spandsp_modem.c
mod_spandsp_la_CFLAGS
=
$(AM_CFLAGS)
mod_spandsp_la_CPPFLAGS
=
-I
$(SPANDSP_DIR)
/src
-I
$(
TIFF_DIR)
/libtiff
-I
$(TIFF_BUILDDIR)
/libtiff
-I
$(SPANDSP_BUILDDIR)
/src
-I
$(TIFF_BUILDDIR)
/libtiff
-I
.
mod_spandsp_la_LIBADD
=
$(switch_builddir)
/libfreeswitch.la
$(SPANDSP_LA)
$(
TIFF_LA)
$(SPANDSP_LA_JBIG)
$(SPANDSP_LA_LZMA)
-ljpeg
-lz
mod_spandsp_la_CFLAGS
=
$(AM_CFLAGS)
mod_spandsp_la_CPPFLAGS
=
-I
$(SPANDSP_DIR)
/src
-I
$(
SPANDSP_BUILDDIR)
/src
-I
.
mod_spandsp_la_LIBADD
=
$(switch_builddir)
/libfreeswitch.la
$(SPANDSP_LA)
$(
SPANDSP_LA_JBIG)
$(SPANDSP_LA_LZMA)
-ljpeg
-lz
-ltiff
mod_spandsp_la_LDFLAGS
=
-avoid-version
-module
-no-undefined
-shared
$(SPANDSP_LA)
:
$(TIFF_LA) $(SPANDSP_DIR) $(SPANDSP_DIR)/.update
cd
$(SPANDSP_BUILDDIR)
&&
$(MAKE)
CPPFLAGS
=
"
$(CPPFLAGS)
-I
$(TIFF_BUILDDIR)
/libtiff -I
$(TIFF_DIR)
/libtiff"
CFLAGS
=
"
$(CFLAGS)
"
$(TOUCH_TARGET)
$(TIFF_LA)
:
$(TIFF_DIR) $(TIFF_DIR)/.update
cd
$(TIFF_BUILDDIR)
&&
$(MAKE)
$(SPANDSP_LA)
:
$(SPANDSP_DIR) $(SPANDSP_DIR)/.update
cd
$(SPANDSP_BUILDDIR)
&&
$(MAKE)
CPPFLAGS
=
"
$(CPPFLAGS)
"
CFLAGS
=
"
$(CFLAGS)
"
$(TOUCH_TARGET)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论