/
niceSOFT
/
cups
Обзор
Документация
Войти
/
niceSOFT
/
cups
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
xcode/config.h
623 строки
9 KB
Michael R Sweet
Fix various issues in cupsd
27 ноя 2025, 18:05
27 ноя 2025, 18:05
524749b
Код
Авторство
О чём код?
/* * Configuration file for CUPS and Xcode. * * Copyright © 2021-2025 by OpenPrinting * Copyright © 2007-2019 by Apple Inc. * Copyright © 1997-2007 by Easy Software Products. * * Licensed under Apache License v2.0. See the file "LICENSE" for more information. */ #ifndef _CUPS_CONFIG_H_ #define _CUPS_CONFIG_H_ #include <AvailabilityMacros.h> #include <TargetConditionals.h> /* * Version of software... */ #define CUPS_SVERSION "CUPS v2.5b1" #define CUPS_MINIMAL "CUPS/2.5b1" /* * Default user and groups... */ #define CUPS_DEFAULT_USER "_lp" #define CUPS_DEFAULT_GROUP "_lp" #define CUPS_DEFAULT_SYSTEM_GROUPS "admin" #define CUPS_DEFAULT_PRINTOPERATOR_AUTH "@AUTHKEY(system.print.operator) @admin @lpadmin" #define CUPS_DEFAULT_SYSTEM_AUTHKEY "system.print.admin" /* * Default file permissions... */ #define CUPS_DEFAULT_CONFIG_FILE_PERM 0644 #define CUPS_DEFAULT_LOG_FILE_PERM 0644 /* * Default logging settings... */ #define CUPS_DEFAULT_LOG_LEVEL "warn" #define CUPS_DEFAULT_ACCESS_LOG_LEVEL "none" #define CUPS_DEFAULT_MAX_LOG_SIZE "1m" /* * Default fatal error settings... */ #define CUPS_DEFAULT_FATAL_ERRORS "config" /* * Default browsing settings... */ #define CUPS_DEFAULT_BROWSING 1 #define CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS "dnssd" #define CUPS_DEFAULT_DEFAULT_SHARED 1 /* * Default IPP port... */ #define CUPS_DEFAULT_IPP_PORT 631 /* * Default printcap file... */ #define CUPS_DEFAULT_PRINTCAP "/Library/Preferences/org.cups.printers.plist" /* * Default ErrorPolicy value... */ #define CUPS_DEFAULT_ERROR_POLICY "stop-printer" /* * Default PeerCred value... */ #define CUPS_DEFAULT_PEER_CRED "on" /* * Default MaxCopies value... */ #define CUPS_DEFAULT_MAX_COPIES 9999 /* * Default SyncOnClose value... */ /* #undef CUPS_DEFAULT_SYNC_ON_CLOSE */ /* * Do we have domain socket support, and if so what is the default one? */ #define CUPS_DEFAULT_DOMAINSOCKET "/private/var/run/cupsd" /* * Default WebInterface value... */ #define CUPS_DEFAULT_WEBIF 0 /* * Where are files stored? * * Note: These are defaults, which can be overridden by environment * variables at run-time... */ #define CUPS_BINDIR "/usr/bin" #define CUPS_CACHEDIR "/private/var/spool/cups/cache" #define CUPS_DATADIR "/usr/share/cups" #define CUPS_DOCROOT "/usr/share/doc/cups" #define CUPS_LOCALEDIR "/usr/share/locale" #define CUPS_LOGDIR "/private/var/log/cups" #define CUPS_REQUESTS "/private/var/spool/cups" #define CUPS_SBINDIR "/usr/sbin" #define CUPS_SERVERBIN "/usr/libexec/cups" #define CUPS_SERVERROOT "/private/etc/cups" #define CUPS_STATEDIR "/private/etc/cups" /* * Do we have PAM stuff? */ #if TARGET_OS_OSX # define HAVE_LIBPAM 1 /* #undef HAVE_PAM_PAM_APPL_H */ # define HAVE_PAM_SET_ITEM 1 # define HAVE_PAM_SETCRED 1 #endif /* TARGET_OS_OSX */ /* * Use <stdint.h>? */ #define HAVE_STDINT_H 1 /* * Use <string.h>, <strings.h>, and/or <bstring.h>? */ #define HAVE_STRING_H 1 #define HAVE_STRINGS_H 1 /* #undef HAVE_BSTRING_H */ /* * Do we have the long long type? */ #define HAVE_LONG_LONG 1 #ifdef HAVE_LONG_LONG # define CUPS_LLFMT "%lld" # define CUPS_LLCAST (long long) #else # define CUPS_LLFMT "%ld" # define CUPS_LLCAST (long) #endif /* HAVE_LONG_LONG */ /* * Do we have the strtoll() function? */ #define HAVE_STRTOLL 1 #ifndef HAVE_STRTOLL # define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base)) #endif /* !HAVE_STRTOLL */ /* * Do we have the geteuid() function? */ #define HAVE_GETEUID 1 /* * Do we have the setpgid() function? */ #define HAVE_SETPGID 1 /* * Do we have the vsyslog() function? */ #define HAVE_VSYSLOG 1 /* * Do we have the systemd journal functions? */ /* #undef HAVE_SYSTEMD_SD_JOURNAL_H */ /* * What wait functions to use? */ #define HAVE_WAITPID 1 #define HAVE_WAIT3 1 /* * Do we have the mallinfo function and malloc.h? */ /* #undef HAVE_MALLINFO */ /* #undef HAVE_MALLOC_H */ /* * Do we have the POSIX ACL functions? */ #define HAVE_ACL_INIT 1 /* * Do we have the langinfo.h header file? */ #define HAVE_LANGINFO_H 1 /* * Which encryption libraries do we have? */ #define HAVE_OPENSSL 1 /* #undef HAVE_GNUTLS */ /* * Do we have the gnutls_transport_set_pull_timeout_function function? */ /* #undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION */ /* * Do we have the gnutls_priority_set_direct function? */ /* #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT */ /* * What Security framework headers do we have? */ #if TARGET_OS_OSX # define HAVE_AUTHORIZATION_H 1 #endif /* TARGET_OS_OSX */ #define HAVE_SECCERTIFICATE_H 1 #define HAVE_SECITEM_H 1 #define HAVE_SECPOLICY_H 1 /* * Do we have the SecGenerateSelfSignedCertificate function? */ #if !TARGET_OS_OSX # define HAVE_SECGENERATESELFSIGNEDCERTIFICATE 1 #endif /* !TARGET_OS_OSX */ /* * Do we have libpaper? */ /* #undef HAVE_LIBPAPER */ /* * Do we have mDNSResponder for DNS-SD? */ #define HAVE_MDNSRESPONDER 1 /* * Do we have Avahi for DNS-SD? */ /* #undef HAVE_AVAHI */ /* * Do we have <sys/ioctl.h>? */ #define HAVE_SYS_IOCTL_H 1 /* * Does the "stat" structure contain the "st_gen" member? */ #define HAVE_ST_GEN 1 /* * Does the "tm" structure contain the "tm_gmtoff" member? */ #define HAVE_TM_GMTOFF 1 /* * Do we have the timegm function? */ #define HAVE_TIMEGM 1 /* * Do we have getifaddrs()? */ #define HAVE_GETIFADDRS 1 /* * Do we have hstrerror()? */ #define HAVE_HSTRERROR 1 /* * Do we have res_init()? */ #define HAVE_RES_INIT 1 /* * Do we have <resolv.h> */ #define HAVE_RESOLV_H 1 /* * Do we have the <sys/sockio.h> header file? */ #define HAVE_SYS_SOCKIO_H 1 /* * Does the sockaddr structure contain an sa_len parameter? */ /* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */ /* * Do we have pthread support? */ #define HAVE_PTHREAD_H 1 /* * Do we have on-demand support (launchd/systemd/upstart)? */ #define HAVE_ONDEMAND 1 /* * Do we have launchd support? */ #define HAVE_LAUNCH_H 1 #define HAVE_LAUNCHD 1 /* * Do we have systemd support? */ /* #undef HAVE_SYSTEMD */ /* * Do we have upstart support? */ /* #undef HAVE_UPSTART */ /* * Do we have CoreFoundation public headers? */ #define HAVE_COREFOUNDATION_H 1 /* * Do we have ApplicationServices public headers? */ #if TARGET_OS_OSX # define HAVE_APPLICATIONSERVICES_H 1 #endif /* TARGET_OS_OSX */ /* * Do we have the SCDynamicStoreCopyComputerName function? */ #if TARGET_OS_OSX # define HAVE_SCDYNAMICSTORECOPYCOMPUTERNAME 1 #endif /* TARGET_OS_OSX */ /* * Do we have the getgrouplist() function? */ #define HAVE_GETGROUPLIST 1 /* * Do we have macOS 10.4's mbr_XXX functions? */ #define HAVE_MEMBERSHIP_H 1 #define HAVE_MBR_UID_TO_UUID 1 /* * Do we have Darwin's notify_post header and function? */ #define HAVE_NOTIFY_H 1 #define HAVE_NOTIFY_POST 1 /* * Do we have DBUS? */ /* #undef HAVE_DBUS */ /* #undef HAVE_DBUS_MESSAGE_ITER_INIT_APPEND */ /* #undef HAVE_DBUS_THREADS_INIT */ /* * Do we have the GSSAPI support library (for Kerberos support)? */ #if TARGET_OS_OSX # define HAVE_GSS_ACQUIRE_CRED_EX_F 1 # define HAVE_GSS_C_NT_HOSTBASED_SERVICE 1 # define HAVE_GSS_GSSAPI_H 1 /* #undef HAVE_GSS_GSSAPI_SPI_H */ # define HAVE_GSSAPI 1 /* #undef HAVE_GSSAPI_GSSAPI_H */ /* #undef HAVE_GSSAPI_H */ #endif /* TARGET_OS_OSX */ /* * Default GSS service name... */ #define CUPS_DEFAULT_GSSSERVICENAME "host" /* * Do we have the <dlfcn.h> header? */ #define HAVE_DLFCN_H 1 /* * Do we have <sys/param.h>? */ #define HAVE_SYS_PARAM_H 1 /* * Do we have <sys/ucred.h>? */ #define HAVE_SYS_UCRED_H 1 /* * Do we have removefile()? */ #define HAVE_REMOVEFILE 1 /* * Do we have <sandbox.h>? */ #define HAVE_SANDBOX_H 1 /* * Which random number generator function to use... */ #define HAVE_ARC4RANDOM 1 #define HAVE_RANDOM 1 #define HAVE_LRAND48 1 #ifdef HAVE_ARC4RANDOM # define CUPS_RAND() arc4random() # define CUPS_SRAND(v) #elif defined(HAVE_RANDOM) # define CUPS_RAND() random() # define CUPS_SRAND(v) srandom(v) #elif defined(HAVE_LRAND48) # define CUPS_RAND() lrand48() # define CUPS_SRAND(v) srand48(v) #else # define CUPS_RAND() rand() # define CUPS_SRAND(v) srand(v) #endif /* HAVE_ARC4RANDOM */ /* * Do we have libusb? */ /* #undef HAVE_LIBUSB */ /* * Do we have libwrap and tcpd.h? */ /* #undef HAVE_TCPD_H */ /* * Do we have <iconv.h>? */ #define HAVE_ICONV_H 1 /* * Do we have statfs or statvfs and one of the corresponding headers? */ #define HAVE_STATFS 1 #define HAVE_STATVFS 1 #define HAVE_SYS_MOUNT_H 1 /* #undef HAVE_SYS_STATFS_H */ #define HAVE_SYS_STATVFS_H 1 /* #undef HAVE_SYS_VFS_H */ /* * Do we have XPC? */ #define HAVE_XPC 1 /* * Do we have the C99 abs() function? */ #define HAVE_ABS 1 #if !defined(HAVE_ABS) && !defined(abs) # if defined(__GNUC__) || __STDC_VERSION__ >= 199901L # define abs(x) _cups_abs(x) static inline int _cups_abs(int i) { return (i < 0 ? -i : i); } # elif defined(_MSC_VER) # define abs(x) _cups_abs(x) static __inline int _cups_abs(int i) { return (i < 0 ? -i : i); } # else # define abs(x) ((x) < 0 ? -(x) : (x)) # endif /* __GNUC__ || __STDC_VERSION__ */ #endif /* !HAVE_ABS && !abs */ #endif /* !_CUPS_CONFIG_H_ */