ZeroMQ
Table of Contents
build and install libsodium1
libsodium
- doc: https://download.libsodium.org/doc/
- Tarballs: https://download.libsodium.org/libsodium/releases/
- Github repository: https://github.com/jedisct1/libsodium
Install
# Download a tarball of libsodium $ ./configure $ make && make check # make install
$ pkg-config --list-all | grep libsodium libsodium libsodium - A modern and easy-to-use crypto library
build and install ZeroMQ
git clone https://github.com/zeromq/libzmq ./autogen.sh && ./configure && make -j 4 make check && make install && sudo ldconfig
Or, using CMake:
git clone https://github.com/zeromq/libzmq
mkdir cmake-build && cd cmake-build
cmake .. && make -j 4
make test && make install && sudo ldconfig