diff options
author | beck <> | 2014-05-29 18:15:21 +0000 |
---|---|---|
committer | beck <> | 2014-05-29 18:15:21 +0000 |
commit | 753bdc7e67a642d8073b20adc8d20dc984cf6c59 (patch) | |
tree | 12315086902ab5c1e517e5f8ad0eac08b6b43310 | |
parent | eccf68c3e372817e5413e6d827b7eb1b614c15ef (diff) | |
download | openbsd-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/Makefile | 4 |
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 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
5 | MAN1= openssl.1 | 5 | MAN1= openssl.1 |
6 | 6 | ||
7 | CFLAGS+= -Wall | 7 | CFLAGS+= -Wall |
8 | CFLAGS+= -DOPENSSL_NO_RC5 | 8 | CFLAGS+= -DOPENSSL_NO_RC5 -DLIBRESSL_INTERNAL |
9 | 9 | ||
10 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ | 10 | SRCS= 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 \ |