summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorLeif Madsen <leif@leifmadsen.com>2011-07-14 20:28:54 +0000
committerLeif Madsen <leif@leifmadsen.com>2011-07-14 20:28:54 +0000
commita525edea595a782bcc3f868703ee85c794728614 (patch)
tree52207a5c4cce32b6f73fbc1cd41e9466b50ed841 /utils
parent8dc71df9d0f74a8094553944b6bfcf3a64eed047 (diff)
Merged revisions 328247 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.10 ................ r328247 | lmadsen | 2011-07-14 16:25:31 -0400 (Thu, 14 Jul 2011) | 14 lines Merged revisions 328209 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r328209 | lmadsen | 2011-07-14 16:13:06 -0400 (Thu, 14 Jul 2011) | 6 lines Introduce <support_level> tags in MODULEINFO. This change introduces MODULEINFO into many modules in Asterisk in order to show the community support level for those modules. This is used by changes committed to menuselect by Russell Bryant recently (r917 in menuselect). More information about the support level types and what they mean is available on the wiki at https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Support+States ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@328259 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils')
-rw-r--r--utils/ael_main.c5
-rw-r--r--utils/astcanary.c4
-rw-r--r--utils/astman.c4
-rw-r--r--utils/check_expr.c4
-rw-r--r--utils/conf2ael.c1
-rw-r--r--utils/extconf.c5
-rw-r--r--utils/hashtest.c4
-rw-r--r--utils/hashtest2.c4
-rw-r--r--utils/muted.c4
-rw-r--r--utils/refcounter.c4
-rw-r--r--utils/smsq.c4
-rw-r--r--utils/stereorize.c4
-rw-r--r--utils/streamplayer.c4
13 files changed, 51 insertions, 0 deletions
diff --git a/utils/ael_main.c b/utils/ael_main.c
index e5a7346ed..52aa47993 100644
--- a/utils/ael_main.c
+++ b/utils/ael_main.c
@@ -6,6 +6,11 @@
* it was copied from;
* - fixing the formatting
*/
+
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
#include <locale.h>
diff --git a/utils/astcanary.c b/utils/astcanary.c
index 8cfa3feb7..9432c57a7 100644
--- a/utils/astcanary.c
+++ b/utils/astcanary.c
@@ -16,6 +16,10 @@
* at the top of the source tree.
*/
+/*** MODULEINFO
+ <support_level>core</support_level>
+ ***/
+
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
diff --git a/utils/astman.c b/utils/astman.c
index 6bb4c4c6f..459eeee71 100644
--- a/utils/astman.c
+++ b/utils/astman.c
@@ -22,6 +22,10 @@
*
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk.h"
diff --git a/utils/check_expr.c b/utils/check_expr.c
index b904b4824..556b0f9f8 100644
--- a/utils/check_expr.c
+++ b/utils/check_expr.c
@@ -16,6 +16,10 @@
* at the top of the source tree.
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
diff --git a/utils/conf2ael.c b/utils/conf2ael.c
index 538818b25..020dbe3af 100644
--- a/utils/conf2ael.c
+++ b/utils/conf2ael.c
@@ -24,6 +24,7 @@
/*** MODULEINFO
<depend>res_ael_share</depend>
+ <support_level>extended</support_level>
***/
#include "asterisk.h"
diff --git a/utils/extconf.c b/utils/extconf.c
index 22df962e7..54e11a0ad 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -23,6 +23,11 @@
* for operations outside of asterisk. A huge, awful hack.
*
*/
+
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
#undef DEBUG_THREADS
diff --git a/utils/hashtest.c b/utils/hashtest.c
index 9ec597f4e..390e331e0 100644
--- a/utils/hashtest.c
+++ b/utils/hashtest.c
@@ -28,6 +28,10 @@
* \author Steve Murphy <murf@digium.com>
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
diff --git a/utils/hashtest2.c b/utils/hashtest2.c
index 7953decf6..5bc628061 100644
--- a/utils/hashtest2.c
+++ b/utils/hashtest2.c
@@ -28,6 +28,10 @@
* \author Steve Murphy <murf@digium.com>
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
diff --git a/utils/muted.c b/utils/muted.c
index 211766e53..18f55d73f 100644
--- a/utils/muted.c
+++ b/utils/muted.c
@@ -35,6 +35,10 @@
*
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk/autoconfig.h"
#ifdef __Darwin__
diff --git a/utils/refcounter.c b/utils/refcounter.c
index 1c679e822..b45680e0d 100644
--- a/utils/refcounter.c
+++ b/utils/refcounter.c
@@ -39,6 +39,10 @@
* \author Steve Murphy <murf@digium.com>
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
diff --git a/utils/smsq.c b/utils/smsq.c
index c6aaff8e2..fab32f086 100644
--- a/utils/smsq.c
+++ b/utils/smsq.c
@@ -17,6 +17,10 @@
* at the top of the source tree.
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include "asterisk.h"
#include <popt.h>
diff --git a/utils/stereorize.c b/utils/stereorize.c
index 31f1b1fbe..484304037 100644
--- a/utils/stereorize.c
+++ b/utils/stereorize.c
@@ -10,6 +10,10 @@
*
****************************************************************************/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/utils/streamplayer.c b/utils/streamplayer.c
index ebb12e54b..6c70b0840 100644
--- a/utils/streamplayer.c
+++ b/utils/streamplayer.c
@@ -42,6 +42,10 @@
* not work. :)
*/
+/*** MODULEINFO
+ <support_level>extended</support_level>
+ ***/
+
#include <stdlib.h>
#include <stdio.h>
#include <string.h>