Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Dec 2021 21:50:58 +0000
From:      bugzilla-noreply@freebsd.org
To:        python@FreeBSD.org
Subject:   [Bug 260552] lang/python36: Package fails after 'Undefined symbol "SSLv3_method"' when DEFAULT_VERSIONS=ssl=openssl
Message-ID:  <bug-260552-21822-OHnnoMiQHN@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-260552-21822@https.bugs.freebsd.org/bugzilla/>
References:  <bug-260552-21822@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D260552

--- Comment #1 from John W. O'Brien <john@saltant.com> ---
CPython has a preprocessor guard against trying to use SSLv3 when it is not
available [0], and security/openssl appears to be correctly advertising the
lack of SSLv3 on my system:

% grep "ifndef OPENSSL_NO_SSL3" -A2 /usr/local/include/openssl/opensslconf.h
#ifndef OPENSSL_NO_SSL3
# define OPENSSL_NO_SSL3
#endif
#ifndef OPENSSL_NO_SSL3_METHOD
# define OPENSSL_NO_SSL3_METHOD
#endif

So, not clear why the preprocessor guard is failing.

[0] https://github.com/python/cpython/blob/v3.6.15/Modules/_ssl.c#L2781-L27=
84

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-260552-21822-OHnnoMiQHN>