-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Does this depend on a certain version of zeromq? I get the following errors:
eps/handler.Tpo -c src/handler.c -fPIC -DPIC -o .libs/handler.o
src/handler.c: In function 'mongrel2_recv':
src/handler.c:275:5: error: too few arguments to function 'zmq_recv'
zmq_recv(pull_socket->zmq_socket,msg,0);
^
In file included from src/handler.c:14:0:
/usr/local/include/zmq.h:355:16: note: declared here
ZMQ_EXPORT int zmq_recv (void s, void *buf, size_t len, int flags);
^
src/handler.c: In function 'mongrel2_send':
src/handler.c:308:5: error: too few arguments to function 'zmq_send'
zmq_send(pub_socket->zmq_socket,msg,0);
^
In file included from src/handler.c:14:0:
/usr/local/include/zmq.h:353:16: note: declared here
ZMQ_EXPORT int zmq_send (void *s, const void *buf, size_t len, int flags);
^
Makefile:753: recipe for target 'handler.lo' failed
make: ** [handler.lo] Error 1