Skip to content

Instantly share code, notes, and snippets.

@seia-soto
Last active October 16, 2022 13:55
Show Gist options
  • Save seia-soto/9473c5fcc69d627184b14ad065207f2f to your computer and use it in GitHub Desktop.
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
# 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