diff options
author | unknown <pekka@mysql.com> | 2004-08-26 14:06:39 +0200 |
---|---|---|
committer | unknown <pekka@mysql.com> | 2004-08-26 14:06:39 +0200 |
commit | 536ce70814b71ddef63bfeda81e81a97ce13023b (patch) | |
tree | 6a751b9b1c12e1bc5ffe03cc220612172d5eb818 /ndb/include | |
parent | 76ec262247b2f39e65a9824e1cb1c273ca1807b8 (diff) | |
download | mariadb-git-536ce70814b71ddef63bfeda81e81a97ce13023b.tar.gz |
FileLogHandler.cpp, ndb_global.h:
sco and others: use PATH_MAX always
ndb/include/ndb_global.h:
sco and others: use PATH_MAX always
ndb/src/common/logger/FileLogHandler.cpp:
sco and others: use PATH_MAX always
Diffstat (limited to 'ndb/include')
-rw-r--r-- | ndb/include/ndb_global.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ndb/include/ndb_global.h b/ndb/include/ndb_global.h index 038950a7a32..b8fcca6dbb1 100644 --- a/ndb/include/ndb_global.h +++ b/ndb/include/ndb_global.h @@ -94,6 +94,14 @@ extern int strcasecmp(const char *s1, const char *s2); extern int strncasecmp(const char *s1, const char *s2, size_t n); #endif +#ifdef SCO + +#ifndef PATH_MAX +#define PATH_MAX 1024 +#endif + +#endif /* SCO */ + #ifdef __cplusplus } #endif |