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