summaryrefslogtreecommitdiff
path: root/usr.bin/ftp
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-24 00:11:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-24 00:11:12 +0000
commit7c5db15603132b9f94a11af57c5a56b205c0eaff (patch)
tree47384a9485fd95c587188df50a275d708da17fa4 /usr.bin/ftp
parent8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff)
-lcurses, not termcap/termlib
Diffstat (limited to 'usr.bin/ftp')
-rw-r--r--usr.bin/ftp/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile
index 813d109deb9..b8917deac29 100644
--- a/usr.bin/ftp/Makefile
+++ b/usr.bin/ftp/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.14 1997/10/02 04:22:39 imp Exp $
+# $OpenBSD: Makefile,v 1.15 1998/07/24 00:10:54 millert Exp $
# Define SMALL to disable command line editing
#CFLAGS+=-DSMALL
@@ -15,8 +15,8 @@ PROG= ftp
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
stringlist.c util.c
-LDADD+= -ledit -ltermcap
-DPADD+= ${LIBEDIT} ${LIBTERMCAP}
+LDADD+= -ledit -lcurses
+DPADD+= ${LIBEDIT} ${LIBCURSES}
#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes