diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-27 15:25:14 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-27 15:25:14 +0000 |
commit | 5b85e29190e639e108d0cd3a937bd53d646052a8 (patch) | |
tree | f9bca11a18a07c61ad3ac04f9ba4eff830d34fc4 | |
parent | 703c1aa1e08aea916cf6b0c70e590a55578d75ba (diff) |
use ocurses since libtelnet has a getstr() function that conflicts with ncurses
-rw-r--r-- | usr.bin/telnet/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile index 229a71b1240..915b064950e 100644 --- a/usr.bin/telnet/Makefile +++ b/usr.bin/telnet/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 1998/07/24 00:11:01 millert Exp $ +# $OpenBSD: Makefile,v 1.8 1998/07/27 15:25:13 millert Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -37,10 +37,10 @@ PROG= telnet CFLAGS+=-DTERMCAP -DKLUDGELINEMODE -DUSE_TERMIO -DSKEY -Dunix -CFLAGS+=-DENV_HACK +CFLAGS+=-DENV_HACK -D_USE_OLD_CURSES_ CFLAGS+=-I${.CURDIR}/../../lib -LDADD+= -lcurses -ltelnet -DPADD= ${LIBCURSES} ${LIBTELNET} +LDADD+= -locurses -ltelnet +DPADD= ${LIBOLDCURSES} ${LIBTELNET} SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c telnet.c \ terminal.c tn3270.c utilities.c |