diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-17 01:31:22 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2003-05-17 01:31:22 +0000 |
commit | 208e8d0d131fd28b64be7ac6d65e4745fef390ee (patch) | |
tree | 31a0e3b85504cccb8fcb4c1c389a7f8aec3a26b1 /usr.bin/ssh | |
parent | 01179ed4a9a44d289f1795436c7c710f8df01d9b (diff) |
Don't link with unneeded kerberos libraries
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh/Makefile b/usr.bin/ssh/ssh/Makefile index cb4942af9ff..f4ac2e300cb 100644 --- a/usr.bin/ssh/ssh/Makefile +++ b/usr.bin/ssh/ssh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.44 2003/04/10 00:17:52 pvalchev Exp $ +# $OpenBSD: Makefile,v 1.45 2003/05/17 01:31:21 hin Exp $ .PATH: ${.CURDIR}/.. @@ -19,7 +19,7 @@ SRCS= ssh.c readconf.c clientloop.c sshtty.c \ .if (${KERBEROS5:L} == "yes") CFLAGS+= -DKRB5 -I${DESTDIR}/usr/include/kerberosV -LDADD+= -lkrb5 -lkafs -lkrb -lasn1 -lcom_err +LDADD+= -lkrb5 -lasn1 -lcom_err DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} .endif # KERBEROS5 diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 9e98dfd1f09..078d5c864fc 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.55 2003/05/14 02:15:48 markus Exp $ +# $OpenBSD: Makefile,v 1.56 2003/05/17 01:31:21 hin Exp $ .PATH: ${.CURDIR}/.. @@ -23,7 +23,7 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ .if (${KERBEROS5:L} == "yes") CFLAGS+=-DKRB5 -I${DESTDIR}/usr/include/kerberosV SRCS+= auth-krb5.c auth2-krb5.c -LDADD+= -lkrb5 -lkafs -lkrb -lasn1 -lcom_err +LDADD+= -lkrb5 -lasn1 -lcom_err DPADD+= ${LIBKRB5} ${LIBKAFS} ${LIBASN1} ${LIBCOM_ERR} .endif # KERBEROS5 |