Subversion Repositories Tewi

Rev

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