]> arthur.barton.de Git - ngircd-alex.git/blob - contrib/MacOSX/config.h
Implement METADATA command to update client metadata
[ngircd-alex.git] / contrib / MacOSX / config.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors.
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 PACKAGE "ngircd"
16 #ifndef VERSION
17 #define VERSION "??("__DATE__")"
18 #endif
19 #define SYSCONFDIR "/etc/ngircd"
20
21 #ifndef TARGET_VENDOR
22 #define TARGET_VENDOR "apple"
23 #define TARGET_OS "darwin"
24 #endif
25
26 /* -- Build options -- */
27
28 /* Define if debug-mode should be enabled */
29 #define DEBUG 1
30
31 /* Define if the server should do IDENT requests */
32 /*#define IDENTAUTH 1*/
33
34 /* Define if IRC+ protocol should be used */
35 #define IRCPLUS 1
36
37 /* Define if IRC sniffer should be enabled */
38 /*#define SNIFFER 1*/
39
40 /* Define if syslog should be used for logging */
41 #define SYSLOG 1
42
43 /* Define if TCP wrappers should be used */
44 /*#define TCPWRAP 1*/
45
46 /* Define if zlib compression should be enabled */
47 #define ZLIB 1
48
49 /* Define if IPV6 protocol should be enabled */
50 #define WANT_IPV6 1
51
52 /* Define if PAM should be used */
53 #define PAM 1
54
55 /* Define if libiconv can be used, e.g. for CHARCONV */
56 #define ICONV 1
57
58 /* -- Supported features -- */
59
60 /* Define if SSP C support is enabled. */
61 #define ENABLE_SSP_CC 1
62
63 /* Define to 1 if the C compiler supports function prototypes. */
64 #define PROTOTYPES 1
65 /* Define like PROTOTYPES; this can be used by system headers. */
66 #define __PROTOTYPES 1
67
68 /* Define to 1 if you have the <sys/types.h> header file. */
69 #define HAVE_SYS_TYPES_H 1
70 /* Define to 1 if you have the <inttypes.h> header file. */
71 #define HAVE_INTTYPES_H 1
72 /* Define to 1 if you have the <stddef.h> header file. */
73 #define HAVE_STDDEF_H 1
74 /* Define to 1 if you have the <stdbool.h> header file. */
75 #define HAVE_STDBOOL_H 1
76 /* Define to 1 if you have the <arpa/inet.h> header file. */
77 #define HAVE_ARPA_INET_H 1
78 /* Define to 1 if you have the <netinet/ip.h> header file. */
79 #define HAVE_NETINET_IP_H 1
80
81 /* Define to 1 if you have the `gai_strerror' function. */
82 #define HAVE_GAI_STRERROR 1
83 /* Define to 1 if you have the `iconv_open' function. */
84 #define HAVE_ICONV_OPEN 1
85 /* Define to 1 if you have the `kqueue' function. */
86 #define HAVE_KQUEUE 1
87 /* Define to 1 if you have the `inet_ntoa' function. */
88 #define HAVE_INET_NTOA 1
89 /* Define to 1 if you have the `snprintf' function. */
90 #define HAVE_SNPRINTF 1
91 /* Define to 1 if you have the `strlcat' function. */
92 #define HAVE_STRLCAT 1
93 /* Define to 1 if you have the `strlcpy' function. */
94 #define HAVE_STRLCPY 1
95 /* Define to 1 if you have the `strdup' function. */
96 #define HAVE_STRDUP 1
97 /* Define to 1 if you have the `vsnprintf' function. */
98 #define HAVE_VSNPRINTF 1
99 /* Define to 1 if you have the `inet_aton' function. */
100 #define HAVE_INET_ATON 1
101 /* Define to 1 if you have the `getaddrinfo' function. */
102 #define HAVE_GETADDRINFO 1
103 /* Define to 1 if you have the `getnameinfo' function. */
104 #define HAVE_GETNAMEINFO 1
105 /* Define to 1 if you have the `sigaction' function. */
106 #define HAVE_SIGACTION 1
107 /* Define to 1 if you have the `setsid' function. */
108 #define HAVE_SETSID 1
109
110 /* Define if socklen_t exists */
111 #define HAVE_socklen_t 1
112
113 #ifdef PAM
114 /* Define to 1 if you have the `pam_authenticate' function. */
115 #define HAVE_PAM_AUTHENTICATE 1
116 #if (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1060)
117 /* Define to 1 if you have the <pam/pam_appl.h> header file. */
118 #define HAVE_PAM_PAM_APPL_H 1
119 /* Mac OS X <10.6 doesn't have pam_fail_delay() */
120 #define NO_PAM_FAIL_DELAY 1
121 #else
122 /* Define to 1 if you have the <security/pam_appl.h> header file. */
123 #define HAVE_SECURITY_PAM_APPL_H 1
124 #endif
125 #endif
126
127 /* -eof- */