]> git.ipfire.org Git - thirdparty/cups.git/blob - config.h.in
Fix some clang errors.
[thirdparty/cups.git] / config.h.in
1 /*
2 * "$Id$"
3 *
4 * Configuration file for CUPS.
5 *
6 * Copyright 2007-2012 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products.
8 *
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/".
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 /*
28 * Default user and groups...
29 */
30
31 #define CUPS_DEFAULT_USER "lp"
32 #define CUPS_DEFAULT_GROUP "sys"
33 #define CUPS_DEFAULT_SYSTEM_GROUPS "sys root system"
34 #define CUPS_DEFAULT_PRINTOPERATOR_AUTH "@SYSTEM"
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
45 /*
46 * Default logging settings...
47 */
48
49 #define CUPS_DEFAULT_LOG_LEVEL "warn"
50 #define CUPS_DEFAULT_ACCESS_LOG_LEVEL "actions"
51
52
53 /*
54 * Default fatal error settings...
55 */
56
57 #define CUPS_DEFAULT_FATAL_ERRORS "config"
58
59
60 /*
61 * Default browsing settings...
62 */
63
64 #define CUPS_DEFAULT_BROWSING 1
65 #define CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS ""
66 #define CUPS_DEFAULT_DEFAULT_SHARED 1
67
68
69 /*
70 * Default IPP port...
71 */
72
73 #define CUPS_DEFAULT_IPP_PORT 631
74
75
76 /*
77 * Default printcap file...
78 */
79
80 #define CUPS_DEFAULT_PRINTCAP "/etc/printcap"
81
82
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
91 /*
92 * Default MaxCopies value...
93 */
94
95 #define CUPS_DEFAULT_MAX_COPIES 100
96
97
98 /*
99 * Do we have domain socket support, and if so what is the default one?
100 */
101
102 #undef CUPS_DEFAULT_DOMAINSOCKET
103
104
105 /*
106 * Default WebInterface value...
107 */
108
109 #undef CUPS_DEFAULT_WEBIF
110
111
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
119 #define CUPS_BINDIR "/usr/bin"
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"
127 #define CUPS_SBINDIR "/usr/sbin"
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
152 #undef HAVE_PAM_SET_ITEM
153 #undef HAVE_PAM_SETCRED
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
170 /*
171 * Use <stdint.h>?
172 */
173
174 #undef HAVE_STDINT_H
175
176
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
185
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
200
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
211
212 /*
213 * Do we have the strXXX() functions?
214 */
215
216 #undef HAVE_STRDUP
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
228 /*
229 * Do we have the setpgid() function?
230 */
231
232 #undef HAVE_SETPGID
233
234
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
274 /*
275 * Do we have the POSIX ACL functions?
276 */
277
278 #undef HAVE_ACL_INIT
279
280
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
298 /*
299 * Do we have the SSL_set_tlsext_host_name function?
300 */
301
302 #undef HAVE_SSL_SET_TLSEXT_HOST_NAME
303
304
305 /*
306 * What Security framework headers do we have?
307 */
308
309 #undef HAVE_AUTHORIZATION_H
310 #undef HAVE_SECBASEPRIV_H
311 #undef HAVE_SECCERTIFICATE_H
312 #undef HAVE_SECIDENTITYSEARCHPRIV_H
313 #undef HAVE_SECITEM_H
314 #undef HAVE_SECITEMPRIV_H
315 #undef HAVE_SECPOLICY_H
316 #undef HAVE_SECPOLICYPRIV_H
317 #undef HAVE_SECURETRANSPORTPRIV_H
318
319
320 /*
321 * Do we have the cssmErrorString function?
322 */
323
324 #undef HAVE_CSSMERRORSTRING
325
326
327 /*
328 * Do we have libpaper?
329 */
330
331 #undef HAVE_LIBPAPER
332
333
334 /*
335 * Do we have mDNSResponder for DNS Service Discovery (aka Bonjour)?
336 */
337
338 #undef HAVE_DNSSD
339
340
341 /*
342 * Do we have Avahi for DNS Service Discovery (aka Bonjour)?
343 */
344
345 #undef HAVE_AVAHI
346
347
348 /*
349 * Do we have <sys/ioctl.h>?
350 */
351
352 #undef HAVE_SYS_IOCTL_H
353
354
355 /*
356 * Does the "stat" structure contain the "st_gen" member?
357 */
358
359 #undef HAVE_ST_GEN
360
361
362 /*
363 * Does the "tm" structure contain the "tm_gmtoff" member?
364 */
365
366 #undef HAVE_TM_GMTOFF
367
368
369 /*
370 * Do we have rresvport_af()?
371 */
372
373 #undef HAVE_RRESVPORT_AF
374
375
376 /*
377 * Do we have getaddrinfo()?
378 */
379
380 #undef HAVE_GETADDRINFO
381
382
383 /*
384 * Do we have getnameinfo()?
385 */
386
387 #undef HAVE_GETNAMEINFO
388
389
390 /*
391 * Do we have getifaddrs()?
392 */
393
394 #undef HAVE_GETIFADDRS
395
396
397 /*
398 * Do we have hstrerror()?
399 */
400
401 #undef HAVE_HSTRERROR
402
403
404 /*
405 * Do we have res_init()?
406 */
407
408 #undef HAVE_RES_INIT
409
410
411 /*
412 * Do we have <resolv.h>
413 */
414
415 #undef HAVE_RESOLV_H
416
417
418 /*
419 * Do we have the <sys/sockio.h> header file?
420 */
421
422 #undef HAVE_SYS_SOCKIO_H
423
424
425 /*
426 * Does the sockaddr structure contain an sa_len parameter?
427 */
428
429 #undef HAVE_STRUCT_SOCKADDR_SA_LEN
430
431
432 /*
433 * Do we have the AIX usersec.h header file?
434 */
435
436 #undef HAVE_USERSEC_H
437
438
439 /*
440 * Do we have pthread support?
441 */
442
443 #undef HAVE_PTHREAD_H
444
445
446 /*
447 * Do we have launchd support?
448 */
449
450 #undef HAVE_LAUNCH_H
451 #undef HAVE_LAUNCHD
452
453
454 /*
455 * Various scripting languages...
456 */
457
458 #undef HAVE_JAVA
459 #define CUPS_JAVA "/usr/bin/java"
460 #undef HAVE_PERL
461 #define CUPS_PERL "/usr/bin/perl"
462 #undef HAVE_PHP
463 #define CUPS_PHP "/usr/bin/php"
464 #undef HAVE_PYTHON
465 #define CUPS_PYTHON "/usr/bin/python"
466
467
468 /*
469 * Location of the poppler/Xpdf pdftops program...
470 */
471
472 #undef HAVE_PDFTOPS
473 #undef HAVE_PDFTOPS_WITH_ORIGPAGESIZES
474 #define CUPS_PDFTOPS "/usr/bin/pdftops"
475
476
477 /*
478 * Location of the Ghostscript gs program...
479 */
480
481 #undef HAVE_GHOSTSCRIPT
482 #undef HAVE_GHOSTSCRIPT_PS2WRITE
483 #define CUPS_GHOSTSCRIPT "/usr/bin/gs"
484
485
486 /*
487 * Do we have CoreFoundation public and private headers?
488 */
489
490 #undef HAVE_COREFOUNDATION_H
491 #undef HAVE_CFPRIV_H
492 #undef HAVE_CFBUNDLEPRIV_H
493
494
495 /*
496 * Do we have ApplicationServices public headers?
497 */
498
499 #undef HAVE_APPLICATIONSERVICES_H
500
501
502 /*
503 * Do we have the SCDynamicStoreCopyComputerName function?
504 */
505
506 #undef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME
507
508
509 /*
510 * Do we have OS X 10.4's mbr_XXX functions?
511 */
512
513 #undef HAVE_MEMBERSHIP_H
514 #undef HAVE_MEMBERSHIPPRIV_H
515 #undef HAVE_MBR_UID_TO_UUID
516
517
518 /*
519 * Do we have Darwin's notify_post header and function?
520 */
521
522 #undef HAVE_NOTIFY_H
523 #undef HAVE_NOTIFY_POST
524
525
526 /*
527 * Do we have Darwin's IOKit private headers?
528 */
529
530 #undef HAVE_IOKIT_PWR_MGT_IOPMLIBPRIVATE_H
531
532
533 /*
534 * Do we have DBUS?
535 */
536
537 #undef HAVE_DBUS
538 #undef HAVE_DBUS_MESSAGE_ITER_INIT_APPEND
539
540
541 /*
542 * Do we have the GSSAPI support library (for Kerberos support)?
543 */
544
545 #undef HAVE_GSS_ACQUIRE_CRED_EX_F
546 #undef HAVE_GSS_C_NT_HOSTBASED_SERVICE
547 #undef HAVE_GSS_GSSAPI_H
548 #undef HAVE_GSS_GSSAPI_SPI_H
549 #undef HAVE_GSSAPI
550 #undef HAVE_GSSAPI_GENERIC_H
551 #undef HAVE_GSSAPI_GSSAPI_H
552 #undef HAVE_GSSAPI_H
553 #undef HAVE_GSSAPI_KRB5_H
554 #undef HAVE_KRB5_H
555
556
557 /*
558 * Default GSS service name...
559 */
560
561 #define CUPS_DEFAULT_GSSSERVICENAME ""
562
563
564 /*
565 * Select/poll interfaces...
566 */
567
568 #undef HAVE_POLL
569 #undef HAVE_EPOLL
570 #undef HAVE_KQUEUE
571
572
573 /*
574 * Do we have the <dlfcn.h> header?
575 */
576
577 #undef HAVE_DLFCN_H
578
579
580 /*
581 * Do we have <sys/param.h>?
582 */
583
584 #undef HAVE_SYS_PARAM_H
585
586
587 /*
588 * Do we have <sys/ucred.h>?
589 */
590
591 #undef HAVE_SYS_UCRED_H
592
593
594 /*
595 * Do we have removefile()?
596 */
597
598 #undef HAVE_REMOVEFILE
599
600
601 /*
602 * Do we have <sandbox.h>?
603 */
604
605 #undef HAVE_SANDBOX_H
606
607
608 /*
609 * Which random number generator function to use...
610 */
611
612 #undef HAVE_ARC4RANDOM
613 #undef HAVE_RANDOM
614 #undef HAVE_LRAND48
615
616 #ifdef HAVE_ARC4RANDOM
617 # define CUPS_RAND() arc4random()
618 # define CUPS_SRAND(v) arc4random_stir()
619 #elif defined(HAVE_RANDOM)
620 # define CUPS_RAND() random()
621 # define CUPS_SRAND(v) srandom(v)
622 #elif defined(HAVE_LRAND48)
623 # define CUPS_RAND() lrand48()
624 # define CUPS_SRAND(v) srand48(v)
625 #else
626 # define CUPS_RAND() rand()
627 # define CUPS_SRAND(v) srand(v)
628 #endif /* HAVE_ARC4RANDOM */
629
630
631 /*
632 * Do we have vproc_transaction_begin/end?
633 */
634
635 #undef HAVE_VPROC_TRANSACTION_BEGIN
636
637
638 /*
639 * Do we have libusb?
640 */
641
642 #undef HAVE_LIBUSB
643
644
645 /*
646 * Do we have libwrap and tcpd.h?
647 */
648
649 #undef HAVE_TCPD_H
650
651
652 /*
653 * Do we have <iconv.h>?
654 */
655
656 #undef HAVE_ICONV_H
657
658
659 /*
660 * Do we have statfs or statvfs and one of the corresponding headers?
661 */
662
663 #undef HAVE_STATFS
664 #undef HAVE_STATVFS
665 #undef HAVE_SYS_MOUNT_H
666 #undef HAVE_SYS_STATFS_H
667 #undef HAVE_SYS_STATVFS_H
668 #undef HAVE_SYS_VFS_H
669
670
671 /*
672 * Location of OS X localization bundle, if any.
673 */
674
675 #undef CUPS_BUNDLEDIR
676
677
678 /*
679 * Do we have XPC?
680 */
681
682 #undef HAVE_XPC
683 #undef HAVE_XPC_PRIVATE_H
684
685
686 /*
687 * Do we have Mini-XML?
688 */
689
690 #undef HAVE_MXML_H
691
692
693 /*
694 * Do we have the C99 abs() function?
695 */
696
697 #undef HAVE_ABS
698 #if !defined(HAVE_ABS) && !defined(abs)
699 # if defined(__GNUC__) || __STDC_VERSION__ >= 199901L
700 # define abs(x) _cups_abs(x)
701 static inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
702 # elif defined(_MSC_VER)
703 # define abs(x) _cups_abs(x)
704 static __inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
705 # else
706 # define abs(x) ((x) < 0 ? -(x) : (x))
707 # endif /* __GNUC__ || __STDC_VERSION__ */
708 #endif /* !HAVE_ABS && !abs */
709
710 #endif /* !_CUPS_CONFIG_H_ */
711
712 /*
713 * End of "$Id$".
714 */