diff options
author | miod <> | 2014-04-15 20:55:42 +0000 |
---|---|---|
committer | miod <> | 2014-04-15 20:55:42 +0000 |
commit | ffff174436807ddf0bb93a8a1415f730e7b3a342 (patch) | |
tree | 8f9ad0ace48fbb2a08bc9c1fa52b5759d4454cc6 | |
parent | 09552bf1fbf0338e2b2126fc1eb47159f02fd9f1 (diff) | |
download | openbsd-ffff174436807ddf0bb93a8a1415f730e7b3a342.tar.gz openbsd-ffff174436807ddf0bb93a8a1415f730e7b3a342.tar.bz2 openbsd-ffff174436807ddf0bb93a8a1415f730e7b3a342.zip |
Remove workarounds for ld reaching MAXDSIZ on vax, now that MAXDSIZ is
more comfortable.
Reminded by brad@
-rw-r--r-- | src/usr.sbin/openssl/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile index 4e0b688e1f..e37f9aee41 100644 --- a/src/usr.sbin/openssl/Makefile +++ b/src/usr.sbin/openssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.22 2013/08/06 19:05:57 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.23 2014/04/15 20:55:42 miod Exp $ |
2 | 2 | ||
3 | PROG= openssl | 3 | PROG= openssl |
4 | LDADD= -lssl -lcrypto | 4 | LDADD= -lssl -lcrypto |
@@ -13,10 +13,6 @@ CFLAGS+= -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 | |||
13 | CFLAGS+= -DOPENSSL_NO_SSL2 | 13 | CFLAGS+= -DOPENSSL_NO_SSL2 |
14 | CFLAGS+= -I${SSLEAY_SRC_TOP} | 14 | CFLAGS+= -I${SSLEAY_SRC_TOP} |
15 | 15 | ||
16 | .if ${MACHINE} == "vax" | ||
17 | LDFLAGS+=-Wl,--no-keep-memory | ||
18 | .endif | ||
19 | |||
20 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ | 16 | SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c \ |
21 | pkcs7.c crl2p7.c crl.c ca.c \ | 17 | pkcs7.c crl2p7.c crl.c ca.c \ |
22 | rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c \ | 18 | rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c \ |