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
Not a real issue, I just put it here for documentation.
The new thread-safe singleton ContextManager class (see #22), triggers an error in libzmq when that is build with Tweetnacl.
Tweetnacl is the a library for cryptography used by libzmq as default option in their CMake, but it is not recommended for production code.
A better alternative is to build libzmq with libsodium and use that.
Anyhow, since we don't use any of those, we can just build libzmq without any support for cryptography.
That means turning off the CMake option ENABLE_CURVE (i.e. -DENABLE_CURVE=OFF).
Not a real issue, I just put it here for documentation.
The new thread-safe singleton ContextManager class (see #22), triggers an error in libzmq when that is build with Tweetnacl.
Tweetnacl is the a library for cryptography used by libzmq as default option in their CMake, but it is not recommended for production code.
A better alternative is to build libzmq with libsodium and use that.
Anyhow, since we don't use any of those, we can just build libzmq without any support for cryptography.
That means turning off the CMake option ENABLE_CURVE (i.e. -DENABLE_CURVE=OFF).
More on this at zeromq/libzmq#2991
Wiki pages about installation will change according to this and refer to this issue.
The text was updated successfully, but these errors were encountered: