]> Dogcows Code - chaz/p5-Alien-ZMQ/blob - files/zeromq-3.2.3-conditional-eproto.patch
switch distribution to zeromq-3.2.3; bump version
[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.030391 seconds and 4 git commands to generate.