OpenSSL=1.1.1d on FreeBSD-11.3p5

OpenSSL-1.0.2 EOLs on 2019-12-31. FreeBSD-11.3 EOLs on 2021-09-30. How does one change from OpenSSL-1.0.2 to 1.1.1 on FreeBSD-11.3? I have installed the 1.1.1 package from ports but that does not change what the system utilities and other ports are linked to. What is the upgrade path for OpenSSL on FreeBSd-11?
 
OpenSSL in the base gets security patches backported. There is no upgrade path (besides upgrading to 12.1).

How does one change from OpenSSL-1.0.2 to 1.1.1 on FreeBSD-11.3?
You can only do this for ports by setting DEFAULT_VERSIONS:
Code:
DEFAULT_VERSIONS= ssl=openssl111
Then rebuild everything that depends on it. But, as I said, this only works for ports, it changes nothing for the tools in the base.
 
Back
Top