[asterisk-commits] russell: trunk r119795 - in /trunk: ./ build_tools/ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 2 10:43:40 CDT 2008
Author: russell
Date: Mon Jun 2 10:43:40 2008
New Revision: 119795
URL: http://svn.digium.com/view/asterisk?view=rev&rev=119795
Log:
Add a configure script check for spandsp
Modified:
trunk/build_tools/menuselect-deps.in
trunk/configure
trunk/configure.ac
trunk/include/asterisk/autoconfig.h.in
trunk/makeopts.in
Modified: trunk/build_tools/menuselect-deps.in
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/menuselect-deps.in?view=diff&rev=119795&r1=119794&r2=119795
==============================================================================
--- trunk/build_tools/menuselect-deps.in (original)
+++ trunk/build_tools/menuselect-deps.in Mon Jun 2 10:43:40 2008
@@ -30,6 +30,7 @@
PORTAUDIO=@PBX_PORTAUDIO@
PRI=@PBX_PRI@
RADIUS=@PBX_RADIUS@
+SPANDSP=@PBX_SPANDSP@
SPEEX=@PBX_SPEEX@
SPEEXDSP=@PBX_SPEEXDSP@
SPEEX_PREPROCESS=@PBX_SPEEX_PREPROCESS@
Modified: trunk/configure.ac
URL: http://svn.digium.com/view/asterisk/trunk/configure.ac?view=diff&rev=119795&r1=119794&r2=119795
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Jun 2 10:43:40 2008
@@ -233,6 +233,7 @@
AST_EXT_LIB_SETUP([POPT], [popt], [popt])
AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
+AST_EXT_LIB_SETUP([SPANDSP], [SPANDSP], [spandsp])
AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
@@ -1290,6 +1291,12 @@
AST_EXT_LIB_CHECK([PRI], [pri], [pri_get_version], [libpri.h])
+AST_C_COMPILE_CHECK([SPANDSP], [
+ #if SPANDSP_RELEASE_DATE < 20080516
+ #error "spandsp 0.0.5 or greater is required"
+ #endif
+ ], [spandsp/version.h])
+
AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_pollflags], [libss7.h])
if test "${USE_PWLIB}" != "no"; then
Modified: trunk/include/asterisk/autoconfig.h.in
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/autoconfig.h.in?view=diff&rev=119795&r1=119794&r2=119795
==============================================================================
--- trunk/include/asterisk/autoconfig.h.in (original)
+++ trunk/include/asterisk/autoconfig.h.in Mon Jun 2 10:43:40 2008
@@ -717,6 +717,12 @@
/* Define to 1 if your system has soxmix application. */
#undef HAVE_SOXMIX
+
+/* Define if your system has the SPANDSP headers. */
+#undef HAVE_SPANDSP
+
+/* Define SPANDSP headers version */
+#undef HAVE_SPANDSP_VERSION
/* Define this to indicate the ${SPEEX_DESCRIP} library */
#undef HAVE_SPEEX
Modified: trunk/makeopts.in
URL: http://svn.digium.com/view/asterisk/trunk/makeopts.in?view=diff&rev=119795&r1=119794&r2=119795
==============================================================================
--- trunk/makeopts.in (original)
+++ trunk/makeopts.in Mon Jun 2 10:43:40 2008
@@ -169,6 +169,9 @@
SDL_IMAGE_INCLUDE=@SDL_IMAGE_INCLUDE@
SDL_IMAGE_LIB=@SDL_IMAGE_LIB@
+SPANDSP_INCLUDE=@SPANDSP_INCLUDE@
+SPANDSP_LIB=@SPANDSP_LIB@
+
SPEEX_INCLUDE=@SPEEX_INCLUDE@
SPEEX_LIB=@SPEEX_LIB@
More information about the asterisk-commits
mailing list