diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/wscript b/source3/wscript index bec3dbb04b..8931125e28 100644 --- a/source3/wscript +++ b/source3/wscript @@ -149,8 +149,9 @@ main() { headers='sys/stat.h') # Check for POSIX capability support + conf.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers='sys/capability.h') + if "HAVE_SYS_CAPABILITY_H" in conf.env: - conf.CHECK_FUNCS_IN('cap_get_proc', 'cap') conf.CHECK_CODE(''' cap_t cap; cap_value_t vals[1]; |