diff options
author | Chia-I Wu <[email protected]> | 2010-02-05 11:46:28 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-02-05 12:48:49 +0800 |
commit | 5f08eff2a769e27df37fc00e46797e70a54727bb (patch) | |
tree | d01bbca3fcbddd2297b3e20fd17d13ffca9adabf /src/egl/drivers/xdri/Makefile | |
parent | cb260e1d18726814a43f51c4e16e4bd8d65736e2 (diff) |
egl: Remove egl_xdri.
egl_xdri steals code from src/glx/x11/. This makes it broken from time
to time when there is a bigger change to the GLX code. As egl_dri2 has
been merged, which also functions as a DRI2 driver loader, remove
egl_xdri for good.
Diffstat (limited to 'src/egl/drivers/xdri/Makefile')
-rw-r--r-- | src/egl/drivers/xdri/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/egl/drivers/xdri/Makefile b/src/egl/drivers/xdri/Makefile deleted file mode 100644 index 9120620dc52..00000000000 --- a/src/egl/drivers/xdri/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# src/egl/drivers/xdri/Makefile - -TOP = ../../../.. -include $(TOP)/configs/current - -EGL_DRIVER = egl_xdri.so - -# steal sources from GLX -GLX_SOURCES = dri_common.c XF86dri.c dri2.c dri2_glx.c dri_glx.c drisw_glx.c -GLX_SOURCES := $(addprefix ../../../glx/x11/,$(GLX_SOURCES)) -GLX_INCLUDES = \ - $(shell pkg-config --cflags-only-I libdrm) \ - -I$(TOP)/include/GL/internal \ - -I$(TOP)/src/glx/x11 \ - -I$(TOP)/src/mesa/glapi \ - -I$(TOP)/src/mesa -GLX_CFLAGS = -DGLX_DIRECT_RENDERING - -EGL_SOURCES = egl_xdri.c glxinit.c driinit.c $(GLX_SOURCES) -EGL_INCLUDES = \ - -I$(TOP)/include \ - -I$(TOP)/src/egl/main \ - $(GLX_INCLUDES) - -EGL_CFLAGS = $(GLX_CFLAGS) -EGL_LIBS = -lX11 -lGL - -include ../Makefile.template |