diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
commit | 7c5db15603132b9f94a11af57c5a56b205c0eaff (patch) | |
tree | 47384a9485fd95c587188df50a275d708da17fa4 /usr.bin/telnet/Makefile | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'usr.bin/telnet/Makefile')
-rw-r--r-- | usr.bin/telnet/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile index a8db8d78724..229a71b1240 100644 --- a/usr.bin/telnet/Makefile +++ b/usr.bin/telnet/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1998/03/12 04:57:26 art Exp $ +# $OpenBSD: Makefile,v 1.7 1998/07/24 00:11:01 millert Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -39,8 +39,8 @@ PROG= telnet CFLAGS+=-DTERMCAP -DKLUDGELINEMODE -DUSE_TERMIO -DSKEY -Dunix CFLAGS+=-DENV_HACK CFLAGS+=-I${.CURDIR}/../../lib -LDADD+= -ltermcap -ltelnet -DPADD= ${LIBTERMCAP} ${LIBTELNET} +LDADD+= -lcurses -ltelnet +DPADD= ${LIBCURSES} ${LIBTELNET} SRCS= authenc.c commands.c main.c network.c ring.c sys_bsd.c telnet.c \ terminal.c tn3270.c utilities.c |