Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rsync for openSUSE:Factory checked in at 2024-09-08 11:59:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rsync (Old) and /work/SRC/openSUSE:Factory/.rsync.new.10096 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rsync" Sun Sep 8 11:59:22 2024 rev:90 rq:1199223 version:3.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rsync/rsync.changes 2024-09-02 13:13:20.335577600 +0200 +++ /work/SRC/openSUSE:Factory/.rsync.new.10096/rsync.changes 2024-09-08 12:00:31.643825551 +0200 @@ -1,0 +2,5 @@ +Fri Sep 6 12:23:31 UTC 2024 - Marcus Meissner <meiss...@suse.com> + +- rsync-gcc14.patch: fixed the ipv6 configure check (bsc#1230156) + +------------------------------------------------------------------- New: ---- rsync-gcc14.patch BETA DEBUG BEGIN: New: - rsync-gcc14.patch: fixed the ipv6 configure check (bsc#1230156) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rsync.spec ++++++ --- /var/tmp/diff_new_pack.Ia6DAG/_old 2024-09-08 12:00:32.327853868 +0200 +++ /var/tmp/diff_new_pack.Ia6DAG/_new 2024-09-08 12:00:32.327853868 +0200 @@ -55,6 +55,7 @@ Source12: %{name}.keyring Source13: rsyncd Patch0: rsync-no-libattr.patch +Patch1: rsync-gcc14.patch Patch2: rsync-usr-etc.patch Patch3: rsync-run-dir.patch BuildRequires: autoconf ++++++ rsync-gcc14.patch ++++++ Index: rsync-3.3.0/configure.ac =================================================================== --- rsync-3.3.0.orig/configure.ac +++ rsync-3.3.0/configure.ac @@ -412,7 +412,7 @@ AS_HELP_STRING([--disable-ipv6],[disable #include <stdlib.h> #include <sys/types.h> #include <sys/socket.h> -main() +int main(void) { if (socket(AF_INET6, SOCK_STREAM, 0) < 0) exit(1);