]> git.ipfire.org Git - thirdparty/cups.git/blame - config.h.in
Merge changes from CUPS 1.6svn-r10437.
[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
ef416fc2 177/*
178 * Use <string.h>, <strings.h>, and/or <bstring.h>?
179 */
180
181#undef HAVE_STRING_H
182#undef HAVE_STRINGS_H
183#undef HAVE_BSTRING_H
184
eac3a0a0 185
ef416fc2 186/*
187 * Do we have the long long type?
188 */
189
190#undef HAVE_LONG_LONG
191
192#ifdef HAVE_LONG_LONG
193# define CUPS_LLFMT "%lld"
194# define CUPS_LLCAST (long long)
195#else
196# define CUPS_LLFMT "%ld"
197# define CUPS_LLCAST (long)
198#endif /* HAVE_LONG_LONG */
199
eac3a0a0 200
ef416fc2 201/*
202 * Do we have the strtoll() function?
203 */
204
205#undef HAVE_STRTOLL
206
207#ifndef HAVE_STRTOLL
208# define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base))
209#endif /* !HAVE_STRTOLL */
210
eac3a0a0 211
ef416fc2 212/*
213 * Do we have the strXXX() functions?
214 */
215
216#undef HAVE_STRDUP
ef416fc2 217#undef HAVE_STRLCAT
218#undef HAVE_STRLCPY
219
220
221/*
222 * Do we have the geteuid() function?
223 */
224
225#undef HAVE_GETEUID
226
227
88f9aafc
MS
228/*
229 * Do we have the setpgid() function?
230 */
231
232#undef HAVE_SETPGID
233
234
ef416fc2 235/*
236 * Do we have the vsyslog() function?
237 */
238
239#undef HAVE_VSYSLOG
240
241
242/*
243 * Do we have the (v)snprintf() functions?
244 */
245
246#undef HAVE_SNPRINTF
247#undef HAVE_VSNPRINTF
248
249
250/*
251 * What signal functions to use?
252 */
253
254#undef HAVE_SIGSET
255#undef HAVE_SIGACTION
256
257
258/*
259 * What wait functions to use?
260 */
261
262#undef HAVE_WAITPID
263#undef HAVE_WAIT3
264
265
266/*
267 * Do we have the mallinfo function and malloc.h?
268 */
269
270#undef HAVE_MALLINFO
271#undef HAVE_MALLOC_H
272
273
fa73b229 274/*
275 * Do we have the POSIX ACL functions?
276 */
277
278#undef HAVE_ACL_INIT
279
280
ef416fc2 281/*
282 * Do we have the langinfo.h header file?
283 */
284
285#undef HAVE_LANGINFO_H
286
287
288/*
289 * Which encryption libraries do we have?
290 */
291
292#undef HAVE_CDSASSL
293#undef HAVE_GNUTLS
294#undef HAVE_LIBSSL
295#undef HAVE_SSL
296
297
82cc1f9a
MS
298/*
299 * Do we have the SSL_set_tlsext_host_name function?
300 */
301
302#undef HAVE_SSL_SET_TLSEXT_HOST_NAME
303
304
ed486911 305/*
b86bc4cf 306 * What Security framework headers do we have?
ed486911 307 */
308
f7deaa1a 309#undef HAVE_AUTHORIZATION_H
eac3a0a0 310#undef HAVE_SECBASEPRIV_H
7cf5915e 311#undef HAVE_SECCERTIFICATE_H
eac3a0a0 312#undef HAVE_SECIDENTITYSEARCHPRIV_H
0268488e 313#undef HAVE_SECITEM_H
c7017ecc 314#undef HAVE_SECITEMPRIV_H
b86bc4cf 315#undef HAVE_SECPOLICY_H
316#undef HAVE_SECPOLICYPRIV_H
eac3a0a0 317#undef HAVE_SECURETRANSPORTPRIV_H
b86bc4cf 318
319
82f97232
MS
320/*
321 * Do we have the SecCertificateCopyData function?
322 */
323
324#undef HAVE_SECCERTIFICATECOPYDATA
325
326
b86bc4cf 327/*
328 * Do we have the SecIdentitySearchCreateWithPolicy function?
329 */
330
331#undef HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY
ed486911 332
c8fef167 333
7cf5915e
MS
334/*
335 * Do we have the SecPolicyCreateSSL function?
336 */
337
338#undef HAVE_SECPOLICYCREATESSL
339
ed486911 340
c7017ecc
MS
341/*
342 * Do we have the SecPolicyCreateSSL function?
343 */
344
345#undef HAVE_SECPOLICYCREATESSL
346
347
771bd8cb
MS
348/*
349 * Do we have the SSLSetProtocolVersionMax function?
350 */
351
352#undef HAVE_SSLSETPROTOCOLVERSIONMAX
353
354
7cf5915e
MS
355/*
356 * Do we have the cssmErrorString function?
357 */
358
359#undef HAVE_CSSMERRORSTRING
360
361
ef416fc2 362/*
b423cd4c 363 * Do we have the SLP library?
ef416fc2 364 */
365
366#undef HAVE_LIBSLP
367
368
b423cd4c 369/*
370 * Do we have an LDAP library?
371 */
372
373#undef HAVE_LDAP
374#undef HAVE_OPENLDAP
749b1e90
MS
375#undef HAVE_MOZILLA_LDAP
376#undef HAVE_LDAP_SSL_H
377#undef HAVE_LDAP_SSL
378#undef HAVE_LDAP_REBIND_PROC
b423cd4c 379
380
ef416fc2 381/*
382 * Do we have libpaper?
383 */
384
385#undef HAVE_LIBPAPER
386
387
f7deaa1a 388/*
3e7fe0ca 389 * Do we have mDNSResponder for DNS Service Discovery (aka Bonjour)?
f7deaa1a 390 */
391
392#undef HAVE_DNSSD
393
394
3e7fe0ca
MS
395/*
396 * Do we have Avahi for DNS Service Discovery (aka Bonjour)?
397 */
398
399#undef HAVE_AVAHI
400
401
ef416fc2 402/*
403 * Do we have <sys/ioctl.h>?
404 */
405
406#undef HAVE_SYS_IOCTL_H
407
408
c7017ecc
MS
409/*
410 * Does the "stat" structure contain the "st_gen" member?
411 */
412
413#undef HAVE_ST_GEN
414
415
ef416fc2 416/*
417 * Does the "tm" structure contain the "tm_gmtoff" member?
418 */
419
420#undef HAVE_TM_GMTOFF
421
422
423/*
424 * Do we have rresvport_af()?
425 */
426
427#undef HAVE_RRESVPORT_AF
428
429
430/*
431 * Do we have getaddrinfo()?
432 */
433
434#undef HAVE_GETADDRINFO
435
436
437/*
438 * Do we have getnameinfo()?
439 */
440
441#undef HAVE_GETNAMEINFO
442
443
444/*
445 * Do we have getifaddrs()?
446 */
447
448#undef HAVE_GETIFADDRS
449
450
451/*
452 * Do we have hstrerror()?
453 */
454
455#undef HAVE_HSTRERROR
456
457
49d87452
MS
458/*
459 * Do we have res_init()?
460 */
461
462#undef HAVE_RES_INIT
463
464
465/*
466 * Do we have <resolv.h>
467 */
468
469#undef HAVE_RESOLV_H
470
471
ef416fc2 472/*
473 * Do we have the <sys/sockio.h> header file?
474 */
475
476#undef HAVE_SYS_SOCKIO_H
477
478
479/*
480 * Does the sockaddr structure contain an sa_len parameter?
481 */
482
483#undef HAVE_STRUCT_SOCKADDR_SA_LEN
484
485
486/*
487 * Do we have the AIX usersec.h header file?
488 */
489
490#undef HAVE_USERSEC_H
491
536bc2c6 492
ef416fc2 493/*
494 * Do we have pthread support?
495 */
496
497#undef HAVE_PTHREAD_H
498
499
a4d04587 500/*
501 * Do we have launchd support?
502 */
503
504#undef HAVE_LAUNCH_H
505#undef HAVE_LAUNCHD
a4d04587 506
507
ef416fc2 508/*
509 * Various scripting languages...
510 */
511
512#undef HAVE_JAVA
513#define CUPS_JAVA "/usr/bin/java"
514#undef HAVE_PERL
515#define CUPS_PERL "/usr/bin/perl"
516#undef HAVE_PHP
517#define CUPS_PHP "/usr/bin/php"
518#undef HAVE_PYTHON
519#define CUPS_PYTHON "/usr/bin/python"
520
521
91c84a35
MS
522/*
523 * Location of the poppler/Xpdf pdftops program...
524 */
525
ae71f5de 526#undef HAVE_PDFTOPS
eac3a0a0 527#undef HAVE_PDFTOPS_WITH_ORIGPAGESIZES
91c84a35
MS
528#define CUPS_PDFTOPS "/usr/bin/pdftops"
529
530
ae71f5de
MS
531/*
532 * Location of the Ghostscript gs program...
533 */
534
535#undef HAVE_GHOSTSCRIPT
eac3a0a0 536#undef HAVE_GHOSTSCRIPT_PS2WRITE
ae71f5de
MS
537#define CUPS_GHOSTSCRIPT "/usr/bin/gs"
538
539
fa73b229 540/*
541 * Do we have Darwin's CoreFoundation and SystemConfiguration frameworks?
542 */
543
544#undef HAVE_COREFOUNDATION
545#undef HAVE_SYSTEMCONFIGURATION
546
547
548/*
549 * Do we have CoreFoundation public and private headers?
550 */
551
552#undef HAVE_COREFOUNDATION_H
553#undef HAVE_CFPRIV_H
554#undef HAVE_CFBUNDLEPRIV_H
555
556
6d2f911b
MS
557/*
558 * Do we have ApplicationServices public headers?
559 */
560
561#undef HAVE_APPLICATIONSERVICES_H
562
563
564/*
565 * Do we have the SCDynamicStoreCopyComputerName function?
566 */
567
568#undef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME
569
570
fa73b229 571/*
f3c17241 572 * Do we have OS X 10.4's mbr_XXX functions?
fa73b229 573 */
574
575#undef HAVE_MEMBERSHIP_H
7594b224 576#undef HAVE_MEMBERSHIPPRIV_H
fa73b229 577#undef HAVE_MBR_UID_TO_UUID
578
579
580/*
cc754834 581 * Do we have Darwin's notify_post header and function?
fa73b229 582 */
583
584#undef HAVE_NOTIFY_H
585#undef HAVE_NOTIFY_POST
586
587
84315f46
MS
588/*
589 * Do we have Darwin's IOKit private headers?
590 */
591
592#undef HAVE_IOKIT_PWR_MGT_IOPMLIBPRIVATE_H
593
594
e00b005a 595/*
596 * Do we have DBUS?
597 */
598
599#undef HAVE_DBUS
2abf387c 600#undef HAVE_DBUS_MESSAGE_ITER_INIT_APPEND
e00b005a 601
602
f7deaa1a 603/*
604 * Do we have the GSSAPI support library (for Kerberos support)?
605 */
606
eac3a0a0
MS
607#undef HAVE_GSS_ACQUIRE_CRED_EX_F
608#undef HAVE_GSS_C_NT_HOSTBASED_SERVICE
609#undef HAVE_GSS_GSSAPI_H
610#undef HAVE_GSS_GSSAPI_SPI_H
f7deaa1a 611#undef HAVE_GSSAPI
eac3a0a0 612#undef HAVE_GSSAPI_GENERIC_H
f7deaa1a 613#undef HAVE_GSSAPI_GSSAPI_H
eac3a0a0
MS
614#undef HAVE_GSSAPI_H
615#undef HAVE_GSSAPI_KRB5_H
f7deaa1a 616#undef HAVE_KRB5_H
f7deaa1a 617
618
619/*
620 * Default GSS service name...
621 */
622
623#define CUPS_DEFAULT_GSSSERVICENAME ""
624
625
626/*
627 * Select/poll interfaces...
628 */
629
630#undef HAVE_POLL
631#undef HAVE_EPOLL
632#undef HAVE_KQUEUE
633
634
7594b224 635/*
636 * Do we have the <dlfcn.h> header?
637 */
638
639#undef HAVE_DLFCN_H
640
641
db1f069b
MS
642/*
643 * Do we have <sys/param.h>?
644 */
645
646#undef HAVE_SYS_PARAM_H
647
648
bc44d920 649/*
650 * Do we have <sys/ucred.h>?
651 */
652
653#undef HAVE_SYS_UCRED_H
654
655
cc0d019f
MS
656/*
657 * Do we have removefile()?
658 */
659
660#undef HAVE_REMOVEFILE
661
662
a4924f6c
MS
663/*
664 * Do we have <sandbox.h>?
665 */
666
667#undef HAVE_SANDBOX_H
668
669
ac884b6a
MS
670/*
671 * Which random number generator function to use...
672 */
673
41681883 674#undef HAVE_ARC4RANDOM
ac884b6a 675#undef HAVE_RANDOM
ac884b6a
MS
676#undef HAVE_LRAND48
677
41681883
MS
678#ifdef HAVE_ARC4RANDOM
679# define CUPS_RAND() arc4random()
680# define CUPS_SRAND(v) arc4random_stir()
681#elif defined(HAVE_RANDOM)
682# define CUPS_RAND() random()
683# define CUPS_SRAND(v) srandom(v)
684#elif defined(HAVE_LRAND48)
685# define CUPS_RAND() lrand48()
686# define CUPS_SRAND(v) srand48(v)
687#else
688# define CUPS_RAND() rand()
689# define CUPS_SRAND(v) srand(v)
690#endif /* HAVE_ARC4RANDOM */
691
ac884b6a 692
178cb736
MS
693/*
694 * Do we have vproc_transaction_begin/end?
695 */
696
697#undef HAVE_VPROC_TRANSACTION_BEGIN
698
699
75bd9771
MS
700/*
701 * Do we have libusb?
702 */
703
12f89d24 704#undef HAVE_LIBUSB
75bd9771
MS
705
706
749b1e90
MS
707/*
708 * Do we have libwrap and tcpd.h?
709 */
710
711#undef HAVE_TCPD_H
712
713
cc754834
MS
714/*
715 * Do we have <iconv.h>?
716 */
717
718#undef HAVE_ICONV_H
719
720
7cf5915e
MS
721/*
722 * Do we have statfs or statvfs and one of the corresponding headers?
723 */
724
725#undef HAVE_STATFS
726#undef HAVE_STATVFS
727#undef HAVE_SYS_MOUNT_H
728#undef HAVE_SYS_STATFS_H
729#undef HAVE_SYS_STATVFS_H
730#undef HAVE_SYS_VFS_H
731
732
0837b7e8 733/*
f3c17241 734 * Location of OS X localization bundle, if any.
0837b7e8
MS
735 */
736
737#undef CUPS_BUNDLEDIR
738
739
eac3a0a0
MS
740/*
741 * Do we have XPC?
742 */
743
744#undef HAVE_XPC
82cc1f9a 745#undef HAVE_XPC_PRIVATE_H
eac3a0a0
MS
746
747
12f89d24
MS
748/*
749 * Do we have Mini-XML?
750 */
751
752#undef HAVE_MXML_H
753
754
f3c17241
MS
755/*
756 * Do we have the C99 abs() function?
757 */
758
759#undef HAVE_ABS
760#if !defined(HAVE_ABS) && !defined(abs)
761# if defined(__GNUC__) || __STDC_VERSION__ >= 199901L
762# define abs(x) _cups_abs(x)
763static inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
764# elif defined(_MSC_VER)
765# define abs(x) _cups_abs(x)
766static __inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
767# else
768# define abs(x) ((x) < 0 ? -(x) : (x))
769# endif /* __GNUC__ || __STDC_VERSION__ */
770#endif /* !HAVE_ABS && !abs */
771
ef416fc2 772#endif /* !_CUPS_CONFIG_H_ */
773
774/*
b19ccc9e 775 * End of "$Id: config.h.in 7918 2008-09-08 22:03:01Z mike $".
ef416fc2 776 */