diff options
author | Emil Velikov <[email protected]> | 2015-11-21 19:43:09 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-11-23 12:07:09 +0000 |
commit | 8a6d4765880a2c9000970b2b6e584291090b1dc3 (patch) | |
tree | 36ea837b544781bbfbaf93ead967ee7e1cee17b1 /src | |
parent | 2010de4015c96f241e81012b395cb4254091f0bb (diff) |
pipe-loader: link against libloader regardless of libdrm presence
Whether or not the loader has libdrm support is up-to it. Anyone using
the loader should just include it whenever they depend on it.
Cc: [email protected]
Fixes: 0f39f9cb7ad "pipe-loader: add a dummy 'static' pipe-loader"
Reported-by: Jon TURNEY <[email protected]>
Tested-by: Jon TURNEY <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/Makefile.am b/src/gallium/auxiliary/pipe-loader/Makefile.am index f661897fdf7..8039a957b1b 100644 --- a/src/gallium/auxiliary/pipe-loader/Makefile.am +++ b/src/gallium/auxiliary/pipe-loader/Makefile.am @@ -37,12 +37,12 @@ libpipe_loader_static_la_SOURCES += \ libpipe_loader_dynamic_la_SOURCES += \ $(DRM_SOURCES) +endif + libpipe_loader_static_la_LIBADD = \ $(top_builddir)/src/loader/libloader.la libpipe_loader_dynamic_la_LIBADD = \ $(top_builddir)/src/loader/libloader.la -endif - EXTRA_DIST = SConscript |