summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguenther <>2014-07-27 23:46:51 +0000
committerguenther <>2014-07-27 23:46:51 +0000
commit0e3a946410ebef371ba2b17acf449f5fb9ff53ed (patch)
tree4157e4a101bc998444ffc4d50dd098282e960164
parent28de2446d169debe4b0ef9e56e0246232e6694d0 (diff)
downloadopenbsd-0e3a946410ebef371ba2b17acf449f5fb9ff53ed.tar.gz
openbsd-0e3a946410ebef371ba2b17acf449f5fb9ff53ed.tar.bz2
openbsd-0e3a946410ebef371ba2b17acf449f5fb9ff53ed.zip
Link dependencies on libssl and libcrypto were missing.
OPENSSL_NO_RC5 is #defined in the #includes, so it's not needed here. ok deraadt@
-rw-r--r--src/usr.sbin/openssl/Makefile5
1 files changed, 3 insertions, 2 deletions
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 @@
1# $OpenBSD: Makefile,v 1.30 2014/07/02 20:37:06 miod Exp $ 1# $OpenBSD: Makefile,v 1.31 2014/07/27 23:46:51 guenther Exp $
2 2
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
5DPADD= ${LIBSSL} ${LIBCRYPTO}
5MAN1= openssl.1 6MAN1= openssl.1
6 7
7CFLAGS+= -Wall -Werror 8CFLAGS+= -Wall -Werror
@@ -14,7 +15,7 @@ CFLAGS+= -Wtrigraphs
14CFLAGS+= -Wuninitialized 15CFLAGS+= -Wuninitialized
15CFLAGS+= -Wunused 16CFLAGS+= -Wunused
16 17
17CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL 18CFLAGS+= -DLIBRESSL_INTERNAL
18 19
19SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ 20SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \
20 pkcs7.c crl2p7.c crl.c ca.c \ 21 pkcs7.c crl2p7.c crl.c ca.c \