]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-117547: Fix mimalloc compile error on OpenBSD (#117548)
authorSam Gross <colesbury@gmail.com>
Mon, 8 Apr 2024 15:53:13 +0000 (11:53 -0400)
committerGitHub <noreply@github.com>
Mon, 8 Apr 2024 15:53:13 +0000 (11:53 -0400)
Objects/mimalloc/prim/unix/prim.c

index ec8447ab40d70c0cc344ad281d203e1cd51468d8..c6ea05bbe7a2ac8678cdf2f93b5589945c866745 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__) && !defined(_AIX) && !defined(__FreeBSD__) && !defined(__sun)
+#if !defined(__HAIKU__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun)
   #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__) && !defined(_AIX) && !defined(__FreeBSD__) && !defined(__sun) // avoid unused warnings
+#elif !defined(__APPLE__) && !defined(_AIX) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__sun) // avoid unused warnings
 
 static int mi_prim_open(const char* fpath, int open_flags) {
   return open(fpath,open_flags);