From fe8589c07c9931357a8e7c980349b304acb159cb Mon Sep 17 00:00:00 2001 From: Andreas Pakulat Date: Wed, 16 Oct 2013 17:57:17 +0200 Subject: [PATCH] Windows Fix include for win32helpers The installed headers are all in the same directory, so no relative path possible there. The cmake files already add the win32helpers directory to the include paths, so this builds just fine. --- lib/libwebsockets.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libwebsockets.h b/lib/libwebsockets.h index 5db4b086..440d2d9d 100644 --- a/lib/libwebsockets.h +++ b/lib/libwebsockets.h @@ -35,9 +35,9 @@ extern "C" { #include #include #include -#include "../win32port/win32helpers/websock-w32.h" +#include "websock-w32.h" -#include "../win32port/win32helpers/gettimeofday.h" +#include "gettimeofday.h" #define strcasecmp stricmp #define getdtablesize() 30000