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