weston-test uses eglBindWaylandDisplayWL and friends, which are defined either by the EGL implementation, or weston-egl-ext.h as a fallback. Include weston-egl-ext.h from weston-test, so we can build on systems whose native EGL implementation doesn't give us the needed defines.
Signed-off-by: Daniel Stone <[email protected]> --- tests/weston-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/weston-test.c b/tests/weston-test.c index 77eaa23..8777f70 100644 --- a/tests/weston-test.c +++ b/tests/weston-test.c @@ -33,6 +33,7 @@ #ifdef ENABLE_EGL #include <EGL/egl.h> #include <EGL/eglext.h> +#include "../src/weston-egl-ext.h" #endif /* ENABLE_EGL */ struct weston_test { -- 2.1.0 _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
