summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-10-12 12:50:05 +0200
committerMax Kellermann <max@musicpd.org>2020-10-13 15:27:58 +0200
commit54ee0e28ab7d3d15eef7c5b7c58ed943c0dd2795 (patch)
treeee490dd04a29793dd0c0d45bff4e38112d333c10 /meson.build
parent92fc53ebefd84ad36dd919a76e5952be940b3233 (diff)
event/PollGroup: check _WIN32 instead of USE_WINSELECT
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 1 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index fe37628a1..3c5277863 100644
--- a/meson.build
+++ b/meson.build
@@ -172,12 +172,8 @@ conf.set('HAVE_PRCTL', is_linux)
conf.set('USE_EVENTFD', is_linux and get_option('eventfd'))
conf.set('USE_SIGNALFD', is_linux and get_option('signalfd'))
-if is_windows
- conf.set('USE_WINSELECT', true)
-elif is_linux and get_option('epoll')
+if is_linux and get_option('epoll')
conf.set('USE_EPOLL', true)
-else
- conf.set('USE_POLL', true)
endif
if not get_option('syslog').disabled()