]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix the 1.4 branch compile again broken with r150557 when using with Zaptel and...
authorBJ Weschke <bweschke@btwtech.com>
Sun, 19 Oct 2008 19:07:05 +0000 (19:07 +0000)
committerBJ Weschke <bweschke@btwtech.com>
Sun, 19 Oct 2008 19:07:05 +0000 (19:07 +0000)
 (closes issue #13740)
 reported by: jmls
 patch by: bweschke

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@151100 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/asterisk.c

index c7fe4b82e637da920fd5eb814cbb1797db9fe43d..c3191711d32dd2e413ddd227214c2dfa915a4d61 100644 (file)
@@ -74,11 +74,18 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 #include <pwd.h>
 #include <sys/stat.h>
 
-#if defined(HAVE_DAHDI)
+#if defined(HAVE_ZAPTEL) || defined (HAVE_DAHDI)
 #include <sys/ioctl.h>
+#endif
+
+#if defined(HAVE_DAHDI)
 #include "asterisk/dahdi_compat.h"
 #endif
 
+#if defined(HAVE_ZAPTEL)
+#include <zaptel/zaptel.h>
+#endif
+
 #ifdef linux
 #include <sys/prctl.h>
 #ifdef HAVE_CAP
@@ -2991,7 +2998,7 @@ int main(int argc, char *argv[])
                int x = 160;
                fd = open("/dev/zap/timer", O_RDWR);
                if (fd >= 0) {
-                       if (ioctl(fd, DAHDI_TIMERCONFIG, &x)) {
+                       if (ioctl(fd, ZT_TIMERCONFIG, &x)) {
                                ast_log(LOG_ERROR, "You have Zaptel built and drivers loaded, but the Zaptel timer test failed to set ZT_TIMERCONFIG to %d.\n", x);
                                exit(1);
                        }