mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 08:40:16 +00:00
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:
@@ -31,8 +31,19 @@
|
||||
#define OUTPUT_MAKEOPTS_DEFAULT "menuselect.makeopts"
|
||||
#define MENUSELECT_DEPS "build_tools/menuselect-deps"
|
||||
|
||||
struct depend;
|
||||
struct conflict;
|
||||
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;
|
||||
};
|
||||
|
||||
struct member {
|
||||
/*! What will be sent to the makeopts file */
|
||||
|
||||
Reference in New Issue
Block a user