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