summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartin Lucina <martin@lucina.net>2012-01-23 08:54:14 +0100
committerMartin Lucina <martin@lucina.net>2012-01-23 08:54:14 +0100
commit75af6aed482ab16997c1388fe801f74d11ec12a4 (patch)
tree637249631acc81446f6b5c2e25223f3164e132f6 /include
parentb593ea30833ad5dcacb9076c988aec31b0cf26ec (diff)
Imported Upstream version 2.1.9upstream/2.1.9
Diffstat (limited to 'include')
-rw-r--r--include/zmq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zmq.h b/include/zmq.h
index 5857ba8..a897888 100644
--- a/include/zmq.h
+++ b/include/zmq.h
@@ -28,7 +28,7 @@ extern "C" {
#include <errno.h>
#include <stddef.h>
#if defined _WIN32
-#include "winsock2.h"
+#include <winsock2.h>
#endif
/* Handle DSO symbol visibility */
@@ -55,7 +55,7 @@ extern "C" {
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 2
#define ZMQ_VERSION_MINOR 1
-#define ZMQ_VERSION_PATCH 7
+#define ZMQ_VERSION_PATCH 9
#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))