[SCM] The rsync repository. - branch master updated
Rsync CVS commit messages <[email protected]> Sun, 17 Apr 2016 20:22:41 +0200 (CEST)
| Newsgroups | gmane.network.rsync.cvs |
|---|---|
| Message-ID | <[email protected]> |
The branch, master has been updated
via 71ec460 Fix use of obsolete compile macro. Fixes bug 11813.
from 0f7db20 Only output about new backup dirs when requested. Fixes bug 11812.
https://git.samba.org/?p=rsync.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 71ec4609eb8bc496648c3b56a3e503ec0451bb0e
Author: Wayne Davison <[email protected]>
Date: Sun Apr 17 11:20:38 2016 -0700
Fix use of obsolete compile macro.
Fixes bug 11813.
-----------------------------------------------------------------------
Summary of changes:
m4/socklen_t.m4 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Changeset truncated at 500 lines:
diff --git a/m4/socklen_t.m4 b/m4/socklen_t.m4
index 831820c..99ca6d4 100644
--- a/m4/socklen_t.m4
+++ b/m4/socklen_t.m4
@@ -18,15 +18,15 @@ AC_DEFUN([TYPE_SOCKLEN_T],
rsync_cv_socklen_t_equiv=
for arg2 in "struct sockaddr" void; do
for t in int size_t unsigned long "unsigned long"; do
- AC_TRY_COMPILE([
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/types.h>
#include <sys/socket.h>
int getpeername (int, $arg2 *, $t *);
- ],[
+ ]],[[
$t len;
getpeername(0,0,&len);
- ],[
+ ]])],[
rsync_cv_socklen_t_equiv="$t"
break
])
--
The rsync repository.