summaryrefslogtreecommitdiff
path: root/bin/rcp/Makefile
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1995-12-16 22:20:39 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1995-12-16 22:20:39 +0000
commit14a9e0b27dc4374bb21711ddfd2c319471498493 (patch)
tree3f9b41aa80386aa9df94540971211fe446c61555 /bin/rcp/Makefile
parentec46b838472184755608a409e432009edbfb979a (diff)
Make it possible to build without SKEY support
Add support for building with kerberosIV
Diffstat (limited to 'bin/rcp/Makefile')
-rw-r--r--bin/rcp/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/rcp/Makefile b/bin/rcp/Makefile
index 3658d5deab5..b6ca5655cfe 100644
--- a/bin/rcp/Makefile
+++ b/bin/rcp/Makefile
@@ -7,10 +7,12 @@ BINOWN= root
BINMODE=4555
#INSTALLFLAGS=-fschg
+.include <bsd.own.mk> # For KERBEROS
+
.if defined(KERBEROS)
.PATH: ${.CURDIR}/../../usr.bin/rlogin
SRCS+= krcmd.c kcmd.c
-CFLAGS+=-DKERBEROS -DCRYPT
+CFLAGS+=-DKERBEROS
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif