Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

zeromq 4.1.3
download from  http://zeromq.org/area:download
curl -O http://download.zeromq.org/zeromq-4.1.3.tar.gz

zeromq depends on libsodium   https://download.libsodium.org/doc/installation/index.htmls
curl -O httpsO https://download.libsodium.org/libsodium/releases/libsodium-1.0.3.tar.gz 

uncompress libsodium.tar.gz
./configure --prefix=location
make && make check 
make install 
I chose to store the libsodium installation as part of my zeromq install in $GLAST_EXT/zeromq/4.1.3 

To build zeromq

./configure --prefix=location=$GLAST_EXT/zeromq/4.1.3 PKG_CONFIG_PATH=$GLAST_EXT/zeromq/4.1.3/lib/pkgconfig CPPFLAGS=-I$GLAST_EXT/zeromq/4.1.3/include LDFLAGS=-L$GLAST_EXT/zeromq/4.1.3/lib

make
make install 

Then install pyzmq 14.7.0:

pip install pyzmq --install-option="--zmq=$GLAST_EXT/zeromq/4.0.4"

...