Created
September 21, 2019 04:34
-
-
Save wuziq/10553f80f4d428231e63ec44ff6c4bd8 to your computer and use it in GitHub Desktop.
how to build transmission with openssl
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
brew install/upgrade openssl | |
homebrew tells you where it's installed and what LD/CPP flags to use. for me it was: | |
export LDFLAGS="-L/usr/local/opt/openssl/lib" | |
export CPPFLAGS="-I/usr/local/opt/openssl/include" | |
seems that transmission is also looking for OPENSSL_ROOT_DIR, so: | |
export OPENSSL_ROOT_DIR=/usr/local/opt/openssl | |
then cmake per usual |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment