1
0
Fridrich Strba 2024-06-14 13:52:25 +00:00 committed by Git OBS Bridge
parent 7f64e9de27
commit 1ba1029fa1
2 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Jun 14 13:31:41 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Fix condition enabling shenandoah GC only for Factory. It was by
mistake enabled for SLE too (bsc#1226274)
- Disable shenandoah for all distributions, since the shenandoah
hotspot tarball is rather out of sync.
-------------------------------------------------------------------
Mon May 6 17:41:21 UTC 2024 - Fridrich Strba <fstrba@suse.com>

View File

@ -128,11 +128,11 @@
%if 0%{?__isa_bits}
%global bits %{__isa_bits}
%endif
%if 0%{?suse_version} > 1500 && !0%{?sle_version}
%global with_shenandoah 1
%else
#if 0%{?suse_version} > 1500 && !0%{?sle_version}
#global with_shenandoah 1
#else
%global with_shenandoah 0
%endif
#endif
%global NSS_LIBDIR %(pkg-config --variable=libdir nss)
%bcond_without bootstrap
%bcond_with zero
@ -502,7 +502,7 @@ sh autogen.sh
%ifarch %{arm}
--with-hotspot-src-zip=%{SOURCE2} \
%else
%if %{without zero} && %{with shenandoah}
%if %{without zero} && %{with_shenandoah}
--with-hotspot-src-zip=%{SOURCE3} \
--with-hotspot-build=shenandoah \
%endif