source: Main/trunk/config.h.tmpl@ 159

Last change on this file since 159 was 156, checked in by Nishi, on Sep 25, 2024 at 9:28:10 PM

release 1.07

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