summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-07-26 15:27:53 +0200
committerunknown <msvensson@neptunus.(none)>2006-07-26 15:27:53 +0200
commitdd27607065f2f4f42cdc1203b872e4b6f67e0333 (patch)
tree40585d0a7e1ed7081ababf117b2beb83ab8ec919
parentd2f447a9b41d370ea410c04943cbf239070523d7 (diff)
downloadmariadb-git-dd27607065f2f4f42cdc1203b872e4b6f67e0333.tar.gz
Bug#16574 Patch to compile on GNU/Hurd (PATH_MAX limit not existing)
- Define MAX_PATH if not already defined by system header files. - Thanks to Christian for the report and patch! ndb/include/ndb_global.h.in: PATH_MAX is defined in ndb_global.h for "sco", remove the conditional define for sco so it thakes effect as soon as MAX_PATH is not available
-rw-r--r--ndb/include/ndb_global.h.in4
1 files changed, 0 insertions, 4 deletions
diff --git a/ndb/include/ndb_global.h.in b/ndb/include/ndb_global.h.in
index 43f90e1f8b5..122b0edc400 100644
--- a/ndb/include/ndb_global.h.in
+++ b/ndb/include/ndb_global.h.in
@@ -128,12 +128,8 @@ extern "C" {
#include "ndb_init.h"
-#ifdef SCO
-
#ifndef PATH_MAX
#define PATH_MAX 1024
#endif
-#endif /* SCO */
-
#endif