Author: hikari <hikari@undernet.org>
[ircu2.10.12-pk.git] / acconfig.h
1 #ifndef INCLUDED_config_h
2 #define INCLUDED_config_h
3 /*
4  * IRC - Internet Relay Chat, acconfig.h
5  * Copyright (C) 2000 Kevin L. Mitchell <klmitch@mit.edu>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * $Id$
22  */
23 @TOP@
24
25 /* Define if you have the setrlimit function */
26 #undef HAVE_SETRLIMIT
27
28 /* Define one of these, depending on wether you have
29  * POSIX, BSD or SYSV non-blocking stuff
30  */
31 #undef NBLOCK_POSIX
32 #undef NBLOCK_BSD
33 #undef NBLOCK_SYSV
34
35 /* Define on of these, depending on wether you have
36  * POSIX, BSD or SYSV signal handling
37  */
38 #undef POSIX_SIGNALS
39 #undef BSD_RELIABLE_SIGNALS
40 #undef SYSV_UNRELIABLE_SIGNALS
41
42 /* Define these to be unsigned integral internal types,
43  * of respecitvely 2 and 4 bytes in size, when not already
44  * defined in <sys/types.h>, <stdlib.h> or <stddef.h>
45  */
46 #undef u_int16_t
47 #undef u_int32_t
48
49 /* Define to force the poll() function to be used */
50 #undef USE_POLL
51 /* Define to enable the /dev/poll engine */
52 #undef USE_DEVPOLL
53 /* Define to enable the kqueue engine */
54 #undef USE_KQUEUE
55
56 /* Define to enable various debugging code in the server; DO NOT USE
57  * THIS ON PRODUCTION SERVERS ON PAIN OF DELINKING!
58  */
59 #undef DEBUGMODE
60
61 /* Define this to DISable various assertion checking statements */
62 #undef NDEBUG
63
64 /* Define to force certain critical functions to be inlined */
65 #undef FORCEINLINE
66
67 /* Define to be the local domain name for some statics gathering */
68 #undef DOMAINNAME
69
70 /* Define to be the name of the executable to be executed on /restart */
71 #undef SPATH
72
73 /* Define to be the path to the data directory */
74 #undef DPATH
75
76 /* Define to be the name of the configuration file */
77 #undef CPATH
78
79 /* Define to be the name of the debugging log file */
80 #undef LPATH
81
82 /* Define to be the maximum number of network connections */
83 #undef MAXCONNECTIONS
84
85 @BOTTOM@
86 #endif /* INCLUDED_config_h */