https://github.com/python/cpython/commit/d005f2c1861dbf0ab3d9f80b54d05d0c0b522c3c commit: d005f2c1861dbf0ab3d9f80b54d05d0c0b522c3c branch: main author: Samuel Thibault <[email protected]> committer: colesbury <[email protected]> date: 2024-07-14T12:50:25-04:00 summary:
gh-121731: Fix mimalloc compile error on GNU/Hurd (#121732) files: A Misc/NEWS.d/next/Build/2024-07-14-01-29-47.gh-issue-121731.RMPGP3.rst M Objects/mimalloc/prim/unix/prim.c diff --git a/Misc/NEWS.d/next/Build/2024-07-14-01-29-47.gh-issue-121731.RMPGP3.rst b/Misc/NEWS.d/next/Build/2024-07-14-01-29-47.gh-issue-121731.RMPGP3.rst new file mode 100644 index 00000000000000..36e0f86a0ae455 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2024-07-14-01-29-47.gh-issue-121731.RMPGP3.rst @@ -0,0 +1 @@ +Fix mimalloc compile error on GNU/Hurd diff --git a/Objects/mimalloc/prim/unix/prim.c b/Objects/mimalloc/prim/unix/prim.c index c6ea05bbe7a2ac..c4816af1a0d6e5 100644 --- a/Objects/mimalloc/prim/unix/prim.c +++ b/Objects/mimalloc/prim/unix/prim.c @@ -27,6 +27,7 @@ terms of the MIT license. A copy of the license can be found in the file #include <sys/mman.h> // mmap #include <unistd.h> // sysconf +#include <fcntl.h> // open, close, read, access #if defined(__linux__) #include <features.h> _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
