diff options
author | 1998-07-25 19:27:37 +0000 | |
---|---|---|
committer | 1998-07-25 19:27:37 +0000 | |
commit | 1f3b1eac16fc0c9d46b1e6fbdc420a5de88dfffd (patch) | |
tree | 4d12320ba1f276efa176a2aaf603822b49a0d294 | |
parent | fix spelling; aaron@ug.cs.dal.ca (diff) | |
download | wireguard-openbsd-1f3b1eac16fc0c9d46b1e6fbdc420a5de88dfffd.tar.xz wireguard-openbsd-1f3b1eac16fc0c9d46b1e6fbdc420a5de88dfffd.zip |
link with old curses for now, ncurses tgetent does not fill in the buffer
-rw-r--r-- | usr.bin/tset/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tset/Makefile b/usr.bin/tset/Makefile index 33c4125b150..4529cd029e3 100644 --- a/usr.bin/tset/Makefile +++ b/usr.bin/tset/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.4 1998/07/24 00:11:06 millert Exp $ +# $OpenBSD: Makefile,v 1.5 1998/07/25 19:27:37 millert Exp $ PROG= tset SRCS= map.c misc.c set.c term.c tset.c wrterm.c -DPADD= ${LIBCURSES} -LDADD= -lcurses +DPADD= ${LIBOLDCURSES} +LDADD= -locurses LINKS= ${BINDIR}/tset ${BINDIR}/reset MLINKS= tset.1 reset.1 |