Hello community, here is the log from the commit of package subversion for openSUSE:Factory checked in at 2020-04-04 12:19:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/subversion (Old) and /work/SRC/openSUSE:Factory/.subversion.new.3248 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "subversion" Sat Apr 4 12:19:08 2020 rev:171 rq:789995 version:1.13.0 Changes: -------- --- /work/SRC/openSUSE:Factory/subversion/subversion.changes 2020-01-11 14:37:10.085116613 +0100 +++ /work/SRC/openSUSE:Factory/.subversion.new.3248/subversion.changes 2020-04-04 12:19:11.895612461 +0200 @@ -1,0 +2,5 @@ +Tue Mar 31 06:02:23 UTC 2020 - Martin Liška <[email protected]> + +- Fix boo#1167467 by gcc10-do-not-optimize-get_externals_to_pin.patch. + +------------------------------------------------------------------- New: ---- gcc10-do-not-optimize-get_externals_to_pin.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ subversion.spec ++++++ --- /var/tmp/diff_new_pack.Wov3xk/_old 2020-04-04 12:19:13.819614115 +0200 +++ /var/tmp/diff_new_pack.Wov3xk/_new 2020-04-04 12:19:13.819614115 +0200 @@ -62,6 +62,7 @@ Patch40: subversion-perl-underlinking.patch # PATCH-FIX-UPSTREAM subversion-1.12.0-swig-4.patch -- Support Swig 4 Patch41: subversion-1.12.0-swig-4.patch +Patch42: gcc10-do-not-optimize-get_externals_to_pin.patch BuildRequires: apache-rpm-macros BuildRequires: apache2-devel >= 2.2.0 BuildRequires: apache2-prefork @@ -242,6 +243,7 @@ %if 0%{?suse_version} > 1500 %patch41 -p1 %endif +%patch42 -p1 %build # Re-boot strap, needed for patch37 ++++++ gcc10-do-not-optimize-get_externals_to_pin.patch ++++++ diff --git a/subversion/bindings/javahl/native/SVNClient.cpp b/subversion/bindings/javahl/native/SVNClient.cpp index 2c83f56..f1c8b02 100644 --- a/subversion/bindings/javahl/native/SVNClient.cpp +++ b/subversion/bindings/javahl/native/SVNClient.cpp @@ -77,10 +77,13 @@ #include "private/svn_subr_private.h" #include "svn_private_config.h" +#pragma GCC push_options +#pragma GCC optimize("-O0") #include "ExternalItem.hpp" #include "jniwrapper/jni_list.hpp" #include "jniwrapper/jni_stack.hpp" #include "jniwrapper/jni_string_map.hpp" +#pragma GCC pop_options SVNClient::SVNClient(jobject jthis_in)
