diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-31 14:52:23 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-31 14:52:23 +0100 |
commit | 154097445c62349a636e81488589c204ec241f01 (patch) | |
tree | a9bd4b5662bb36a9a1320690de622d9a38bad6e6 | |
parent | a0b9f04eaa03d0629488d3ee810641c4c673a83f (diff) |
Remove unused header file
-rw-r--r-- | config.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/config.h b/config.h deleted file mode 100644 index 6e98fbb..0000000 --- a/config.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef __CONFIG_H -#define __CONFIG_H - -#ifdef __APPLE__ -#include <AvailabilityMacros.h> -#endif - -/* test for malloc_size() */ -#ifdef __APPLE__ -#include <malloc/malloc.h> -#define HAVE_MALLOC_SIZE 1 -#define redis_malloc_size(p) malloc_size(p) -#endif - -/* define redis_fstat to fstat or fstat64() */ -#if defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6) -#define redis_fstat fstat64 -#define redis_stat stat64 -#else -#define redis_fstat fstat -#define redis_stat stat -#endif - -/* test for backtrace() */ -#if defined(__APPLE__) || defined(__linux__) -#define HAVE_BACKTRACE 1 -#endif - -/* test for polling API */ -#ifdef __linux__ -#define HAVE_EPOLL 1 -#endif - -#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 |