diff options
author | 2002-11-09 20:18:28 +0000 | |
---|---|---|
committer | 2002-11-09 20:18:28 +0000 | |
commit | 46ea73436346cbfedcd637fbe1116fddaa700c76 (patch) | |
tree | 36e177afa1d33b41079c1e258d1af47ae79278d8 | |
parent | remove references to unexistent manpages; miod ok. (diff) | |
download | wireguard-openbsd-46ea73436346cbfedcd637fbe1116fddaa700c76.tar.xz wireguard-openbsd-46ea73436346cbfedcd637fbe1116fddaa700c76.zip |
Recent addition of support for http redirect requires adding '-lutil'
to LDADD, and ${LIBUTIL} to DPADD.
ok fgsch@.
-rw-r--r-- | distrib/special/ftp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/special/ftp/Makefile b/distrib/special/ftp/Makefile index bbb68e415ad..7ff5fba1e9f 100644 --- a/distrib/special/ftp/Makefile +++ b/distrib/special/ftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1999/06/17 20:42:30 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2002/11/09 20:18:28 krw Exp $ # $NetBSD: Makefile,v 1.13 1997/08/18 10:20:13 lukem Exp $ # from: @(#)Makefile 8.2 (Berkeley) 4/3/94 @@ -19,8 +19,8 @@ SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ MAN= .PATH: ${.CURDIR}/../../../usr.bin/ftp -LDADD+= -lcurses -DPADD+= ${LIBCURSES} +LDADD+= -lcurses -lutil +DPADD+= ${LIBCURSES} ${LIBUTIL} #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes |