event/meson.build: disable Boost

This commit is contained in:
Max Kellermann 2023-01-23 13:18:34 +01:00
parent bafde1900b
commit 7ef0bfbdf1
1 changed files with 1 additions and 2 deletions

View File

@ -3,6 +3,7 @@ event_features.set('USE_EVENTFD', is_linux and get_option('eventfd'))
event_features.set('USE_SIGNALFD', is_linux and get_option('signalfd'))
event_features.set('USE_EPOLL', is_linux and get_option('epoll'))
event_features.set('HAVE_THREADED_EVENT_LOOP', true)
event_features.set('NO_BOOST', true)
configure_file(output: 'Features.h', configuration: event_features)
event_sources = []
@ -45,7 +46,6 @@ event = static_library(
event_sources,
include_directories: inc,
dependencies: [
boost_dep,
log_dep,
uring_dep,
],
@ -57,7 +57,6 @@ event_dep = declare_dependency(
thread_dep,
net_dep,
system_dep,
boost_dep,
uring_dep,
],
)