From: Wayne Davison Date: Mon, 3 Aug 2020 20:27:00 +0000 (-0700) Subject: Move SUPPORT_ATIMES to rsync.h. X-Git-Tag: v3.2.3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c89f00d1bc2b367c8385e3b423007569a83f228;p=thirdparty%2Frsync.git Move SUPPORT_ATIMES to rsync.h. --- diff --git a/options.c b/options.c index 1857f70a..a9f0dc9e 100644 --- a/options.c +++ b/options.c @@ -192,10 +192,6 @@ const char **remote_options = NULL; const char *checksum_choice = NULL; const char *compress_choice = NULL; -#ifndef __APPLE__ /* Do we need a configure check for this? */ -#define SUPPORT_ATIMES 1 -#endif - int quiet = 0; int output_motd = 1; int log_before_transfer = 0; diff --git a/rsync.h b/rsync.h index b8bdd786..c688f09c 100644 --- a/rsync.h +++ b/rsync.h @@ -570,6 +570,10 @@ typedef unsigned int size_t; #endif #endif +#ifndef __APPLE__ /* Do we need a configure check for this? */ +#define SUPPORT_ATIMES 1 +#endif + #ifdef HAVE_GETATTRLIST #define SUPPORT_CRTIMES 1 #endif