Skip to content

Instantly share code, notes, and snippets.

@wuziq
Created September 21, 2019 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wuziq/10553f80f4d428231e63ec44ff6c4bd8 to your computer and use it in GitHub Desktop.
Save wuziq/10553f80f4d428231e63ec44ff6c4bd8 to your computer and use it in GitHub Desktop.
how to build transmission with openssl
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