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