-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.h.in
215 lines (135 loc) · 2.82 KB
/
config.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
//
// Configuration file for libcups.
//
// Copyright © 2020-2024 by OpenPrinting
// Copyright © 2007-2019 by Apple Inc.
// Copyright © 1997-2007 by Easy Software Products.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//
#ifndef CUPS_CONFIG_H
#define CUPS_CONFIG_H
//
// Version of software...
//
#define LIBCUPS_VERSION ""
#define LIBCUPS_VERSION_MAJOR ""
#define LIBCUPS_VERSION_MINOR ""
//
// Do we have domain socket support, and if so what is the default one?
//
#undef CUPS_DEFAULT_DOMAINSOCKET
//
// Where are files stored?
//
// Note: These are defaults, which can be overridden by environment
// variables at run-time...
//
#define CUPS_DATADIR "/usr/share/cups"
#define CUPS_SERVERROOT "/etc/cups"
//
// Use <stdint.h>?
//
#undef HAVE_STDINT_H
//
// Do we have the long long type?
//
#undef HAVE_LONG_LONG
#ifdef HAVE_LONG_LONG
# define CUPS_LLFMT "%lld"
# define CUPS_LLCAST (long long)
#else
# define CUPS_LLFMT "%ld"
# define CUPS_LLCAST (long)
#endif // HAVE_LONG_LONG
//
// Do we have the strtoll() function?
//
#undef HAVE_STRTOLL
#ifndef HAVE_STRTOLL
# define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base))
#endif // !HAVE_STRTOLL
//
// Do we have the geteuid() function?
//
#undef HAVE_GETEUID
//
// Do we have the langinfo.h header file?
//
#undef HAVE_LANGINFO_H
//
// Which encryption libraries do we have?
//
#undef HAVE_OPENSSL
#undef HAVE_GNUTLS
//
// Do we have the gnutls_transport_set_pull_timeout_function function?
//
#undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION
//
// Do we have the gnutls_priority_set_direct function?
//
#undef HAVE_GNUTLS_PRIORITY_SET_DIRECT
//
// Do we have DNS Service Discovery (aka Bonjour) support?
//
#undef HAVE_DNSSD
//
// Do we have mDNSResponder for DNS-SD?
//
#undef HAVE_MDNSRESPONDER
//
// Do we have Avahi for DNS-SD?
//
#undef HAVE_AVAHI
//
// Does the "stat" structure contain the "st_gen" member?
//
// #undef HAVE_ST_GEN */
//
// Does the "tm" structure contain the "tm_gmtoff" member?
//
#undef HAVE_TM_GMTOFF
//
// Do we have hstrerror()?
//
#undef HAVE_HSTRERROR
//
// Do we have res_init()?
//
#undef HAVE_RES_INIT
//
// Do we have <resolv.h>
//
#undef HAVE_RESOLV_H
//
// Do we have CoreFoundation?
//
#undef HAVE_COREFOUNDATION_H
//
// Do we have CoreGraphics?
//
#undef HAVE_COREGRAPHICS_H
//
// Do we have the SCDynamicStoreCopyComputerName function?
//
// #undef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME */
//
// Do we have the <iconv.h> header?
//
#undef HAVE_ICONV_H
//
// Do we have statfs or statvfs and one of the corresponding headers?
//
#undef HAVE_STATFS
#undef HAVE_STATVFS
#undef HAVE_SYS_MOUNT_H
#undef HAVE_SYS_STATFS_H
#undef HAVE_SYS_STATVFS_H
#undef HAVE_SYS_VFS_H
//
// Have dbus library?
//
#undef HAVE_DBUS
#endif // !CUPS_CONFIG_H