1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:47:37 +00:00

Ports: Update Python patches for the recent signal changes

The old patch to define `HAVE_SIGSET_T` is no longer needed, as we now
have implementations for `sigwaitinfo` and `sigtimedwait`.

Instead, for the same reason, we now have to remove a reference to
`si_errno`, which we haven't implemented yet but is just assumed to be
there.
This commit is contained in:
Tim Schumacher 2021-12-22 03:43:10 +01:00 committed by Linus Groh
parent c56e5139f5
commit 48dc28996d
3 changed files with 14 additions and 14 deletions

View file

@ -1,8 +1,8 @@
# Patches for Python 3.9 on SerenityOS
## `define-have-sigset-t.patch`
## `remove-missing-si-errno.patch`
Ensures `HAVE_SIGSET_T` is defined, as we *do* have `sigset_t` but it's not detected properly due to some related functions being missing.
Removes a reference to `si_errno` in `siginfo_t`, as we currently don't have that implemented.
## `include-sys-uio.patch`