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