From: Ayappan Perumal Date: Thu, 2 Nov 2023 07:01:50 +0000 (+0530) Subject: gh-111544: Fix mimalloc build on AIX (#111593) X-Git-Tag: v3.13.0a2~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=794dff2fb1d9efe73a724640192c34b25f4fae85;p=thirdparty%2FPython%2Fcpython.git gh-111544: Fix mimalloc build on AIX (#111593) --- diff --git a/Objects/mimalloc/prim/unix/prim.c b/Objects/mimalloc/prim/unix/prim.c index 060523c581ae..790d7418eaba 100644 --- a/Objects/mimalloc/prim/unix/prim.c +++ b/Objects/mimalloc/prim/unix/prim.c @@ -50,7 +50,7 @@ terms of the MIT license. A copy of the license can be found in the file #include #endif -#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) +#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) #define MI_HAS_SYSCALL_H #include #endif @@ -76,7 +76,7 @@ static int mi_prim_access(const char *fpath, int mode) { return syscall(SYS_access,fpath,mode); } -#elif !defined(__APPLE__) // avoid unused warnings +#elif !defined(__APPLE__) && !defined(_AIX) // avoid unused warnings static int mi_prim_open(const char* fpath, int open_flags) { return open(fpath,open_flags);