diff options
author | Max Kellermann <max@duempel.org> | 2008-11-07 13:27:31 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-07 13:27:31 +0100 |
commit | 54674384020f5d8019ca71f6c283d18ba32d5171 (patch) | |
tree | 8684aa7a9ccd18c808ad265e7c7bb9e283833cdc /src/options.h | |
parent | 9e8806dadee58efe36151a6bca22d65487ed02ee (diff) | |
download | mpd-54674384020f5d8019ca71f6c283d18ba32d5171.tar.gz mpd-54674384020f5d8019ca71f6c283d18ba32d5171.tar.xz mpd-54674384020f5d8019ca71f6c283d18ba32d5171.zip |
disable more features with --enable-mini
Disable lots of smaller features which don't have a separate configure
option:
- xterm title
- screen list
- horizontal scrolling
- MPD version number check
- key binding checks
- character set conversion
- bitrate display
- highlighting in the file browser
- completion / history
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h index 5496e78ca..98ad3156e 100644 --- a/src/options.h +++ b/src/options.h @@ -16,8 +16,10 @@ typedef struct { char *key_file; char *list_format; char *status_format; +#ifndef NCMPC_MINI char *xterm_title_format; char *scroll_sep; +#endif char **screen_list; char *timedisplay_type; int port; @@ -38,13 +40,17 @@ typedef struct { #endif bool audible_bell; bool visible_bell; +#ifndef NCMPC_MINI bool enable_xterm_title; +#endif #ifdef HAVE_GETMOUSE bool enable_mouse; #endif +#ifndef NCMPC_MINI bool scroll; bool visible_bitrate; bool welcome_screen_list; +#endif } options_t; extern options_t options; |