[SCM] The rsync repository. - branch master updated
Rsync CVS commit messages
rsync-cvs at lists.samba.org
Sun Jun 21 04:26:47 UTC 2020
The branch, master has been updated
via bad97961 Elide -g from CXXFLAGS before the c++ test.
via b0ab07cd Some README and man page tweaks.
from 68c45836 Change repo to be 3.2.1dev.
https://git.samba.org/?p=rsync.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit bad97961dc69d46e57af0b1076f9ebea7a7f3259
Author: Wayne Davison <wayne at opencoder.net>
Date: Sat Jun 20 21:26:21 2020 -0700
Elide -g from CXXFLAGS before the c++ test.
commit b0ab07cdac232fda91b85c216107ef722d2218e3
Author: Wayne Davison <wayne at opencoder.net>
Date: Sat Jun 20 20:29:27 2020 -0700
Some README and man page tweaks.
-----------------------------------------------------------------------
Summary of changes:
README.md | 25 +++++++++----------------
configure.ac | 5 +++--
rsync-ssl.1.md | 6 +++---
rsync.1.md | 8 +++-----
rsyncd.conf.5.md | 6 +++---
5 files changed, 21 insertions(+), 29 deletions(-)
Changeset truncated at 500 lines:
diff --git a/README.md b/README.md
index d15399cf..4c3894b5 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ WEB SITE
The main rsync web site is here:
-> http://rsync.samba.org/
+> https://rsync.samba.org/
You'll find a FAQ list, downloads, resources, HTML versions of the
manpages, etc.
@@ -80,7 +80,7 @@ list, and there is also an announcement-only mailing list for those that
want official announcements. See the mailing-list page for full
details:
-> http://rsync.samba.org/lists.html
+> https://rsync.samba.org/lists.html
BUG REPORTS
@@ -88,14 +88,14 @@ BUG REPORTS
To visit this web page for full the details on bug reporting:
-> http://rsync.samba.org/bugzilla.html
+> https://rsync.samba.org/bugtracking.html
That page contains links to the current bug list, and information on how
to report a bug well. You might also like to try searching the Internet
for the error message you've received, or looking in the mailing list
archives at:
-> http://mail-archive.com/rsync@lists.samba.org/
+> https://mail-archive.com/rsync@lists.samba.org/
To send a bug report, follow the instructions on the bug-tracking
page of the web site.
@@ -112,38 +112,31 @@ is hosted on github and on samba's site. Feel free to access it here:
> https://github.com/WayneD/rsync
-or clone it from its samba repo:
+A backup git repo is available on the samba site:
> git clone git://git.samba.org/rsync.git
See the download page for full details on all the ways to grab the
source:
-> http://rsync.samba.org/download.html
+> https://rsync.samba.org/download.html
COPYRIGHT
---------
Rsync was originally written by Andrew Tridgell and is currently
-maintained by Wayne Davison. It has been improved by many developers
+maintained by Wayne Davison. It has been improved by many developers
from around the world.
Rsync may be used, modified and redistributed only under the terms of
the GNU General Public License, found in the file COPYING in this
distribution, or at:
-> http://www.fsf.org/licenses/gpl.html
+> https://www.fsf.org/licenses/gpl.html
AVAILABILITY
------------
-The main web site for rsync is http://rsync.samba.org/
-
-The main ftp site is ftp://rsync.samba.org/pub/rsync/
-
-This is also available as rsync://download.samba.org/rsyncftp/ if you
-connect via ssl. Use the `rsync-ssl` script if you have it, otherwise
-connect to the rsync server via a normal rsync command and it will
-output some instructions for how to connect.
+The main web site for rsync is https://rsync.samba.org/
diff --git a/configure.ac b/configure.ac
index 89365077..cc6769ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -200,6 +200,9 @@ AC_MSG_CHECKING([whether to enable SIMD optimizations])
AC_ARG_ENABLE(simd,
AS_HELP_STRING([--disable-simd],[disable SIMD optimizations (requires c++)]))
+# Clag is crashing with -g -O2, so we'll get rid of -g for now.
+CXXFLAGS=`echo "$CXXFLAGS" | sed 's/-g //'`
+
if test x"$enable_simd" != x"no"; then
# For x86-64 SIMD, g++ >=5 or clang++ >=7 is required
if test x"$build_cpu" = x"x86_64"; then
@@ -244,8 +247,6 @@ if test x"$SIMD" != x""; then
AC_MSG_RESULT([yes ($SIMD)])
AC_DEFINE(HAVE_SIMD, 1, [Define to 1 to enable SIMD optimizations])
SIMD='$(SIMD_'"$SIMD)"
- # Clag is crashing with -g -O2, so we'll get rid of -g (just for the one file).
- CXXFLAGS=`echo "'$CXXFLAGS'" | sed 's/-g //'`
# We only use c++ for its target attribute dispatching, disable unneeded bulky features
CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti"
else
diff --git a/rsync-ssl.1.md b/rsync-ssl.1.md
index 31cb465f..3a014862 100644
--- a/rsync-ssl.1.md
+++ b/rsync-ssl.1.md
@@ -87,7 +87,7 @@ exported RSYNC_SSL_TYPE environment variable to make its use the default.
# BUGS
-Please report bugs! See the web site at <http://rsync.samba.org/>.
+Please report bugs! See the web site at <https://rsync.samba.org/>.
# VERSION
@@ -98,7 +98,7 @@ This man page is current for version @VERSION@ of rsync.
rsync is distributed under the GNU General Public License. See the file
COPYING for details.
-A web site is available at <http://rsync.samba.org/>. The site includes an
+A web site is available at <https://rsync.samba.org/>. The site includes an
FAQ-O-Matic which may cover questions unanswered by this manual page.
# AUTHOR
@@ -106,4 +106,4 @@ FAQ-O-Matic which may cover questions unanswered by this manual page.
This manpage was written by Wayne Davison.
Mailing lists for support and development are available at
-<http://lists.samba.org/>.
+<https://lists.samba.org/>.
diff --git a/rsync.1.md b/rsync.1.md
index 375f92ed..57f750af 100644
--- a/rsync.1.md
+++ b/rsync.1.md
@@ -3916,7 +3916,7 @@ values
see also the comments on the `--delete` option
-Please report bugs! See the web site at <http://rsync.samba.org/>.
+Please report bugs! See the web site at <https://rsync.samba.org/>.
# VERSION
@@ -3936,11 +3936,9 @@ that can be used with a restricted ssh login.
rsync is distributed under the GNU General Public License. See the file
COPYING for details.
-A web site is available at <http://rsync.samba.org/>. The site includes an
+A web site is available at <https://rsync.samba.org/>. The site includes an
FAQ-O-Matic which may cover questions unanswered by this manual page.
-The primary ftp site for rsync is <ftp://rsync.samba.org/pub/rsync>
-
We would be delighted to hear from you if you like this program. Please
contact the mailing-list at <rsync at lists.samba.org>.
@@ -3963,4 +3961,4 @@ people have later contributed to it. It is currently maintained by Wayne
Davison.
Mailing lists for support and development are available at
-<http://lists.samba.org/>.
+<https://lists.samba.org/>.
diff --git a/rsyncd.conf.5.md b/rsyncd.conf.5.md
index 30774222..84d2670a 100644
--- a/rsyncd.conf.5.md
+++ b/rsyncd.conf.5.md
@@ -1173,7 +1173,7 @@ The /etc/rsyncd.secrets file would look something like this:
# BUGS
Please report bugs! The rsync bug tracking system is online at
-<http://rsync.samba.org/>.
+<https://rsync.samba.org/>.
# VERSION
@@ -1186,7 +1186,7 @@ COPYING for details.
The primary ftp site for rsync is <ftp://rsync.samba.org/pub/rsync>
-A web site is available at <http://rsync.samba.org/>.
+A web site is available at <https://rsync.samba.org/>.
We would be delighted to hear from you if you like this program.
@@ -1204,4 +1204,4 @@ rsync was written by Andrew Tridgell and Paul Mackerras. Many people have
later contributed to it.
Mailing lists for support and development are available at
-<http://lists.samba.org/>.
+<https://lists.samba.org/>.
--
The rsync repository.
More information about the rsync-cvs
mailing list