aboutsummaryrefslogtreecommitdiffstats
path: root/src/ncu.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ncu: include config.h, fix mouse and color supportMax Kellermann2008-11-181-0/+1
| | | | | Due to config.h not being included, mouse and color support was always disabled.
* include ncursesw/ncurses.h if availableMax Kellermann2008-10-061-0/+4
| | | | | When compiling with libncursesw, include <ncursesw/ncurses.h> instead of <ncurses.h> (if available).
* disable ncurses raw modeMax Kellermann2008-10-061-5/+0
| | | | | We're better off doing our own signal handling, instead of switching ncurses to raw mode. Anyway, it was commented out and didn't work...
* colors: make color support optional at compile timeMax Kellermann2008-10-031-0/+11
| | | | | Default is colors disabled. Those who love colorful terminals have the option to enable it with --enable-colors.
* screen: moved code to ncu.cMax Kellermann2008-09-221-0/+59
Moved basic libncurses initialization to ncu.c and ncu.h. Keep generic code out of screen.c.