see http://github.com/zeromq/zeromq2/issues#issue/52

at least to make it possible to compile zeromq-2.0.8 for HP-UX
and AIX, one has to add a missing { and to fix two other
items in the file src/signaler.cpp:

187c187
< bool zmq::signaler_t::recv (command_t *cmd_, bool block_)
---
> bool zmq::signaler_t::recv (command_t &cmd_, bool block_)
202c202
<         nbytes = ::recv (r, (char*)cmd_, sizeof (command_t), 0);
---
>         nbytes = ::recv (r, buffer, sizeof (command_t), 0);
216c216
<    if (block_) {
---
>    if (block_)



Mit freundlichen Grüßen
Bernd Melchers
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Reply via email to