mac下n2n make fatal error: \'openssl/aes.h\' file not found 解决
brew install cmake
cmake ./
make
原因是没找到引用文件
cp -r /usr/local/include/node/openssl /usr/local/include/
默认安装的nodejs含有openssl,copy到include即可
brew install cmake
cmake ./
make
原因是没找到引用文件
cp -r /usr/local/include/node/openssl /usr/local/include/
默认安装的nodejs含有openssl,copy到include即可