X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=meson.build;h=fa178c435a9fa690c0b3d437b73f41098eb47bdc;hb=efd439e0d648c90ae5854a0e83cd864836864e91;hp=dba847b9f8593546d84861fb1f67a07f0655e512;hpb=258ef4d4a4b6c11b141e12e6736b01f408461c1d;p=mesa.git diff --git a/meson.build b/meson.build index dba847b9f85..fa178c435a9 100644 --- a/meson.build +++ b/meson.build @@ -427,8 +427,10 @@ else endif # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS. -if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29) +use_elf_tls = false +if not ['windows', 'freebsd', 'openbsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29) pre_args += '-DUSE_ELF_TLS' + use_elf_tls = true endif if with_glx != 'disabled' @@ -949,6 +951,8 @@ elif host_machine.system() == 'windows' else pre_args += ['-D__MSVCRT_VERSION__=0x0700'] endif +elif host_machine.system() == 'openbsd' + pre_args += '-D_ISOC11_SOURCE' endif # Check for generic C arguments @@ -1202,7 +1206,7 @@ if not ['linux'].contains(host_machine.system()) endif endif -foreach h : ['xlocale.h', 'linux/futex.h', 'endian.h', 'dlfcn.h', 'execinfo.h', 'sys/shm.h', 'cet.h'] +foreach h : ['xlocale.h', 'linux/futex.h', 'endian.h', 'dlfcn.h', 'execinfo.h', 'sys/shm.h', 'cet.h', 'pthread_np.h'] if cc.check_header(h) pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify()) endif @@ -1341,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']) @@ -1784,10 +1782,10 @@ endif _sensors = get_option('lmsensors') if _sensors == 'true' _sensors = 'enabled' - warning('sensors option "true" deprecated, please use "enabled" instead.') + warning('lmsensors option "true" deprecated, please use "enabled" instead.') elif _sensors == 'false' _sensors = 'disabled' - warning('sensors option "false" deprecated, please use "disabled" instead.') + warning('lmsensors option "false" deprecated, please use "disabled" instead.') endif if _sensors != 'disabled' dep_lmsensors = cc.find_library('sensors', required : _sensors == 'enabled') @@ -1849,6 +1847,12 @@ if dep_dl.found() gl_priv_libs += '-ldl' endif +# FIXME: autotools lists this as incomplete +gbm_priv_libs = [] +if dep_dl.found() + gbm_priv_libs += '-ldl' +endif + pkg = import('pkgconfig') if host_machine.system() == 'windows'