diff options
| author | christos <christos@NetBSD.org> | 2020-03-27 15:11:57 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2020-03-27 15:11:57 +0000 |
| commit | 159f0931d86b1cae674aee26629fbcace04e2279 (patch) | |
| tree | 4dc3acae35cb1465a95cfe2003deac523eed7989 /share/terminfo | |
| parent | 68938208ef02cb9fb5e382368d390bceb3230bd3 (diff) | |
As described in tech-userlevel:
- Modify the writing code to only write entries in the new
format for the terminal descriptions that require it.
- Store new format entries as <name>@v3
- Store old format entries with clamped values as <name> for
backwards compatibility
- Lookup first <name>@v3 and then <name> if that is not found.
- Don't create terminfo2 anymore; old programs keep working with
clamped entries, and new programs be able to use the wide
fields with using the original db file.
Diffstat (limited to 'share/terminfo')
| -rw-r--r-- | share/terminfo/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/terminfo/Makefile b/share/terminfo/Makefile index 74a614fc09d..fc6ce6888c0 100644 --- a/share/terminfo/Makefile +++ b/share/terminfo/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.4 2020/03/13 15:19:25 roy Exp $ +# $NetBSD: Makefile,v 1.5 2020/03/27 15:11:57 christos Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/8/93 -CLEANFILES= terminfo2.cdb -realall: terminfo2.cdb -FILES=terminfo2.cdb terminfo +CLEANFILES= terminfo.cdb +realall: terminfo.cdb +FILES=terminfo.cdb terminfo FILESDIR=${BINDIR}/misc -terminfo2.cdb: terminfo ${TOOL_TIC} +terminfo.cdb: terminfo ${TOOL_TIC} ${_MKTARGET_CREATE} ${TOOL_TIC} -ax -o ${.TARGET} "${.CURDIR}/terminfo" |
