1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fixing AIX compilation failires

This commit is contained in:
Alexander Barkov
2014-02-27 19:44:00 +04:00
parent 11826b1bcf
commit 57cdc561fc
11 changed files with 82 additions and 22 deletions

View File

@@ -9,6 +9,11 @@
#ifndef DENA_AUTO_FILE_HPP
#define DENA_AUTO_FILE_HPP
/* Workaround for _LARGE_FILES and _LARGE_FILE_API incompatibility on AIX */
#if defined(_AIX) && defined(_LARGE_FILE_API)
#undef _LARGE_FILE_API
#endif
#include <unistd.h>
#include <sys/types.h>
#include <dirent.h>