diff options
author | Ross Burton <ross.burton@intel.com> | 2016-04-26 14:48:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:30:58 +0100 |
commit | 8ce5d90044bd371d132312e85197ee262855ad29 (patch) | |
tree | e3a59413e2e9f0cdabac863ff1896a12dc35cf7e /meta/recipes-graphics | |
parent | 33d4c758a5d71435437dde74556d32404d91342f (diff) | |
download | openembedded-core-8ce5d90044bd371d132312e85197ee262855ad29.tar.gz openembedded-core-8ce5d90044bd371d132312e85197ee262855ad29.tar.bz2 openembedded-core-8ce5d90044bd371d132312e85197ee262855ad29.zip |
mesa-gl: add missing MESA_CRYPTO to PACKAGECONFIG
Otherwise the build can fail or there is a floating dependency on whatever SSL
library Mesa can find.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-gl_11.1.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-gl_11.1.1.bb b/meta/recipes-graphics/mesa/mesa-gl_11.1.1.bb index fc2bca9982..f06a3e9b58 100644 --- a/meta/recipes-graphics/mesa/mesa-gl_11.1.1.bb +++ b/meta/recipes-graphics/mesa/mesa-gl_11.1.1.bb @@ -8,6 +8,6 @@ PROVIDES = "virtual/libgl virtual/mesa" S = "${WORKDIR}/mesa-${PV}" -PACKAGECONFIG ??= "dri ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" +PACKAGECONFIG ??= "dri ${MESA_CRYPTO} ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" EXCLUDE_FROM_WORLD = "1" |