diff options
author | markm <markm@FreeBSD.org> | 1997-10-24 16:27:46 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-10-24 16:27:46 +0000 |
commit | 4e8a2ab3a2d274dc4bba7f09f100a400a718a365 (patch) | |
tree | a861189a2444c07b6a3d66be415b679257033545 /kerberosIV | |
parent | f784e3f832d3ac2c080c32fbe57d89a0e5c7cbc4 (diff) | |
download | FreeBSD-src-4e8a2ab3a2d274dc4bba7f09f100a400a718a365.zip FreeBSD-src-4e8a2ab3a2d274dc4bba7f09f100a400a718a365.tar.gz |
Link this against -lcrypt. In the case where the user has no key available
on the keyserver, the local kinit will blow chunks when it tries a
crypt(3) and finds it unavailable.
Diffstat (limited to 'kerberosIV')
-rw-r--r-- | kerberosIV/usr.bin/kinit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kerberosIV/usr.bin/kinit/Makefile b/kerberosIV/usr.bin/kinit/Makefile index 3b1d905..b32f019 100644 --- a/kerberosIV/usr.bin/kinit/Makefile +++ b/kerberosIV/usr.bin/kinit/Makefile @@ -10,8 +10,8 @@ CFLAGS+= -I${KRB4DIR}/include \ -I${KRB4DIR}/lib/krb \ -I${KRB4DIR}/kuser LDADD= -L${ROKENOBJDIR} -lroken \ - -L${KRBOBJDIR} -lkrb -ldes -DPADD= ${LIBROKEN} ${LIBKRB} ${LIBDES} + -L${KRBOBJDIR} -lkrb -ldes -lcrypt +DPADD= ${LIBROKEN} ${LIBKRB} ${LIBDES} ${LIBCRYPT} .include <bsd.prog.mk> |