[asterisk-commits] oej: branch 1.4 r99594 - in /branches/1.4: apps/ channels/ res/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jan 22 11:55:37 CST 2008
Author: oej
Date: Tue Jan 22 11:41:57 2008
New Revision: 99594
URL: http://svn.digium.com/view/asterisk?view=rev&rev=99594
Log:
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.
Modified:
branches/1.4/apps/app_followme.c
branches/1.4/channels/chan_agent.c
branches/1.4/channels/chan_local.c
branches/1.4/res/res_features.c
Change Statistics:
0 files changed
Modified: branches/1.4/apps/app_followme.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_followme.c?view=diff&rev=99594&r1=99593&r2=99594
==============================================================================
--- branches/1.4/apps/app_followme.c (original)
+++ branches/1.4/apps/app_followme.c Tue Jan 22 11:41:57 2008
@@ -27,6 +27,10 @@
*
* \ingroup applications
*/
+
+/*** MODULEINFO
+ <depend>chan_local</depend>
+ ***/
#include "asterisk.h"
Modified: branches/1.4/channels/chan_agent.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_agent.c?view=diff&rev=99594&r1=99593&r2=99594
==============================================================================
--- branches/1.4/channels/chan_agent.c (original)
+++ branches/1.4/channels/chan_agent.c Tue Jan 22 11:41:57 2008
@@ -30,6 +30,9 @@
*
* \ingroup channel_drivers
*/
+/*** MODULEINFO
+ <depend>chan_local</depend>
+ ***/
#include "asterisk.h"
Modified: branches/1.4/channels/chan_local.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_local.c?view=diff&rev=99594&r1=99593&r2=99594
==============================================================================
--- branches/1.4/channels/chan_local.c (original)
+++ branches/1.4/channels/chan_local.c Tue Jan 22 11:41:57 2008
@@ -744,4 +744,4 @@
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)");
Modified: branches/1.4/res/res_features.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_features.c?view=diff&rev=99594&r1=99593&r2=99594
==============================================================================
--- branches/1.4/res/res_features.c (original)
+++ branches/1.4/res/res_features.c Tue Jan 22 11:41:57 2008
@@ -22,6 +22,10 @@
*
* \author Mark Spencer <markster at digium.com>
*/
+
+/*** MODULEINFO
+ <depend>chan_local</depend>
+ ***/
#include "asterisk.h"
More information about the asterisk-commits
mailing list