1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
if not build_libmount
mount_dep = disabler()
mount_static_dep = disabler()
subdir_done()
endif
dir_libmount = include_directories('.', 'src')
defs = configuration_data()
defs.set('LIBMOUNT_VERSION', pc_version)
defs.set('LIBMOUNT_MAJOR_VERSION', pc_version.split('.')[0])
defs.set('LIBMOUNT_MINOR_VERSION', pc_version.split('.')[1])
defs.set('LIBMOUNT_PATCH_VERSION', pc_version.split('.')[2])
configure_file(
input : 'src/libmount.h.in',
output : 'libmount.h',
configuration : defs,
install : build_libmount,
install_dir : get_option('includedir') / 'libmount',
)
lib_mount_sources = '''
src/mountP.h
src/cache.c
src/fs.c
src/fs_statmount.c
src/init.c
src/iter.c
src/lock.c
src/optmap.c
src/optstr.c
src/tab.c
src/tab_diff.c
src/tab_listmount.c
src/tab_parse.c
src/tab_update.c
src/test.c
src/utils.c
src/version.c
'''.split() + [
list_h,
monotonic_c,
]
if LINUX
lib_mount_sources += '''
src/hooks.c
src/monitor.c
src/optlist.c
src/hook_veritydev.c
src/hook_subdir.c
src/hook_owner.c
src/hook_mount.c
src/hook_mount_legacy.c
src/hook_mkdir.c
src/hook_selinux.c
src/hook_loopdev.c
src/hook_idmap.c
src/context_umount.c
src/context_mount.c
src/context.c
'''.split()
endif
if enable_btrfs
lib_mount_sources += 'src/btrfs.c'
endif
libmount_sym = 'src/libmount.sym'
libmount_sym_path = '@0@/@1@'.format(meson.current_source_dir(), libmount_sym)
if build_libmount and not have_dirfd and not have_ddfd
error('neither dirfd nor ddfd are available')
endif
lib__mount = static_library(
'_mount',
lib_mount_sources,
include_directories : [dir_include,
dir_libmount],
dependencies : [blkid_dep])
lib_mount_static = static_library(
'mount_static',
link_whole : lib__mount,
link_with : [lib_common],
dependencies : [blkid_static_dep, realtime_libs],
install : false)
mount_static_dep = declare_dependency(link_with: lib_mount_static, include_directories: '.')
lib__mount_deps = [
lib_selinux,
cryptsetup_dlopen ? lib_dl : lib_cryptsetup,
realtime_libs
]
lib_mount = library(
'mount',
link_whole : lib__mount,
include_directories : [dir_include,
dir_libmount],
link_depends : libmount_sym,
version : libmount_version,
link_args : ['-Wl,--version-script=@0@'.format(libmount_sym_path)],
link_with : [lib_common],
dependencies : lib__mount_deps + blkid_dep,
install : build_libmount)
mount_dep = declare_dependency(link_with: lib_mount, include_directories: '.')
pkgconfig.generate(lib_mount,
description : 'mount library',
subdirs : 'libmount',
version : pc_version)
if meson.version().version_compare('>=0.54.0')
meson.override_dependency('mount', mount_dep)
endif
libmount_tests = [
'cache',
'context',
'lock',
'optstr',
'optlist',
'tab',
'tab_diff',
'monitor',
'tab_update',
'utils',
'version',
'debug',
]
libmount_test_src_override = {
'debug': 'init',
}
if program_tests
foreach libmount_test: libmount_tests
test_name = 'test_mount_' + libmount_test
exe = executable(
test_name,
'src/' + libmount_test_src_override.get(libmount_test, libmount_test) + '.c',
include_directories : [dir_include],
link_with : [lib__mount, lib_common],
dependencies : lib__mount_deps + blkid_static_dep,
c_args : ['-DTEST_PROGRAM'],
)
# the test-setup expects the helpers in the toplevel build-directory
link = meson.project_build_root() / test_name
run_command('ln', '-srf', exe.full_path(), link,
check : true)
endforeach
endif
subdir('python')
|