https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274099
Hiroo Ono <hiroo.ono+free...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hiroo.ono+free...@gmail.com --- Comment #20 from Hiroo Ono <hiroo.ono+free...@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 openssl30. 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.