diff options
author | Dylan Baker <[email protected]> | 2017-12-12 12:25:34 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-11 15:40:02 -0800 |
commit | a0a764cde5a0f469a1d3f04babb84268c26cf70c (patch) | |
tree | 8451ad1f958ded0686e3f1404e82863ec6068e00 /src/gallium/auxiliary | |
parent | 2083a14179eb04d22feebc5751a1a145828d07cf (diff) |
meson: move libsensors dependency to libgallium
This simplifies the build by removing the need to link targets against
libsensors.
Suggested-by: Emil Velikov <[email protected]>
Signed-off-by: Dylan Baker <[email protected]>
Acked-by: Eric Engestrom <[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 acef71bb3a8..6f1542d7ade 100644 --- a/src/gallium/auxiliary/meson.build +++ b/src/gallium/auxiliary/meson.build @@ -497,7 +497,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, dep_m, dep_thread, + dep_libdrm, dep_llvm, dep_unwind, dep_dl, dep_m, dep_thread, dep_lmsensors, idep_nir_headers, ], build_by_default : false, |