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 /libexec | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/telnetd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile index de93599430a..ee23868442d 100644 --- a/libexec/telnetd/Makefile +++ b/libexec/telnetd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 1998/05/15 02:22:43 art Exp $ +# $OpenBSD: Makefile,v 1.6 1998/07/24 00:10:50 millert Exp $ # from: @(#)Makefile 8.2 (Berkeley) 12/15/93 # $NetBSD: Makefile,v 1.6 1996/02/24 01:22:12 jtk Exp $ @@ -9,7 +9,7 @@ CFLAGS+=-DOLD_ENVIRON -DENV_HACK -I${.CURDIR} -Wall -Wno-unused SRCS= authenc.c global.c slc.c state.c sys_term.c telnetd.c \ termstat.c utility.c DPADD= ${LIBUTIL} ${LIBTERM} ${LIBTELNET} -LDADD+= -lutil -ltermcap -ltelnet +LDADD+= -lutil -lcurses -ltelnet MAN= telnetd.8 .include <bsd.own.mk> # for KERBEROS |