diff options
author | naddy <> | 2013-07-22 14:40:45 +0000 |
---|---|---|
committer | naddy <> | 2013-07-22 14:40:45 +0000 |
commit | e42dc0fc0df7342da984314825d9779552e0a03d (patch) | |
tree | d079150f095e0f82657e382ed39c34786f5214c8 /src | |
parent | d96ef483ff67ca9366cadd8244006e270f6fdae5 (diff) | |
download | openbsd-e42dc0fc0df7342da984314825d9779552e0a03d.tar.gz openbsd-e42dc0fc0df7342da984314825d9779552e0a03d.tar.bz2 openbsd-e42dc0fc0df7342da984314825d9779552e0a03d.zip |
we now have IDEA and MDC2 in libcrypto, so don't disable them in openssl(1)
ok djm@
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.sbin/openssl/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile index a3948a7ae0..b7bdf0e1f9 100644 --- a/src/usr.sbin/openssl/Makefile +++ b/src/usr.sbin/openssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.20 2012/07/11 11:02:48 sthen Exp $ | 1 | # $OpenBSD: Makefile,v 1.21 2013/07/22 14:40:45 naddy Exp $ |
2 | 2 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
@@ -9,8 +9,7 @@ SSLEAYDIST= lib/libssl/src | |||
9 | SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps | 9 | SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps |
10 | SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} | 10 | SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} |
11 | 11 | ||
12 | CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 | 12 | CFLAGS+= -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 |
13 | CFLAGS+= -DOPENSSL_NO_MDC2 | ||
14 | CFLAGS+= -DOPENSSL_NO_SSL2 | 13 | CFLAGS+= -DOPENSSL_NO_SSL2 |
15 | CFLAGS+= -I${SSLEAY_SRC_TOP} | 14 | CFLAGS+= -I${SSLEAY_SRC_TOP} |
16 | 15 | ||