[Mesa-dev] [PATCH 4/6] meson: osx doesn't have librt, so don't require it

Emil Velikov emil.l.velikov at gmail.com
Tue Jan 30 18:56:42 UTC 2018


Hi Jon,

On 28 January 2018 at 14:24, Jon Turney <jon.turney at dronecode.org.uk> wrote:
> ---
>  meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meson.build b/meson.build
> index 7e194a9f10d..8fdbaa8b8d8 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -935,7 +935,7 @@ elif with_dri_i965 and get_option('shader-cache')
>  endif
>
>  # Determine whether or not the rt library is needed for time functions
> -if cc.has_function('clock_gettime')
> +if cc.has_function('clock_gettime') or (host_machine.system() == 'darwin')

Absolutely no objections against the patch - just a small question.
If the meson/autotools check fails, does this mean that the resulting
binaries are having unresolved reference wrt said symbol?

Thanks
Emil


More information about the mesa-dev mailing list