You can follow
this guy's post and add
Code:
#if !defined(PATH_MAX)
#define PATH_MAX 4096
#endif
just before the APR_PATH_MAX definition in apr.h, i.e. before the lines
Quote:
#if defined(PATH_MAX)
#define APR_PATH_MAX PATH_MAX
...
|
Just check your PATH_MAX in limits.h to see if it's actually 4096 and don't forget to make a backup of apr.h before editing.
Regards