2017-07-07 21:25:41 +08:00
|
|
|
project('libfuse3', 'c', version: '3.1.0',
|
2017-04-11 07:46:35 +08:00
|
|
|
meson_version: '>= 0.38',
|
2017-01-06 01:37:00 +08:00
|
|
|
default_options: [ 'buildtype=plain' ])
|
|
|
|
|
2017-08-03 19:44:32 +08:00
|
|
|
|
|
|
|
platform = host_machine.system()
|
|
|
|
if platform == 'darwin'
|
|
|
|
error('libfuse does not support OS-X.\n' +
|
|
|
|
'Take a look at http://osxfuse.github.io/ instead')
|
|
|
|
elif platform == 'cygwin' or platform == 'windows'
|
|
|
|
error('libfuse does not support Windows.\n' +
|
|
|
|
'Take a look at http://www.secfs.net/winfsp/ instead')
|
|
|
|
endif
|
|
|
|
|
2017-01-06 01:37:00 +08:00
|
|
|
#
|
|
|
|
# Feature detection
|
|
|
|
#
|
|
|
|
cfg = configuration_data()
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
|
|
# Default includes when checking for presence of functions and
|
|
|
|
# struct members
|
|
|
|
include_default = '
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
'
|
2017-01-24 04:06:25 +08:00
|
|
|
args_default = [ '-D_GNU_SOURCE' ]
|
2017-01-06 01:37:00 +08:00
|
|
|
|
|
|
|
cfg.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|
|
|
|
|
|
|
# Test for presence of some functions
|
|
|
|
test_funcs = [ 'fork', 'fstatat', 'openat', 'readlinkat', 'pipe2',
|
|
|
|
'splice', 'vmsplice', 'posix_fallocate', 'fdatasync',
|
|
|
|
'utimensat' ]
|
|
|
|
foreach func : test_funcs
|
|
|
|
cfg.set('HAVE_' + func.to_upper(),
|
2017-01-24 04:06:25 +08:00
|
|
|
cc.has_function(func, prefix: include_default, args: args_default))
|
2017-01-06 01:37:00 +08:00
|
|
|
endforeach
|
|
|
|
cfg.set('HAVE_SETXATTR',
|
|
|
|
cc.has_function('setxattr', prefix: '#include <sys/xattr.h>'))
|
|
|
|
cfg.set('HAVE_ICONV',
|
|
|
|
cc.has_function('iconv', prefix: '#include <iconv.h>'))
|
|
|
|
|
|
|
|
# Test if structs have specific member
|
|
|
|
cfg.set('HAVE_STRUCT_STAT_ST_ATIM',
|
|
|
|
cc.has_member('struct stat', 'st_atim',
|
2017-01-24 04:06:25 +08:00
|
|
|
prefix: include_default,
|
|
|
|
args: args_default))
|
2017-01-06 01:37:00 +08:00
|
|
|
cfg.set('HAVE_STRUCT_STAT_ST_ATIMESPEC',
|
|
|
|
cc.has_member('struct stat', 'st_atimespec',
|
2017-01-24 04:06:25 +08:00
|
|
|
prefix: include_default,
|
|
|
|
args: args_default))
|
2017-01-06 01:37:00 +08:00
|
|
|
|
|
|
|
# Write the test results into config.h (stored in build directory)
|
|
|
|
configure_file(output: 'config.h',
|
|
|
|
configuration : cfg)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Compiler configuration
|
|
|
|
#
|
|
|
|
add_global_arguments('-D_REENTRANT', '-DHAVE_CONFIG_H', '-Wall', '-Wextra', '-Wno-sign-compare',
|
|
|
|
'-Wstrict-prototypes', '-Wmissing-declarations', '-Wwrite-strings',
|
|
|
|
'-O2', '-g', '-fno-strict-aliasing', language: 'c')
|
|
|
|
|
|
|
|
# Some (stupid) GCC versions warn about unused return values even when they are
|
|
|
|
# casted to void. This makes -Wunused-result pretty useless, since there is no
|
|
|
|
# way to suppress the warning when we really *want* to ignore the value.
|
|
|
|
code = '''
|
|
|
|
__attribute__((warn_unused_result)) int get_4() {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
int main(void) {
|
|
|
|
(void) get_4();
|
|
|
|
return 0;
|
|
|
|
}'''
|
|
|
|
if not cc.compiles(code, args: [ '-O0', '-Werror=unused-result' ])
|
|
|
|
message('Compiler warns about unused result even when casting to void')
|
|
|
|
add_global_arguments('-Wno-unused-result', language: 'c')
|
|
|
|
endif
|
|
|
|
|
2017-03-16 07:52:39 +08:00
|
|
|
# '.' will refer to current build directory, which contains config.h
|
|
|
|
include_dirs = include_directories('include', 'lib', '.')
|
2017-01-06 01:37:00 +08:00
|
|
|
|
|
|
|
# Common dependencies
|
|
|
|
thread_dep = dependency('threads')
|
|
|
|
|
|
|
|
#
|
|
|
|
# Read build files from sub-directories
|
|
|
|
#
|
2017-08-03 20:04:36 +08:00
|
|
|
subdirs = [ 'lib', 'include', 'example', 'doc', 'test' ]
|
|
|
|
if not host_machine.system().startswith('freebsd')
|
|
|
|
subdirs += 'util'
|
|
|
|
endif
|
2017-01-06 01:37:00 +08:00
|
|
|
foreach n : subdirs
|
|
|
|
subdir(n)
|
|
|
|
endforeach
|