FreeBSD Bugzilla – Attachment 229384 Details for
Bug 259688
databases/memcached: 1.6.12 fails to build with ssl=libressl: error: use of undeclared identifier 'TLS1_3_VERSION'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for tls.c, checking if TLS1_3_VERSION is defined before enabling it
patch-tls.c (text/plain), 320 bytes, created by
lysfjord.daniel
on 2021-11-09 18:23:49 UTC
(
hide
)
Description:
patch for tls.c, checking if TLS1_3_VERSION is defined before enabling it
Filename:
MIME Type:
Creator:
lysfjord.daniel
Created:
2021-11-09 18:23:49 UTC
Size:
320 bytes
patch
obsolete
>--- tls.c.orig >+++ tls.c >@@ -257,7 +257,7 @@ const char *ssl_proto_text(int version) { > return "tlsv1.1"; > case TLS1_2_VERSION: > return "tlsv1.2"; >-#if OPENSSL_VERSION_NUMBER >= 0x10101000L >+#if defined(TLS1_3_VERSION) > case TLS1_3_VERSION: > return "tlsv1.3"; > #endif
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 259688
:
229337
|
229345
|
229346
| 229384 |
229385