diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 00:32:27 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 00:32:27 +0000 |
commit | b3bc350baaf6590847ede1332b9f8cea6829b31f (patch) | |
tree | 94b8d63c51b9c13470d4926bc8a88b3cf25682a0 /libexec/rshd | |
parent | 24ab75c075c5c46dc01228b3956e14d1bf505037 (diff) | |
download | FreeBSD-src-b3bc350baaf6590847ede1332b9f8cea6829b31f.zip FreeBSD-src-b3bc350baaf6590847ede1332b9f8cea6829b31f.tar.gz |
Add -lcrypt when building kerberos.
Diffstat (limited to 'libexec/rshd')
-rw-r--r-- | libexec/rshd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index bcae68e..d9bfb79 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id$ +# $Id: Makefile,v 1.9 1998/08/06 21:36:25 markm Exp $ PROG= rshd SRCS= rshd.c @@ -7,8 +7,8 @@ MAN8= rshd.8 .if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4) CFLAGS+=-DKERBEROS -DCRYPT -DPADD= ${LIBKRB} ${LIBDES} -LDADD= -lkrb -ldes +DPADD= ${LIBKRB} ${LIBDES} ${LIBCRYPT} +LDADD= -lkrb -ldes -lcrypt DISTRIBUTION= krb .endif |