diff options
author | Erik Faye-Lund <[email protected]> | 2017-10-28 14:36:04 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2017-10-31 08:10:37 +0100 |
commit | cf41c19d9fc6c12f5fc22d0b25b9d071f70a42ca (patch) | |
tree | ffcfce48405fe23028e7917ea4f1f5ab0155c99e /src/gallium/auxiliary | |
parent | e92405c55aa885bee5dfb05fac032cab5e419290 (diff) |
meson: use dep_m in libgallium
The u_format_other.c users sqrtf, which on some systems require
a math-library. So let's make sure we link with it.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/meson.build b/src/gallium/auxiliary/meson.build index bb7c0506d84..eed70647927 100644 --- a/src/gallium/auxiliary/meson.build +++ b/src/gallium/auxiliary/meson.build @@ -496,7 +496,7 @@ libgallium = static_library( ], c_args : [c_vis_args, c_msvc_compat_args], cpp_args : [cpp_vis_args, cpp_msvc_compat_args], - dependencies : [dep_libdrm, dep_llvm, dep_unwind, dep_dl], + dependencies : [dep_libdrm, dep_llvm, dep_unwind, dep_dl, dep_m], build_by_default : false, ) |