]> git.saurik.com Git - apple/launchd.git/blob - src/config.h
841f524b68f5745979bde7e3f64e7d5880e8b02c
[apple/launchd.git] / src / config.h
1 #ifndef __CONFIG_H__
2 #define __CONFIG_H__
3
4 #include <TargetConditionals.h>
5
6 #if __has_include(<quarantine.h>)
7 #define HAVE_QUARANTINE 1
8 #else
9 #define HAVE_QUARANTINE 0
10 #endif
11
12 #if __has_include(<sandbox.h>)
13 #define HAVE_SANDBOX 1
14 #else
15 #define HAVE_SANDBOX 0
16 #endif
17
18 #define HAVE_LIBAUDITD !TARGET_OS_EMBEDDED
19
20 #endif /* __CONFIG_H__ */