source: Main/tags/2.00/config.h.tmpl

Last change on this file was 177, checked in by Nishi, on Sep 27, 2024 at 6:29:09 AM

2.00

  • Property svn:keywords set to Id
File size: 501 bytes
Line 
1/* $Id: config.h.tmpl 177 2024-09-26 21:29:09Z 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/*
33vim: syntax=c
34*/
Note: See TracBrowser for help on using the repository browser.