Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 06 May 2024 05:13:49 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 277768] databases/mariadb106 : [ERROR] Incompatible OpenSSL version. Cannot continue...
Message-ID:  <bug-277768-7788-RcXQESMnwG@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-277768-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-277768-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D277768

wcarson.bugzilla@disillusion.net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wcarson.bugzilla@disillusio
                   |                            |n.net

--- Comment #1 from wcarson.bugzilla@disillusion.net ---
Changing files/patch-mysys__ssl_openssl.c to return 0 instead of 1 seems to
have resolved it for me, but I'm not sure what consequences this will have =
as
it seems to have purposefully disabled LibreSSL?

--- a/databases/mariadb106-server/files/patch-mysys__ssl_openssl.c
+++ b/databases/mariadb106-server/files/patch-mysys__ssl_openssl.c
@@ -7,7 +7,7 @@
 +#elif defined(LIBRESSL_VERSION_NUMBER)
 +int check_openssl_compatibility()
 +{
-+  return 1;
++  return 0;
 +}
  #else
  #include <openssl/evp.h>

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-277768-7788-RcXQESMnwG>