]> git.ipfire.org Git - thirdparty/cups.git/blame - xcode/config.h
Fix some build issues with the "core" component selection (rdar://47394086)
[thirdparty/cups.git] / xcode / config.h
CommitLineData
82f97232 1/*
996acce8 2 * Configuration file for CUPS and Xcode.
82f97232 3 *
3f7aa006 4 * Copyright 2007-2017 by Apple Inc.
996acce8 5 * Copyright 1997-2007 by Easy Software Products.
82f97232 6 *
e3101897 7 * Licensed under Apache License v2.0. See the file "LICENSE" for more information.
82f97232
MS
8 */
9
10#ifndef _CUPS_CONFIG_H_
11#define _CUPS_CONFIG_H_
12
ee6226a5 13#include <AvailabilityMacros.h>
9688061e
MS
14#include <TargetConditionals.h>
15
ee6226a5 16
82f97232
MS
17/*
18 * Version of software...
19 */
20
11143dcf
MS
21#define CUPS_SVERSION "CUPS v2.3.0"
22#define CUPS_MINIMAL "CUPS/2.3.0"
82f97232
MS
23
24
25/*
26 * Default user and groups...
27 */
28
29#define CUPS_DEFAULT_USER "_lp"
30#define CUPS_DEFAULT_GROUP "_lp"
31#define CUPS_DEFAULT_SYSTEM_GROUPS "admin"
32#define CUPS_DEFAULT_PRINTOPERATOR_AUTH "@AUTHKEY(system.print.operator) @admin @lpadmin"
996acce8 33#define CUPS_DEFAULT_SYSTEM_AUTHKEY "system.print.admin"
82f97232
MS
34
35
36/*
37 * Default file permissions...
38 */
39
40#define CUPS_DEFAULT_CONFIG_FILE_PERM 0644
41#define CUPS_DEFAULT_LOG_FILE_PERM 0644
42
43
44/*
45 * Default logging settings...
46 */
47
48#define CUPS_DEFAULT_LOG_LEVEL "warn"
61b7ebde 49#define CUPS_DEFAULT_ACCESS_LOG_LEVEL "none"
82f97232
MS
50
51
52/*
53 * Default fatal error settings...
54 */
55
56#define CUPS_DEFAULT_FATAL_ERRORS "config"
57
58
59/*
60 * Default browsing settings...
61 */
62
63#define CUPS_DEFAULT_BROWSING 1
37e7e6e0 64#define CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS "dnssd"
82f97232 65#define CUPS_DEFAULT_DEFAULT_SHARED 1
82f97232
MS
66
67
68/*
69 * Default IPP port...
70 */
71
72#define CUPS_DEFAULT_IPP_PORT 631
73
74
75/*
76 * Default printcap file...
77 */
78
79#define CUPS_DEFAULT_PRINTCAP "/Library/Preferences/org.cups.printers.plist"
80
81
82/*
83 * Default Samba and LPD config files...
84 */
85
86#define CUPS_DEFAULT_SMB_CONFIG_FILE ""
87#define CUPS_DEFAULT_LPD_CONFIG_FILE "launchd:///System/Library/LaunchDaemons/org.cups.cups-lpd.plist"
88
89
90/*
91 * Default MaxCopies value...
92 */
93
94#define CUPS_DEFAULT_MAX_COPIES 9999
95
96
97/*
98 * Do we have domain socket support, and if so what is the default one?
99 */
100
101#define CUPS_DEFAULT_DOMAINSOCKET "/private/var/run/cupsd"
102
103
104/*
105 * Default WebInterface value...
106 */
107
108#define CUPS_DEFAULT_WEBIF 0
109
110
111/*
112 * Where are files stored?
113 *
114 * Note: These are defaults, which can be overridden by environment
115 * variables at run-time...
116 */
117
118#define CUPS_BINDIR "/usr/bin"
119#define CUPS_CACHEDIR "/private/var/spool/cups/cache"
120#define CUPS_DATADIR "/usr/share/cups"
121#define CUPS_DOCROOT "/usr/share/doc/cups"
122#define CUPS_FONTPATH "/usr/share/cups/fonts"
123#define CUPS_LOCALEDIR "/usr/share/locale"
124#define CUPS_LOGDIR "/private/var/log/cups"
125#define CUPS_REQUESTS "/private/var/spool/cups"
126#define CUPS_SBINDIR "/usr/sbin"
127#define CUPS_SERVERBIN "/usr/libexec/cups"
128#define CUPS_SERVERROOT "/private/etc/cups"
129#define CUPS_STATEDIR "/private/etc/cups"
130
131
c82f05ea
MS
132/*
133 * Do we have posix_spawn?
134 */
135
136#define HAVE_POSIX_SPAWN 1
137
138
82f97232 139/*
db8b865d 140 * Do we have ZLIB?
82f97232
MS
141 */
142
82f97232 143#define HAVE_LIBZ 1
db8b865d 144#define HAVE_INFLATECOPY 1
82f97232
MS
145
146
147/*
148 * Do we have PAM stuff?
149 */
150
9688061e
MS
151#if TARGET_OS_OSX
152# define HAVE_LIBPAM 1
82f97232 153/* #undef HAVE_PAM_PAM_APPL_H */
9688061e
MS
154# define HAVE_PAM_SET_ITEM 1
155# define HAVE_PAM_SETCRED 1
156#endif /* TARGET_OS_OSX */
82f97232
MS
157
158
159/*
160 * Do we have <shadow.h>?
161 */
162
163/* #undef HAVE_SHADOW_H */
164
165
166/*
167 * Do we have <crypt.h>?
168 */
169
170/* #undef HAVE_CRYPT_H */
171
172
173/*
cb7f98ee 174 * Use <stdint.h>?
82f97232
MS
175 */
176
cb7f98ee 177#define HAVE_STDINT_H 1
82f97232
MS
178
179
180/*
181 * Use <string.h>, <strings.h>, and/or <bstring.h>?
182 */
183
184#define HAVE_STRING_H 1
185#define HAVE_STRINGS_H 1
186/* #undef HAVE_BSTRING_H */
187
37e7e6e0 188
82f97232
MS
189/*
190 * Do we have the long long type?
191 */
192
193#define HAVE_LONG_LONG 1
194
195#ifdef HAVE_LONG_LONG
196# define CUPS_LLFMT "%lld"
197# define CUPS_LLCAST (long long)
198#else
199# define CUPS_LLFMT "%ld"
200# define CUPS_LLCAST (long)
201#endif /* HAVE_LONG_LONG */
202
37e7e6e0 203
82f97232
MS
204/*
205 * Do we have the strtoll() function?
206 */
207
208#define HAVE_STRTOLL 1
209
210#ifndef HAVE_STRTOLL
211# define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base))
212#endif /* !HAVE_STRTOLL */
213
37e7e6e0 214
82f97232
MS
215/*
216 * Do we have the strXXX() functions?
217 */
218
219#define HAVE_STRDUP 1
82f97232
MS
220#define HAVE_STRLCAT 1
221#define HAVE_STRLCPY 1
222
223
224/*
225 * Do we have the geteuid() function?
226 */
227
228#define HAVE_GETEUID 1
229
230
88f9aafc
MS
231/*
232 * Do we have the setpgid() function?
233 */
234
235#define HAVE_SETPGID 1
236
237
82f97232
MS
238/*
239 * Do we have the vsyslog() function?
240 */
241
242#define HAVE_VSYSLOG 1
243
244
0dc4a6bf
MS
245/*
246 * Do we have the systemd journal functions?
247 */
248
61b7ebde 249/* #undef HAVE_SYSTEMD_SD_JOURNAL_H */
0dc4a6bf
MS
250
251
82f97232
MS
252/*
253 * Do we have the (v)snprintf() functions?
254 */
255
256#define HAVE_SNPRINTF 1
257#define HAVE_VSNPRINTF 1
258
259
260/*
261 * What signal functions to use?
262 */
263
264#define HAVE_SIGSET 1
265#define HAVE_SIGACTION 1
266
267
268/*
269 * What wait functions to use?
270 */
271
272#define HAVE_WAITPID 1
273#define HAVE_WAIT3 1
274
275
276/*
277 * Do we have the mallinfo function and malloc.h?
278 */
279
280/* #undef HAVE_MALLINFO */
281/* #undef HAVE_MALLOC_H */
282
283
284/*
285 * Do we have the POSIX ACL functions?
286 */
287
288#define HAVE_ACL_INIT 1
289
290
291/*
292 * Do we have the langinfo.h header file?
293 */
294
295#define HAVE_LANGINFO_H 1
296
297
298/*
299 * Which encryption libraries do we have?
300 */
301
302#define HAVE_CDSASSL 1
303/* #undef HAVE_GNUTLS */
61b7ebde 304/* #undef HAVE_SSPISSL */
82f97232
MS
305#define HAVE_SSL 1
306
307
19ba6878
MS
308/*
309 * Do we have the gnutls_transport_set_pull_timeout_function function?
310 */
311
312/* #undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION */
313
314
315/*
316 * Do we have the gnutls_priority_set_direct function?
317 */
318
319/* #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT */
320
321
82f97232
MS
322/*
323 * What Security framework headers do we have?
324 */
325
9688061e
MS
326#if !TARGET_OS_IOS
327# define HAVE_AUTHORIZATION_H 1
328#endif /* !TARGET_OS_IOS */
329
a469f8a5 330/* #undef HAVE_SECBASEPRIV_H */
82f97232 331#define HAVE_SECCERTIFICATE_H 1
a469f8a5 332/* #undef HAVE_SECIDENTITYSEARCHPRIV_H */
82f97232 333#define HAVE_SECITEM_H 1
a469f8a5 334/* #undef HAVE_SECITEMPRIV_H */
82f97232 335#define HAVE_SECPOLICY_H 1
a469f8a5
MS
336/* #undef HAVE_SECPOLICYPRIV_H */
337/* #undef HAVE_SECURETRANSPORTPRIV_H */
82f97232
MS
338
339
8aaeeaa9
MS
340/*
341 * Do we have the SecGenerateSelfSignedCertificate function?
342 */
343
9688061e
MS
344#if TARGET_OS_IOS
345# define HAVE_SECGENERATESELFSIGNEDCERTIFICATE 1
346#endif /* TARGET_OS_IOS */
8aaeeaa9
MS
347
348
82f97232 349/*
37e7e6e0 350 * Do we have libpaper?
82f97232
MS
351 */
352
37e7e6e0 353/* #undef HAVE_LIBPAPER */
82f97232
MS
354
355
356/*
37e7e6e0 357 * Do we have mDNSResponder for DNS Service Discovery (aka Bonjour)?
82f97232
MS
358 */
359
37e7e6e0 360#define HAVE_DNSSD 1
82f97232
MS
361
362
363/*
37e7e6e0 364 * Do we have Avahi for DNS Service Discovery (aka Bonjour)?
82f97232
MS
365 */
366
37e7e6e0 367/* #undef HAVE_AVAHI */
82f97232
MS
368
369
370/*
371 * Do we have <sys/ioctl.h>?
372 */
373
374#define HAVE_SYS_IOCTL_H 1
375
376
377/*
378 * Does the "stat" structure contain the "st_gen" member?
379 */
380
381#define HAVE_ST_GEN 1
382
383
384/*
385 * Does the "tm" structure contain the "tm_gmtoff" member?
386 */
387
388#define HAVE_TM_GMTOFF 1
389
390
391/*
392 * Do we have rresvport_af()?
393 */
394
395#define HAVE_RRESVPORT_AF 1
396
397
398/*
399 * Do we have getaddrinfo()?
400 */
401
402#define HAVE_GETADDRINFO 1
403
404
405/*
406 * Do we have getnameinfo()?
407 */
408
409#define HAVE_GETNAMEINFO 1
410
411
412/*
413 * Do we have getifaddrs()?
414 */
415
416#define HAVE_GETIFADDRS 1
417
418
419/*
420 * Do we have hstrerror()?
421 */
422
423#define HAVE_HSTRERROR 1
424
425
426/*
427 * Do we have res_init()?
428 */
429
430#define HAVE_RES_INIT 1
431
432
433/*
434 * Do we have <resolv.h>
435 */
436
437#define HAVE_RESOLV_H 1
438
439
440/*
441 * Do we have the <sys/sockio.h> header file?
442 */
443
444#define HAVE_SYS_SOCKIO_H 1
445
446
447/*
448 * Does the sockaddr structure contain an sa_len parameter?
449 */
450
451/* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */
452
453
82f97232
MS
454/*
455 * Do we have pthread support?
456 */
457
458#define HAVE_PTHREAD_H 1
459
460
1166bf58
MS
461/*
462 * Do we have on-demand support (launchd/systemd/upstart)?
463 */
464
465#define HAVE_ONDEMAND 1
466
467
82f97232
MS
468/*
469 * Do we have launchd support?
470 */
471
472#define HAVE_LAUNCH_H 1
473#define HAVE_LAUNCHD 1
1166bf58
MS
474
475
476/*
477 * Do we have systemd support?
478 */
479
480/* #undef HAVE_SYSTEMD */
481
482
483/*
484 * Do we have upstart support?
485 */
486
487/* #undef HAVE_UPSTART */
82f97232
MS
488
489
82f97232
MS
490/*
491 * Do we have CoreFoundation public and private headers?
492 */
493
494#define HAVE_COREFOUNDATION_H 1
a469f8a5
MS
495/* #undef HAVE_CFPRIV_H */
496/* #undef HAVE_CFBUNDLEPRIV_H */
82f97232
MS
497
498
499/*
500 * Do we have ApplicationServices public headers?
501 */
502
9688061e
MS
503#if !TARGET_OS_IOS
504# define HAVE_APPLICATIONSERVICES_H 1
505#endif /* !TARGET_OS_IOS */
82f97232
MS
506
507
508/*
509 * Do we have the SCDynamicStoreCopyComputerName function?
510 */
511
9688061e
MS
512#if !TARGET_OS_IOS
513# define HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME 1
514#endif /* !TARGET_OS_IOS */
82f97232
MS
515
516
6eb98aee
MS
517/*
518 * Do we have the getgrouplist() function?
519 */
520
521#define HAVE_GETGROUPLIST 1
8072030b 522
6eb98aee 523
82f97232 524/*
8072030b 525 * Do we have macOS 10.4's mbr_XXX functions?
82f97232
MS
526 */
527
528#define HAVE_MEMBERSHIP_H 1
a469f8a5 529/* #undef HAVE_MEMBERSHIPPRIV_H */
82f97232
MS
530#define HAVE_MBR_UID_TO_UUID 1
531
532
533/*
534 * Do we have Darwin's notify_post header and function?
535 */
536
537#define HAVE_NOTIFY_H 1
538#define HAVE_NOTIFY_POST 1
539
540
82f97232 541/*
37e7e6e0 542 * Do we have DBUS?
82f97232
MS
543 */
544
37e7e6e0
MS
545/* #undef HAVE_DBUS */
546/* #undef HAVE_DBUS_MESSAGE_ITER_INIT_APPEND */
61b7ebde 547/* #undef HAVE_DBUS_THREADS_INIT */
82f97232
MS
548
549
550/*
551 * Do we have the GSSAPI support library (for Kerberos support)?
552 */
553
9688061e 554#if !TARGET_OS_IOS
61b7ebde 555# define HAVE_GSS_ACQUIRED_CRED_EX_F 1
9688061e
MS
556# define HAVE_GSS_C_NT_HOSTBASED_SERVICE 1
557# define HAVE_GSS_GSSAPI_H 1
a469f8a5 558/* #undef HAVE_GSS_GSSAPI_SPI_H */
9688061e 559# define HAVE_GSSAPI 1
37e7e6e0
MS
560/* #undef HAVE_GSSAPI_GSSAPI_H */
561/* #undef HAVE_GSSAPI_H */
9688061e 562#endif /* !TARGET_OS_IOS */
82f97232
MS
563
564
565/*
566 * Default GSS service name...
567 */
568
569#define CUPS_DEFAULT_GSSSERVICENAME "host"
570
571
572/*
573 * Select/poll interfaces...
574 */
575
576#define HAVE_POLL 1
577/* #undef HAVE_EPOLL */
578#define HAVE_KQUEUE 1
579
580
581/*
582 * Do we have the <dlfcn.h> header?
583 */
584
585#define HAVE_DLFCN_H 1
586
587
588/*
589 * Do we have <sys/param.h>?
590 */
591
592#define HAVE_SYS_PARAM_H 1
593
594
595/*
596 * Do we have <sys/ucred.h>?
597 */
598
599#define HAVE_SYS_UCRED_H 1
600
601
602/*
603 * Do we have removefile()?
604 */
605
606#define HAVE_REMOVEFILE 1
607
608
609/*
610 * Do we have <sandbox.h>?
611 */
612
613#define HAVE_SANDBOX_H 1
614
615
616/*
617 * Which random number generator function to use...
618 */
619
620#define HAVE_ARC4RANDOM 1
621#define HAVE_RANDOM 1
622#define HAVE_LRAND48 1
623
624#ifdef HAVE_ARC4RANDOM
625# define CUPS_RAND() arc4random()
61b7ebde 626# define CUPS_SRAND(v)
82f97232
MS
627#elif defined(HAVE_RANDOM)
628# define CUPS_RAND() random()
629# define CUPS_SRAND(v) srandom(v)
630#elif defined(HAVE_LRAND48)
631# define CUPS_RAND() lrand48()
632# define CUPS_SRAND(v) srand48(v)
633#else
634# define CUPS_RAND() rand()
635# define CUPS_SRAND(v) srand(v)
636#endif /* HAVE_ARC4RANDOM */
637
638
82f97232
MS
639/*
640 * Do we have libusb?
641 */
642
37e7e6e0 643/* #undef HAVE_LIBUSB */
82f97232
MS
644
645
646/*
647 * Do we have libwrap and tcpd.h?
648 */
649
650/* #undef HAVE_TCPD_H */
651
652
653/*
654 * Do we have <iconv.h>?
655 */
656
657#define HAVE_ICONV_H 1
658
659
660/*
661 * Do we have statfs or statvfs and one of the corresponding headers?
662 */
663
664#define HAVE_STATFS 1
665#define HAVE_STATVFS 1
666#define HAVE_SYS_MOUNT_H 1
667/* #undef HAVE_SYS_STATFS_H */
668#define HAVE_SYS_STATVFS_H 1
669/* #undef HAVE_SYS_VFS_H */
670
671
672/*
171c38f2 673 * Location of localization bundle, if any.
82f97232
MS
674 */
675
171c38f2
MS
676#if TARGET_OS_IOS
677# define CUPS_BUNDLEDIR "/System/Library/PrivateFrameworks/PrintKit.framework/Versions/A"
678#else
9688061e 679# define CUPS_BUNDLEDIR "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A"
171c38f2 680#endif /* TARGET_OS_IOS */
82f97232
MS
681
682
683/*
37e7e6e0 684 * Do we have XPC?
82f97232
MS
685 */
686
37e7e6e0 687#define HAVE_XPC 1
a469f8a5 688/* #undef HAVE_XPC_PRIVATE_H */
82f97232
MS
689
690
eac3a0a0 691/*
37e7e6e0 692 * Do we have Mini-XML?
eac3a0a0
MS
693 */
694
37e7e6e0
MS
695/* #undef HAVE_MXML_H */
696
697
698/*
699 * Do we have the C99 abs() function?
700 */
eac3a0a0 701
37e7e6e0
MS
702#define HAVE_ABS 1
703#if !defined(HAVE_ABS) && !defined(abs)
704# if defined(__GNUC__) || __STDC_VERSION__ >= 199901L
705# define abs(x) _cups_abs(x)
706static inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
707# elif defined(_MSC_VER)
708# define abs(x) _cups_abs(x)
709static __inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
710# else
711# define abs(x) ((x) < 0 ? -(x) : (x))
712# endif /* __GNUC__ || __STDC_VERSION__ */
713#endif /* !HAVE_ABS && !abs */
eac3a0a0 714
82f97232 715#endif /* !_CUPS_CONFIG_H_ */