diff options
author | rafan <rafan@FreeBSD.org> | 2008-02-11 13:39:36 +0000 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2008-02-11 13:39:36 +0000 |
commit | c60ef1d6554d92b36ea8b6d5b3eab8b14a9582b2 (patch) | |
tree | 4bc503539fdd7eb08a05f873876e102cb10dd2c5 /lib/ncurses | |
parent | aff1e581026a34725405e4b77f4586b984af823b (diff) | |
download | FreeBSD-src-c60ef1d6554d92b36ea8b6d5b3eab8b14a9582b2.zip FreeBSD-src-c60ef1d6554d92b36ea8b6d5b3eab8b14a9582b2.tar.gz |
- Update build glues for ncurses 5.6 snapshot 20080209
- While I'm here, sort macro defines in ncurses_cfg.h
Diffstat (limited to 'lib/ncurses')
-rw-r--r-- | lib/ncurses/ncurses/Makefile | 5 | ||||
-rw-r--r-- | lib/ncurses/ncurses/ncurses_cfg.h | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/lib/ncurses/ncurses/Makefile b/lib/ncurses/ncurses/Makefile index 0abbac7..0769663 100644 --- a/lib/ncurses/ncurses/Makefile +++ b/lib/ncurses/ncurses/Makefile @@ -501,6 +501,7 @@ MAN= \ curs_termattrs.3 \ curs_termcap.3 \ curs_terminfo.3 \ + curs_threads.3 \ curs_touch.3 \ curs_trace.3 \ curs_util.3 \ @@ -845,6 +846,10 @@ MLINKS= ncurses.3 curses.3 \ curs_terminfo.3 vid_puts.3 \ curs_terminfo.3 vidattr.3 \ curs_terminfo.3 vidputs.3 \ + curs_threads.3 set_escdelay.3 \ + curs_threads.3 set_tabsize.3 \ + curs_threads.3 use_screen.3 \ + curs_threads.3 use_window.3 \ curs_touch.3 is_linetouched.3 \ curs_touch.3 is_wintouched.3 \ curs_touch.3 touchline.3 \ diff --git a/lib/ncurses/ncurses/ncurses_cfg.h b/lib/ncurses/ncurses/ncurses_cfg.h index dec984d..49d46fa 100644 --- a/lib/ncurses/ncurses/ncurses_cfg.h +++ b/lib/ncurses/ncurses/ncurses_cfg.h @@ -144,7 +144,7 @@ #define NCURSES_EXT_FUNCS 1 #define NCURSES_NO_PADDING 1 #define NCURSES_PATHSEP ':' -#define NCURSES_VERSION_STRING "5.6.20071222" +#define NCURSES_VERSION_STRING "5.6.20080209" #define NDEBUG 1 #define RETSIGTYPE void #define SIG_ATOMIC_T volatile sig_atomic_t @@ -164,15 +164,15 @@ #define USE_TERMCAP 1 #ifdef ENABLE_WIDEC #define USE_WIDEC_SUPPORT 1 -#define HAVE_PUTWC 1 #define HAVE_BTOWC 1 -#define HAVE_WCTOB 1 -#define HAVE_MBTOWC 1 -#define HAVE_WCTOMB 1 #define HAVE_MBLEN 1 #define HAVE_MBRLEN 1 #define HAVE_MBRTOWC 1 -#define NEED_WCHAR_H 1 +#define HAVE_MBTOWC 1 +#define HAVE_PUTWC 1 +#define HAVE_WCTOB 1 +#define HAVE_WCTOMB 1 +#define NEED_WCHAR_H 1 #endif #include <ncurses_def.h> |