diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-16 19:23:18 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-08-16 19:28:07 +0200 |
commit | 61d2dfbe488cf5de5881c20fe1ead97f2ab5dabb (patch) | |
tree | b63802f9bafe9e529b50333a3dae8900b83e0acc /src/egl | |
parent | f272117def7a7962f355581d038af6d0981a23cb (diff) |
egl: Add include paths for platform autodetection
Needed since commit 85fe9484.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=40145
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/main/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/egl/main/Makefile b/src/egl/main/Makefile index c100fbfeb9..3172ad2ec0 100644 --- a/src/egl/main/Makefile +++ b/src/egl/main/Makefile @@ -63,6 +63,7 @@ EGL_LIB_DEPS += $(XCB_DRI2_LIBS) endif ifneq ($(findstring drm, $(EGL_PLATFORMS)),) EGL_LIB_DEPS += -lgbm +INCLUDE_DIRS += -I$(TOP)/src/gbm/main endif EGL_LIB_DEPS += $(LIBUDEV_LIBS) $(DLOPEN_LIBS) $(LIBDRM_LIB) $(WAYLAND_LIBS) endif @@ -70,6 +71,7 @@ endif ifneq ($(findstring wayland, $(EGL_PLATFORMS)),) LOCAL_LIBS += $(TOP)/src/egl/wayland/wayland-drm/libwayland-drm.a +INCLUDE_DIRS += $(WAYLAND_CFLAGS) endif ifeq ($(filter glx, $(EGL_DRIVERS_DIRS)),glx) |