xserver: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Apr 23 22:23:51 UTC 2019


 hw/xwayland/Makefile.am |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 836f93de99b35050d78d61d3654f7c5655184144
Author: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Date:   Fri Apr 19 10:19:50 2019 +0200

    hw/xwayland/Makefile.am: fix build without glx
    
    Commit d8ec33fe0542141aed1d9016d2ecaf52da944b4b added libglxvnd.la to
    Xwayland_LDFLAGS but GLX can be disabled through --disable-glx.
    In this case, build fails on:
    
    make[3]: *** No rule to make target '../../glx/libglxvnd.la', needed by 'Xwayland'.  Stop.
    make[3]: *** Waiting for unfinished jobs....
    
    Fixes:
     - http://autobuild.buildroot.org/results/397f8098c57fc6c88aa12dc8d35ebb1b933d52ef
    
    Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>

diff --git a/hw/xwayland/Makefile.am b/hw/xwayland/Makefile.am
index bc1cb8506..502879e2a 100644
--- a/hw/xwayland/Makefile.am
+++ b/hw/xwayland/Makefile.am
@@ -21,10 +21,14 @@ Xwayland_SOURCES =				\
 	$(top_srcdir)/Xi/stubs.c		\
 	$(top_srcdir)/mi/miinitext.c
 
+if GLX
+GLXVND_LIB = $(top_builddir)/glx/libglxvnd.la
+endif
+
 Xwayland_LDADD =				\
 	$(glamor_lib)				\
 	$(XWAYLAND_LIBS)			\
-	$(top_builddir)/glx/libglxvnd.la	\
+	$(GLXVND_LIB)				\
 	$(XWAYLAND_SYS_LIBS)			\
 	$(top_builddir)/Xext/libXvidmode.la	\
 	$(XSERVER_SYS_LIBS)


More information about the xorg-commit mailing list