]> arthur.barton.de Git - ngircd-alex.git/blob - contrib/MacOSX/config.h
Enable more compiler warnings when using Xcode.
[ngircd-alex.git] / contrib / MacOSX / config.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2007 Alexander Barton (alex@barton.de).
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * $Id: config.h,v 1.1 2007/11/19 22:11:36 alex Exp $
12  *
13  * Static configuration file for Mac OS X Xcode project
14  */
15
16 #define PACKAGE_NAME "ngircd"
17 #define VERSION "??"
18 #define SYSCONFDIR "/etc/ngircd"
19
20 /* -- Build options -- */
21
22 /* Define if debug-mode should be enabled */
23 #define DEBUG 1
24
25 /* Define if the server should do IDENT requests */
26 /*#define IDENTAUTH 1*/
27
28 /* Define if IRC+ protocol should be used */
29 #define IRCPLUS 1
30
31 /* Define if IRC sniffer should be enabled */
32 /*#define SNIFFER 1*/
33
34 /* Define if syslog should be used for logging */
35 #define SYSLOG 1
36
37 /* Define if TCP wrappers should be used */
38 /*#define TCPWRAP 1*/
39
40 /* Define if support for Zeroconf should be included */
41 /*#define ZEROCONF 1*/
42
43 /* Define if zlib compression should be enabled */
44 #define ZLIB 1
45
46 /* -- Supported features -- */
47
48 /* Define if SSP C support is enabled. */
49 #define ENABLE_SSP_CC 1
50
51 /* Define to 1 if the C compiler supports function prototypes. */
52 #define PROTOTYPES 1
53 /* Define like PROTOTYPES; this can be used by system headers. */
54 #define __PROTOTYPES 1
55
56 /* Define to 1 if you have the <sys/types.h> header file. */
57 #define HAVE_SYS_TYPES_H 1
58 /* Define to 1 if you have the <inttypes.h> header file. */
59 #define HAVE_INTTYPES_H 1
60 /* Define to 1 if you have the <stddef.h> header file. */
61 #define HAVE_STDDEF_H 1
62 /* Define to 1 if you have the <stdbool.h> header file. */
63 #define HAVE_STDBOOL_H 1
64 /* Define to 1 if you have the <arpa/inet.h> header file. */
65 #define HAVE_ARPA_INET_H 1
66
67 /* Define to 1 if you have the `kqueue' function. */
68 #define HAVE_KQUEUE 1
69 /* Define to 1 if you have the `inet_ntoa' function. */
70 #define HAVE_INET_NTOA 1
71 /* Define to 1 if you have the `snprintf' function. */
72 #define HAVE_SNPRINTF 1
73 /* Define to 1 if you have the `strlcat' function. */
74 #define HAVE_STRLCAT 1
75 /* Define to 1 if you have the `strlcpy' function. */
76 #define HAVE_STRLCPY 1
77 /* Define to 1 if you have the `strdup' function. */
78 #define HAVE_STRDUP 1
79 /* Define to 1 if you have the `vsnprintf' function. */
80 #define HAVE_VSNPRINTF 1
81
82 /* Define if socklen_t exists */
83 #define HAVE_socklen_t 1
84
85 #ifdef ZEROCONF
86 /* Define to 1 if you have the <DNSServiceDiscovery/DNSServiceDiscovery.h> header file. */
87 #define HAVE_DNSSERVICEDISCOVERY_DNSSERVICEDISCOVERY_H 1
88 /* Define to 1 if you have the `DNSServiceRegistrationCreate' function. */
89 #define HAVE_DNSSERVICEREGISTRATIONCREATE 1
90 #endif
91
92 /* -eof- */