From 0e3a946410ebef371ba2b17acf449f5fb9ff53ed Mon Sep 17 00:00:00 2001 From: guenther <> Date: Sun, 27 Jul 2014 23:46:51 +0000 Subject: Link dependencies on libssl and libcrypto were missing. OPENSSL_NO_RC5 is #defined in the #includes, so it's not needed here. ok deraadt@ --- src/usr.sbin/openssl/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile index 3bfd20117d..1d149f25d8 100644 --- a/src/usr.sbin/openssl/Makefile +++ b/src/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 \ -- cgit v1.2.3-55-g6feb