summaryrefslogtreecommitdiff
path: root/build_tools/menuselect.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-06-01 17:40:50 +0000
committerRussell Bryant <russell@russellbryant.com>2006-06-01 17:40:50 +0000
commit4508c9fcc036d1888f6b650e9adbe4f78c7a5377 (patch)
treea83c379a7d6ab6fdcd0c22bd01fd7e8cd2eddae7 /build_tools/menuselect.c
parent4d17451c551e168ca1ee2456d9d440c5f665f47a (diff)
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
Diffstat (limited to 'build_tools/menuselect.c')
-rw-r--r--build_tools/menuselect.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/build_tools/menuselect.c b/build_tools/menuselect.c
index 51f31b638..ca23caf11 100644
--- a/build_tools/menuselect.c
+++ b/build_tools/menuselect.c
@@ -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;