]> git.saurik.com Git - redis.git/blobdiff - config.h
update Makefile to include ziplist.o
[redis.git] / config.h
index 754d3aa86f7341c7dad02664b8d10f47d270598e..6e98fbb2cecbceb32a192f1c8bae367cb1b7a11f 100644 (file)
--- a/config.h
+++ b/config.h
 #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