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