mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 02:00:30 -04:00
* When using skip-innodb_doublewrite in my.cnf, a parallel doublewrite buffer is still created. Bugs fixed #3411. * During a binlogging replication event, if the master crashes after the multi-threaded slave has begun copying to the slave’s relay log and before the process has completed, a STOP SLAVE on the slave takes longer than expected. Bug fixed #5824. * If pam_krb5 is configured to allow the user to change their password, and the password expired, the server crashed after receiving the new password. Bug fixed #6023. - Provide LibreSSL support [2] - Take maintainership. feld@ didn't pet the ports for almost two years, all updates was committed with maintainer timeout PR: 242649 Submitted by: Igor Zabelin [1]. fluffy@ [2] Approved by: maintainer (feld@, timeout >2 weeks)
21 lines
744 B
C++
21 lines
744 B
C++
--- mysys_ssl/my_crypt.cc.orig 2019-05-16 05:06:00 UTC
|
|
+++ mysys_ssl/my_crypt.cc
|
|
@@ -30,7 +30,7 @@
|
|
#include <boost/move/unique_ptr.hpp>
|
|
#include <boost/core/noncopyable.hpp>
|
|
|
|
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
|
#define EVP_CIPHER_CTX_buf_noconst(ctx) ((ctx)->buf)
|
|
#define RAND_OpenSSL() RAND_SSLeay()
|
|
#endif
|
|
@@ -95,7 +95,8 @@ MyEncryptionCTX::MyEncryptionCTX()
|
|
MyEncryptionCTX::~MyEncryptionCTX()
|
|
{
|
|
|
|
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
|
|
+ (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x02090000fL)
|
|
EVP_CIPHER_CTX_cleanup(ctx);
|
|
delete ctx;
|
|
ERR_remove_thread_state(0);
|