[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 03/31] meson: require liburing >= 0.3
From: |
Alex Bennée |
Subject: |
[PULL 03/31] meson: require liburing >= 0.3 |
Date: |
Wed, 12 Jan 2022 11:26:54 +0000 |
From: Daniel P. Berrangé <berrange@redhat.com>
openSUSE Leap 15.2 ships with liburing == 0.2 against which QEMU fails
to build.
../util/fdmon-io_uring.c: In function ‘fdmon_io_uring_need_wait’:
../util/fdmon-io_uring.c:305:9: error: implicit declaration of function
‘io_uring_sq_ready’; did you mean ‘io_uring_cq_ready’?
[-Werror=implicit-function-declaration]
if (io_uring_sq_ready(&ctx->fdmon_io_uring)) {
^~~~~~~~~~~~~~~~~
io_uring_cq_ready
This method was introduced in liburing 0.3, so set that as a minimum
requirement.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211215141949.3512719-4-berrange@redhat.com>
Message-Id: <20220105135009.1584676-4-alex.bennee@linaro.org>
diff --git a/meson.build b/meson.build
index c1b1db1e28..076d85baba 100644
--- a/meson.build
+++ b/meson.build
@@ -440,7 +440,8 @@ if not get_option('linux_aio').auto() or have_block
endif
linux_io_uring = not_found
if not get_option('linux_io_uring').auto() or have_block
- linux_io_uring = dependency('liburing', required:
get_option('linux_io_uring'),
+ linux_io_uring = dependency('liburing', version: '>=0.3',
+ required: get_option('linux_io_uring'),
method: 'pkg-config', kwargs: static_kwargs)
endif
libxml2 = not_found
--
2.30.2
- [PULL 00/31] testing/next and other misc fixes, Alex Bennée, 2022/01/12
- [PULL 08/31] tests/docker: auto-generate centos8.docker with lcitool, Alex Bennée, 2022/01/12
- [PULL 10/31] tests/docker: auto-generate ubuntu1804.docker with lcitool, Alex Bennée, 2022/01/12
- [PULL 02/31] spice: Update QXLInterface for spice >= 0.15.0, Alex Bennée, 2022/01/12
- [PULL 03/31] meson: require liburing >= 0.3,
Alex Bennée <=
- [PULL 09/31] tests/docker: auto-generate fedora.docker with lcitool, Alex Bennée, 2022/01/12
- [PULL 12/31] tests/docker: auto-generate opensuse-leap.docker with lcitool, Alex Bennée, 2022/01/12
- [PULL 13/31] tests/docker: remove ubuntu.docker container, Alex Bennée, 2022/01/12
- [PULL 07/31] tests: integrate lcitool for generating build env manifests, Alex Bennée, 2022/01/12
- [PULL 01/31] ui: avoid compiler warnings from unused clipboard info variable, Alex Bennée, 2022/01/12
- [PULL 20/31] tests/docker: add libfuse3 development headers, Alex Bennée, 2022/01/12
- [PULL 06/31] tests/docker: switch fedora image to release 35, Alex Bennée, 2022/01/12
- [PULL 04/31] ui: avoid warnings about directdb on Alpine / musl libc, Alex Bennée, 2022/01/12
- [PULL 05/31] ci: explicitly skip I/O tests on alpine, Alex Bennée, 2022/01/12
- [PULL 14/31] .gitlab-ci.d/cirrus: auto-generate variables with lcitool, Alex Bennée, 2022/01/12