From: Russell Bryant Date: Wed, 14 Jun 2006 03:00:15 +0000 (+0000) Subject: indicate which options are just binary and don't really need a full integer X-Git-Tag: 1.4.0-beta1~899 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0275eaae1dc849933ded4f3f1846f3425858ba2;p=thirdparty%2Fasterisk.git indicate which options are just binary and don't really need a full integer git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33997 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/build_tools/menuselect.h b/build_tools/menuselect.h index fbb76333b8..d3dceef52b 100644 --- a/build_tools/menuselect.h +++ b/build_tools/menuselect.h @@ -53,11 +53,11 @@ struct member { /*! Default setting */ const char *defaultenabled; /*! This module is currently selected */ - int enabled; + int enabled:1; /*! This module has failed dependencies */ - int depsfailed; + int depsfailed:1; /*! This module has failed conflicts */ - int conflictsfailed; + int conflictsfailed:1; /*! dependencies of this module */ AST_LIST_HEAD_NOLOCK(, depend) deps; /*! conflicts of this module */ @@ -72,9 +72,9 @@ struct category { /*! the name displayed in the menu */ const char *displayname; /*! Display what is selected, as opposed to not selected */ - int positive_output; + int positive_output:1; /*! Force a clean of the source tree if anything in this category changes */ - int force_clean_on_change; + int force_clean_on_change:1; /*! the list of possible values to be set in this variable */ AST_LIST_HEAD_NOLOCK(, member) members; /*! for linking */