meson: Drop WEBRTC_THREAD_RR

The define was dropped upstream a while back and is unused.
This commit is contained in:
Arun Raghavan 2024-12-30 12:20:27 -05:00
parent 2a318149f8
commit 6119c05d7d

View File

@ -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'