aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-25 23:20:35 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-25 23:20:35 +0000
commita9d05ec703ba688539f4978bc47dea878220defe (patch)
tree32eaaa9ed24c66cfb82e690bc0af19d72068f2b4 /apps
parente9d29f7eafbbbd5cbc4ab207be70ff3f96bfaf36 (diff)
Merged revisions 125138 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r125138 | kpfleming | 2008-06-25 18:05:28 -0500 (Wed, 25 Jun 2008) | 18 lines Merged revisions 125132 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r125132 | kpfleming | 2008-06-25 17:21:30 -0500 (Wed, 25 Jun 2008) | 10 lines allow tonezone to live in a different place than DAHDI/Zaptel, since dahdi-tools and dahdi-linux are now separate packages and can be installed in different places don't include tonezone.h in dahdi_compat.h, because only a couple of modules need it get app_rpt building again after the DAHDI changes (closes issue #12911) Reported by: tzafrir ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@125146 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dahdiras.c2
-rw-r--r--apps/app_dahdiscan.c3
-rw-r--r--apps/app_flash.c3
-rw-r--r--apps/app_meetme.c5
-rw-r--r--apps/app_rpt.c4
5 files changed, 10 insertions, 7 deletions
diff --git a/apps/app_dahdiras.c b/apps/app_dahdiras.c
index 979724789..6038c524f 100644
--- a/apps/app_dahdiras.c
+++ b/apps/app_dahdiras.c
@@ -43,7 +43,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <fcntl.h>
-#include "asterisk/dahdi.h"
+#include <dahdi/user.h>
#include "asterisk/lock.h"
#include "asterisk/file.h"
diff --git a/apps/app_dahdiscan.c b/apps/app_dahdiscan.c
index d7b100eac..57cc231f3 100644
--- a/apps/app_dahdiscan.c
+++ b/apps/app_dahdiscan.c
@@ -38,7 +38,8 @@
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-#include "asterisk/dahdi.h"
+#include <sys/ioctl.h>
+#include <dahdi/user.h>
#include "asterisk/lock.h"
#include "asterisk/file.h"
diff --git a/apps/app_flash.c b/apps/app_flash.c
index dd13f414f..5e5b6b132 100644
--- a/apps/app_flash.c
+++ b/apps/app_flash.c
@@ -33,7 +33,8 @@
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-#include "asterisk/dahdi.h"
+#include <sys/ioctl.h>
+#include <dahdi/user.h>
#include "asterisk/lock.h"
#include "asterisk/file.h"
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 1dc33bd0f..6ab05e2fd 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -37,7 +37,8 @@
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
-#include "asterisk/dahdi.h"
+#include <sys/ioctl.h>
+#include <dahdi/user.h>
#include "asterisk/lock.h"
#include "asterisk/file.h"
@@ -293,7 +294,7 @@ static const char *descrip2 =
"will be returned in the variable. Upon app completion, MeetMeCount will hangup\n"
"the channel, unless priority n+1 exists, in which case priority progress will\n"
"continue.\n"
-"A ZAPTEL INTERFACE MUST BE INSTALLED FOR CONFERENCING FUNCTIONALITY.\n";
+"";
static const char *descrip3 =
" MeetMeAdmin(confno,command[,user]): Run admin command for conference\n"
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index d45104ec1..40ce3492f 100644
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -218,6 +218,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <sys/ioctl.h>
#include <sys/io.h>
#include <math.h>
+#include <dahdi/user.h>
+#include <dahdi/tonezone.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -236,8 +238,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/localtime.h"
#include "asterisk/app.h"
-#include "asterisk/dahdi.h"
-
static char *app = "Rpt";
static char *synopsis = "Radio Repeater/Remote Base Control System";