aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-23 15:35:38 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-23 15:35:38 +0000
commita16fe9bcce9590ae10e87af301abd6486696db1f (patch)
treeb512e40d5839b04cf8a5f04e27a6e26559d8ac59 /channels
parent27ab40ff39c113afe44823ac3ba1b0423cfc255a (diff)
Compile, even if both DAHDI and Zaptel are not installed.
(Closes issue #14120) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@166592 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_iax2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index aefc0b26e..b50c968fd 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -11231,6 +11231,7 @@ static int load_module(void)
iax_set_error(iax_error_output);
jb_setoutput(jb_error_output, jb_warning_output, NULL);
+#ifdef HAVE_DAHDI
#ifdef DAHDI_TIMERACK
timingfd = open(DAHDI_FILE_TIMER, O_RDWR);
if (timingfd < 0)
@@ -11238,6 +11239,7 @@ static int load_module(void)
timingfd = open(DAHDI_FILE_PSEUDO, O_RDWR);
if (timingfd < 0)
ast_log(LOG_WARNING, "Unable to open IAX timing interface: %s\n", strerror(errno));
+#endif
memset(iaxs, 0, sizeof(iaxs));