1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-11 14:10:34 +00:00

Use libcrypto inst=ead if libdes.

This commit is contained in:
Mark Murray 2000-02-24 21:21:15 +00:00
parent f0ad5f0b62
commit 96ccf174ec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57454
2 changed files with 3 additions and 3 deletions

View File

@ -7,14 +7,14 @@ CFLAGS+=-DBINDIR=${BINDIR}
.if exists(${DESTDIR}${LIBDIR}/libkrb.a) && defined(MAKE_KERBEROS4)
SRCS+= krcmd.c kcmd.c rcmd_util.c
DPADD= ${LIBUTIL} ${LIBKRB} ${LIBDES}
DPADD= ${LIBUTIL} ${LIBKRB} ${LIBCRYPTO}
CFLAGS+=-DKERBEROS -DCRYPT -DHAVE_CONFIG_H \
-I${.CURDIR}/../../kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/include \
-I${.CURDIR}/../../crypto/kerberosIV/lib/roken \
-I${.CURDIR}/../../crypto/kerberosIV/appl/bsd \
-I${.CURDIR}
LDADD= -lutil -lkrb -ldes
LDADD= -lutil -lkrb -lcrypto
DISTRIBUTION= krb4
.PATH: ${.CURDIR}/../../crypto/kerberosIV/appl/bsd
.endif

View File

@ -72,7 +72,7 @@ static const char rcsid[] =
#include "extern.h"
#ifdef KERBEROS
#include <des.h>
#include <openssl/des.h>
#include <krb.h>
#include "bsd_locl.h"