aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/bdes
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1994-09-07 07:16:52 +0000
committerPaul Traina <pst@FreeBSD.org>1994-09-07 07:16:52 +0000
commit21b4fe120d613cfe765b78380a70d7026e30a41e (patch)
tree3338026f496299ffb19b908a2e261fccfd04df47 /secure/usr.bin/bdes
parent7199b0911b9c7fa9df692dd1f234259afadfb1d0 (diff)
downloadsrc-21b4fe120d613cfe765b78380a70d7026e30a41e.tar.gz
src-21b4fe120d613cfe765b78380a70d7026e30a41e.zip
Remove static in front of declarations for des_setkey and des_cipher
so that linking against -lcrypt (-ldescrypt) will give us the good versions instead of the stubs in libc. (These changes need to be made to the non-US version of libdescrypt too!) Allow building and support for bdes program. A bit more work still needs to be done on secure telnet. Submitted by: pst
Notes
Notes: svn path=/head/; revision=2536
Diffstat (limited to 'secure/usr.bin/bdes')
-rw-r--r--secure/usr.bin/bdes/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/secure/usr.bin/bdes/Makefile b/secure/usr.bin/bdes/Makefile
index 9166f721c4b3..8aa71d45e815 100644
--- a/secure/usr.bin/bdes/Makefile
+++ b/secure/usr.bin/bdes/Makefile
@@ -1,5 +1,10 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
+# $Id$
PROG= bdes
+SRCS= bdes.c
+
+LDADD+= -lcrypt
+DPADD+= /usr/lib/libcrypt.a
.include <bsd.prog.mk>