diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2014-02-27 19:44:00 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2014-02-27 19:44:00 +0400 |
commit | 57cdc561fc2b97c3d1d2b318fc0fa2410568c3d6 (patch) | |
tree | 8d61425ec6fed1b66faa46c1ad7ac1bc080df71e /storage/connect/os.h | |
parent | 11826b1bcfc2280e36a72c1516443c9b400edec2 (diff) | |
download | mariadb-git-57cdc561fc2b97c3d1d2b318fc0fa2410568c3d6.tar.gz |
Fixing AIX compilation failires
Diffstat (limited to 'storage/connect/os.h')
-rw-r--r-- | storage/connect/os.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/storage/connect/os.h b/storage/connect/os.h index e3d452bf7b8..8e94f4241bb 100644 --- a/storage/connect/os.h +++ b/storage/connect/os.h @@ -9,6 +9,12 @@ typedef off_t off64_t; #define O_LARGEFILE 0 #endif +#ifdef _AIX +#ifndef O_LARGEFILE +#define O_LARGEFILE 0 +#endif +#endif + #if defined(WIN32) typedef __int64 BIGINT; #else // !WIN32 |