Hello,
When building vfdecrypt, I get the following error:
ld: warning: directory not found for option '-L/opt/local/lib'
-
I installed all of the packages using Homebrew and a fix I found for this is the following:
brew link --force openssl
-
Then I changed the path used for LDFLAGS and CPPFLAGS in tools/vfdecrypt/Makefile as below:
LDFLAGS="-L/usr/local/opt/openssl/lib"
CPPFLAGS="-L/usr/local/opt/openssl/include"