forked from michaelrsweet/pappl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
65 lines (42 loc) · 1.08 KB
/
config.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// Configuration header file for the Printer Application Framework
//
// Copyright © 2019-2022 by Michael R Sweet.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//
// Version numbers
#define PAPPL_VERSION ""
#define PAPPL_VERSION_MAJOR 0
#define PAPPL_VERSION_MINOR 0
// Location of PAPPL state and spool data (when run as root)
#define PAPPL_STATEDIR "/usr/local/var"
// Location of PAPPL domain socket (when run as root)
#define PAPPL_SOCKDIR "/usr/local/var/run"
// Location of CUPS config files
#define CUPS_SERVERROOT "/etc/cups"
// DNS-SD (mDNSResponder or Avahi)
#undef HAVE_DNSSD
#undef HAVE_MDNSRESPONDER
#undef HAVE_AVAHI
// GNU TLS, LibreSSL/OpenSSL
#undef HAVE_GNUTLS
#undef HAVE_OPENSSL
// libjpeg
#undef HAVE_LIBJPEG
// libpng
#undef HAVE_LIBPNG
// libusb
#undef HAVE_LIBUSB
// libpam
#undef HAVE_LIBPAM
#undef HAVE_SECURITY_PAM_APPL_H
#undef HAVE_PAM_PAM_APPL_H
// String functions
#undef HAVE_STRLCPY
// Random number support
#undef HAVE_SYS_RANDOM_H
#undef HAVE_ARC4RANDOM
#undef HAVE_GETRANDOM
#undef HAVE_GNUTLS_RND