]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-111544: Fix mimalloc build on AIX (#111593)
authorAyappan Perumal <ayappap2@in.ibm.com>
Thu, 2 Nov 2023 07:01:50 +0000 (12:31 +0530)
committerGitHub <noreply@github.com>
Thu, 2 Nov 2023 07:01:50 +0000 (08:01 +0100)
Objects/mimalloc/prim/unix/prim.c

index 060523c581ae248ef476bb49c335b32a652b357d..790d7418eaba03e017a0781b8f34509f06d41a2a 100644 (file)
@@ -50,7 +50,7 @@ terms of the MIT license. A copy of the license can be found in the file
   #include <sys/sysctl.h>
 #endif
 
-#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__)
+#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX)
   #define MI_HAS_SYSCALL_H
   #include <sys/syscall.h>
 #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);