mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Use libcrypto inst=ead if libdes.
This commit is contained in:
parent
f0ad5f0b62
commit
96ccf174ec
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue