Commit d2be5942 authored by Sergey Lyubka's avatar Sergey Lyubka

defining PATH_MAX if not defined

parent 1e632d32
...@@ -266,6 +266,10 @@ typedef int socklen_t; ...@@ -266,6 +266,10 @@ typedef int socklen_t;
#define SOMAXCONN 100 #define SOMAXCONN 100
#endif #endif
#if !defined(PATH_MAX)
#define PATH_MAX 4096
#endif
static const char *http_500_error = "Internal Server Error"; static const char *http_500_error = "Internal Server Error";
// Snatched from OpenSSL includes. I put the prototypes here to be independent // Snatched from OpenSSL includes. I put the prototypes here to be independent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment