]> git.saurik.com Git - redis.git/blame - config.h
commented the HAVE_EPOLL test in config.h to allow compilation under Linux now that...
[redis.git] / config.h
CommitLineData
dde65f3f 1#ifndef __CONFIG_H
2#define __CONFIG_H
3
06db1f50 4#ifdef __APPLE__
5#include <AvailabilityMacros.h>
6#endif
7
d76412d1 8/* test for malloc_size() */
dde65f3f 9#ifdef __APPLE__
10#include <malloc/malloc.h>
d76412d1 11#define HAVE_MALLOC_SIZE 1
dde65f3f 12#define redis_malloc_size(p) malloc_size(p)
13#endif
14
15/* define redis_fstat to fstat or fstat64() */
06db1f50 16#if defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
dde65f3f 17#define redis_fstat fstat64
18#define redis_stat stat64
19#else
20#define redis_fstat fstat
21#define redis_stat stat
22#endif
23
d76412d1 24/* test for backtrace() */
25#if defined(__APPLE__) || defined(__linux__)
26#define HAVE_BACKTRACE 1
27#endif
28
266373b2 29/* test for polling API */
fb6a1967 30#if 0
266373b2 31#ifdef __linux__
32#define HAVE_EPOLL 1
33#endif
fb6a1967 34#endif
266373b2 35
dde65f3f 36#endif