mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-24 23:00:05 +01:00
Get rid of almost all uses of these definitions. They're still defined for delinquent out-of-tree drivers, and also for the Mesa build. As well as for miinitext.c. But largely gone.
39 lines
1,016 B
Makefile
39 lines
1,016 B
Makefile
noinst_LTLIBRARIES = libX.la
|
|
|
|
INCLUDES = -I@MESA_SOURCE@/include \
|
|
-I../X \
|
|
-I../array_cache \
|
|
-I../glapi \
|
|
-I../main \
|
|
-I../math \
|
|
-I../shader \
|
|
-I../swrast \
|
|
-I../swrast_setup \
|
|
-I../tnl \
|
|
-I.. \
|
|
-I../../glx \
|
|
-I$(top_srcdir)/GL/glx \
|
|
-I$(top_srcdir)/GL/include \
|
|
-I$(top_srcdir)/hw/xfree86/os-support
|
|
|
|
# -DXFree86Server is required because the X11 driver in Mesa thinks that
|
|
# symbol means "being built in the server"
|
|
AM_CFLAGS = \
|
|
$(DIX_CFLAGS) \
|
|
-DXFree86Server \
|
|
@GLX_DEFINES@ \
|
|
-DXFree86Server
|
|
|
|
libX_la_SOURCES = xf86glx.c \
|
|
xf86glx_util.c \
|
|
xf86glx_util.h \
|
|
xf86glxint.h
|
|
|
|
nodist_libX_la_SOURCES = \
|
|
xm_api.c \
|
|
xm_buffer.c \
|
|
xm_dd.c \
|
|
xm_line.c \
|
|
xm_span.c \
|
|
xm_tri.c \
|
|
drivers/common/driverfuncs.c
|