Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package haproxy for openSUSE:Factory checked in at 2023-08-22 08:56:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/haproxy (Old) and /work/SRC/openSUSE:Factory/.haproxy.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "haproxy" Tue Aug 22 08:56:41 2023 rev:135 rq:1105108 version:2.8.2+git0.61a0f576a Changes: -------- --- /work/SRC/openSUSE:Factory/haproxy/haproxy.changes 2023-08-11 15:55:33.115769384 +0200 +++ /work/SRC/openSUSE:Factory/.haproxy.new.1766/haproxy.changes 2023-08-22 08:56:48.146633593 +0200 @@ -1,0 +2,7 @@ +Mon Aug 21 14:38:51 UTC 2023 - Peter Varkoly <vark...@suse.com> + +- Build error on ppc64le: include/import/xxhash.h:4148:9: error: invalid parameter combination for AltiVec intrinsic __builtin_vec_ld + Add patch: + fix-invalid-parameter-combination-for-AltiVec-intrinsic-__builtin_vec_ld.patch + +------------------------------------------------------------------- New: ---- fix-invalid-parameter-combination-for-AltiVec-intrinsic-__builtin_vec_ld.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ haproxy.spec ++++++ --- /var/tmp/diff_new_pack.sikgoq/_old 2023-08-22 08:56:48.854634938 +0200 +++ /var/tmp/diff_new_pack.sikgoq/_new 2023-08-22 08:56:48.858634946 +0200 @@ -99,6 +99,7 @@ Patch1: haproxy-1.6.0_config_haproxy_user.patch Patch2: haproxy-1.6.0-makefile_lib.patch Patch3: haproxy-1.6.0-sec-options.patch +Patch4: fix-invalid-parameter-combination-for-AltiVec-intrinsic-__builtin_vec_ld.patch # Source98: series Source99: haproxy-rpmlintrc ++++++ fix-invalid-parameter-combination-for-AltiVec-intrinsic-__builtin_vec_ld.patch ++++++ --- haproxy-2.8.2+git0.61a0f576a/include/import/xxhash.h.orig 2023-08-18 07:12:28.464256077 +0200 +++ haproxy-2.8.2+git0.61a0f576a/include/import/xxhash.h 2023-08-18 07:18:38.142879532 +0200 @@ -4129,7 +4129,8 @@ const void* XXH_RESTRICT secret) { /* presumed aligned */ - unsigned long long* const xacc = (unsigned long long*) acc; + /* unsigned long long* const xacc = (unsigned long long*) acc; */ + xxh_u64x2 const* const xacc = (xxh_u64x2 *) acc; xxh_u64x2 const* const xinput = (xxh_u64x2 const*) input; /* no alignment restriction */ xxh_u64x2 const* const xsecret = (xxh_u64x2 const*) secret; /* no alignment restriction */ xxh_u64x2 const v32 = { 32, 32 };