mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 16:50:29 -04:00
newish OpenSSL versions [*] - Add a handful of useful patches from upstream SRPM - Use upstream program description for COMMENT (shorter) - Utilize its own installation target and only post-install documentation files; install sample configuration file - Consummate conversion to option helpers and transfer maintainership to the new volunteer PR: 234556 [*]
12 lines
569 B
Diff
12 lines
569 B
Diff
--- config.c.orig 2018-05-11 12:16:05.000000000 +0200
|
|
+++ config.c 2018-12-22 23:19:53.912203188 +0100
|
|
@@ -347,9 +347,6 @@
|
|
SSL_CTX_set_app_data(res->ctx, res);
|
|
SSL_CTX_set_verify(res->ctx, SSL_VERIFY_NONE, NULL);
|
|
SSL_CTX_set_mode(res->ctx, SSL_MODE_AUTO_RETRY);
|
|
-#ifdef SSL_MODE_SEND_FALLBACK_SCSV
|
|
- SSL_CTX_set_mode(res->ctx, SSL_MODE_SEND_FALLBACK_SCSV);
|
|
-#endif
|
|
SSL_CTX_set_options(res->ctx, SSL_OP_ALL);
|
|
#ifdef SSL_OP_NO_COMPRESSION
|
|
SSL_CTX_set_options(res->ctx, SSL_OP_NO_COMPRESSION);
|