diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-12-05 10:18:48 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2025-12-05 10:24:58 +0000 |
| commit | 836a0d46320c18d83029bf138b630b6ce5ebe6ae (patch) | |
| tree | b67554eec8b95e5ee72e30683ba79ad96261fe85 | |
| parent | a0dd6022391aa33b035962d69965ef506cc46a20 (diff) | |
ncurses: readd "bsdpads"
During the import of ncurses 6.5 some bsd specifics configuration where
lost and reintroduce quickly after the import, unfortunatly there was a
typo in this fix which caused the "bsdpads" to not be enabled in
ncurses.
Fortunatly only very old programs may be affected by this change,
unfortunatly Nethack (in the ports tree is one of them.)
PR: 287358
MFC After: 3 days
| -rw-r--r-- | lib/ncurses/tinfo/ncurses_cfg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ncurses/tinfo/ncurses_cfg.h b/lib/ncurses/tinfo/ncurses_cfg.h index 33890f300310..e26aa49763f0 100644 --- a/lib/ncurses/tinfo/ncurses_cfg.h +++ b/lib/ncurses/tinfo/ncurses_cfg.h @@ -61,7 +61,7 @@ #define MIXEDCASE_FILENAMES 1 #define STDC_HEADERS 1 #define USE_GETCAP 1 -#define USE_BSD_TPUTS 1 +#define BSD_TPUTS 1 #define HAVE_BSD_CGETENT 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 |
