diff options
author | ru <ru@FreeBSD.org> | 2003-07-02 23:38:42 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-07-02 23:38:42 +0000 |
commit | c8976315a3648e10b259958e291b475959c35ba6 (patch) | |
tree | 58c76140afac91dc9b48332bba7307ad3f218dcf /secure | |
parent | 62009084e8225b66b5df1411fc6757f40c0c620a (diff) | |
download | FreeBSD-src-c8976315a3648e10b259958e291b475959c35ba6.zip FreeBSD-src-c8976315a3648e10b259958e291b475959c35ba6.tar.gz |
Fixed "make checkdpadd".
OK'ed 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 d79f44f..e891b6b 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -12,8 +12,8 @@ SRCS= ssh.c authfd.c hostfile.c msg.c readconf.c clientloop.c sshtty.c \ .if !defined(NO_KERBEROS) CFLAGS+= -DKRB5 -DHEIMDAL -LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/libroken -lroken -lcrypt -DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD} ${LIBCRYPT} +LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -lroken -lcrypt +DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN} ${LIBCRYPT} .endif .if defined(X11BASE) diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index dc10924..0f2bc2a 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -19,8 +19,8 @@ CFLAGS+=-I${SSHDIR} .if !defined(NO_KERBEROS) CFLAGS+= -DKRB5 -DHEIMDAL SRCS+= auth-krb5.c -LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -L${.OBJDIR}/../../../kerberos5/lib/libroken -lroken -DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD} +LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -lroken +DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN} .endif LDADD+= -lopie -lmd |