/* $Id: config.h.tmpl 156 2024-09-25 12:28:10Z nishi $ */ #ifndef __CONFIG_H__ #define __CONFIG_H__ #define SERVER_ADMIN "webmaster@domain" #undef NO_SSL #define USE_POLL #define HAS_CHROOT /* DO NOT EDIT BELOW THIS LINE */ #ifdef NO_SSL #define SSL void #endif #if defined(__MINGW32__) && defined(USE_POLL) #undef USE_POLL /* Force select(2) for Windows */ #endif #if defined(__MINGW32__) && defined(HAS_CHROOT) #undef HAS_CHROOT /* Windows should not have chroot */ #endif #endif /* vim: syntax=c */