mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-06-04 21:28:17 +02:00
miinitext in the XGL case. Prevents mismatched structure sizes on my
_XSERVER64 machine. At this point, with the uncommitted render/ diffs,
Xglx starts up but displays badly.
40 lines
702 B
Makefile
40 lines
702 B
Makefile
if XGL
|
|
XGL_MODULE_DIRS = module
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
. \
|
|
$(XGL_MODULE_DIRS)
|
|
|
|
AM_CFLAGS = \
|
|
-I$(srcdir)/.. \
|
|
@SERVER_DEFINES@ \
|
|
-DHAVE_XGL_CONFIG_H \
|
|
-DHAVE_DIX_CONFIG_H \
|
|
$(XGLXMODULES_CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libxglx.la
|
|
|
|
libxglx_la_SOURCES = \
|
|
xglx.h \
|
|
xglx.c
|
|
|
|
Xglx_DEPENDENCIES = @XGLX_LIBS@
|
|
Xglx_LDFLAGS = -export-dynamic
|
|
Xglx_SOURCES = \
|
|
xglxinit.c \
|
|
$(top_srcdir)/mi/miinitext.c \
|
|
$(top_srcdir)/Xext/dpmsstubs.c \
|
|
$(top_srcdir)/Xi/stubs.c \
|
|
$(top_srcdir)/fb/fbcmap.c
|
|
Xglx_LDADD = \
|
|
libxglx.la \
|
|
../libxgl.a \
|
|
$(XORG_CORE_LIBS) \
|
|
$(XGLX_LIBS) \
|
|
$(XSERVER_LIBS) \
|
|
$(EXTENSION_LIBS) \
|
|
$(XGLXMODULES_LIBS)
|
|
Xglx_programs = Xglx
|
|
|
|
bin_PROGRAMS = $(Xglx_programs)
|