FreeBSD Bugzilla – Attachment 244696 Details for
Bug 273534
multimedia/kodi: build fail with libressl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Use new functions for *ssl
kodi-20.2_4.patch (text/plain), 1.10 KB, created by
yzrh
on 2023-09-07 14:24:09 UTC
(
hide
)
Description:
Use new functions for *ssl
Filename:
MIME Type:
Creator:
yzrh
Created:
2023-09-07 14:24:09 UTC
Size:
1.10 KB
patch
obsolete
>diff -urN kodi.orig/Makefile kodi/Makefile >--- kodi.orig/Makefile 2023-09-07 12:02:25.467590000 +0000 >+++ kodi/Makefile 2023-09-07 14:13:03.123525000 +0000 >@@ -1,6 +1,6 @@ > PORTNAME= kodi > DISTVERSION= 20.2 >-PORTREVISION= 3 >+PORTREVISION= 4 > CATEGORIES= multimedia java > # do not forget to fix devel/kodi-platform when updating kodi > >diff -urN kodi.orig/files/patch-xbmc_utils_Digest.cpp kodi/files/patch-xbmc_utils_Digest.cpp >--- kodi.orig/files/patch-xbmc_utils_Digest.cpp 1970-01-01 00:00:00.000000000 +0000 >+++ kodi/files/patch-xbmc_utils_Digest.cpp 2023-09-07 12:09:52.149258000 +0000 >@@ -0,0 +1,16 @@ >+--- xbmc/utils/Digest.cpp.orig 2023-06-29 06:58:06 UTC >++++ xbmc/utils/Digest.cpp >+@@ -94,11 +94,11 @@ CDigest::Type CDigest::TypeFromString(std::string cons >+ >+ void CDigest::MdCtxDeleter::operator()(EVP_MD_CTX* context) >+ { >+- EVP_MD_CTX_destroy(context); >++ EVP_MD_CTX_free(context); >+ } >+ >+ CDigest::CDigest(Type type) >+-: m_context{EVP_MD_CTX_create()}, m_md(TypeToEVPMD(type)) >++: m_context{EVP_MD_CTX_new()}, m_md(TypeToEVPMD(type)) >+ { >+ if (1 != EVP_DigestInit_ex(m_context.get(), m_md, nullptr)) >+ {
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 273534
:
244619
| 244696 |
244697