Last active
October 16, 2022 13:55
-
-
Save seia-soto/9473c5fcc69d627184b14ad065207f2f to your computer and use it in GitHub Desktop.
Install openssl from source instead of brew due to lack of ed25519
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.openssl.org/source/ | |
perl ./Configure --prefix=/usr/local --openssldir=/usr/local/openssl no-ssl3 no-ssl3-method no-zlib no-comp | |
make | |
make test | |
# https://serverfault.com/questions/391834/where-are-os-x-man-pages-stored | |
sudo make install MANDIR=/usr/local/share/man MANSUFFIX=ssl | |
make clean | |
make distclean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment