mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
adaf2b347c
This enables shared library support for Python and removes a few patches which are not necessary anymore now that we have dlfcn support. |
||
---|---|---|
.. | ||
define-have-sigset-t.patch | ||
define-py-force-utf8-locale.patch | ||
disable-setrlimit.patch | ||
fix-autoconf.patch | ||
ReadMe.md | ||
remove-setlocale-from-preconfig.patch | ||
tweak-unsupported-printf-format-specifiers.patch |
Patches for Python 3.9 on SerenityOS
define-have-sigset-t.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.
define-py-force-utf8-locale.patch
Enforce UTF-8 as encoding by defining _Py_FORCE_UTF8_LOCALE
.
disable-setrlimit.patch
Disables check for RLIMIT_CORE
and subsequent setrlimit()
call. Would be enabled otherwise as we do have <sys/resource.h>
and therefore HAVE_SYS_RESOURCE_H
.
fix-autoconf.patch
As usual, make the configure
script recognize Serenity.
remove-setlocale-from-preconfig.patch
Our stub implementation of setlocale()
always returns nullptr
, which the interpreter considers critical enough to exit right away.
tweak-unsupported-printf-format-specifiers.patch
Replace uses of %.Ns
with %s
as the former is not supported by our printf
implementation yet and would result in empty strings. It uses snprintf
already, so this is safe.