We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5513240 commit ac3ec14Copy full SHA for ac3ec14
1 file changed
auto.def
@@ -18,6 +18,7 @@ options {
18
with-coverage => "build with llvm coverage support"
19
with-asan => "build with libasan support"
20
with-ubsan => "Build with libubsan support"
21
+ without-procctl => "build explicitly without procctl hardening"
22
default-format:txz => "Default compression format: tzst, txz (default), tbz, tar"
23
}
24
@@ -217,7 +218,11 @@ if {![cc-check-functions __res_query]} {
217
218
219
220
cc-check-includes link.h machine/endian.h osreldate.h readpassphrase.h \
- sys/procctl.h sys/statfs.h sys/statvfs.h libutil.h
221
+ sys/statfs.h sys/statvfs.h libutil.h
222
+
223
+if {![opt-bool without-procctl]} {
224
+ cc-check-includes sys/procctl.h
225
+}
226
227
# for compat
228
cc-check-includes dirent.h
0 commit comments