allow menuselect to display dependencies and conflicts for modules

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31443 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-06-01 17:40:50 +00:00
parent 4d17451c55
commit 4508c9fcc0
3 changed files with 39 additions and 20 deletions

View File

@@ -40,20 +40,6 @@
#undef MENUSELECT_DEBUG
struct depend {
/*! the name of the dependency */
const char *name;
/*! for linking */
AST_LIST_ENTRY(depend) list;
};
struct conflict {
/*! the name of the conflict */
const char *name;
/*! for linking */
AST_LIST_ENTRY(conflict) list;
};
/*! The list of categories */
struct categories categories = AST_LIST_HEAD_NOLOCK_INIT_VALUE;