diff options
author | Emil Velikov <[email protected]> | 2014-01-29 17:04:19 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-02-11 17:17:50 +0000 |
commit | d57dc6dc30c5da9990c59f00144a7f816d636609 (patch) | |
tree | 4f8c3048cd00163baabdf06ba4309a7d28b19066 /src | |
parent | e19fba7cc698c0112d48b1dfb6637994371b0b1f (diff) |
opencl: do not link against libudev
Previously the linking was required due to dependency of udev in the
pipe-loader. Now this is no longer the case, as we dlopen the library.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/targets/opencl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/opencl/Makefile.am b/src/gallium/targets/opencl/Makefile.am index 653302c3a57..d0275ae2cf7 100644 --- a/src/gallium/targets/opencl/Makefile.am +++ b/src/gallium/targets/opencl/Makefile.am @@ -11,7 +11,7 @@ lib@OPENCL_LIBNAME@_la_LIBADD = \ $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \ $(top_builddir)/src/gallium/state_trackers/clover/libclover.la \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ - $(GALLIUM_PIPE_LOADER_LIBS) $(LIBUDEV_LIBS) \ + $(GALLIUM_PIPE_LOADER_LIBS) \ -ldl \ -lclangCodeGen \ -lclangFrontendTool \ |