diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-06-01 06:40:35 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-06-01 06:40:35 +0000 |
commit | afff72ecd8c6a9de9c6e574b757c77815c65af5a (patch) | |
tree | c703d23e6bd797f4ddefc39166671c7c5721f7e0 /libexec/ftpd/Makefile | |
parent | e701e7338974e8487cc7c1c9f9086fc5618ae710 (diff) |
Support integrated tcp wrappers when in daemon mode.
Diffstat (limited to 'libexec/ftpd/Makefile')
-rw-r--r-- | libexec/ftpd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index f8b3dec41ab..53f513f4c0c 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 1997/04/19 21:26:20 millert Exp $ +# $OpenBSD: Makefile,v 1.11 1997/06/01 06:40:34 downsj Exp $ # $NetBSD: Makefile,v 1.13 1996/02/16 02:07:41 cgd Exp $ # @(#)Makefile 8.2 (Berkeley) 4/4/94 @@ -29,4 +29,10 @@ LDADD+= -lkrb -ldes DPADD+= ${LIBKRB} ${LIBKRB} .endif +.if (${TCP_WRAPPERS} == "yes") +CFLAGS+=-DTCPWRAPPERS +LDADD+= -lwrap +DPADD+= ${LIBWRAP} +.endif + .include <bsd.prog.mk> |