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