From 18d38493ff8b34390d30d16dbe827636225c2dee Mon Sep 17 00:00:00 2001 From: Hanspeter Portner Date: Sat, 13 May 2023 12:26:18 +0200 Subject: [PATCH] Fixes for clang compilation --- meson.build | 5 +++++ meson_options.txt | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a01e898..5d846e6 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,12 @@ lib_srcs = [ join_paths('src', 'netatom.c') ] +lib_args = [ + '-Wno-nullability-extension' +] + netatom_lv2 = declare_dependency( + compile_args : lib_args, include_directories : lib_incs, dependencies : lib_deps, sources : lib_srcs) diff --git a/meson_options.txt b/meson_options.txt index 179e1af..1f0c794 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -6,4 +6,4 @@ option('build-tests', value : true, yield : true) -option('version', type : 'string', value : '0.1.79') +option('version', type : 'string', value : '0.1.83') -- 2.38.5