From: Jussi Kukkonen Date: Mon, 4 Sep 2017 08:39:24 +0000 (+0300) Subject: mesa-gl: Fix build after recent mesa PACKAGECONFIG changes X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~20120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc319b6dcc5b4a5019fb91c9771b12ce17f3c953;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git mesa-gl: Fix build after recent mesa PACKAGECONFIG changes 48d39cf43b added "opengl" PACKAGECONFIG option to mesa: before that the configuration was always enabled. "opengl" should have been added to mesa-gl default PACKAGECONFIG but wasn't: do it now. Signed-off-by: Jussi Kukkonen Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/mesa/mesa-gl_17.1.7.bb b/meta/recipes-graphics/mesa/mesa-gl_17.1.7.bb index b9e3b805b5c..73267eb4f0d 100644 --- a/meta/recipes-graphics/mesa/mesa-gl_17.1.7.bb +++ b/meta/recipes-graphics/mesa/mesa-gl_17.1.7.bb @@ -6,4 +6,4 @@ PROVIDES = "virtual/libgl virtual/mesa" S = "${WORKDIR}/mesa-${PV}" -PACKAGECONFIG ??= "dri ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" +PACKAGECONFIG ??= "opengl dri ${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"