From: Eric Engestrom Date: Tue, 1 Sep 2020 20:09:43 +0000 (+0200) Subject: meson: drop leftover PTHREAD_SETAFFINITY_IN_NP_HEADER X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=0f4d09443eba0c5a219c943940ff970f3d583f56 meson: drop leftover PTHREAD_SETAFFINITY_IN_NP_HEADER 55765f80 replaced this with a check for the header itself. Fixes: 55765f80b9ce7cce4ec6 ("util/u_thread: include pthread_np.h if found") Signed-off-by: Eric Engestrom Reviewed-by: Jonathan Gray Part-of: --- diff --git a/meson.build b/meson.build index be007953c8b..fa178c435a9 100644 --- a/meson.build +++ b/meson.build @@ -1345,12 +1345,6 @@ if dep_thread.found() and host_machine.system() != 'windows' args : '-D_GNU_SOURCE') pre_args += '-DHAVE_PTHREAD_SETAFFINITY' endif - if cc.has_function( - 'pthread_setaffinity_np', - dependencies : dep_thread, - prefix : '#include ') - pre_args += '-DPTHREAD_SETAFFINITY_IN_NP_HEADER' - endif endif if host_machine.system() != 'windows' dep_expat = dependency('expat', fallback : ['expat', 'expat_dep'])