diff options
author | malosek <malosek@fastmq.com> | 2009-11-27 14:30:48 +0100 |
---|---|---|
committer | malosek <malosek@fastmq.com> | 2009-11-27 14:30:48 +0100 |
commit | fa1641afc593be5926e558381861112b584e861a (patch) | |
tree | 7a1a18f7dbc33baab2c86b3945bfd9e433dea054 | |
parent | 19ce7c0e77f703ed2ec3b54685ddf4a6f2329ffe (diff) |
msvc build fixed
-rw-r--r-- | bindings/c/zmq.h | 3 | ||||
-rw-r--r-- | builds/msvc/libzmq/libzmq.vcproj | 16 |
2 files changed, 19 insertions, 0 deletions
diff --git a/bindings/c/zmq.h b/bindings/c/zmq.h index a65926e..ff94dd4 100644 --- a/bindings/c/zmq.h +++ b/bindings/c/zmq.h @@ -63,6 +63,9 @@ extern "C" { #ifndef EADDRNOTAVAIL #define EADDRNOTAVAIL (ZMQ_HAUSNUMERO + 6) #endif +#ifndef ECONNREFUSED +#define ECONNREFUSED (ZMQ_HAUSNUMERO + 7) +#endif // Native 0MQ error codes. #define EMTHREAD (ZMQ_HAUSNUMERO + 50) diff --git a/builds/msvc/libzmq/libzmq.vcproj b/builds/msvc/libzmq/libzmq.vcproj index 8927fa2..e575d67 100644 --- a/builds/msvc/libzmq/libzmq.vcproj +++ b/builds/msvc/libzmq/libzmq.vcproj @@ -182,6 +182,10 @@ > </File> <File + RelativePath="..\..\..\src\downstream.cpp" + > + </File> + <File RelativePath="..\..\..\src\epoll.cpp" > </File> @@ -290,6 +294,10 @@ > </File> <File + RelativePath="..\..\..\src\upstream.cpp" + > + </File> + <File RelativePath="..\..\..\src\uuid.cpp" > </File> @@ -376,6 +384,10 @@ > </File> <File + RelativePath="..\..\..\src\downstream.hpp" + > + </File> + <File RelativePath="..\..\..\src\epoll.hpp" > </File> @@ -532,6 +544,10 @@ > </File> <File + RelativePath="..\..\..\src\upstream.hpp" + > + </File> + <File RelativePath="..\..\..\src\uuid.hpp" > </File> |