X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/280cbb85375b7968e4f81c86ceb303c7f1ee563b..7b8356d0bcc11d7681294afde83a18dfd46fa1ad:/rsync.h diff --git a/rsync.h b/rsync.h index ce360185..6e7210cf 100644 --- a/rsync.h +++ b/rsync.h @@ -19,7 +19,13 @@ #define BLOCK_SIZE 700 #define RSYNC_RSH_ENV "RSYNC_RSH" + +#if HAVE_REMSH +#define RSYNC_RSH "remsh" +#else #define RSYNC_RSH "rsh" +#endif + #define RSYNC_NAME "rsync" #define BACKUP_SUFFIX "~" @@ -283,5 +289,21 @@ extern int errno; #define EWOULDBLOCK EAGAIN #endif +#ifndef STDIN_FILENO +#define STDIN_FILENO 0 +#endif + +#ifndef STDOUT_FILENO +#define STDOUT_FILENO 1 +#endif + +#ifndef STDERR_FILENO +#define STDERR_FILENO 2 +#endif + +#ifndef S_IWUSR +#define S_IWUSR 0200 +#endif + #define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))