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