]> arthur.barton.de Git - ngircd-alex.git/blob - contrib/MacOSX/config.h
Xcode: define TARGET_VENDOR and TARGET_OS
[ngircd-alex.git] / contrib / MacOSX / config.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2009 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  * Static configuration file for Mac OS X Xcode project
12  */
13
14 #define PACKAGE_NAME "ngircd"
15 #define VERSION "??"
16 #define SYSCONFDIR "/etc/ngircd"
17
18 #ifndef TARGET_VENDOR
19 #define TARGET_VENDOR "apple"
20 #define TARGET_OS "darwin"
21 #endif
22
23 /* -- Build options -- */
24
25 /* Define if debug-mode should be enabled */
26 #define DEBUG 1
27
28 /* Define if the server should do IDENT requests */
29 /*#define IDENTAUTH 1*/
30
31 /* Define if IRC+ protocol should be used */
32 #define IRCPLUS 1
33
34 /* Define if IRC sniffer should be enabled */
35 /*#define SNIFFER 1*/
36
37 /* Define if syslog should be used for logging */
38 #define SYSLOG 1
39
40 /* Define if TCP wrappers should be used */
41 /*#define TCPWRAP 1*/
42
43 /* Define if support for Zeroconf should be included */
44 /*#define ZEROCONF 1*/
45
46 /* Define if zlib compression should be enabled */
47 #define ZLIB 1
48
49 /* -- Supported features -- */
50
51 /* Define if SSP C support is enabled. */
52 #define ENABLE_SSP_CC 1
53
54 /* Define to 1 if the C compiler supports function prototypes. */
55 #define PROTOTYPES 1
56 /* Define like PROTOTYPES; this can be used by system headers. */
57 #define __PROTOTYPES 1
58
59 /* Define to 1 if you have the <sys/types.h> header file. */
60 #define HAVE_SYS_TYPES_H 1
61 /* Define to 1 if you have the <inttypes.h> header file. */
62 #define HAVE_INTTYPES_H 1
63 /* Define to 1 if you have the <stddef.h> header file. */
64 #define HAVE_STDDEF_H 1
65 /* Define to 1 if you have the <stdbool.h> header file. */
66 #define HAVE_STDBOOL_H 1
67 /* Define to 1 if you have the <arpa/inet.h> header file. */
68 #define HAVE_ARPA_INET_H 1
69
70 /* Define to 1 if you have the `kqueue' function. */
71 #define HAVE_KQUEUE 1
72 /* Define to 1 if you have the `inet_ntoa' function. */
73 #define HAVE_INET_NTOA 1
74 /* Define to 1 if you have the `snprintf' function. */
75 #define HAVE_SNPRINTF 1
76 /* Define to 1 if you have the `strlcat' function. */
77 #define HAVE_STRLCAT 1
78 /* Define to 1 if you have the `strlcpy' function. */
79 #define HAVE_STRLCPY 1
80 /* Define to 1 if you have the `strdup' function. */
81 #define HAVE_STRDUP 1
82 /* Define to 1 if you have the `vsnprintf' function. */
83 #define HAVE_VSNPRINTF 1
84
85 /* Define if socklen_t exists */
86 #define HAVE_socklen_t 1
87
88 #ifdef ZEROCONF
89 /* Define to 1 if you have the <DNSServiceDiscovery/DNSServiceDiscovery.h> header file. */
90 #define HAVE_DNSSERVICEDISCOVERY_DNSSERVICEDISCOVERY_H 1
91 /* Define to 1 if you have the `DNSServiceRegistrationCreate' function. */
92 #define HAVE_DNSSERVICEREGISTRATIONCREATE 1
93 #endif
94
95 /* -eof- */