From cbb8d3146c5cf1b45c9243cb82df7e2823563063 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 30 May 2024 09:00:57 -0400 Subject: [PATCH] MT#55283 use minimum version requirement for uring Don't just check for the existence of liburing during compilation, but also check for the version, as we require at least version 2.3 and builds fail with an older version. Change-Id: If04d532a847c717fd80f326e46376cbbdc663086 --- lib/lib.Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.Makefile b/lib/lib.Makefile index fd0e4f80f..568d14a41 100644 --- a/lib/lib.Makefile +++ b/lib/lib.Makefile @@ -47,7 +47,7 @@ endif # look for liburing ifeq (,$(filter pkg.ngcp-rtpengine.nouring,${DEB_BUILD_PROFILES})) -ifeq ($(shell pkg-config --exists liburing && echo yes),yes) +ifeq ($(shell pkg-config --atleast-version=2.3 liburing && echo yes),yes) have_liburing := yes endif ifeq ($(have_liburing),yes)