spandsp build integration

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9426 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-09-03 19:44:49 +00:00
parent 1e177dbd2b
commit c986bb4406
7 changed files with 20 additions and 7490 deletions

View File

@ -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

View File

@ -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

View File

@ -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)

1
libs/spandsp/.update Normal file
View File

@ -0,0 +1 @@
Wed Sep 3 14:32:49 CDT 2008

7489
libs/spandsp/aclocal.m4 vendored

File diff suppressed because it is too large Load Diff

3
libs/spandsp/configure.gnu Executable file
View File

@ -0,0 +1,3 @@
#! /bin/sh
./configure "$@" --disable-shared --with-pic

View File

@ -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)