]> git.ipfire.org Git - thirdparty/cups.git/blob - config.h.in
Sync up with CUPS 1.7svn-r10893
[thirdparty/cups.git] / config.h.in
1 /*
2 * "$Id: config.h.in 7918 2008-09-08 22:03:01Z mike $"
3 *
4 * Configuration file for CUPS.
5 *
6 * Copyright 2007-2013 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 ZLIB?
135 */
136
137 #undef HAVE_LIBZ
138 #undef HAVE_INFLATECOPY
139
140
141 /*
142 * Do we have PAM stuff?
143 */
144
145 #ifndef HAVE_LIBPAM
146 #define HAVE_LIBPAM 0
147 #endif /* !HAVE_LIBPAM */
148
149 #undef HAVE_PAM_PAM_APPL_H
150 #undef HAVE_PAM_SET_ITEM
151 #undef HAVE_PAM_SETCRED
152
153
154 /*
155 * Do we have <shadow.h>?
156 */
157
158 #undef HAVE_SHADOW_H
159
160
161 /*
162 * Do we have <crypt.h>?
163 */
164
165 #undef HAVE_CRYPT_H
166
167
168 /*
169 * Use <stdint.h>?
170 */
171
172 #undef HAVE_STDINT_H
173
174
175 /*
176 * Use <string.h>, <strings.h>, and/or <bstring.h>?
177 */
178
179 #undef HAVE_STRING_H
180 #undef HAVE_STRINGS_H
181 #undef HAVE_BSTRING_H
182
183
184 /*
185 * Do we have the long long type?
186 */
187
188 #undef HAVE_LONG_LONG
189
190 #ifdef HAVE_LONG_LONG
191 # define CUPS_LLFMT "%lld"
192 # define CUPS_LLCAST (long long)
193 #else
194 # define CUPS_LLFMT "%ld"
195 # define CUPS_LLCAST (long)
196 #endif /* HAVE_LONG_LONG */
197
198
199 /*
200 * Do we have the strtoll() function?
201 */
202
203 #undef HAVE_STRTOLL
204
205 #ifndef HAVE_STRTOLL
206 # define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base))
207 #endif /* !HAVE_STRTOLL */
208
209
210 /*
211 * Do we have the strXXX() functions?
212 */
213
214 #undef HAVE_STRDUP
215 #undef HAVE_STRLCAT
216 #undef HAVE_STRLCPY
217
218
219 /*
220 * Do we have the geteuid() function?
221 */
222
223 #undef HAVE_GETEUID
224
225
226 /*
227 * Do we have the setpgid() function?
228 */
229
230 #undef HAVE_SETPGID
231
232
233 /*
234 * Do we have the vsyslog() function?
235 */
236
237 #undef HAVE_VSYSLOG
238
239
240 /*
241 * Do we have the (v)snprintf() functions?
242 */
243
244 #undef HAVE_SNPRINTF
245 #undef HAVE_VSNPRINTF
246
247
248 /*
249 * What signal functions to use?
250 */
251
252 #undef HAVE_SIGSET
253 #undef HAVE_SIGACTION
254
255
256 /*
257 * What wait functions to use?
258 */
259
260 #undef HAVE_WAITPID
261 #undef HAVE_WAIT3
262
263
264 /*
265 * Do we have the mallinfo function and malloc.h?
266 */
267
268 #undef HAVE_MALLINFO
269 #undef HAVE_MALLOC_H
270
271
272 /*
273 * Do we have the POSIX ACL functions?
274 */
275
276 #undef HAVE_ACL_INIT
277
278
279 /*
280 * Do we have the langinfo.h header file?
281 */
282
283 #undef HAVE_LANGINFO_H
284
285
286 /*
287 * Which encryption libraries do we have?
288 */
289
290 #undef HAVE_CDSASSL
291 #undef HAVE_GNUTLS
292 #undef HAVE_LIBSSL
293 #undef HAVE_SSL
294
295
296 /*
297 * Do we have the SSL_set_tlsext_host_name function?
298 */
299
300 #undef HAVE_SSL_SET_TLSEXT_HOST_NAME
301
302
303 /*
304 * What Security framework headers do we have?
305 */
306
307 #undef HAVE_AUTHORIZATION_H
308 #undef HAVE_SECBASEPRIV_H
309 #undef HAVE_SECCERTIFICATE_H
310 #undef HAVE_SECIDENTITYSEARCHPRIV_H
311 #undef HAVE_SECITEM_H
312 #undef HAVE_SECITEMPRIV_H
313 #undef HAVE_SECPOLICY_H
314 #undef HAVE_SECPOLICYPRIV_H
315 #undef HAVE_SECURETRANSPORTPRIV_H
316
317
318 /*
319 * Do we have the cssmErrorString function?
320 */
321
322 #undef HAVE_CSSMERRORSTRING
323
324
325 /*
326 * Do we have libpaper?
327 */
328
329 #undef HAVE_LIBPAPER
330
331
332 /*
333 * Do we have mDNSResponder for DNS Service Discovery (aka Bonjour)?
334 */
335
336 #undef HAVE_DNSSD
337
338
339 /*
340 * Do we have Avahi for DNS Service Discovery (aka Bonjour)?
341 */
342
343 #undef HAVE_AVAHI
344
345
346 /*
347 * Do we have <sys/ioctl.h>?
348 */
349
350 #undef HAVE_SYS_IOCTL_H
351
352
353 /*
354 * Does the "stat" structure contain the "st_gen" member?
355 */
356
357 #undef HAVE_ST_GEN
358
359
360 /*
361 * Does the "tm" structure contain the "tm_gmtoff" member?
362 */
363
364 #undef HAVE_TM_GMTOFF
365
366
367 /*
368 * Do we have rresvport_af()?
369 */
370
371 #undef HAVE_RRESVPORT_AF
372
373
374 /*
375 * Do we have getaddrinfo()?
376 */
377
378 #undef HAVE_GETADDRINFO
379
380
381 /*
382 * Do we have getnameinfo()?
383 */
384
385 #undef HAVE_GETNAMEINFO
386
387
388 /*
389 * Do we have getifaddrs()?
390 */
391
392 #undef HAVE_GETIFADDRS
393
394
395 /*
396 * Do we have hstrerror()?
397 */
398
399 #undef HAVE_HSTRERROR
400
401
402 /*
403 * Do we have res_init()?
404 */
405
406 #undef HAVE_RES_INIT
407
408
409 /*
410 * Do we have <resolv.h>
411 */
412
413 #undef HAVE_RESOLV_H
414
415
416 /*
417 * Do we have the <sys/sockio.h> header file?
418 */
419
420 #undef HAVE_SYS_SOCKIO_H
421
422
423 /*
424 * Does the sockaddr structure contain an sa_len parameter?
425 */
426
427 #undef HAVE_STRUCT_SOCKADDR_SA_LEN
428
429
430 /*
431 * Do we have the AIX usersec.h header file?
432 */
433
434 #undef HAVE_USERSEC_H
435
436
437 /*
438 * Do we have pthread support?
439 */
440
441 #undef HAVE_PTHREAD_H
442
443
444 /*
445 * Do we have launchd support?
446 */
447
448 #undef HAVE_LAUNCH_H
449 #undef HAVE_LAUNCHD
450
451
452 /*
453 * Various scripting languages...
454 */
455
456 #undef HAVE_JAVA
457 #define CUPS_JAVA "/usr/bin/java"
458 #undef HAVE_PERL
459 #define CUPS_PERL "/usr/bin/perl"
460 #undef HAVE_PHP
461 #define CUPS_PHP "/usr/bin/php"
462 #undef HAVE_PYTHON
463 #define CUPS_PYTHON "/usr/bin/python"
464
465
466 /*
467 * Location of the poppler/Xpdf pdftops program...
468 */
469
470 #undef HAVE_PDFTOPS
471 #undef HAVE_PDFTOPS_WITH_ORIGPAGESIZES
472 #define CUPS_PDFTOPS "/usr/bin/pdftops"
473
474
475 /*
476 * Location of the Ghostscript gs program...
477 */
478
479 #undef HAVE_GHOSTSCRIPT
480 #undef HAVE_GHOSTSCRIPT_PS2WRITE
481 #define CUPS_GHOSTSCRIPT "/usr/bin/gs"
482
483
484 /*
485 * Do we have CoreFoundation public and private headers?
486 */
487
488 #undef HAVE_COREFOUNDATION_H
489 #undef HAVE_CFPRIV_H
490 #undef HAVE_CFBUNDLEPRIV_H
491
492
493 /*
494 * Do we have ApplicationServices public headers?
495 */
496
497 #undef HAVE_APPLICATIONSERVICES_H
498
499
500 /*
501 * Do we have the SCDynamicStoreCopyComputerName function?
502 */
503
504 #undef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME
505
506
507 /*
508 * Do we have OS X 10.4's mbr_XXX functions?
509 */
510
511 #undef HAVE_MEMBERSHIP_H
512 #undef HAVE_MEMBERSHIPPRIV_H
513 #undef HAVE_MBR_UID_TO_UUID
514
515
516 /*
517 * Do we have Darwin's notify_post header and function?
518 */
519
520 #undef HAVE_NOTIFY_H
521 #undef HAVE_NOTIFY_POST
522
523
524 /*
525 * Do we have Darwin's IOKit private headers?
526 */
527
528 #undef HAVE_IOKIT_PWR_MGT_IOPMLIBPRIVATE_H
529
530
531 /*
532 * Do we have DBUS?
533 */
534
535 #undef HAVE_DBUS
536 #undef HAVE_DBUS_MESSAGE_ITER_INIT_APPEND
537
538
539 /*
540 * Do we have the GSSAPI support library (for Kerberos support)?
541 */
542
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
547 #undef HAVE_GSSAPI
548 #undef HAVE_GSSAPI_GSSAPI_H
549 #undef HAVE_GSSAPI_H
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
568 /*
569 * Do we have the <dlfcn.h> header?
570 */
571
572 #undef HAVE_DLFCN_H
573
574
575 /*
576 * Do we have <sys/param.h>?
577 */
578
579 #undef HAVE_SYS_PARAM_H
580
581
582 /*
583 * Do we have <sys/ucred.h>?
584 */
585
586 #undef HAVE_SYS_UCRED_H
587
588
589 /*
590 * Do we have removefile()?
591 */
592
593 #undef HAVE_REMOVEFILE
594
595
596 /*
597 * Do we have <sandbox.h>?
598 */
599
600 #undef HAVE_SANDBOX_H
601
602
603 /*
604 * Which random number generator function to use...
605 */
606
607 #undef HAVE_ARC4RANDOM
608 #undef HAVE_RANDOM
609 #undef HAVE_LRAND48
610
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
625
626 /*
627 * Do we have vproc_transaction_begin/end?
628 */
629
630 #undef HAVE_VPROC_TRANSACTION_BEGIN
631
632
633 /*
634 * Do we have libusb?
635 */
636
637 #undef HAVE_LIBUSB
638
639
640 /*
641 * Do we have libwrap and tcpd.h?
642 */
643
644 #undef HAVE_TCPD_H
645
646
647 /*
648 * Do we have <iconv.h>?
649 */
650
651 #undef HAVE_ICONV_H
652
653
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
666 /*
667 * Location of OS X localization bundle, if any.
668 */
669
670 #undef CUPS_BUNDLEDIR
671
672
673 /*
674 * Do we have XPC?
675 */
676
677 #undef HAVE_XPC
678 #undef HAVE_XPC_PRIVATE_H
679
680
681 /*
682 * Do we have Mini-XML?
683 */
684
685 #undef HAVE_MXML_H
686
687
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)
696 static inline int _cups_abs(int i) { return (i < 0 ? -i : i); }
697 # elif defined(_MSC_VER)
698 # define abs(x) _cups_abs(x)
699 static __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
705 #endif /* !_CUPS_CONFIG_H_ */
706
707 /*
708 * End of "$Id: config.h.in 7918 2008-09-08 22:03:01Z mike $".
709 */