Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package keepalived for openSUSE:Factory checked in at 2021-07-21 19:06:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/keepalived (Old) and /work/SRC/openSUSE:Factory/.keepalived.new.2632 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "keepalived" Wed Jul 21 19:06:48 2021 rev:36 rq:907505 version:2.2.2 Changes: -------- --- /work/SRC/openSUSE:Factory/keepalived/keepalived.changes 2021-05-17 18:45:37.360545209 +0200 +++ /work/SRC/openSUSE:Factory/.keepalived.new.2632/keepalived.changes 2021-07-21 19:08:07.039472633 +0200 @@ -1,0 +2,5 @@ +Wed Jul 21 12:03:14 UTC 2021 - Dirk M??ller <[email protected]> + +- add 1915.patch to fix build on tumbleweed + +------------------------------------------------------------------- New: ---- 1915.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ keepalived.spec ++++++ --- /var/tmp/diff_new_pack.RvlIgt/_old 2021-07-21 19:08:07.447473342 +0200 +++ /var/tmp/diff_new_pack.RvlIgt/_new 2021-07-21 19:08:07.451473349 +0200 @@ -52,6 +52,8 @@ Source: http://www.keepalived.org/software/%{name}-%{version}.tar.gz Source2: keepalive-rpmlintrc Patch1: keepalive-init.patch +# PATCH-FIX-UPSTREAM: https://github.com/acassen/keepalived/pull/1915 +Patch2: 1915.patch BuildRequires: file-devel BuildRequires: net-snmp-devel BuildRequires: pkgconfig @@ -100,6 +102,7 @@ %prep %setup -q %patch1 -p1 +%patch2 -p1 chmod 644 doc/samples/* %build ++++++ 1915.patch ++++++ >From 3fd0c21e4f63ac0a52b5d7a09575f0f364972e4d Mon Sep 17 00:00:00 2001 From: Quentin Armitage <[email protected]> Date: Tue, 8 Jun 2021 08:57:45 +0100 Subject: [PATCH] core: Fix compiling on RHEL 9 Signed-off-by: Quentin Armitage <[email protected]> --- keepalived/core/layer4.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/keepalived/core/layer4.c b/keepalived/core/layer4.c index d2cc971a3..fdca04913 100644 --- a/keepalived/core/layer4.c +++ b/keepalived/core/layer4.c @@ -27,13 +27,14 @@ #include <errno.h> #include <unistd.h> #include <fcntl.h> +#include <netinet/in.h> +#include <net/if.h> #include <linux/icmp.h> #include <linux/icmpv6.h> #ifdef ERRQUEUE_NEEDS_SYS_TIME #include <sys/time.h> #endif #include <linux/errqueue.h> -#include <netinet/in.h> #include "layer4.h" #include "logger.h"
