From: antirez Date: Mon, 23 Nov 2009 17:55:35 +0000 (+0100) Subject: commented the HAVE_EPOLL test in config.h to allow compilation under Linux now that... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/fb6a19677819cb2e35723bb5565a603cb069f461?ds=inline commented the HAVE_EPOLL test in config.h to allow compilation under Linux now that the epoll module is still missing --- diff --git a/config.h b/config.h index af733895..730f7c52 100644 --- a/config.h +++ b/config.h @@ -27,8 +27,10 @@ #endif /* test for polling API */ +#if 0 #ifdef __linux__ #define HAVE_EPOLL 1 #endif +#endif #endif