ay 2024 05:13:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1714972429; a=rsa-sha256; cv=none; b=ayXPOzX4hcTM/lsMr2UelGTeeHYcWDfmJdZRMJ0UbNNti9/LIoV4ykrJooCLfaVDyBVaIQ VkoEMYVrgkagU8qi041j91+w44X3Jmwd66DNRZAhny6qcHD5ANaBCBSfqNApkADGrlQ3D2 2bA7IpFnM3NVtq650VNs0cVBCcwpeT9WfZbjTXXwPf16iTzq+lD6UVOMrEWt8ycpQeh1Vq g+bgLjdO7QARWDHup71XbiTmjG1Ocsb2ExHWae+s0wN1iOWrRZ3aZ9VeOdHBjylSvLcSJ5 eFjXvUAodot3sPlnXjENTobbSiErco3Md64PWtKZlFlJOV/FNEtragjw2Ryyvw== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1714972429; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=dEEssdgjux929m+WFffAybiIuCxBxuYxBy9DsrUxiyA=; b=o5Fz5GINiLz1WLLYWjvMtEaJUVBM2eT+okAMgL3CmCpdFkj7+1Beuj2OAbBZom77E8HSWG C6dMcAR/vvMqJIxRV+PomndrzM5BwiYVtqDV5DruqZPuBRX5IA3LmPQ+LMV5XV1hn+77wn XUi7uis0evjt5onkZT1C+prW0iPuK/lskpUejwlm9S09HGJh+OxPAmGUs7uSv9Pr3jSWUs poQJIUBtyAjBiXNXh24snkQZqBgIh2TCFpLIzhNkLoaMmmeNsn7W6+C+4ODitGf9MHyaVK Ktfx/i6IEQTdTCNmoAmyRt8x5T5JyLTx/n1M/fUiR5lE4CWFh5Ow2/maRGONCA== Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4VXqM13wCyzl2j for ; Mon, 6 May 2024 05:13:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 4465Dn8A004686 for ; Mon, 6 May 2024 05:13:49 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 4465Dn92004677 for ports-bugs@FreeBSD.org; Mon, 6 May 2024 05:13:49 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 277768] databases/mariadb106 : [ERROR] Incompatible OpenSSL version. Cannot continue... Date: Mon, 06 May 2024 05:13:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: wcarson.bugzilla@disillusion.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Ports bug reports List-Archive: https://lists.freebsd.org/archives/freebsd-ports-bugs List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-ports-bugs@freebsd.org Sender: owner-freebsd-ports-bugs@FreeBSD.org MIME-Version: 1.0 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 --=20 You are receiving this mail because: You are the assignee for the bug.=