mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 15:10:10 +01:00
wayland-egl: adds CFLAGS for wayland.egl.h include
Starting with commitab0589c6ed("wayland-egl: remove no longer needed wayland-client dependency") the wayland-egl.h include was missing leading to a build failure: CC wayland-egl.lo wayland-egl.c:33:10: fatal error: wayland-egl.h: No such file or directory #include "wayland-egl.h" ^~~~~~~~~~~~~~~ Strictly speaking we should be checking for wayland-egl in configure and propagating its CFLAGS here. Yet again, the current wayland-egl split is bonkers as the Wayland repo provides single header, no pkg-config file or library. That will be resolved at a later stage, but in the meanwhile fix the build. Fixes:ab0589c6ed("wayland-egl: remove no longer needed wayland-client dependency") Signed-off-by: Tobias Klausmann <tobias.johannes.klausmann@mni.thm.de> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> [Emil Velikov: add some text about CFLAGS and current wayland-egl situation] Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
fd404e3c17
commit
80bfff5c4f
1 changed files with 2 additions and 1 deletions
|
|
@ -2,7 +2,8 @@ pkgconfigdir = $(libdir)/pkgconfig
|
|||
pkgconfig_DATA = wayland-egl.pc
|
||||
|
||||
AM_CFLAGS = $(DEFINES) \
|
||||
$(VISIBILITY_CFLAGS)
|
||||
$(VISIBILITY_CFLAGS) \
|
||||
$(WAYLAND_SERVER_CFLAGS)
|
||||
|
||||
lib_LTLIBRARIES = libwayland-egl.la
|
||||
noinst_HEADERS = wayland-egl-backend.h
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue