X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/f3053eb0eb704dea7ff39f389f344a37e3985aab..e1f93d4b2cc94fec29ede9b3cedea891ee9bd050:/config.h diff --git a/config.h b/config.h index 86e943dd..6e98fbb2 100644 --- a/config.h +++ b/config.h @@ -31,8 +31,15 @@ #define HAVE_EPOLL 1 #endif -#ifdef __APPLE__ +#if (defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_6)) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined (__NetBSD__) #define HAVE_KQUEUE 1 #endif +/* define aof_fsync to fdatasync() in Linux and fsync() for all the rest */ +#ifdef __linux__ +#define aof_fsync fdatasync +#else +#define aof_fsync fsync +#endif + #endif