summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2012-06-15 16:20:16 +0000
committerKevin P. Fleming <kpfleming@digium.com>2012-06-15 16:20:16 +0000
commit166b4e2b30a30f91b3b644a733f3703213463d49 (patch)
treea823131533e63e86030193eadb69073458a63fdf /utils
parentbdab2763ac297643981b2dfbbaa0bb7d56e4417b (diff)
Multiple revisions 369001-369002
........ r369001 | kpfleming | 2012-06-15 10:56:08 -0500 (Fri, 15 Jun 2012) | 11 lines Add support-level indications to many more source files. Since we now have tools that scan through the source tree looking for files with specific support levels, we need to ensure that every file that is a component of a 'core' or 'extended' module (or the main Asterisk binary) is explicitly marked with its support level. This patch adds support-level indications to many more source files in tree, but avoids adding them to third-party libraries that are included in the tree and to source files that don't end up involved in Asterisk itself. ........ r369002 | kpfleming | 2012-06-15 10:57:14 -0500 (Fri, 15 Jun 2012) | 3 lines Add a script to enable finding source files without support-levels defined. ........ Merged revisions 369001-369002 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 369005 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369013 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils')
-rw-r--r--utils/astdb2bdb.c6
-rw-r--r--utils/astdb2sqlite3.c6
2 files changed, 10 insertions, 2 deletions
diff --git a/utils/astdb2bdb.c b/utils/astdb2bdb.c
index 51f96ed29..c93d46312 100644
--- a/utils/astdb2bdb.c
+++ b/utils/astdb2bdb.c
@@ -18,11 +18,15 @@
/*! \file
*
- * \brief SQLite 3 astdb to Berkely DB converter
+ * \brief SQLite 3 astdb to Berkeley DB converter
*
* \author Terry Wilson <twilson@digium.com>
*/
+/*** MODULEINFO
+ <support_level>core</support_level>
+ ***/
+
#include "asterisk.h"
#include <sys/types.h>
diff --git a/utils/astdb2sqlite3.c b/utils/astdb2sqlite3.c
index b0751dc3b..ba35f9360 100644
--- a/utils/astdb2sqlite3.c
+++ b/utils/astdb2sqlite3.c
@@ -18,11 +18,15 @@
/*! \file
*
- * \brief Berekeley DB to SQLite3 converter
+ * \brief Berkeley DB to SQLite3 converter
*
* \author Terry Wilson <twilson@digium.com>
*/
+/*** MODULEINFO
+ <support_level>core</support_level>
+ ***/
+
#include "asterisk.h"
//ASTERISK_FILE_VERSION(__FILE__, "$Revision$")