diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2011-03-09 16:34:37 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2011-03-09 16:34:37 +0100 |
commit | 7b95c5920c3318935b8cd8f3591cd5c65509f819 (patch) | |
tree | b229f274f7f2de9e6075496f5714f85635e596c0 /src | |
parent | b00be2651c39d0c08064f206b31a14e810ba0b22 (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')
-rw-r--r-- | src/ip.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,8 @@ #include <stdlib.h> #include <string> +#include "../include/zmq.h" + #include "ip.hpp" #include "platform.hpp" #include "err.hpp" |