View | Details | Raw Unified | Return to bug 20881
Collapse All | Expand All

(-)contrib/bind/lib/dst/eay_dss_link.c (-4 / +4 lines)
Lines 37-46 Link Here
37
37
38
#include "dst_internal.h"
38
#include "dst_internal.h"
39
39
40
#include "crypto.h"
40
#include <openssl/crypto.h>
41
#include "bn.h"
41
#include <openssl/bn.h>
42
#include "dsa.h"
42
#include <openssl/dsa.h>
43
#include "sha.h"
43
#include <openssl/sha.h>
44
44
45
#include "port_after.h"
45
#include "port_after.h"
46
46
(-)lib/libbind/Makefile (-1 / +1 lines)
Lines 69-75 Link Here
69
.endif
69
.endif
70
70
71
.PATH:	${BIND_DIR}/lib/dst
71
.PATH:	${BIND_DIR}/lib/dst
72
CFLAGS+=-DHMAC_MD5 -DUSE_MD5
72
CFLAGS+=-DHMAC_MD5 -DUSE_MD5 -DEAY_DSS
73
SRCS+=	dst_api.c prandom.c rsaref_link.c support.c bsafe_link.c \
73
SRCS+=	dst_api.c prandom.c rsaref_link.c support.c bsafe_link.c \
74
	cylink_link.c hmac_link.c md5_dgst.c eay_dss_link.c
74
	cylink_link.c hmac_link.c md5_dgst.c eay_dss_link.c
75
75
(-)usr.sbin/named/Makefile.inc (-2 / +2 lines)
Lines 31-38 Link Here
31
.endif
31
.endif
32
LIBBIND:=	${LIBBINDDIR}/libbind.a
32
LIBBIND:=	${LIBBINDDIR}/libbind.a
33
33
34
DPADD+=		${LIBBIND}
34
DPADD+=		${LIBBIND} ${LIBCRYPTO}
35
LDADD+=		${LIBBIND}
35
LDADD+=		${LIBBIND} -lcrypto
36
36
37
CLEANFILES+=	tmp_version.c pathnames.h
37
CLEANFILES+=	tmp_version.c pathnames.h
38
CFLAGS+=	-I.
38
CFLAGS+=	-I.

Return to bug 20881