Subversion Repositories Tewi

Rev

Rev 163 | Rev 182 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
43 nishi 1
/* $Id: config.h.tmpl 173 2024-09-26 21:18:46Z nishi $ */
2
 
3
#ifndef __CONFIG_H__
4
#define __CONFIG_H__
5
 
128 nishi 6
#define SERVER_ADMIN "webmaster@domain"
7
 
173 nishi 8
#undef NO_IPV6
50 nishi 9
#undef NO_SSL
118 nishi 10
#define USE_POLL
156 nishi 11
#define HAS_CHROOT
163 nishi 12
#undef NO_GETADDRINFO
43 nishi 13
 
14
/* DO NOT EDIT BELOW THIS LINE */
15
 
16
#ifdef NO_SSL
17
#define SSL void
18
#endif
19
 
118 nishi 20
#if defined(__MINGW32__) && defined(USE_POLL)
21
#undef USE_POLL
22
/* Force select(2) for Windows */
43 nishi 23
#endif
79 nishi 24
 
156 nishi 25
#if defined(__MINGW32__) && defined(HAS_CHROOT)
26
#undef HAS_CHROOT
27
/* Windows should not have chroot */
118 nishi 28
#endif
29
 
156 nishi 30
#endif
31
 
79 nishi 32
/*
33
vim: syntax=c
34
*/