I'm installing DotNet on my Macintosh using the MacPorts along with the DotNet core from Microsoft. Their site says to install OpenSSL from HomeBrew:
brew update
brew install openssl
brew link --force openssl
I have OpenSSL installed via MacPorts:
ports install openssl
What does the "brew link --force openssl" do, and how can I implement that same thing using MacPorts?
Thanks!
I found the solution to this particular problem but not the more general one in issue 173 of the .NET Core. In brief, you need to link the MacPorts versions of libcrypto.dylib
and libssl.dylib
to /usr/local/lib
:
sudo ln -s /opt/local/lib/libcrypto.1.0.0.dylib /usr/local/lib/libcrypto.1.0.0.dylib
sudo ln -s /opt/local/lib/libssl.1.0.0.dylib /usr/local/lib/libssl.1.0.0.dylib
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With