[asterisk-commits] tilghman: trunk r157784 - in /trunk: configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Nov 19 12:28:15 CST 2008
Author: tilghman
Date: Wed Nov 19 12:28:14 2008
New Revision: 157784
URL: http://svn.digium.com/view/asterisk?view=rev&rev=157784
Log:
Add check for t38_terminal_init in spandsp (not found in 0.0.6, so it should fail reasonably)
(closes issue #13473)
Reported by: genie
Patches:
20080916__bug13473.diff.txt uploaded by Corydon76 (license 14)
Modified:
trunk/configure
trunk/configure.ac
Modified: trunk/configure.ac
URL: http://svn.digium.com/view/asterisk/trunk/configure.ac?view=diff&rev=157784&r1=157783&r2=157784
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Nov 19 12:28:14 2008
@@ -1392,6 +1392,12 @@
AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [span_set_message_handler], [spandsp.h], [-ltiff])
fi
+if test "x${PBX_SPANDSP}" = "x1" ; then
+ # We also need t38_terminal_init()
+ PBX_SPANDSP=0
+ AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [t38_terminal_init], [spandsp.h], [-ltiff])
+fi
+
AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_pollflags], [libss7.h])
if test "${USE_PWLIB}" != "no"; then
More information about the asterisk-commits
mailing list