diff options
author | jhay <jhay@FreeBSD.org> | 2000-03-03 20:34:05 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 2000-03-03 20:34:05 +0000 |
commit | 9e73fea4132df7cfcdd7f5c74243de1a16ffd453 (patch) | |
tree | 3fd4c4712c9c5b0935771ebc947d1e9005b45e06 /secure | |
parent | febc9c1096992ef1e42d769f4db90c1e56d71ba2 (diff) | |
download | FreeBSD-src-9e73fea4132df7cfcdd7f5c74243de1a16ffd453.zip FreeBSD-src-9e73fea4132df7cfcdd7f5c74243de1a16ffd453.tar.gz |
MFI: Make ssh and sshd link in the krb5 part of make release.
Reviewed by: markm
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.bin/ssh/Makefile | 4 | ||||
-rw-r--r-- | secure/usr.sbin/sshd/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/secure/usr.bin/ssh/Makefile b/secure/usr.bin/ssh/Makefile index faef668..710d4fb 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -29,8 +29,8 @@ DPADD+= ${LIBKRB} ${LIBCOM_ERR} ((${MAKE_KERBEROS5} == "yes") || (${MAKE_KERBEROS5} == "YES")) DISTRIBUTION=krb5 CFLAGS+= -DKRB5 -LDADD+= -lkrb5 -lkafs -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/libroken -lroken -DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBKAFS} ${LIBASN1} ${LIBMD} +LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/libroken -lroken -lcrypt +DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD} ${LIBCRYPT} .endif # MAKE_KERBEROS5 .include <bsd.prog.mk> diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 47f1349..8ac914d 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -31,8 +31,8 @@ DPADD+= ${LIBKRB} ${LIBCOM_ERR} DISTRIBUTION=krb5 CFLAGS+= -DKRB5 SRCS+= auth-krb5.c -LDADD+= -lkrb5 -lkafs -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/libroken -lroken -DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBKAFS} ${LIBASN1} ${LIBMD} +LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/libroken -lroken +DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD} .endif # MAKE_KERBEROS5 .include <bsd.prog.mk> |