diff options
author | Kristian Høgsberg <[email protected]> | 2011-05-11 13:58:37 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2011-05-13 09:31:09 -0400 |
commit | 93aea63a33c575bbce80acad391e810acc2f3e94 (patch) | |
tree | fd710936588f3fcc87ba5540c8ab0d02f88962a5 /src/egl/main | |
parent | 64e3cd0c4282bbbbd441a5fb9711f5a37208c18f (diff) |
egl_dri2: Make it possible to not compile in the X11 platform
Diffstat (limited to 'src/egl/main')
-rw-r--r-- | src/egl/main/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/egl/main/Makefile b/src/egl/main/Makefile index 820788d696b..cb8f0551293 100644 --- a/src/egl/main/Makefile +++ b/src/egl/main/Makefile @@ -58,11 +58,15 @@ LOCAL_LIBS = ifeq ($(filter dri2, $(EGL_DRIVERS_DIRS)),dri2) LOCAL_CFLAGS += -D_EGL_BUILT_IN_DRIVER_DRI2 LOCAL_LIBS += $(TOP)/src/egl/drivers/dri2/libegl_dri2.a +ifneq ($(findstring x11, $(EGL_PLATFORMS)),) +EGL_LIB_DEPS += $(XCB_DRI2_LIBS) +endif ifneq ($(findstring wayland, $(EGL_PLATFORMS)),) LOCAL_LIBS += $(TOP)/src/egl/wayland/wayland-drm/libwayland-drm.a endif -EGL_LIB_DEPS += $(XCB_DRI2_LIBS) $(LIBUDEV_LIBS) $(DLOPEN_LIBS) $(LIBDRM_LIB) $(WAYLAND_LIBS) +EGL_LIB_DEPS += $(LIBUDEV_LIBS) $(DLOPEN_LIBS) $(LIBDRM_LIB) $(WAYLAND_LIBS) endif + ifeq ($(filter glx, $(EGL_DRIVERS_DIRS)),glx) LOCAL_CFLAGS += -D_EGL_BUILT_IN_DRIVER_GLX LOCAL_LIBS += $(TOP)/src/egl/drivers/glx/libegl_glx.a |