X-Git-Url: https://git.saurik.com/apple/launchd.git/blobdiff_plain/eabd170121c913d6b497fa2503e49f09f5412ddc..refs/heads/master:/src/config.h?ds=inline diff --git a/src/config.h b/src/config.h index 841f524..3084872 100644 --- a/src/config.h +++ b/src/config.h @@ -9,6 +9,12 @@ #define HAVE_QUARANTINE 0 #endif +#if __has_include() +#define HAVE_RESPONSIBILITY 1 +#else +#define HAVE_RESPONSIBILITY 0 +#endif + #if __has_include() #define HAVE_SANDBOX 1 #else @@ -17,4 +23,10 @@ #define HAVE_LIBAUDITD !TARGET_OS_EMBEDDED +#if !TARGET_OS_EMBEDDED && __has_include() +#define HAVE_SYSTEMSTATS 1 +#else +#define HAVE_SYSTEMSTATS 0 +#endif + #endif /* __CONFIG_H__ */