remove all PATH_MAX or MAX_PATH

Signed-off-by: Andy Green <andy.green@linaro.org>
diff --git a/changelog b/changelog
index cc4fee4..7b1a12b 100644
--- a/changelog
+++ b/changelog
@@ -23,9 +23,10 @@
 New features
 ------------
 
-Cmake project file added, aimed initially at Windows support: this replaces
+ - Cmake project file added, aimed initially at Windows support: this replaces
 the visual studio project files that were in the tree until now.
 
+ - PATH_MAX or MAX_PATH no longer needed
 
 
 v1.1-chrome26-firefox18
diff --git a/lib/private-libwebsockets.h b/lib/private-libwebsockets.h
index 8c7b23a..3084b16 100644
--- a/lib/private-libwebsockets.h
+++ b/lib/private-libwebsockets.h
@@ -58,10 +58,6 @@
 #ifdef WIN32
 #define LWS_NO_DAEMONIZE
 
-#ifndef PATH_MAX
-#define PATH_MAX MAX_PATH
-#endif
-
 #define compatible_close(fd) closesocket(fd);
 #ifdef  __MINGW64__                                                             
 #else