]> Dogcows Code - chaz/p5-Alien-ZMQ/blob - files/zeromq-3.2.3-conditional-eproto.patch
1c4d7453e6a220ad22aef804476c0735c221c7ff
[chaz/p5-Alien-ZMQ] / files / zeromq-3.2.3-conditional-eproto.patch
1 This patch is for platforms which don't define EPROTO.
2 --- a/src/err.hpp
3 +++ b/src/err.hpp
4 @@ -44,6 +44,11 @@
5 #include <netdb.h>
6 #endif
7
8 +// EPROTO is not used by OpenBSD and maybe other platforms.
9 +#ifndef EPROTO
10 +#define EPROTO 0
11 +#endif
12 +
13 namespace zmq
14 {
15 const char *errno_to_string (int errno_);
This page took 0.035382 seconds and 3 git commands to generate.