Script 'mail_helper' called by obssrc Hello community,
here is the log from the commit of package codelite for openSUSE:Factory checked in at 2021-09-30 23:43:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/codelite (Old) and /work/SRC/openSUSE:Factory/.codelite.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "codelite"
Thu Sep 30 23:43:54 2021 rev:16 rq:922367 version:15.0.0
Changes: -------- --- /work/SRC/openSUSE:Factory/codelite/codelite.changes 2021-03-30 21:50:15.286905427 +0200 +++ /work/SRC/openSUSE:Factory/.codelite.new.2443/codelite.changes 2021-09-30 23:45:13.332594881 +0200 @@ -1,0 +2,6 @@ +Thu Sep 30 10:45:20 UTC 2021 - Christophe Giboudeaux christophe@krop.fr + +- Backport change from cppcheck: + * 0001-Fix-compilation-with-recent-glibc-where-SIGSTKSZ-is-.patch + +-------------------------------------------------------------------
New: ---- 0001-Fix-compilation-with-recent-glibc-where-SIGSTKSZ-is-.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences: ------------------ ++++++ codelite.spec ++++++ --- /var/tmp/diff_new_pack.LmzPlQ/_old 2021-09-30 23:45:14.252595934 +0200 +++ /var/tmp/diff_new_pack.LmzPlQ/_new 2021-09-30 23:45:14.252595934 +0200 @@ -42,6 +42,8 @@ Patch0: fix_compilation_JSON_wxWidgets.patch # PATCH-FIX-OPENSUSE fix_node_env-script-interpreter.patch andythe_great@pm.me -- Fix RPMLINT warning env-script-interpreter. Patch1: fix_node_env-script-interpreter.patch +# PATCH-FIX-UPSTREAM +Patch2: 0001-Fix-compilation-with-recent-glibc-where-SIGSTKSZ-is-.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++
++++++ 0001-Fix-compilation-with-recent-glibc-where-SIGSTKSZ-is-.patch ++++++ From 4cfcffe3ec88dcef8d779ed55a782d351cdffb9c Mon Sep 17 00:00:00 2001 From: Lauri Nurmi lanurmi@iki.fi Date: Wed, 4 Aug 2021 08:45:50 +0300 Subject: [PATCH] Fix compilation with recent glibc where SIGSTKSZ is not constant. (#3378)
--- sdk/codelite_cppcheck/cli/cppcheckexecutor.cpp | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/sdk/codelite_cppcheck/cli/cppcheckexecutor.cpp b/sdk/codelite_cppcheck/cli/cppcheckexecutor.cpp index 49a8a6f..3fa0857 100644 --- a/sdk/codelite_cppcheck/cli/cppcheckexecutor.cpp +++ b/sdk/codelite_cppcheck/cli/cppcheckexecutor.cpp @@ -334,7 +334,11 @@ static void print_stacktrace(FILE* output, bool demangling, int maxdepth, bool l #endif }
+#ifdef __USE_DYNAMIC_STACK_SIZE +static const size_t MYSTACKSIZE = 16*1024+32768; // wild guess about a reasonable buffer +#else static const size_t MYSTACKSIZE = 16*1024+SIGSTKSZ; // wild guess about a reasonable buffer +#endif static char mytstack[MYSTACKSIZE]= {0}; // alternative stack for signal handler static bool bStackBelowHeap=false; // lame attempt to locate heap vs. stack address space. See CppCheckExecutor::check_wrapper()