ports/databases/mariadb114-server/files/patch-mysys__ssl_openssl.c
Bernard Spil 5a2bb7e615 databases/mariadb114-server: New MariaDB 11.4 port
* This is an LTS version.
 * the mysql command now generates a warning about deprecation.
   to prevent these for other ports with USES=mysql Mk/Uses/mysql.mk
   has been patched.
2024-06-16 16:21:23 +02:00

14 lines
278 B
C

--- mysys_ssl/openssl.c.orig 2024-02-01 17:44:37 UTC
+++ mysys_ssl/openssl.c
@@ -30,6 +30,11 @@ int check_openssl_compatibility()
{
return 0;
}
+#elif defined(LIBRESSL_VERSION_NUMBER)
+int check_openssl_compatibility()
+{
+ return 0;
+}
#else
#include <openssl/evp.h>