From 6119c05d7d676e830a0fbcede7fda075643e7cc4 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Mon, 30 Dec 2024 12:20:27 -0500 Subject: [PATCH] meson: Drop WEBRTC_THREAD_RR The define was dropped upstream a while back and is unused. --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 05a434a..67cbd07 100644 --- a/meson.build +++ b/meson.build @@ -83,13 +83,13 @@ elif host_system == 'android' os_deps += [dependency('gnustl', required : get_option('gnustl'))] have_posix = true elif host_system == 'linux' - os_cflags += ['-DWEBRTC_LINUX', '-DWEBRTC_THREAD_RR'] + os_cflags += ['-DWEBRTC_LINUX'] os_deps += [cc.find_library('rt', required : false)] os_deps += [dependency('threads')] have_posix = true elif (host_system == 'dragonfly' or host_system == 'freebsd' or host_system == 'netbsd' or host_system == 'openbsd') - os_cflags += ['-DWEBRTC_BSD', '-DWEBRTC_THREAD_RR'] + os_cflags += ['-DWEBRTC_BSD'] os_deps += [dependency('threads')] have_posix = true elif host_system == 'windows'