提交 01dec725 authored 作者: Michael Jerris's avatar Michael Jerris

use internal libtiff instead of system libtiff (please test)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14321 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 f90d6721
...@@ -832,6 +832,7 @@ AC_CONFIG_SUBDIRS(libs/speex) ...@@ -832,6 +832,7 @@ AC_CONFIG_SUBDIRS(libs/speex)
AC_CONFIG_SUBDIRS(libs/portaudio) AC_CONFIG_SUBDIRS(libs/portaudio)
AC_CONFIG_SUBDIRS(libs/openzap) AC_CONFIG_SUBDIRS(libs/openzap)
AC_CONFIG_SUBDIRS(libs/unimrcp) AC_CONFIG_SUBDIRS(libs/unimrcp)
AC_CHECK_LIB([tiff], [TIFFOpen], AC_CONFIG_SUBDIRS(libs/spandsp), , -lm) AC_CONFIG_SUBDIRS(libs/tiff-3.8.2)
AC_CONFIG_SUBDIRS(libs/spandsp)
AC_OUTPUT AC_OUTPUT
#! /bin/sh #! /bin/sh
./configure "$@" --disable-shared --with-pic ./configure "$@" --disable-shared --with-pic --enable-builtin-tiff
Wed Jul 22 15:05:52 EDT 2009
#! /bin/sh
./configure "$@" --disable-shared --with-pic
BASE=../../../.. BASE=../../../..
TIFF_DIR=$(BASE)/libs/tiff-3.8.2
TIFF_LA=$(TIFF_DIR)/libtiff/libtiff.la
SPANDSP_DIR=$(BASE)/libs/spandsp SPANDSP_DIR=$(BASE)/libs/spandsp
SPANDSP_LA=$(SPANDSP_DIR)/src/libspandsp.la SPANDSP_LA=$(SPANDSP_DIR)/src/libspandsp.la
...@@ -8,10 +11,14 @@ LOCAL_LIBADD=$(SPANDSP_LA) ...@@ -8,10 +11,14 @@ LOCAL_LIBADD=$(SPANDSP_LA)
include $(BASE)/build/modmake.rules include $(BASE)/build/modmake.rules
$(SPANDSP_LA): $(SPANDSP_DIR) $(SPANDSP_DIR)/.update $(SPANDSP_LA): $(TIFF_LA) $(SPANDSP_DIR) $(SPANDSP_DIR)/.update
cd $(SPANDSP_DIR) && $(MAKE) cd $(SPANDSP_DIR) && $(MAKE)
$(TOUCH_TARGET) $(TOUCH_TARGET)
$(TIFF_LA): $(TIFF_DIR) $(TIFF_DIR)/.update
cd $(TIFF_DIR) && $(MAKE)
$(TOUCH_TARGET)
depend_install: $(DESTDIR)$(libdir)/libspandsp.la depend_install: $(DESTDIR)$(libdir)/libspandsp.la
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论