summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2015-02-24 19:43:43 -0500
committerEmil Velikov <emil.l.velikov@gmail.com>2015-02-27 23:05:03 +0000
commit3e54be2e8ad2918a3371f2a33b6c18271b46020b (patch)
treebd143bb6ae9764d8cf525965fffe2bcc588cc0cf /src
parent6f52686d7783f20264932419fe133626c16646cc (diff)
pipe-loader: Fix build with dri drivers enabled, and vl state trackers disabled
Configure arguments: ./configure --disable-dri3 --disable-xvmc --enable-opencl --with-gallium-drivers=r300,r600,radeonsi --with-egl-platforms=drm Build error: make[3]: *** No rule to make target `../../../../src/gallium/auxiliary/libgalliumvlwinsys.la', needed by `pipe_r300.la'. Stop. Cc: "10.5" <mesa-stable@lists.freedestkop.org> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit ed07255149d7cffac07615e946289b3d683faa4b)
Diffstat (limited to 'src')
-rw-r--r--src/gallium/targets/pipe-loader/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am
index 94658f8138f..fe40f5b181e 100644
--- a/src/gallium/targets/pipe-loader/Makefile.am
+++ b/src/gallium/targets/pipe-loader/Makefile.am
@@ -40,13 +40,17 @@ PIPE_LIBS =
if NEED_GALLIUM_VL
PIPE_LIBS += \
- $(top_builddir)/src/gallium/auxiliary/libgalliumvlwinsys.la \
$(top_builddir)/src/gallium/auxiliary/libgalliumvl.la
else
PIPE_LIBS += \
$(top_builddir)/src/gallium/auxiliary/libgalliumvl_stub.la
endif
+if NEED_GALLIUM_VL_WINSYS
+PIPE_LIBS+= \
+ $(top_builddir)/src/gallium/auxiliary/libgalliumvlwinsys.la
+endif
+
PIPE_LIBS += \
$(top_builddir)/src/gallium/auxiliary/libgallium.la \
$(top_builddir)/src/util/libmesautil.la \