[asterisk-commits] kpfleming: trunk r149426 - in /trunk: configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Oct 15 04:59:13 CDT 2008
Author: kpfleming
Date: Wed Oct 15 04:59:12 2008
New Revision: 149426
URL: http://svn.digium.com/view/asterisk?view=rev&rev=149426
Log:
do complete version check for SpanDSP, since the app_fax code is not compatible with 0.0.6 yet
Modified:
trunk/configure
trunk/configure.ac
Modified: trunk/configure.ac
URL: http://svn.digium.com/view/asterisk/trunk/configure.ac?view=diff&rev=149426&r1=149425&r2=149426
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Oct 15 04:59:12 2008
@@ -1350,7 +1350,10 @@
#if SPANDSP_RELEASE_DATE < 20080516
#error "spandsp 0.0.5 or greater is required"
#endif
- ], [spandsp/version.h], , [minimum version of SpanDSP])
+ #if SPANDSP_RELEASE_DATE >= 20081012
+ #error "spandsp 0.0.6 or greater is not supported; use 0.0.5"
+ #endif
+ ], [spandsp/version.h], , [compatible version of SpanDSP])
if test "x${PBX_SPANDSP}" = "x1" ; then
# We found the correct version in the header, now let's make sure it links
More information about the asterisk-commits
mailing list