From: Luigi Rizzo Date: Tue, 28 Mar 2006 21:24:48 +0000 (+0000) Subject: The condition to check the zaptel version was too strict. X-Git-Tag: 1.4.0-beta1~2282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9b7424737daa75628dfc485376a3448e5b6fb95;p=thirdparty%2Fasterisk.git The condition to check the zaptel version was too strict. If you are compiling with WITHOUT_ZAPTEL=1, you can also work with older version of zaptel, and there is no reason not to allow that. This should help various people mentioning on the -dev list that there were issues with newer zaptel versions on FreeBSD, and so they had to use older version. (This includes me, btw!) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15785 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index babaeb7f28..adc6217c92 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -107,7 +107,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #define SMDI_MD_WAIT_TIMEOUT 1500 /* 1.5 seconds */ #endif -#ifndef ZT_SIG_HARDHDLC +#if !defined(ZT_SIG_EM_E1) || (defined(ZAPATA_PRI) && !defined(ZT_SIG_HARDHDLC)) #error "Your zaptel is too old. please update" #endif