diff options
| author | guenther <> | 2014-07-27 23:46:51 +0000 |
|---|---|---|
| committer | guenther <> | 2014-07-27 23:46:51 +0000 |
| commit | 3e4bd60e718f2c9a4ab3daff49e0462c7c557349 (patch) | |
| tree | 4157e4a101bc998444ffc4d50dd098282e960164 /src | |
| parent | 155fbc115e08fe35c3363e1eec376f81c141a5f7 (diff) | |
| download | openbsd-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@
Diffstat (limited to '')
| -rw-r--r-- | src/usr.sbin/openssl/Makefile | 5 |
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 | ||
| 3 | PROG= openssl | 3 | PROG= openssl |
| 4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
| 5 | DPADD= ${LIBSSL} ${LIBCRYPTO} | ||
| 5 | MAN1= openssl.1 | 6 | MAN1= openssl.1 |
| 6 | 7 | ||
| 7 | CFLAGS+= -Wall -Werror | 8 | CFLAGS+= -Wall -Werror |
| @@ -14,7 +15,7 @@ CFLAGS+= -Wtrigraphs | |||
| 14 | CFLAGS+= -Wuninitialized | 15 | CFLAGS+= -Wuninitialized |
| 15 | CFLAGS+= -Wunused | 16 | CFLAGS+= -Wunused |
| 16 | 17 | ||
| 17 | CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL | 18 | CFLAGS+= -DLIBRESSL_INTERNAL |
| 18 | 19 | ||
| 19 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ | 20 | SRCS= 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 \ |
