aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-10-07 15:08:25 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2021-10-14 09:50:57 +0200
commitbd87a36709096034bb8e9d12d2bf6ee1d003b6d7 (patch)
treeb8ddf8b54afcca3c87994df2459b1e385ed513b0 /util
parentb524e44fa4a6c0aeeb537fc704856002723c8d54 (diff)
downloadqemu-bd87a36709096034bb8e9d12d2bf6ee1d003b6d7.zip
qemu-bd87a36709096034bb8e9d12d2bf6ee1d003b6d7.tar.gz
qemu-bd87a36709096034bb8e9d12d2bf6ee1d003b6d7.tar.bz2
configure, meson: move more compiler checks to Meson
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20211007130829.632254-15-pbonzini@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'util')
-rw-r--r--util/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/meson.build b/util/meson.build
index 779f413..05b5930 100644
--- a/util/meson.build
+++ b/util/meson.build
@@ -1,5 +1,7 @@
util_ss.add(files('osdep.c', 'cutils.c', 'unicode.c', 'qemu-timer-common.c'))
-util_ss.add(when: 'CONFIG_ATOMIC64', if_false: files('atomic64.c'))
+if not config_host_data.get('CONFIG_ATOMIC64')
+ util_ss.add(files('atomic64.c'))
+endif
util_ss.add(when: 'CONFIG_POSIX', if_true: files('aio-posix.c'))
util_ss.add(when: 'CONFIG_POSIX', if_true: files('fdmon-poll.c'))
if config_host_data.get('CONFIG_EPOLL_CREATE1')