1 #ifndef CONFIG_H 2 #define CONFIG_H 3 4 #if defined(__FreeBSD__) || defined(__APPLE__) 5 #define HAVE_KQUEUE 6 #elif defined(__linux__) 7 #define HAVE_EPOLL 8 #elif defined (__sun) 9 #define HAVE_EVPORT 10 #define _XPG6 11 #define __EXTENSIONS__ 12 #include <stropts.h> 13 #include <sys/filio.h> 14 #include <sys/time.h> 15 #endif 16 17 #endif /* CONFIG_H */