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