0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

[tests/testutil.hpp] Problem: wrong windows.hpp path

Solution: correct path is ../src/windows.hpp. Also added automatic linking
of iphlpapi library if required and using MSVC
This commit is contained in:
Giuseppe Corbelli 2016-07-12 15:58:17 +02:00
parent 0b01cc1ebc
commit 7fdb167732

View File

@ -51,10 +51,14 @@
#include <string.h>
#if defined _WIN32
# include "windows.hpp"
# include "../src/windows.hpp"
# if defined _MSC_VER
# include <crtdbg.h>
# pragma warning(disable:4996)
// iphlpapi is needed for if_nametoindex (not on Windows XP)
# if !defined ZMQ_HAVE_WINDOWS_TARGET_XP
# pragma comment(lib,"iphlpapi")
# endif
# endif
#else
# include <pthread.h>