diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-26 11:31:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-26 11:31:15 +0000 |
commit | 234d05ef74b052ef7219feb3856f44eadd6b1222 (patch) | |
tree | 6556fd9808fae44888092628fc89f113f62ccc1d /usr.sbin/ftp-proxy | |
parent | 9803ce3cb86480ff23d56277964211ae014fd505 (diff) |
repair missing DPADD requests
Diffstat (limited to 'usr.sbin/ftp-proxy')
-rw-r--r-- | usr.sbin/ftp-proxy/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ftp-proxy/Makefile b/usr.sbin/ftp-proxy/Makefile index bc56bdfe7fa..9541b955e7f 100644 --- a/usr.sbin/ftp-proxy/Makefile +++ b/usr.sbin/ftp-proxy/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2005/06/07 14:12:07 camield Exp $ +# $OpenBSD: Makefile,v 1.3 2006/11/26 11:31:13 deraadt Exp $ PROG= ftp-proxy SRCS= ftp-proxy.c filter.c @@ -8,5 +8,6 @@ CFLAGS+= -I${.CURDIR} CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \ -Wno-uninitialized LDADD+= -levent +DPADD+= ${LIBEVENT} .include <bsd.prog.mk> |