Commit 51b3fad8 authored by Rodrigo Mosconi's avatar Rodrigo Mosconi

Fix to build on OpenBSD

parent 4706a18c
...@@ -45,6 +45,9 @@ ...@@ -45,6 +45,9 @@
#ifdef ZMQ_HAVE_SO_PEERCRED #ifdef ZMQ_HAVE_SO_PEERCRED
# include <pwd.h> # include <pwd.h>
# include <grp.h> # include <grp.h>
# if defined ZMQ_HAVE_OPENBSD
# define ucred sockpeercred
# endif
#endif #endif
zmq::ipc_listener_t::ipc_listener_t (io_thread_t *io_thread_, zmq::ipc_listener_t::ipc_listener_t (io_thread_t *io_thread_,
......
...@@ -28,6 +28,9 @@ ...@@ -28,6 +28,9 @@
#include <netinet/in.h> #include <netinet/in.h>
#include <netdb.h> #include <netdb.h>
#include <fcntl.h> #include <fcntl.h>
#if defined ZMQ_HAVE_OPENBSD
#define ucred sockpeercred
#endif
#endif #endif
#include <string.h> #include <string.h>
......
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