summaryrefslogtreecommitdiff
path: root/libexec/rlogind
diff options
context:
space:
mode:
authorGeoff Rehmet <csgr@FreeBSD.org>1994-09-29 13:06:54 +0000
committerGeoff Rehmet <csgr@FreeBSD.org>1994-09-29 13:06:54 +0000
commitc368d11dd254623bef4a57867d286025fc877b7c (patch)
treed7768b90fa6e2ae30b1a6c769ed4e2de71513bb8 /libexec/rlogind
parentcf843099195b87fb3ef096f059cd9f72bf871bfd (diff)
Notes
Diffstat (limited to 'libexec/rlogind')
-rw-r--r--libexec/rlogind/Makefile15
1 files changed, 10 insertions, 5 deletions
diff --git a/libexec/rlogind/Makefile b/libexec/rlogind/Makefile
index 7cc189a6be77..c3eb695b5eac 100644
--- a/libexec/rlogind/Makefile
+++ b/libexec/rlogind/Makefile
@@ -1,11 +1,16 @@
# @(#)Makefile 8.1 (Berkeley) 6/4/93
PROG= rlogind
-#CFLAGS+=-DKERBEROS -DCRYPT
-SRCS= rlogind.c #des_rw.c
+SRCS= rlogind.c
MAN8= rlogind.8
-DPADD= ${LIBUTIL} #${LIBKRB} ${LIBDES}
-LDADD= -lutil #-lkrb -ldes
-.PATH: ${.CURDIR}/../../usr.bin/rlogin
+DPADD= ${LIBUTIL}
+LDADD= -lutil
+
+.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \
+ || defined(MAKE_EBONES))
+CFLAGS+=-DKERBEROS -DCRYPT
+DPADD= ${LIBKRB} ${LIBDES}
+LDADD+= -lkrb -ldes
+.endif
.include <bsd.prog.mk>