]> git.ipfire.org Git - thirdparty/cups.git/blob - vcnet/config.h
Merge changes from CUPS 1.5b1-r9798.
[thirdparty/cups.git] / vcnet / config.h
1 /*
2 * "$Id: config.h 6649 2007-07-11 21:46:42Z mike $"
3 *
4 * Configuration file for CUPS on Windows.
5 *
6 * Copyright 2007-2011 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 * Include necessary headers...
21 */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdarg.h>
27 #include <io.h>
28 #include <direct.h>
29
30
31 /*
32 * Microsoft renames the POSIX functions to _name, and introduces
33 * a broken compatibility layer using the original names. As a result,
34 * random crashes can occur when, for example, strdup() allocates memory
35 * from a different heap than used by malloc() and free().
36 *
37 * To avoid moronic problems like this, we #define the POSIX function
38 * names to the corresponding non-standard Microsoft names.
39 */
40
41 #define access _access
42 #define close _close
43 #define fileno _fileno
44 #define lseek _lseek
45 #define mkdir(d,p) _mkdir(d)
46 #define open _open
47 #define read _read
48 #define rmdir _rmdir
49 #define snprintf _snprintf
50 #define strdup _strdup
51 #define unlink _unlink
52 #define vsnprintf _vsnprintf
53 #define write _write
54
55
56 /*
57 * Map the POSIX sleep() and usleep() functions to the Win32 Sleep() function...
58 */
59
60 #define sleep(X) Sleep(1000 * (X))
61 #define usleep(X) Sleep((X)/1000)
62
63
64 /*
65 * Map various parameters to Posix style system calls
66 */
67
68 # define F_OK 00
69 # define W_OK 02
70 # define R_OK 04
71 # define O_RDONLY _O_RDONLY
72 # define O_WRONLY _O_WRONLY
73 # define O_CREATE _O_CREAT
74 # define O_TRUNC _O_TRUNC
75
76
77 /*
78 * Compiler stuff...
79 */
80
81 #undef const
82 #undef __CHAR_UNSIGNED__
83
84
85 /*
86 * Version of software...
87 */
88
89 #define CUPS_SVERSION "CUPS v1.5.0"
90 #define CUPS_MINIMAL "CUPS/1.5.0"
91
92
93 /*
94 * Default user and groups...
95 */
96
97 #define CUPS_DEFAULT_USER ""
98 #define CUPS_DEFAULT_GROUP ""
99 #define CUPS_DEFAULT_SYSTEM_GROUPS ""
100 #define CUPS_DEFAULT_PRINTOPERATOR_AUTH ""
101
102
103 /*
104 * Default file permissions...
105 */
106
107 #define CUPS_DEFAULT_CONFIG_FILE_PERM 0644
108 #define CUPS_DEFAULT_LOG_FILE_PERM 0644
109
110
111 /*
112 * Default logging settings...
113 */
114
115 #define CUPS_DEFAULT_LOG_LEVEL "warn"
116 #define CUPS_DEFAULT_ACCESS_LOG_LEVEL "actions"
117
118
119 /*
120 * Default fatal error settings...
121 */
122
123 #define CUPS_DEFAULT_FATAL_ERRORS "config"
124
125
126 /*
127 * Default browsing settings...
128 */
129
130 #define CUPS_DEFAULT_BROWSING 1
131 #define CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS "CUPS dnssd"
132 #define CUPS_DEFAULT_BROWSE_REMOTE_PROTOCOLS ""
133 #define CUPS_DEFAULT_BROWSE_SHORT_NAMES 1
134 #define CUPS_DEFAULT_DEFAULT_SHARED 1
135 #define CUPS_DEFAULT_IMPLICIT_CLASSES 1
136 #define CUPS_DEFAULT_USE_NETWORK_DEFAULT 0
137
138
139 /*
140 * Default IPP port...
141 */
142
143 #define CUPS_DEFAULT_IPP_PORT 631
144
145
146 /*
147 * Default printcap file...
148 */
149
150 #define CUPS_DEFAULT_PRINTCAP ""
151
152
153 /*
154 * Default Samba and LPD config files...
155 */
156
157 #define CUPS_DEFAULT_SMB_CONFIG_FILE ""
158 #define CUPS_DEFAULT_LPD_CONFIG_FILE ""
159
160
161 /*
162 * Default MaxCopies value...
163 */
164
165 #define CUPS_DEFAULT_MAX_COPIES 9999
166
167
168 /*
169 * Do we have domain socket support?
170 */
171
172 #undef CUPS_DEFAULT_DOMAINSOCKET
173
174
175 /*
176 * Where are files stored?
177 *
178 * Note: These are defaults, which can be overridden by environment
179 * variables at run-time...
180 */
181
182 #define CUPS_BINDIR "C:/CUPS/bin"
183 #define CUPS_CACHEDIR "C:/CUPS/cache"
184 #define CUPS_DATADIR "C:/CUPS/share"
185 #define CUPS_DOCROOT "C:/CUPS/share/doc"
186 #define CUPS_FONTPATH "C:/CUPS/share/fonts"
187 #define CUPS_LOCALEDIR "C:/CUPS/locale"
188 #define CUPS_LOGDIR "C:/CUPS/logs"
189 #define CUPS_REQUESTS "C:/CUPS/spool"
190 #define CUPS_SBINDIR "C:/CUPS/sbin"
191 #define CUPS_SERVERBIN "C:/CUPS/lib"
192 #define CUPS_SERVERROOT "C:/CUPS/etc"
193 #define CUPS_STATEDIR "C:/CUPS/run"
194
195
196 /*
197 * Do we have various image libraries?
198 */
199
200 /* #undef HAVE_LIBPNG */
201 /* #undef HAVE_LIBZ */
202 /* #undef HAVE_LIBJPEG */
203 /* #undef HAVE_LIBTIFF */
204
205
206 /*
207 * Do we have PAM stuff?
208 */
209
210 #ifndef HAVE_LIBPAM
211 #define HAVE_LIBPAM 0
212 #endif /* !HAVE_LIBPAM */
213
214 /* #undef HAVE_PAM_PAM_APPL_H */
215 /* #undef HAVE_PAM_SET_ITEM */
216 /* #undef HAVE_PAM_SETCRED */
217
218
219 /*
220 * Do we have <shadow.h>?
221 */
222
223 /* #undef HAVE_SHADOW_H */
224
225
226 /*
227 * Do we have <crypt.h>?
228 */
229
230 /* #undef HAVE_CRYPT_H */
231
232
233 /*
234 * Do we have <scsi/sg.h>?
235 */
236
237 /* #undef HAVE_SCSI_SG_H */
238
239
240 /*
241 * Use <string.h>, <strings.h>, and/or <bstring.h>?
242 */
243
244 #define HAVE_STRING_H 1
245 /* #undef HAVE_STRINGS_H */
246 /* #undef HAVE_BSTRING_H */
247
248
249 /*
250 * Do we have the long long type?
251 */
252
253 /* #undef HAVE_LONG_LONG */
254
255 #ifdef HAVE_LONG_LONG
256 # define CUPS_LLFMT "%lld"
257 # define CUPS_LLCAST (long long)
258 #else
259 # define CUPS_LLFMT "%ld"
260 # define CUPS_LLCAST (long)
261 #endif /* HAVE_LONG_LONG */
262
263
264 /*
265 * Do we have the strtoll() function?
266 */
267
268 /* #undef HAVE_STRTOLL */
269
270 #ifndef HAVE_STRTOLL
271 # define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base))
272 #endif /* !HAVE_STRTOLL */
273
274
275 /*
276 * Do we have the strXXX() functions?
277 */
278
279 #define HAVE_STRDUP 1
280 /* #undef HAVE_STRLCAT */
281 /* #undef HAVE_STRLCPY */
282
283
284 /*
285 * Do we have the geteuid() function?
286 */
287
288 /* #undef HAVE_GETEUID */
289
290
291 /*
292 * Do we have the setpgid() function?
293 */
294
295 /* #undef HAVE_SETPGID */
296
297
298 /*
299 * Do we have the vsyslog() function?
300 */
301
302 /* #undef HAVE_VSYSLOG */
303
304
305 /*
306 * Do we have the (v)snprintf() functions?
307 */
308
309 #define HAVE_SNPRINTF 1
310 #define HAVE_VSNPRINTF 1
311
312
313 /*
314 * What signal functions to use?
315 */
316
317 /* #undef HAVE_SIGSET */
318 /* #undef HAVE_SIGACTION */
319
320
321 /*
322 * What wait functions to use?
323 */
324
325 /* #undef HAVE_WAITPID */
326 /* #undef HAVE_WAIT3 */
327
328
329 /*
330 * Do we have the mallinfo function and malloc.h?
331 */
332
333 /* #undef HAVE_MALLINFO */
334 /* #undef HAVE_MALLOC_H */
335
336
337 /*
338 * Do we have the POSIX ACL functions?
339 */
340
341 /* #undef HAVE_ACL_INIT */
342
343
344 /*
345 * Do we have the langinfo.h header file?
346 */
347
348 /* #undef HAVE_LANGINFO_H */
349
350
351 /*
352 * Which encryption libraries do we have?
353 */
354
355 /* #undef HAVE_CDSASSL */
356 /* #undef HAVE_GNUTLS */
357 /* #undef HAVE_LIBSSL */
358 #define HAVE_SSPISSL
359 #define HAVE_SSL
360
361
362 /*
363 * What Security framework headers do we have?
364 */
365
366 /* #undef HAVE_AUTHORIZATION_H */
367 /* #undef HAVE_SECPOLICY_H */
368 /* #undef HAVE_SECPOLICYPRIV_H */
369 /* #undef HAVE_SECBASEPRIV_H */
370 /* #undef HAVE_SECIDENTITYSEARCHPRIV_H */
371
372
373 /*
374 * Do we have the SecIdentitySearchCreateWithPolicy function?
375 */
376
377 /* #undef HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY */
378
379
380 /*
381 * Do we have the SecPolicyCreateSSL function?
382 */
383
384 /* #undef HAVE_SECPOLICYCREATESSL */
385
386
387 /*
388 * Do we have the SecPolicyCreateSSL function?
389 */
390
391 /* #undef HAVE_SECPOLICYCREATESSL */
392
393
394 /*
395 * Do we have the cssmErrorString function?
396 */
397
398 /* #undef HAVE_CSSMERRORSTRING */
399
400
401 /*
402 * Do we have the SLP library?
403 */
404
405 /* #undef HAVE_LIBSLP */
406
407
408 /*
409 * Do we have an LDAP library?
410 */
411
412 /* #undef HAVE_LDAP */
413 /* #undef HAVE_OPENLDAP */
414 /* #undef HAVE_MOZILLA_LDAP */
415 /* #undef HAVE_LDAP_SSL_H */
416 /* #undef HAVE_LDAP_SSL */
417 /* #undef HAVE_LDAP_REBIND_PROC */
418
419
420 /*
421 * Do we have libpaper?
422 */
423
424 /* #undef HAVE_LIBPAPER */
425
426
427 /*
428 * Do we have DNS Service Discovery (aka Bonjour)?
429 */
430
431 #define HAVE_DNSSD 1
432
433
434 /*
435 * Does the "stat" structure contain the "st_gen" member?
436 */
437
438 /* #undef HAVE_ST_GEN */
439
440
441 /*
442 * Do we have <sys/ioctl.h>?
443 */
444
445 /* #undef HAVE_SYS_IOCTL_H */
446
447
448 /*
449 * Does the "tm" structure contain the "tm_gmtoff" member?
450 */
451
452 /* #undef HAVE_TM_GMTOFF */
453
454
455 /*
456 * Do we have rresvport_af()?
457 */
458
459 /* #undef HAVE_RRESVPORT_AF */
460
461
462 /*
463 * Do we have getaddrinfo()?
464 */
465
466 #define HAVE_GETADDRINFO 1
467
468
469 /*
470 * Do we have getnameinfo()?
471 */
472
473 #define HAVE_GETNAMEINFO 1
474
475
476 /*
477 * Do we have getifaddrs()?
478 */
479
480 /* #undef HAVE_GETIFADDRS */
481
482
483 /*
484 * Do we have hstrerror()?
485 */
486
487 /* #undef HAVE_HSTRERROR */
488
489
490 /*
491 * Do we have res_init()?
492 */
493
494 /* #undef HAVE_RES_INIT */
495
496
497 /*
498 * Do we have <resolv.h>
499 */
500
501 /* #undef HAVE_RESOLV_H */
502
503
504 /*
505 * Do we have the <sys/sockio.h> header file?
506 */
507
508 /* #undef HAVE_SYS_SOCKIO_H */
509
510
511 /*
512 * Does the sockaddr structure contain an sa_len parameter?
513 */
514
515 /* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */
516
517
518 /*
519 * Do we have the AIX usersec.h header file?
520 */
521
522 /* #undef HAVE_USERSEC_H */
523
524
525 /*
526 * Do we have pthread support?
527 */
528
529 /* #undef HAVE_PTHREAD_H */
530
531
532 /*
533 * Do we have launchd support?
534 */
535
536 /* #undef HAVE_LAUNCH_H */
537 /* #undef HAVE_LAUNCHD */
538
539
540 /*
541 * Various scripting languages...
542 */
543
544 /* #undef HAVE_JAVA */
545 #define CUPS_JAVA ""
546 /* #undef HAVE_PERL */
547 #define CUPS_PERL ""
548 /* #undef HAVE_PHP */
549 #define CUPS_PHP ""
550 /* #undef HAVE_PYTHON */
551 #define CUPS_PYTHON ""
552
553
554 /*
555 * Location of the poppler/Xpdf pdftops program...
556 */
557
558 /* #undef HAVE_PDFTOPS */
559 #define CUPS_PDFTOPS ""
560
561
562 /*
563 * Location of the Ghostscript gs program...
564 */
565
566 /* #undef HAVE_GHOSTSCRIPT */
567 #define CUPS_GHOSTSCRIPT ""
568
569
570 /*
571 * Do we have Darwin's CoreFoundation and SystemConfiguration frameworks?
572 */
573
574 /* #undef HAVE_COREFOUNDATION */
575 /* #undef HAVE_SYSTEMCONFIGURATION */
576
577
578 /*
579 * Do we have CoreFoundation public and private headers?
580 */
581
582 /* #undef HAVE_COREFOUNDATION_H */
583 /* #undef HAVE_CFPRIV_H */
584 /* #undef HAVE_CFBUNDLEPRIV_H */
585
586
587 /*
588 * Do we have ApplicationServices public headers?
589 */
590
591 /* #undef HAVE_APPLICATIONSERVICES_H */
592
593
594 /*
595 * Do we have the SCDynamicStoreCopyComputerName function?
596 */
597
598 /* #undef HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME */
599
600
601 /*
602 * Do we have Mac OS X 10.4's mbr_XXX functions?
603 */
604
605 /* #undef HAVE_MEMBERSHIP_H */
606 /* #undef HAVE_MEMBERSHIPPRIV_H */
607 /* #undef HAVE_MBR_UID_TO_UUID */
608
609
610 /*
611 * Do we have Darwin's notify_post header and function?
612 */
613
614 /* #undef HAVE_NOTIFY_H */
615 /* #undef HAVE_NOTIFY_POST */
616
617
618 /*
619 * Do we have Darwin's IOKit private headers?
620 */
621
622 /* #undef HAVE_IOKIT_PWR_MGT_IOPMLIBPRIVATE_H */
623
624
625 /*
626 * Do we have DBUS?
627 */
628
629 /* #undef HAVE_DBUS */
630 /* #undef HAVE_DBUS_MESSAGE_ITER_INIT_APPEND */
631
632
633 /*
634 * Do we have the GSSAPI support library (for Kerberos support)?
635 */
636
637 /* #undef HAVE_GSS_ACQUIRE_CRED_EX_F */
638 /* #undef HAVE_GSS_C_NT_HOSTBASED_SERVICE */
639 /* #undef HAVE_GSS_GSSAPI_H */
640 /* #undef HAVE_GSS_GSSAPI_SPI_H */
641 /* #undef HAVE_GSSAPI */
642 /* #undef HAVE_GSSAPI_GENERIC_H */
643 /* #undef HAVE_GSSAPI_GSSAPI_H */
644 /* #undef HAVE_GSSAPI_H */
645 /* #undef HAVE_GSSAPI_KRB5_H */
646 /* #undef HAVE_KRB5_H */
647
648
649 /*
650 * Default GSS service name...
651 */
652
653 #define CUPS_DEFAULT_GSSSERVICENAME "host"
654
655
656 /*
657 * Select/poll interfaces...
658 */
659
660 /* #undef HAVE_POLL */
661 /* #undef HAVE_EPOLL */
662 /* #undef HAVE_KQUEUE */
663
664
665 /*
666 * Do we have the <dlfcn.h> header?
667 */
668
669 /* #undef HAVE_DLFCN_H */
670
671
672 /*
673 * Do we have <sys/param.h>?
674 */
675
676 /* #undef HAVE_SYS_PARAM_H */
677
678
679 /*
680 * Do we have <sys/ucred.h>?
681 */
682
683 /* #undef HAVE_SYS_UCRED_H */
684
685
686 /*
687 * Do we have removefile()?
688 */
689
690 /* #undef HAVE_REMOVEFILE */
691
692
693 /*
694 * Do we have <sandbox.h>?
695 */
696
697 /* #undef HAVE_SANDBOX_H */
698
699
700 /*
701 * Which random number generator function to use...
702 */
703
704 /* #undef HAVE_ARC4RANDOM */
705 /* #undef HAVE_RANDOM */
706 /* #undef HAVE_LRAND48 */
707
708 #ifdef HAVE_ARC4RANDOM
709 # define CUPS_RAND() arc4random()
710 # define CUPS_SRAND(v) arc4random_stir()
711 #elif defined(HAVE_RANDOM)
712 # define CUPS_RAND() random()
713 # define CUPS_SRAND(v) srandom(v)
714 #elif defined(HAVE_LRAND48)
715 # define CUPS_RAND() lrand48()
716 # define CUPS_SRAND(v) srand48(v)
717 #else
718 # define CUPS_RAND() rand()
719 # define CUPS_SRAND(v) srand(v)
720 #endif /* HAVE_ARC4RANDOM */
721
722
723 /*
724 * Do we have vproc_transaction_begin/end?
725 */
726
727 /* #undef HAVE_VPROC_TRANSACTION_BEGIN */
728
729
730 /*
731 * Do we have libusb?
732 */
733
734 /* #undef HAVE_USB_H */
735
736
737 /*
738 * Do we have libwrap and tcpd.h?
739 */
740
741 /* #undef HAVE_TCPD_H */
742
743
744 /*
745 * Do we have <iconv.h>?
746 */
747
748 /* #undef HAVE_ICONV_H */
749
750
751 /*
752 * Do we have statfs or statvfs and one of the corresponding headers?
753 */
754
755 /* #undef HAVE_STATFS */
756 /* #undef HAVE_STATVFS */
757 /* #undef HAVE_SYS_MOUNT_H */
758 /* #undef HAVE_SYS_STATFS_H */
759 /* #undef HAVE_SYS_STATVFS_H */
760 /* #undef HAVE_SYS_VFS_H */
761
762
763 /*
764 * Location of Mac OS X localization bundle, if any.
765 */
766
767 /* #undef CUPS_BUNDLEDIR */
768
769
770 /*
771 * Do we have the ColorSyncRegisterDevice function?
772 */
773
774 /* #undef HAVE_COLORSYNCREGISTERDEVICE */
775
776
777 /*
778 * Do we have XPC?
779 */
780
781 /* #undef HAVE_XPC */
782
783
784 #endif /* !_CUPS_CONFIG_H_ */
785
786 /*
787 * End of "$Id: config.h 6649 2007-07-11 21:46:42Z mike $".
788 */