]> git.saurik.com Git - redis.git/blobdiff - config.h
EXPIREAT implemented, will be useful for the append-only mode
[redis.git] / config.h
index 52f1afdb793e12d341d5e9ae43b2da8a3762923d..c19cfc74bedc98cc2f4be45027bccd4d6563b1ea 100644 (file)
--- a/config.h
+++ b/config.h
@@ -1,6 +1,10 @@
 #ifndef __CONFIG_H
 #define __CONFIG_H
 
+#ifdef __APPLE__
+#include <AvailabilityMacros.h>
+#endif
+
 /* test for malloc_size() */
 #ifdef __APPLE__
 #include <malloc/malloc.h>
@@ -9,7 +13,7 @@
 #endif
 
 /* define redis_fstat to fstat or fstat64() */
-#ifdef __APPLE__
+#if defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
 #define redis_fstat fstat64
 #define redis_stat stat64
 #else