diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-14 17:34:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-14 17:34:25 +0000 |
commit | 24c993d46ca2f888f6be6baf256bab1d17bdffa0 (patch) | |
tree | e26f0f93dd5cd7dc09fec09407622a1ba0708348 /usr.bin/window/Makefile | |
parent | bc8cbbd687d0349dcd8509123625f8e894087662 (diff) |
o link with -ocurses for now since window does not work properly with ncurses
o use mkdtemp(), not mktemp + mkdir in TERMINFO support
o correct program paths for TERMINFO support
o use the curses unctrl() function instead of a private one
Diffstat (limited to 'usr.bin/window/Makefile')
-rw-r--r-- | usr.bin/window/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/window/Makefile b/usr.bin/window/Makefile index 9c56e0e50d5..201e77f8e39 100644 --- a/usr.bin/window/Makefile +++ b/usr.bin/window/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1998/07/24 00:11:09 millert Exp $ +# $OpenBSD: Makefile,v 1.7 1999/11/14 17:34:24 millert Exp $ PROG= window SRCS= char.c cmd.c cmd1.c cmd2.c cmd3.c cmd4.c cmd5.c cmd6.c cmd7.c \ @@ -15,7 +15,8 @@ SRCS= char.c cmd.c cmd1.c cmd2.c cmd3.c cmd4.c cmd5.c cmd6.c cmd7.c \ wwterminfo.c wwtty.c wwunframe.c wwupdate.c wwwrite.c xx.c xxflush.c \ compress.c MAN= window.1 -DPADD= ${LIBCURSES} -LDADD= -lcurses +DPADD= ${LIBOCURSES} +LDADD= -locurses +CFLAGS+=-D_USE_OLD_CURSES_ .include <bsd.prog.mk> |