[Bug 277768] databases/mariadb106 : [ERROR] Incompatible OpenSSL version. Cannot continue...
Date: Mon, 06 May 2024 05:13:49 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277768 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> -- You are receiving this mail because: You are the assignee for the bug.