robotconscience / ofxLibwebsockets

[Deprecated] openFrameworks wrapper of libwebsockets for WebSocket client and server functionality
Other
171 stars 68 forks source link

crypto.a and ssl.a paths in addon_config.mk #94

Open dimitre opened 7 years ago

dimitre commented 7 years ago

Hello, I could not make a new project using project generator but noticed two different filenames in openFrameworks 0.9.8. Software actually build after I've changed in addon_config.mk the following lines

ADDON_LIBS += ../../../libs/openssl/lib/osx/libcrypto.a
ADDON_LIBS += ../../../libs/openssl/lib/osx/libssl.a

to

ADDON_LIBS += ../../../libs/openssl/lib/osx/crypto.a
ADDON_LIBS += ../../../libs/openssl/lib/osx/ssl.a
davivid commented 7 years ago

Thanks - This solved the issue for me

braitsch commented 7 years ago

Thanks, I was scratching my head over this.