summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguenther <>2014-07-27 23:46:51 +0000
committerguenther <>2014-07-27 23:46:51 +0000
commit3e4bd60e718f2c9a4ab3daff49e0462c7c557349 (patch)
tree4157e4a101bc998444ffc4d50dd098282e960164
parent155fbc115e08fe35c3363e1eec376f81c141a5f7 (diff)
downloadopenbsd-3e4bd60e718f2c9a4ab3daff49e0462c7c557349.tar.gz
openbsd-3e4bd60e718f2c9a4ab3daff49e0462c7c557349.tar.bz2
openbsd-3e4bd60e718f2c9a4ab3daff49e0462c7c557349.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 \