spandsp build integration
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9426 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
1e177dbd2b
commit
c986bb4406
|
@ -5,7 +5,7 @@ BASEDIR=`pwd`;
|
|||
LIBDIR=${BASEDIR}/libs;
|
||||
SUBDIRS="codec/ilbc curl iksemel voipcodecs \
|
||||
js js/nsprpub libdingaling libedit libresample libsndfile pcre sofia-sip \
|
||||
speex sqlite srtp openzap";
|
||||
speex sqlite srtp openzap spandsp";
|
||||
|
||||
|
||||
if [ ! -f modules.conf ]; then
|
||||
|
|
|
@ -7,6 +7,7 @@ applications/mod_conference
|
|||
applications/mod_dptools
|
||||
applications/mod_enum
|
||||
applications/mod_fifo
|
||||
#applications/mod_fax
|
||||
applications/mod_voicemail
|
||||
applications/mod_limit
|
||||
applications/mod_expr
|
||||
|
|
|
@ -659,6 +659,7 @@ AC_CONFIG_SUBDIRS(libs/libresample)
|
|||
if test "$enable_core_libedit_support" = "yes" ; then
|
||||
AC_CONFIG_SUBDIRS(libs/libedit)
|
||||
fi
|
||||
AC_CONFIG_SUBDIRS(libs/spandsp)
|
||||
AC_CONFIG_SUBDIRS(libs/pcre)
|
||||
AC_CONFIG_SUBDIRS(libs/apr)
|
||||
AC_CONFIG_SUBDIRS(libs/apr-util)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Wed Sep 3 14:32:49 CDT 2008
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,3 @@
|
|||
#! /bin/sh
|
||||
./configure "$@" --disable-shared --with-pic
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
BASE=../../../..
|
||||
|
||||
SPANDSP_DIR=$(BASE)/libs/spandsp
|
||||
SPANDSP_LA=$(SPANDSP_DIR)/src/libspandsp.la
|
||||
|
||||
LOCAL_CFLAGS=-I$(SPANDSP_DIR)/src
|
||||
LOCAL_LIBADD=$(SPANDSP_LA)
|
||||
|
||||
include $(BASE)/build/modmake.rules
|
||||
|
||||
$(SPANDSP_LA): $(SPANDSP_DIR) $(SPANDSP_DIR)/.update
|
||||
cd $(SPANDSP_DIR) && $(MAKE)
|
||||
$(TOUCH_TARGET)
|
Loading…
Reference in New Issue