diff options
author | Eric Engestrom <eric.engestrom@imgtec.com> | 2018-02-07 14:20:52 +0000 |
---|---|---|
committer | Eric Engestrom <eric.engestrom@imgtec.com> | 2018-03-09 17:12:02 +0000 |
commit | 5236de6cc1ee3759567e0fd8cd6260386b8d5b7e (patch) | |
tree | f7dea5ac7e775bb6114cb8b5de74f4e4e30ee2c8 /nouveau | |
parent | a5329cd990cd1b85e2755f708fd9e48ac06b99a7 (diff) |
meson: use pkg-config to detect libatomic_ops
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Diffstat (limited to 'nouveau')
-rw-r--r-- | nouveau/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nouveau/meson.build b/nouveau/meson.build index 80a8678c..51c9a712 100644 --- a/nouveau/meson.build +++ b/nouveau/meson.build @@ -25,7 +25,7 @@ libdrm_nouveau = shared_library( c_args : warn_c_args, include_directories : [inc_root, inc_drm], link_with : libdrm, - dependencies : dep_threads, + dependencies : [dep_threads, dep_atomic_ops], version : '2.0.0', install : true, ) |