summaryrefslogtreecommitdiff
path: root/libexec/telnetd
diff options
context:
space:
mode:
authorlha <lha@NetBSD.org>2003-08-05 10:45:42 +0000
committerlha <lha@NetBSD.org>2003-08-05 10:45:42 +0000
commit0fe8a8550fd13fbfbddcea4c88e1ee6d02c2f0fd (patch)
tree15170df3bcd919144e546e9f2c5dc2084b845cbf /libexec/telnetd
parent9b8239809b2b46fac393b2a52de976e3eef3fa31 (diff)
libkrb depend on libdes
libkrb5 depends on libasn1 and libcrypto
Diffstat (limited to 'libexec/telnetd')
-rw-r--r--libexec/telnetd/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile
index b9b31e3573c..f76c6f2517d 100644
--- a/libexec/telnetd/Makefile
+++ b/libexec/telnetd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.36 2003/07/23 08:01:30 itojun Exp $
+# $NetBSD: Makefile,v 1.37 2003/08/05 10:45:43 lha Exp $
# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
.include <bsd.own.mk>
@@ -25,20 +25,20 @@ CPPFLAGS+=-DAUTHENTICATION -DENCRYPTION
CPPFLAGS+=-I${DESTDIR}/usr/include/krb5
CPPFLAGS+=-DKRB5
-LDADD+= -lkrb5
-DPADD+= ${LIBKRB5}
+LDADD+= -lkrb5 -lasn1 -lcrypto
+DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO}
.endif
.if (${USE_KERBEROS4} != "no")
CPPFLAGS+=-DKRB4
-LDADD+= -lkrb
-DPADD+= ${LIBKRB}
+LDADD+= -lkrb -ldes
+DPADD+= ${LIBKRB} ${LIBDES}
.endif
VERS!= cd ${NETBSDSRCDIR}/lib/libvers && ${PRINTOBJDIR}
-LDADD+= -lcrypto -lasn1 -lcom_err -L${VERS} -lvers -lroken
-DPADD+= ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
+LDADD+= -lcom_err -L${VERS} -lvers -lroken
+DPADD+= ${LIBCOM_ERR} ${LIBROKEN}
.endif