aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-22 17:41:57 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-22 17:41:57 +0000
commit4c77fac7b727898f2dacf0024577fdc327a846c8 (patch)
tree0bfa84da1adddf3dba3b38590bd84a19aa1bd3f9
parente650e21901d6e17843f358e71531a054aeca0ec9 (diff)
Add more dependencies on chan_local and add a note to the description of chan_local
so that people don't disable it in menuselect just to clean up. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@99594 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_followme.c4
-rw-r--r--channels/chan_agent.c3
-rw-r--r--channels/chan_local.c2
-rw-r--r--res/res_features.c4
4 files changed, 12 insertions, 1 deletions
diff --git a/apps/app_followme.c b/apps/app_followme.c
index e01866db7..cd79cc308 100644
--- a/apps/app_followme.c
+++ b/apps/app_followme.c
@@ -28,6 +28,10 @@
* \ingroup applications
*/
+/*** MODULEINFO
+ <depend>chan_local</depend>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
diff --git a/channels/chan_agent.c b/channels/chan_agent.c
index 883de716f..6937640b1 100644
--- a/channels/chan_agent.c
+++ b/channels/chan_agent.c
@@ -30,6 +30,9 @@
*
* \ingroup channel_drivers
*/
+/*** MODULEINFO
+ <depend>chan_local</depend>
+ ***/
#include "asterisk.h"
diff --git a/channels/chan_local.c b/channels/chan_local.c
index f8a65e470..cbf7f7f48 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -744,4 +744,4 @@ static int unload_module(void)
return 0;
}
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Local Proxy Channel");
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Local Proxy Channel (Note: used internally by other modules)");
diff --git a/res/res_features.c b/res/res_features.c
index 0fdfbb036..8842c0b9b 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -23,6 +23,10 @@
* \author Mark Spencer <markster@digium.com>
*/
+/*** MODULEINFO
+ <depend>chan_local</depend>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")