1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

remove all PATH_MAX or MAX_PATH

Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
Andy Green 2013-02-08 12:48:36 +08:00
parent e84652c4ea
commit 9b09dc0213
2 changed files with 2 additions and 5 deletions

View file

@ -23,9 +23,10 @@ User api changes
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

View file

@ -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