aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump/Makefile
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2000-02-24 21:01:54 +0000
committerMark Murray <markm@FreeBSD.org>2000-02-24 21:01:54 +0000
commitf499a396213810b9b6e9e8a2435e53f1380df8ad (patch)
treea5b2726eb014f44831588a030daba842e19062f4 /sbin/dump/Makefile
parentfea326b4d1dbc942ee05c62361b5499c20eb74e3 (diff)
downloadsrc-f499a396213810b9b6e9e8a2435e53f1380df8ad.tar.gz
src-f499a396213810b9b6e9e8a2435e53f1380df8ad.zip
Use libcrypto instead of libdes.
Notes
Notes: svn path=/head/; revision=57449
Diffstat (limited to 'sbin/dump/Makefile')
-rw-r--r--sbin/dump/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/dump/Makefile b/sbin/dump/Makefile
index 4c06df6d8c97..b2e0e08c68f1 100644
--- a/sbin/dump/Makefile
+++ b/sbin/dump/Makefile
@@ -26,7 +26,8 @@ MLINKS+=dump.8 rdump.8
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
SRCS+= krcmd.c kcmd.c rcmd_util.c
-LDADD+= -lkrb -ldes
+DPADD= ${LIBKRB} ${LIBCRYPTO}
+LDADD+= -lkrb -lcrypto
CFLAGS+=-DKERBEROS -DHAVE_CONFIG_H \
-I${.CURDIR}/../../kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/include \