summaryrefslogtreecommitdiff
path: root/src/ip.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-03-09 16:34:37 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-03-09 16:34:37 +0100
commit7b95c5920c3318935b8cd8f3591cd5c65509f819 (patch)
treeb229f274f7f2de9e6075496f5714f85635e596c0 /src/ip.cpp
parentb00be2651c39d0c08064f206b31a14e810ba0b22 (diff)
Windows build fixed
Compilation of ip.cpp have failed because EPROTONOSUPPORT was undefined. Including zmq.h should help as the error code is defined there. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ip.cpp')
-rw-r--r--src/ip.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ip.cpp b/src/ip.cpp
index c19c5bb..a63a97d 100644
--- a/src/ip.cpp
+++ b/src/ip.cpp
@@ -23,6 +23,8 @@
#include <stdlib.h>
#include <string>
+#include "../include/zmq.h"
+
#include "ip.hpp"
#include "platform.hpp"
#include "err.hpp"