From bf518ba490df76fca73bc01266ecc3981fe776ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 27 Oct 2023 13:19:03 +0200 Subject: [PATCH] Always use default RCU variant in pairwise builds Commit 42d43aa0758513a45b54e0fd0bff4381fdc4d803 made --with-liburcu depend on --enable-developer. This broke pairwise testing as this new dependency was not codified in configure.ac. Since the --with-liburcu option is currently just a convenience for developers, there is no need to test building against all possible RCU variants in GitLab CI until they actually work with BIND 9. Update the pairwise testing "configuration" in configure.ac so that builds with non-standard RCU variants are not tested. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 704ffa3dcd..28fc199dc1 100644 --- a/configure.ac +++ b/configure.ac @@ -204,7 +204,7 @@ AS_IF([test -z "$PKG_CONFIG"], # # Pick Userspace-RCU flavor (developer only option) # -# [pairwise: --with-liburcu=membarrier, --with-liburcu=qsbr, --with-liburcu=mb, --with-liburcu=bp] +# [pairwise: skip] AC_ARG_WITH([liburcu], [AS_HELP_STRING([--with-liburcu=FLAVOR], [Build with Userspace-RCU variant (developer-only option) (membarrier|qsbr|mb|bp) [default=membarrier]]))],