diff --git a/uwsgi-93d07ec38b31.patch b/uwsgi-93d07ec38b31.patch new file mode 100644 index 0000000..7162536 --- /dev/null +++ b/uwsgi-93d07ec38b31.patch @@ -0,0 +1,23 @@ +From 93d07ec38b319c2fba7c71d3fd0d5acc2882d65a Mon Sep 17 00:00:00 2001 +From: Rosen Penev +Date: Tue, 14 May 2024 21:08:14 -0700 +Subject: [PATCH] fix 32-bit compilation with GCC14 + +Wrong pointer type is used. +--- + core/regexp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/core/regexp.c b/core/regexp.c +index 74bb77751..2b59f16fb 100644 +--- a/core/regexp.c ++++ b/core/regexp.c +@@ -23,7 +23,7 @@ int uwsgi_regexp_build(char *re, uwsgi_pcre ** pattern) { + + #ifdef UWSGI_PCRE2 + int errnbr; +- long unsigned int erroff; ++ size_t erroff; + + *pattern = pcre2_compile((const unsigned char *) re, PCRE2_ZERO_TERMINATED, 0, &errnbr, &erroff, NULL); + #else diff --git a/uwsgi.changes b/uwsgi.changes index a16e667..1e34d26 100644 --- a/uwsgi.changes +++ b/uwsgi.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 25 16:31:34 UTC 2024 - Martin Jambor + +- Added a backport of uwsgi-93d07ec38b31.patch to fix a type + incompatibility problem to enable build with GCC 14. + ------------------------------------------------------------------- Tue May 14 07:07:42 UTC 2024 - pgajdos@suse.com diff --git a/uwsgi.spec b/uwsgi.spec index babe438..39009a0 100644 --- a/uwsgi.spec +++ b/uwsgi.spec @@ -58,6 +58,8 @@ Patch3: uwsgi-1.9.11-systemd_logger-old_systemd.patch Patch4: uwsgi-2.0.18-postgresql-config.patch # PATCH-FIX-UPSTREAM uwsgi-ld-noexecstack.patch - Do not create executable stack Patch5: uwsgi-ld-noexecstack.patch +# PATCH-FIX-UPSTREAM uwsgi-93d07ec38b31.patch - Fix build with GCC 14 on 32bit platforms +Patch6: uwsgi-93d07ec38b31.patch BuildRequires: apache-rpm-macros %if 0%{suse_version} < 1500 BuildRequires: apache2-devel