From 95274dd0cd7c4b101077147db7f29212e36b90d4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 21 Mar 2023 19:27:23 -0700 Subject: [PATCH] ircd::asio: Fix missing condition for newer boost systems w/o liburing. --- include/ircd/asio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ircd/asio.h b/include/ircd/asio.h index 52b8dc4c8..f52a456f5 100644 --- a/include/ircd/asio.h +++ b/include/ircd/asio.h @@ -74,7 +74,7 @@ namespace boost // In boost 1.79+ asio implements some filesystem operations we can use. While // these are available in 1.78 they were buggy for our purposes until 1.79. -#if BOOST_VERSION >= 107900 +#if IRCD_USE_ASIO_IO_URING && BOOST_VERSION >= 107900 #define IRCD_USE_ASIO_READ 1 #define IRCD_USE_ASIO_WRITE 1 #else