mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02:00
cogl: enable egl-x11 when build with x11
Fixed clutter-1.0 compile error when build with x11: clutter-backend-eglnative.h:31:27: fatal error: cogl/cogl-egl.h: No such file or directory #include <cogl/cogl-egl.h> compilation terminated. We need enable egl-x11 when x11 as we enable egl-wayland when wayland. (From OE-Core rev: d61e3a6e63664ab2893a90e5525fe634d4514318) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
188db833ab
commit
144630e6e8
@@ -42,7 +42,7 @@ PACKAGECONFIG[gles2] = "--enable-gles2,--disable-gles2,${EDEPENDS_GLES2}, ${ERDE
|
||||
# EGL backends
|
||||
PACKAGECONFIG[egl-kms] = "--enable-kms-egl-platform,--disable-kms-egl-platform,${EDEPENDS_KMS}"
|
||||
PACKAGECONFIG[egl-null] = "--enable-null-egl-platform,--disable-null-egl-platform"
|
||||
PACKAGECONFIG[egl-x11] = "--enable-xlib-egl-platform,--disable-xlib-egl-platform,${EDEPENDS_X11}"
|
||||
PACKAGECONFIG[egl-x11] = "--enable-xlib-egl-platform,--disable-xlib-egl-platform,${EDEPENDS_X11} ${EDEPENDS_EGL}"
|
||||
PACKAGECONFIG[egl-wayland] = "--enable-wayland-egl-platform,--disable-wayland-egl-platform,${EDEPENDS_WAYLAND}"
|
||||
|
||||
# Wayland (server-side)
|
||||
@@ -55,7 +55,9 @@ PACKAGECONFIG[cogl-pango] = "--enable-cogl-pango,--disable-cogl-pango,pango"
|
||||
# default.
|
||||
PACKAGECONFIG ??= "cogl-pango gles2 \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'egl-wayland', '', d)} \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'glx', '', d)}"
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'glx egl-x11', '', d)} \
|
||||
"
|
||||
|
||||
|
||||
FILES_${PN}-examples = "${bindir}/* ${datadir}/cogl/examples-data/*"
|
||||
FILES_libcogl = "${libdir}/libcogl${SOLIBS}"
|
||||
|
||||
Reference in New Issue
Block a user