According to
http://stackoverflow.com/questions/4791699/gcc-looks-for-headers-in-usr-local-include-when-compiling-but-not-for-librarie,
it seems it's going to be a problem to have distro packaged zmq development
headers in /usr and libzmq master in /usr/local

Current workaround, install libzmq master to home user directory:
./configure --prefix=/home/user/local

To compile CZMQ against system installed ZeroMQ 3.2.2:
./configure

To compile CZMQ against user's own libzmq
CFLAGS=-I/home/user/local/include LDFLAGS=-L/home/user/local/lib64
./configure

I couldn't get the following options to do what I wanted:
--with-libzmq, --with-libzmq-include-dir, --with-libzmq-lib-dir



On another note, shouldn't the libzmq installed libraries get their version
bumped to libzmq.so.4?
_______________________________________________
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Reply via email to