aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools/menuselect.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-07 12:00:55 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-07 12:00:55 +0000
commit43ffeb8506b9a38e5258143e57c138d28f27677e (patch)
tree45789f831fdf7ad378c450e6470e1dc5aba30ec9 /build_tools/menuselect.h
parent8fcbc77f1f71d40ef2a88c8ec204d1df39ae3388 (diff)
various menuselect fixes as a result of boredom during a 9 hour flight and
now a 9 hour layover ... - If a module is disabled from being built because of failed dependencies or a conflict, automatically re-enable the module if the issues are later resolved. - If a module has been disabled by default, only set this value if there is not an existing menuselect.makeopts file. Previously, this value would get reset every time you ran menuselect. - staticize a bunch of functions and variables that aren't public git-svn-id: http://svn.digium.com/svn/asterisk/trunk@25287 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'build_tools/menuselect.h')
-rw-r--r--build_tools/menuselect.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/build_tools/menuselect.h b/build_tools/menuselect.h
index 3bd344cc2..4db045da1 100644
--- a/build_tools/menuselect.h
+++ b/build_tools/menuselect.h
@@ -19,7 +19,7 @@
/*!
* \file
*
- * \brief defaults for menuselect
+ * \brief public data structures and defaults for menuselect
*
*/
@@ -37,6 +37,8 @@ struct conflict;
struct member {
/*! What will be sent to the makeopts file */
const char *name;
+ /*! Default setting */
+ const char *defaultenabled;
/*! This module is currently selected */
int enabled;
/*! This module has failed dependencies */