aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/bdes
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1994-09-12 17:27:55 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1994-09-12 17:27:55 +0000
commit95fb75febe9299767acbdbe8de4db8bfda9a74b0 (patch)
tree9bd7aa21b5f4849689a9a3758f187a98cbd4994d /secure/usr.bin/bdes
parent3bf56f5e44524e49a32c60387d40f87ac9db4c23 (diff)
downloadsrc-95fb75febe9299767acbdbe8de4db8bfda9a74b0.tar.gz
src-95fb75febe9299767acbdbe8de4db8bfda9a74b0.zip
Add libcipher.a: libcrypt exports only crypt() but not des_setkey()
which is in libcipher.a
Notes
Notes: svn path=/head/; revision=2695
Diffstat (limited to 'secure/usr.bin/bdes')
-rw-r--r--secure/usr.bin/bdes/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/secure/usr.bin/bdes/Makefile b/secure/usr.bin/bdes/Makefile
index 8aa71d45e815..0cb9f7c13e89 100644
--- a/secure/usr.bin/bdes/Makefile
+++ b/secure/usr.bin/bdes/Makefile
@@ -1,10 +1,10 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
-# $Id$
+# $Id: Makefile,v 1.2 1994/09/07 07:16:52 pst Exp $
PROG= bdes
SRCS= bdes.c
-LDADD+= -lcrypt
-DPADD+= /usr/lib/libcrypt.a
+LDADD+= -lcrypt -lcipher
+DPADD+= /usr/lib/libcrypt.a /usr/lib/libcipher.a
.include <bsd.prog.mk>