Commit ddf5f755 authored by Martin Sustrik's avatar Martin Sustrik

zmq.cpp build probelm on non-linux platforms fixed

parent 7546526e
...@@ -60,12 +60,10 @@ Type: string Unit: N/A Default: NULL ...@@ -60,12 +60,10 @@ Type: string Unit: N/A Default: NULL
.IP "\fBZMQ_SUBSCRIBE\fP" .IP "\fBZMQ_SUBSCRIBE\fP"
Applicable only to ZMQ_SUB socket type. It establishes new message filter. Applicable only to ZMQ_SUB socket type. It establishes new message filter.
When ZMQ_SUB socket is created all the incoming messages are filtered out. When ZMQ_SUB socket is created all the incoming messages are filtered out.
This option allows you to subscribe for all messages ("*"), messages with This option allows you to subscribe for all messages (""), or messages
specific topic ("x.y.z") and/or messages with specific topic prefix beginning with specific prefix (e.g. "animals.mammals.dogs."). Multiple
("x.y.*"). Topic is one-byte-size-prefixed string located at filters can be attached to a single 'sub' socket. In that case message passes
the very beginning of the message. Multiple filters can be attached to if it matches at least one of the filters.
a single 'sub' socket. In that case message passes if it matches at least
one of the filters.
Type: string Unit: N/A Default: N/A Type: string Unit: N/A Default: N/A
......
...@@ -33,7 +33,10 @@ ...@@ -33,7 +33,10 @@
#include "err.hpp" #include "err.hpp"
#include "fd.hpp" #include "fd.hpp"
#if defined ZMQ_HAVE_LINUX #if defined ZMQ_HAVE_LINUX || defined ZMQ_HAVE_FREEBSD ||\
defined ZMQ_HAVE_OPENBSD || defined ZMQ_HAVE_SOLARIS ||\
defined ZMQ_HAVE_OSX || defined ZMQ_HAVE_QNXNTO ||\
defined ZMQ_HAVE_HPUX || defined ZMQ_HAVE_AIX
#include <poll.h> #include <poll.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment