summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeck <>2014-05-29 18:15:21 +0000
committerbeck <>2014-05-29 18:15:21 +0000
commit753bdc7e67a642d8073b20adc8d20dc984cf6c59 (patch)
tree12315086902ab5c1e517e5f8ad0eac08b6b43310
parenteccf68c3e372817e5413e6d827b7eb1b614c15ef (diff)
downloadopenbsd-753bdc7e67a642d8073b20adc8d20dc984cf6c59.tar.gz
openbsd-753bdc7e67a642d8073b20adc8d20dc984cf6c59.tar.bz2
openbsd-753bdc7e67a642d8073b20adc8d20dc984cf6c59.zip
define -DLIBRESSL_INTERNAL in here so we don't use nasties
ok deraadt@
-rw-r--r--src/usr.sbin/openssl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile
index 5fcec87a32..1cb079571f 100644
--- a/src/usr.sbin/openssl/Makefile
+++ b/src/usr.sbin/openssl/Makefile
@@ -1,11 +1,11 @@
1# $OpenBSD: Makefile,v 1.28 2014/04/25 04:10:26 jsing Exp $ 1# $OpenBSD: Makefile,v 1.29 2014/05/29 18:15:21 beck Exp $
2 2
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
5MAN1= openssl.1 5MAN1= openssl.1
6 6
7CFLAGS+= -Wall 7CFLAGS+= -Wall
8CFLAGS+= -DOPENSSL_NO_RC5 8CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL
9 9
10SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ 10SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \
11 pkcs7.c crl2p7.c crl.c ca.c \ 11 pkcs7.c crl2p7.c crl.c ca.c \