You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running npm install will result in an error message indicating missing openssl header files:
> [email protected] install /Users/geraldf/node_modules/airtunes
> node-gyp rebuild
CXX(target) Release/obj.target/airtunes/src/codec.o
../src/codec.cc:5:10: fatal error: 'openssl/aes.h' file not found
#include <openssl/aes.h>
After reading the web, it seams that the header files have been excluded from el capitan. the libraries should be still there.
I have no idea to change the npm install method to use a different location for the openssl header files.
The text was updated successfully, but these errors were encountered:
I was able to install airtunes on El Capitan by first installing OpenSSL (via macports) and then specifying the location to the new headers with: CXXFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib npm install airtunes
Running npm install will result in an error message indicating missing openssl header files:
After reading the web, it seams that the header files have been excluded from el capitan. the libraries should be still there.
I have no idea to change the npm install method to use a different location for the openssl header files.
The text was updated successfully, but these errors were encountered: