diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 14:25:00 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 14:25:00 +0200 |
commit | 88af2c3ace0fa42dbb816cc9fe8c4b54ce89233a (patch) | |
tree | f637ddd9f06c52890ffffe4910d410d4dd36d520 /src/ncu.c | |
parent | 3e70743f5061573a2d9fff2fe4b232f38653d12b (diff) | |
download | mpd-88af2c3ace0fa42dbb816cc9fe8c4b54ce89233a.tar.gz mpd-88af2c3ace0fa42dbb816cc9fe8c4b54ce89233a.tar.xz mpd-88af2c3ace0fa42dbb816cc9fe8c4b54ce89233a.zip |
colors: make color support optional at compile time
Default is colors disabled. Those who love colorful terminals have
the option to enable it with --enable-colors.
Diffstat (limited to 'src/ncu.c')
-rw-r--r-- | src/ncu.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -17,7 +17,16 @@ */ #include "ncu.h" + +#ifdef ENABLE_COLORS #include "colors.h" +#endif + +#ifdef HAVE_GETMOUSE +#include "options.h" +#endif + +#include <ncurses.h> void ncu_init(void) @@ -26,7 +35,9 @@ ncu_init(void) initscr(); /* initialize color support */ +#ifdef ENABLE_COLORS colors_start(); +#endif /* tell curses not to do NL->CR/NL on output */ nonl(); |