diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-02-04 12:32:05 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-02-07 14:01:16 +0100 |
commit | 381ea0d67a6d84a34d23571c49bbf4339ffda364 (patch) | |
tree | 201df67f04f51b2a96c36ce62157bc568b81283e /src/gallium/targets/egl/Makefile | |
parent | 9b6dc9b7a46df41d7eb7b1f94e50d96300b557bc (diff) |
st/egl: Add wayland platform
Diffstat (limited to 'src/gallium/targets/egl/Makefile')
-rw-r--r-- | src/gallium/targets/egl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/targets/egl/Makefile b/src/gallium/targets/egl/Makefile index 92d971bab0..7e84643845 100644 --- a/src/gallium/targets/egl/Makefile +++ b/src/gallium/targets/egl/Makefile @@ -46,6 +46,9 @@ ifneq ($(findstring x11, $(EGL_PLATFORMS)),) egl_SYS += -lX11 -lXext -lXfixes $(LIBDRM_LIB) egl_LIBS += $(TOP)/src/gallium/winsys/sw/xlib/libws_xlib.a endif +ifneq ($(findstring wayland, $(EGL_PLATFORMS)),) +egl_SYS += $(WAYLAND_LIBS) $(LIBDRM_LIB) +endif ifneq ($(findstring drm, $(EGL_PLATFORMS)),) egl_SYS += $(LIBDRM_LIB) endif |