diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meson.build b/meson.build index 9ebc14f..72f14e0 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: 0BSD OR ISC project('jalv', ['c', 'cpp'], - version: '1.6.8', + version: '1.6.9', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ @@ -48,6 +48,10 @@ m_dep = cc.find_library('m', required: false) thread_dep = dependency('threads') +zix_dep = dependency('zix-0', + version: '>= 0.3.0', + fallback: ['zix', 'zix_dep']) + serd_dep = dependency('serd-0', version: '>= 0.30.0', fallback: ['serd', 'serd_dep']) @@ -114,7 +118,6 @@ endif platform_defines = [ '-DJALV_VERSION="@0@"'.format(meson.project_version()), - '-DZIX_STATIC', ] suil_defines = ['-DHAVE_SUIL=@0@'.format(suil_dep.found().to_int())] @@ -221,8 +224,6 @@ sources = backend_sources + files( 'src/state.c', 'src/symap.c', 'src/worker.c', - 'src/zix/allocator.c', - 'src/zix/ring.c', ) common_dependencies = [ @@ -233,6 +234,7 @@ common_dependencies = [ sratom_dep, suil_dep, thread_dep, + zix_dep, ] # Internal JACK client library |