diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2013-07-11 00:56:36 +0000 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-12 10:12:11 -0700 |
commit | 767a2893f6cbc7d48619086970b8ed6262a883e7 (patch) | |
tree | ff3a15df83c2f138454e017c7af4693d49827dc0 /meta/recipes-graphics/cogl | |
parent | bcccb87a3213f5315f52fb18610b7e9dab510a7e (diff) | |
download | openembedded-core-767a2893f6cbc7d48619086970b8ed6262a883e7.tar.gz openembedded-core-767a2893f6cbc7d48619086970b8ed6262a883e7.tar.bz2 openembedded-core-767a2893f6cbc7d48619086970b8ed6262a883e7.zip |
cogl-1.0: make building cogl-pango optional
Add a 'cogl-pango' PACKAGECONFIG option and enable it by default.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Diffstat (limited to 'meta/recipes-graphics/cogl')
-rw-r--r-- | meta/recipes-graphics/cogl/cogl-1.0.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-graphics/cogl/cogl-1.0.inc b/meta/recipes-graphics/cogl/cogl-1.0.inc index 8400668e09..c0d410e3b3 100644 --- a/meta/recipes-graphics/cogl/cogl-1.0.inc +++ b/meta/recipes-graphics/cogl/cogl-1.0.inc @@ -8,7 +8,7 @@ SRC_URI += "file://cogl_fixed_mul-constraint.patch \ inherit clutter -DEPENDS = "pango glib-2.0 gdk-pixbuf" +DEPENDS = "glib-2.0 gdk-pixbuf" PACKAGES =+ "${PN}-examples \ libcogl libcogl-dev \ libcogl-gles2 libcogl-gles2-dev \ @@ -34,6 +34,8 @@ EXTRA_OECONF += "--disable-introspection \ --disable-gles1 \ " +PACKAGECONFIG[cogl-pango] = "--enable-cogl-pango,--disable-cogl-pango,pango" + # GL flavours PACKAGECONFIG[gl] = "--enable-gl,--disable-gl,${EDEPENDS_GL},${ERDEPENDS_GL}" PACKAGECONFIG[gles2] = "--enable-gles2,--disable-gles2,${EDEPENDS_GLES2}, ${ERDEPENDS_GLES2}" @@ -52,7 +54,7 @@ PACKAGECONFIG[wayland-server] = "--enable-wayland-egl-server,--disable-wayland-e # Respect the DISTRO_FEATURES to pull in GLX or Wayland as appropriate by # default. -PACKAGECONFIG ??= "gl \ +PACKAGECONFIG ??= "cogl-pango gl \ ${@base_contains('DISTRO_FEATURES', 'wayland', 'egl-wayland', '', d)} \ ${@base_contains('DISTRO_FEATURES', 'x11', 'glx', '', d)}" |