1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 06:15:32 +00:00

fix building on GNU Hurd

This commit is contained in:
Bret Curtis 2014-08-18 14:41:46 +02:00
parent 4e521d1aca
commit bb1fe23f9c

View file

@ -37,6 +37,10 @@ static const char pipe_err[] = "!!! Failed to create pipe\n";
static const char fork_err[] = "!!! Failed to fork debug process\n";
static const char exec_err[] = "!!! Failed to exec debug process\n";
#ifndef PATH_MAX /* Not all platforms (GNU Hurd) have this. */
# define PATH_MAX 256
#endif
static char argv0[PATH_MAX];
static char altstack[SIGSTKSZ];