mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Add libcipher.a: libcrypt exports only crypt() but not des_setkey()
which is in libcipher.a
This commit is contained in:
parent
3bf56f5e44
commit
95fb75febe
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2695
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue