diff options
author | 2014-05-29 18:15:21 +0000 | |
---|---|---|
committer | 2014-05-29 18:15:21 +0000 | |
commit | 4330b4eb2bdca07c49e54dd252ef17aa26756a1b (patch) | |
tree | da49366a6f632affd374e0b19083bbebc6a9a00d | |
parent | consistent braces (diff) | |
download | wireguard-openbsd-4330b4eb2bdca07c49e54dd252ef17aa26756a1b.tar.xz wireguard-openbsd-4330b4eb2bdca07c49e54dd252ef17aa26756a1b.zip |
define -DLIBRESSL_INTERNAL in here so we don't use nasties
ok deraadt@
-rw-r--r-- | usr.sbin/openssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index 5fcec87a32e..1cb079571fd 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.28 2014/04/25 04:10:26 jsing Exp $ +# $OpenBSD: Makefile,v 1.29 2014/05/29 18:15:21 beck Exp $ PROG= openssl LDADD= -lssl -lcrypto MAN1= openssl.1 CFLAGS+= -Wall -CFLAGS+= -DOPENSSL_NO_RC5 +CFLAGS+= -DOPENSSL_NO_RC5 -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 \ |