From cc22de985fbd6c192a021063fc3be165dd6fa5c0 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 12 Apr 2022 16:55:50 -0400 Subject: [PATCH] Bump URCU dependency to 0.14 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Complete C++ support was introduced in Userspace-RCU 0.14, using earlier versions results in a build failure, this should be reflected in the configure check. Change-Id: I1b708bd9b04784deb9f2c8768a331911c3ebb891 Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 90c8d679f..a34e25f21 100644 --- a/configure.ac +++ b/configure.ac @@ -568,8 +568,8 @@ PKG_CHECK_MODULES([libxml2], [libxml-2.0 >= 2.7.6]) AC_CHECK_FUNC([clock_gettime], [AC_DEFINE_UNQUOTED([LTTNG_HAVE_CLOCK_GETTIME], 1, [Has clock_gettime() support.])]) # URCU library version needed or newer -PKG_CHECK_MODULES([URCU], [liburcu >= 0.11]) -PKG_CHECK_MODULES([URCU_CDS], [liburcu-cds >= 0.11]) +PKG_CHECK_MODULES([URCU], [liburcu >= 0.14]) +PKG_CHECK_MODULES([URCU_CDS], [liburcu-cds >= 0.14]) AM_CPPFLAGS="$AM_CPPFLAGS $URCU_CFLAGS" # Check for libkmod, it will be auto-neabled if found but won't fail if it's not, -- 2.34.1