Date: Sun, 11 Feb 2024 11:07:23 +0000 From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 274099] lang/python27 fails to compile on 14.0-BETA2 Message-ID: <bug-274099-21822-aimtrJoBdA@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-274099-21822@https.bugs.freebsd.org/bugzilla/> References: <bug-274099-21822@https.bugs.freebsd.org/bugzilla/>
index | next in thread | previous in thread | raw e-mail
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274099 Hiroo Ono <hiroo.ono+freebsd@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hiroo.ono+freebsd@gmail.com --- Comment #20 from Hiroo Ono <hiroo.ono+freebsd@gmail.com> --- The code in the Makefile: > .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092 && (${SSL_DEFAULT} == base || ${SSL_DEFAULT:Mopenssl3*} ) does not properly deal with the openssl variation. For ssl's DEFAULT VERSION, there are base, openssl111, openssl, openssl31 and openssl32. The above code treats 'openssl' as 'openssl111', but security/openssl is actually openssl3.0. It should be like: > +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092 && \ > (${SSL_DEFAULT} == base || ${SSL_DEFAULT} == openssl || \ > ${SSL_DEFAULT:Mopenssl3*} ) -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-274099-21822-aimtrJoBdA>
