endif
endif
+want_acl = get_option('acl')
+if want_acl != 'false'
+ libacl = cc.find_library('acl', required : want_acl == 'true')
+ if libacl.found()
+ conf.set('HAVE_ACL', 1)
+ m4_defines += ['-DHAVE_ACL']
+ endif
+else
+ libacl = []
+endif
+
want_audit = get_option('audit')
if want_audit != 'false'
libaudit = dependency('audit', required : want_audit == 'true')
liblz4 = []
endif
-libacl = cc.find_library('acl', required : false)
-if libacl.found()
- conf.set('HAVE_ACL', 1)
- m4_defines += ['-DHAVE_ACL']
-endif
-
want_glib = get_option('glib')
if want_glib != 'false'
libglib = dependency('glib-2.0',
option('ima', type : 'boolean',
description : 'IMA support')
+option('acl', type : 'combo', choices : ['auto', 'true', 'false'],
+ description : 'libacl support')
option('audit', type : 'combo', choices : ['auto', 'true', 'false'],
description : 'libaudit support')
option('blkid', type : 'combo', choices : ['auto', 'true', 'false'],