diff options
Diffstat (limited to 'usr.bin/ftp/Makefile')
-rw-r--r-- | usr.bin/ftp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index d43c32af5cc..2f1dc3a49d4 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2000/09/07 01:57:35 todd Exp $ +# $OpenBSD: Makefile,v 1.19 2002/11/08 03:30:17 fgsch Exp $ # Define SMALL to disable command line editing #CFLAGS+=-DSMALL @@ -17,8 +17,8 @@ SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ CPPFLAGS+= -DINET6 -LDADD+= -ledit -lcurses -DPADD+= ${LIBEDIT} ${LIBCURSES} +LDADD+= -ledit -lcurses -lutil +DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes |