diff options
author | Emil Velikov <[email protected]> | 2014-03-27 20:32:41 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-31 13:08:55 +0100 |
commit | 902dc61f886c0d719ce25894bbc8032ede0f409b (patch) | |
tree | 2266714a87a61aa2b197bf602b91ea214af61c85 /src/gallium/targets/xa | |
parent | 354a5cad74c38d2211e7f0ad485cc302fe51b3f0 (diff) |
gallium/targets: add missing library dependencies
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/targets/xa')
-rw-r--r-- | src/gallium/targets/xa/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/targets/xa/Makefile.am b/src/gallium/targets/xa/Makefile.am index 1d4f095da33..ed87b9f59dc 100644 --- a/src/gallium/targets/xa/Makefile.am +++ b/src/gallium/targets/xa/Makefile.am @@ -45,7 +45,12 @@ libxatracker_la_LIBADD = \ $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \ $(top_builddir)/src/gallium/state_trackers/xa/libxatracker.la \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ - $(LIBDRM_LIBS) + $(LIBDRM_LIBS) \ + -lm \ + $(CLOCK_LIB) \ + $(PTHREAD_LIBS) \ + $(DLOPEN_LIBS) + if HAVE_DRI libxatracker_la_LIBADD += \ |