[Bug 274099] lang/python27 fails to compile on 14.0-BETA2
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 274099] lang/python27"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 11 Feb 2024 11:07:23 UTC
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.