8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 18:43:03 +01:00

Apply Patch that fixes GNU/Hurd Debian build

Firebird FTBFS on GNU/Hurd because MAXPATHLEN is not defined on that
platform.

Attached is a patch which fixes that.  Please apply, it is a simple
fix and it blocks php5 build on GNU/Hurd.


http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626931
This commit is contained in:
mapopa 2011-05-16 14:38:06 +00:00
parent aa3b02c519
commit 72a494be68

View File

@ -545,6 +545,10 @@ extern "C" int remove(const char* path);
#define SYS_ERR Arg::Unix
#endif /* UNIX */
#ifndef MAXPATHLEN
#define MAXPATHLEN 4096
#endif
#ifndef SYS_ERR
#define SYS_ERR Arg::Unix
#endif