Skip to content
Snippets Groups Projects
Commit 82bfbf53 authored by Miller, Ross's avatar Miller, Ross
Browse files

Last attempt to hack around the winsock issue before I give up

Refs #7769
parent 2e9177e3
No related branches found
No related tags found
No related merge requests found
// HACK! Workaround for Poco headers trying to include both winsock.h and winsock2.h // HACK! Workaround for Poco headers trying to include both winsock.h and winsock2.h
// If this actually works, I'll see if I can get on an actual Windows machine and // If this actually works, I'll see if I can get on an actual Windows machine and
// try to sort out a better solution // try to sort out a better solution
#ifdef _WIN32 #if defined(_WIN32) || defined(WIN32)
#warning "Including winsock2.h!!"
#include <winsock2.h> #include <winsock2.h>
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment