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