diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 20:24:02 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 20:24:02 +0000 |
commit | 24e05feae24f2117b2ada1f947b07c93160b42a4 (patch) | |
tree | 7dfb25b3fb5a65895ec18a93045c6d6516754fa3 /usr.bin/vi | |
parent | 9a193d8dd602c8fb88cbd8aabd6511b507066cdf (diff) |
We have a modern curses implementation now; enable its use
Diffstat (limited to 'usr.bin/vi')
-rw-r--r-- | usr.bin/vi/build/config.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/vi/build/config.h b/usr.bin/vi/build/config.h index b4d53fa0278..3ca1a5a70dc 100644 --- a/usr.bin/vi/build/config.h +++ b/usr.bin/vi/build/config.h @@ -57,31 +57,31 @@ /* #undef HAVE_BROKEN_VDISABLE */ /* Define if you have a BSD version of curses. */ -#define HAVE_BSD_CURSES 1 +/* #undef HAVE_BSD_CURSES */ /* Define if you have the curses(3) addnstr function. */ #define HAVE_CURSES_ADDNSTR 1 /* Define if you have the curses(3) beep function. */ -/* #undef HAVE_CURSES_BEEP */ +#define HAVE_CURSES_BEEP 1 /* Define if you have the curses(3) flash function. */ -/* #undef HAVE_CURSES_FLASH */ +#define HAVE_CURSES_FLASH 1 /* Define if you have the curses(3) idlok function. */ #define HAVE_CURSES_IDLOK 1 /* Define if you have the curses(3) keypad function. */ -/* #undef HAVE_CURSES_KEYPAD */ +#define HAVE_CURSES_KEYPAD 1 /* Define if you have the curses(3) newterm function. */ -/* #undef HAVE_CURSES_NEWTERM */ +#define HAVE_CURSES_NEWTERM 1 /* Define if you have the curses(3) setupterm function. */ -/* #undef HAVE_CURSES_SETUPTERM */ +#define HAVE_CURSES_SETUPTERM 1 /* Define if you have the curses(3) tigetstr/tigetnum functions. */ -/* #undef HAVE_CURSES_TIGETSTR */ +#define HAVE_CURSES_TIGETSTR 1 /* Define if you have the chsize(2) system call. */ /* #undef HAVE_FTRUNCATE_CHSIZE */ |