From 401a0294274297025dd0325ab7d2342341de0e5d Mon Sep 17 00:00:00 2001 From: guenther Date: Sun, 27 Jul 2014 23:46:51 +0000 Subject: [PATCH] Link dependencies on libssl and libcrypto were missing. OPENSSL_NO_RC5 is #defined in the #includes, so it's not needed here. ok deraadt@ --- usr.sbin/openssl/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index 3bfd20117dc..1d149f25d8b 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -1,7 +1,8 @@ -# $OpenBSD: Makefile,v 1.30 2014/07/02 20:37:06 miod Exp $ +# $OpenBSD: Makefile,v 1.31 2014/07/27 23:46:51 guenther Exp $ PROG= openssl LDADD= -lssl -lcrypto +DPADD= ${LIBSSL} ${LIBCRYPTO} MAN1= openssl.1 CFLAGS+= -Wall -Werror @@ -14,7 +15,7 @@ CFLAGS+= -Wtrigraphs CFLAGS+= -Wuninitialized CFLAGS+= -Wunused -CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL +CFLAGS+= -DLIBRESSL_INTERNAL SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ pkcs7.c crl2p7.c crl.c ca.c \ -- 2.20.1