Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rsync - update from 3.3.0 to 3.4.0 (r151052) #3804

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/rsync/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
# }}}
#
# Copyright 2011-2012 OmniTI Computer Consulting, Inc. All rights reserved.
# Copyright 2024 OmniOS Community Edition (OmniOSce) Association.
# Copyright 2025 OmniOS Community Edition (OmniOSce) Association.

. ../../lib/build.sh

PROG=rsync
VER=3.3.0
VER=3.4.0
PKG=network/rsync
SUMMARY="rsync - faster, flexible replacement for rcp"
DESC="An open source utility that provides fast incremental file transfer"
Expand Down
23 changes: 12 additions & 11 deletions build/rsync/patches/gcc14.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
diff -wpruN --no-dereference '--exclude=*.orig' a~/configure.ac a/configure.ac
--- a~/configure.ac 1970-01-01 00:00:00
+++ a/configure.ac 1970-01-01 00:00:00
@@ -392,7 +392,7 @@ AS_HELP_STRING([--disable-ipv6],[disable
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
-main()
+int main(void)
diff --git a/popt/findme.c b/popt/findme.c
index ac4cbae..65f6ebc 100644
--- a/popt/findme.c
+++ b/popt/findme.c
@@ -9,6 +9,8 @@
#include "system.h"
#include "findme.h"

+#include <alloca.h>
+
const char * findProgramPath(const char * argv0)
{
if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
exit(1);
char * path = getenv("PATH");
3 changes: 2 additions & 1 deletion build/rsync/testsuite.log
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ PASS missing
PASS mkpath
SKIP protected-regular (Can't find protected_regular setting (only available on Linux))
PASS relative
PASS safe-links
PASS ssh-basic
PASS symlink-ignore
PASS trimslash
Expand All @@ -45,6 +46,6 @@ PASS xattrs-hlink
PASS xattrs
------------------------------------------------------------
----- overall results:
39 passed
40 passed
6 skipped
------------------------------------------------------------
Loading