Skip to content
Snippets Groups Projects
Commit d424e55f authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

BUG: KML bug correction on Windows platform (redefinition of fd_set, etc... structures). Replace

#include <winsock2.h> by
#include <winsock.h>
Bug reported on libkml google.
parent 0e34c54f
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,9 @@
#include <cstddef> // NULL
#ifdef WIN32
#include <windows.h>
#include <winsock2.h>
// OTB Modifications (bug reported on libkml google issues
//#include <winsock2.h>
#include <winsock.h>
#include <time.h>
#else
#include <sys/time.h>
......
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