mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-22 19:54:12 +08:00
3736e0c85f
In fact only gnu-libc fully supports symbol versioning, so it is better to have a generic macro for it. This also allows to manually disable symbol version and allows to run tests with that configuration on gnu-libc. That testing will still not catch compat issues, but least ensures the code can compile. Testing for __APPLE__ and __ULIBC__ is now done by meson. More of such checks can be added by people using other libcs.
25 lines
1010 B
Meson
25 lines
1010 B
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')
|
|
|