diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2014-01-22 00:42:30 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2014-01-23 18:04:22 +0000 |
commit | c6b6916b9a6506e65b0cdaa6f56c27c645cc710d (patch) | |
tree | 3a676768bd9e53627538db2a42babfea9055e9a2 /src/glx/Makefile.am | |
parent | d5e5367e8992c2e5322d35fba8d86c33a0db6825 (diff) |
glx: link loader util lib only when building with dri3
Otherwise we pull libudev as a dependency and crash
games/programs that ship their own version of libudev.
Either way we should link the loader lib only when needed.
This fixes a regression caused by
commit eac776cf779b705cbfb8d41812f1d171fb09c76f
Author: Emil Velikov <emil.l.velikov@gmail.com>
Date: Sat Jan 11 02:24:43 2014 +0000
glx: use the loader util lib
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=73854
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'src/glx/Makefile.am')
-rw-r--r-- | src/glx/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am index 54a0cc027d..69a6bf93da 100644 --- a/src/glx/Makefile.am +++ b/src/glx/Makefile.am @@ -100,9 +100,9 @@ libglx_la_SOURCES = \ if HAVE_DRI3 libglx_la_SOURCES += \ dri3_glx.c -endif libglx_la_LIBADD = $(top_builddir)/src/loader/libloader.la +endif GL_LIBS = \ libglx.la \ |