mirror of
https://github.com/libfuse/libfuse.git
synced 2026-07-07 14:47:41 +08:00
ead0a13d57
Default is having usdt disabled. Signed-off-by: Joanne Koong <joannelkoong@gmail.com>
27 lines
1.1 KiB
Meson
27 lines
1.1 KiB
Meson
option('disable-mtab', type : 'boolean', value : false,
|
|
description: 'Disable and ignore usage of /etc/mtab')
|
|
|
|
option('udevrulesdir', type : 'string', value : '',
|
|
description: 'Where to install udev rules (if empty, query pkg-config(1))')
|
|
|
|
option('initscriptdir', type : 'string', value : '/etc/init.d/',
|
|
description: 'Init script installation location (if empty, disable init script installation)')
|
|
|
|
option('utils', type : 'boolean', value : true,
|
|
description: 'Whether or not to build and install helper programs')
|
|
|
|
option('examples', type : 'boolean', value : true,
|
|
description: 'Whether or not to build example programs')
|
|
|
|
option('useroot', type : 'boolean', value : true,
|
|
description: 'Set owner and setuid bits on installed files')
|
|
|
|
option('tests', type : 'boolean', value : true,
|
|
description: 'Compile the test files')
|
|
|
|
option('disable-libc-symbol-version', type : 'boolean', value : false,
|
|
description: 'Disable versioned symbols through libc')
|
|
|
|
option('enable-usdt', type : 'boolean', value : false,
|
|
description: 'Enable user statically defined tracepoints for extra observability')
|