1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Set PATH_MAX to 4096 if not defined (patch by Svante Signell <svante.signell@gmail.com>)

See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767542

svn path=/icecast/trunk/icecast/; revision=19321
This commit is contained in:
ePirat 2014-11-19 11:30:58 +00:00
parent abc75687dc
commit 95e7e42b49

View File

@ -28,6 +28,9 @@
#include <sys/socket.h>
#include <sys/wait.h>
#include <limits.h>
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
#else
#include <winsock2.h>
#include <windows.h>