Rebase to 8.0.42 Upstream release notes: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-42.html updated the patch that disables using the deprecated openssl engine https://fedoraproject.org/wiki/Changes/OpensslNoEngine https://fedoraproject.org/wiki/Changes/OpensslDeprecateEngine
14 lines
604 B
Diff
14 lines
604 B
Diff
--- mysql-8.0.42/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/network/xcom_network_provider_ssl_native_lib.cc 2025-03-31 10:19:27.000000000 +0200
|
|
+++ mysql-8.0.42-patched/plugin/group_replication/libmysqlgcs/src/bindings/xcom/xcom/network/xcom_network_provider_ssl_native_lib.cc 2025-04-24 15:27:29.155287397 +0200
|
|
@@ -50,9 +50,9 @@
|
|
#include "my_compiler.h"
|
|
#endif
|
|
|
|
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
+#if !defined(OPENSSL_NO_ENGINE)
|
|
#include <openssl/engine.h>
|
|
-#endif /* OPENSSL_VERSION_NUMBER < 0x10100000L */
|
|
+#endif
|
|
|
|
#include "xcom/retry.h"
|
|
#include "xcom/task_debug.h"
|