diff options
author | wiz <wiz@pkgsrc.org> | 2022-01-25 10:30:50 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-01-25 10:30:50 +0000 |
commit | ae99a6b2693280de78ae9a15c57039a1ae8478f5 (patch) | |
tree | f785b92b276497835c26e4275b9584a84bf56b41 /www/py-uwsgi/patches/patch-core_logging.c | |
parent | 92af6d17cf85524d038950f7f8730414cae6e3c0 (diff) | |
download | pkgsrc-ae99a6b2693280de78ae9a15c57039a1ae8478f5.tar.gz |
py-uwsgi: update to 2.0.20.
Changes
Switch default python for build to python3 (Riccardo Magliocchetti)
Add support for PHP 8 (Riccardo Magliocchetti)
Drop support for PHP < 7 as it is EOL since end of 2018 (Riccardo Magliocchetti)
Fix segfaults when using –wsgi-env-behavior=holy (Antonio Cuni)
Replace uwsgi.h system includes in core and proto dirs for Bazel (Serge Bazanski)
gevent: fix compilation with clang11 (László Károlyi)
Fix Python 3.9 deprecations warnings (Riccardo Magliocchetti)
Add trove classifier for Python 3.9 (Adrian)
Fix message in Log SIGINT/SIGTERM triggered kill_them_all (Delena Malan)
Support 7 in weekedays as an alias for sunday to match crontab behaviour (Riccardo Magliocchetti)
Document http-timeout default of 60 seconds (Etienne H)
Add option to override python sys.executable using py-executable config
Allow specifying an iteration to uwsgi::add_rb_timer (Luciano Rocha)
Allow to compile with Python versions with minor version with 2+ digits (Cyrille Pontvieux)
Take into account new naming for LIBPL since python 3.6 (ilrico)
Added missing HTTP status codes messages (James Brown)
Official support for Python 3.10
Diffstat (limited to 'www/py-uwsgi/patches/patch-core_logging.c')
-rw-r--r-- | www/py-uwsgi/patches/patch-core_logging.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/www/py-uwsgi/patches/patch-core_logging.c b/www/py-uwsgi/patches/patch-core_logging.c index f96d9cbb81e..c881282650a 100644 --- a/www/py-uwsgi/patches/patch-core_logging.c +++ b/www/py-uwsgi/patches/patch-core_logging.c @@ -1,15 +1,13 @@ -$NetBSD: patch-core_logging.c,v 1.3 2017/06/23 15:56:45 joerg Exp $ +$NetBSD: patch-core_logging.c,v 1.4 2022/01/25 10:30:51 wiz Exp $ -Fix build for Bitrig. +Fix build for NetBSD. ---- core/logging.c.orig 2017-03-30 22:11:36.000000000 +0000 +--- core/logging.c.orig 2021-10-06 05:22:45.000000000 +0000 +++ core/logging.c -@@ -1,8 +1,10 @@ - #ifndef __DragonFly__ - #include <uwsgi.h> +@@ -2,7 +2,9 @@ + #include "uwsgi.h" #endif --#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__OpenBSD__) -+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__OpenBSD__) || defined(__Bitrig__) + #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__OpenBSD__) +# if !defined(__NetBSD__) #include <sys/user.h> +# endif |