Subversion Repositories Tewi

Rev

Rev 128 | Rev 163 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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