From 2e3d0dd6c8f405f27d68b1ac35e928233bf8b89c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?= Date: Wed, 15 Nov 2017 12:41:58 +0100 Subject: threads,configure.ac,meson.build: define and use HAVE_TIMESPEC_GET Tested with Travis and Appveyor. v2: add HAVE_TIMESPEC_GET for non-Windows Scons builds v3: use check_functions in Scons (Eric) Cc: Rob Herring Cc: Alexander von Gluck IV Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103674 Fixes: f1a364878431 ("threads: update for late C11 changes") Reviewed-by: Eric Engestrom Reviewed-by: Dylan Baker Reviewed-by: Jon Turney (v2) --- scons/gallium.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scons') diff --git a/scons/gallium.py b/scons/gallium.py index 94022df1808..ef3b2ee81ae 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -355,6 +355,9 @@ def generate(env): if check_functions(env, ['strtod_l', 'strtof_l']): cppdefines += ['HAVE_STRTOD_L'] + if check_functions(env, ['timespec_get']): + cppdefines += ['HAVE_TIMESPEC_GET'] + if platform == 'windows': cppdefines += [ 'WIN32', -- cgit v1.2.1