search for: ic_chck

Displaying 4 results from an estimated 4 matches for "ic_chck".

Did you mean: i_check
2008 Feb 03
5
Compiling with --disable-iconv
I've been trying to compile 3.0.0pre8 under cygwin. I was getting a problem with the iconv functions which I think are related to the cygwin environment and its iconv.h. To bypass it I wanted to compile with the --disable-iconv function. I'm still getting the following errors during compile: /usr/src/rsync-3.0.0pre8/rsync.c:85: undefined reference to `_iconv_open'rsync.o: In
2023 Jul 03
0
[PATCH] Add option --log-after to log after moving file into place
...-git a/log.c b/log.c index e4ba1cce..a973b519 100644 --- a/log.c +++ b/log.c @@ -47,6 +47,7 @@ extern mode_t orig_umask; extern char *auth_user; extern char *stdout_format; extern char *logfile_format; +extern char *logafter_format; extern char *logfile_name; #ifdef ICONV_CONST extern iconv_t ic_chck; @@ -271,6 +272,8 @@ void rwrite(enum logcode code, const char *buf, int len, int is_utf8) * that the msg gets logged and then sent to stderr after that. */ if (am_daemon > 0 && code != FCLIENT) code = FLOG; + } else if (code == FLOG_AFTER) { + code = FLOG; } else if (send_...
2008 Feb 15
4
Revised flags patch
.../rsync.c Fri Feb 15 19:39:33 2008 @@ -32,6 +32,7 @@ extern int dry_run; extern int preserve_acls; extern int preserve_xattrs; extern int preserve_perms; +extern int preserve_fileflags; extern int preserve_executability; extern int preserve_times; extern int am_root; @@ -60,6 +61,16 @@ iconv_t ic_chck = (iconv_t)-1; iconv_t ic_send = (iconv_t)-1, ic_recv = (iconv_t)-1; # endif +#ifdef SUPPORT_FLAGS +#ifndef UF_NOUNLINK +#define UF_NOUNLINK 0 +#endif +#ifndef SF_NOUNLINK +#define SF_NOUNLINK 0 +#endif +#define NOCHANGE_FLAGS (UF_IMMUTABLE|UF_APPEND|UF_NOUNLINK|SF_IMMUTABLE|SF_APPEND|SF_NOUNLI...
2007 Sep 22
0
rsync build on IA64 using icc
...419: external declaration in primary source file extern char *logfile_format; ^ log.c(48): remark #1419: external declaration in primary source file extern char *logfile_name; ^ log.c(50): remark #1419: external declaration in primary source file extern iconv_t ic_chck; ^ log.c(52): remark #1419: external declaration in primary source file extern char curr_dir[]; ^ log.c(53): remark #1419: external declaration in primary source file extern unsigned int module_dirlen; ^ log.c(112): remark #981: operands a...