* [PATCH 1/2] mesa-gl: add missing MESA_CRYPTO to PACKAGECONFIG @ 2016-04-26 13:58 Ross Burton 2016-04-26 13:58 ` [PATCH 2/2] mesa: add PACKAGECONFIG for gbm Ross Burton 0 siblings, 1 reply; 4+ messages in thread From: Ross Burton @ 2016-04-26 13:58 UTC (permalink / raw) To: openembedded-core 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> --- meta/recipes-graphics/mesa/mesa-gl_11.1.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 fc2bca9..f06a3e9 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" -- 2.8.0.rc3 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] mesa: add PACKAGECONFIG for gbm 2016-04-26 13:58 [PATCH 1/2] mesa-gl: add missing MESA_CRYPTO to PACKAGECONFIG Ross Burton @ 2016-04-26 13:58 ` Ross Burton 2016-04-26 14:49 ` Denys Dmytriyenko 0 siblings, 1 reply; 4+ messages in thread From: Ross Burton @ 2016-04-26 13:58 UTC (permalink / raw) To: openembedded-core gbm is an optional library and some environments (for example, mesa-gl where there are separate drivers that provide libgbm) may not want to build it. Signed-off-by: Ross Burton <ross.burton@intel.com> --- meta/recipes-graphics/mesa/mesa.inc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 442479a..a4e5351 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc @@ -24,11 +24,13 @@ REQUIRED_DISTRO_FEATURES = "opengl" EXTRA_OECONF = "--enable-shared-glapi" -PACKAGECONFIG ??= "egl gles dri ${MESA_CRYPTO} \ +PACKAGECONFIG ??= "gbm egl gles dri ${MESA_CRYPTO} \ ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}\ ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}\ " +PACKAGECONFIG[gbm] = "--enable-gbm,--disable-gbm" + X11_DEPS = "xf86driproto glproto virtual/libx11 libxext libxxf86vm libxdamage libxfixes" PACKAGECONFIG[x11] = "--enable-glx-tls,--disable-glx,${X11_DEPS}" PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" @@ -37,7 +39,7 @@ PACKAGECONFIG[wayland] = ",,wayland-native wayland" DRIDRIVERS = "swrast" DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915" DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915" -PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS} --enable-gbm, --disable-dri, dri2proto libdrm" +PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS}, --disable-dri, dri2proto libdrm" PACKAGECONFIG[dri3] = "--enable-dri3, --disable-dri3, dri3proto presentproto libxshmfence" PACKAGECONFIG[gles] = "--enable-gles1 --enable-gles2, --disable-gles1 --disable-gles2" -- 2.8.0.rc3 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] mesa: add PACKAGECONFIG for gbm 2016-04-26 13:58 ` [PATCH 2/2] mesa: add PACKAGECONFIG for gbm Ross Burton @ 2016-04-26 14:49 ` Denys Dmytriyenko 2016-05-03 2:54 ` Denys Dmytriyenko 0 siblings, 1 reply; 4+ messages in thread From: Denys Dmytriyenko @ 2016-04-26 14:49 UTC (permalink / raw) To: Ross Burton; +Cc: openembedded-core On Tue, Apr 26, 2016 at 02:58:23PM +0100, Ross Burton wrote: > gbm is an optional library and some environments (for example, mesa-gl where > there are separate drivers that provide libgbm) may not want to build it. > > Signed-off-by: Ross Burton <ross.burton@intel.com> I was now able to build mesa-gl with TI SGX GLES and own libgbm. Thanks! Acked-by: Denys Dmytriyenko <denys@ti.com> > --- > meta/recipes-graphics/mesa/mesa.inc | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc > index 442479a..a4e5351 100644 > --- a/meta/recipes-graphics/mesa/mesa.inc > +++ b/meta/recipes-graphics/mesa/mesa.inc > @@ -24,11 +24,13 @@ REQUIRED_DISTRO_FEATURES = "opengl" > > EXTRA_OECONF = "--enable-shared-glapi" > > -PACKAGECONFIG ??= "egl gles dri ${MESA_CRYPTO} \ > +PACKAGECONFIG ??= "gbm egl gles dri ${MESA_CRYPTO} \ > ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}\ > ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}\ > " > > +PACKAGECONFIG[gbm] = "--enable-gbm,--disable-gbm" > + > X11_DEPS = "xf86driproto glproto virtual/libx11 libxext libxxf86vm libxdamage libxfixes" > PACKAGECONFIG[x11] = "--enable-glx-tls,--disable-glx,${X11_DEPS}" > PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" > @@ -37,7 +39,7 @@ PACKAGECONFIG[wayland] = ",,wayland-native wayland" > DRIDRIVERS = "swrast" > DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915" > DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915" > -PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS} --enable-gbm, --disable-dri, dri2proto libdrm" > +PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS}, --disable-dri, dri2proto libdrm" > PACKAGECONFIG[dri3] = "--enable-dri3, --disable-dri3, dri3proto presentproto libxshmfence" > > PACKAGECONFIG[gles] = "--enable-gles1 --enable-gles2, --disable-gles1 --disable-gles2" > -- > 2.8.0.rc3 > > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] mesa: add PACKAGECONFIG for gbm 2016-04-26 14:49 ` Denys Dmytriyenko @ 2016-05-03 2:54 ` Denys Dmytriyenko 0 siblings, 0 replies; 4+ messages in thread From: Denys Dmytriyenko @ 2016-05-03 2:54 UTC (permalink / raw) To: Ross Burton; +Cc: openembedded-core On Tue, Apr 26, 2016 at 10:49:25AM -0400, Denys Dmytriyenko wrote: > On Tue, Apr 26, 2016 at 02:58:23PM +0100, Ross Burton wrote: > > gbm is an optional library and some environments (for example, mesa-gl where > > there are separate drivers that provide libgbm) may not want to build it. > > > > Signed-off-by: Ross Burton <ross.burton@intel.com> > > I was now able to build mesa-gl with TI SGX GLES and own libgbm. Thanks! > > Acked-by: Denys Dmytriyenko <denys@ti.com> Ross, I would like to see these 2 patches pushed early, even if virtual/libgbm rework isn't ready yet. Thanks. -- Denys > > --- > > meta/recipes-graphics/mesa/mesa.inc | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc > > index 442479a..a4e5351 100644 > > --- a/meta/recipes-graphics/mesa/mesa.inc > > +++ b/meta/recipes-graphics/mesa/mesa.inc > > @@ -24,11 +24,13 @@ REQUIRED_DISTRO_FEATURES = "opengl" > > > > EXTRA_OECONF = "--enable-shared-glapi" > > > > -PACKAGECONFIG ??= "egl gles dri ${MESA_CRYPTO} \ > > +PACKAGECONFIG ??= "gbm egl gles dri ${MESA_CRYPTO} \ > > ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}\ > > ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland', '', d)}\ > > " > > > > +PACKAGECONFIG[gbm] = "--enable-gbm,--disable-gbm" > > + > > X11_DEPS = "xf86driproto glproto virtual/libx11 libxext libxxf86vm libxdamage libxfixes" > > PACKAGECONFIG[x11] = "--enable-glx-tls,--disable-glx,${X11_DEPS}" > > PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" > > @@ -37,7 +39,7 @@ PACKAGECONFIG[wayland] = ",,wayland-native wayland" > > DRIDRIVERS = "swrast" > > DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915" > > DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915" > > -PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS} --enable-gbm, --disable-dri, dri2proto libdrm" > > +PACKAGECONFIG[dri] = "--enable-dri --with-dri-drivers=${DRIDRIVERS}, --disable-dri, dri2proto libdrm" > > PACKAGECONFIG[dri3] = "--enable-dri3, --disable-dri3, dri3proto presentproto libxshmfence" > > > > PACKAGECONFIG[gles] = "--enable-gles1 --enable-gles2, --disable-gles1 --disable-gles2" > > -- > > 2.8.0.rc3 > > > > -- > > _______________________________________________ > > Openembedded-core mailing list > > Openembedded-core@lists.openembedded.org > > http://lists.openembedded.org/mailman/listinfo/openembedded-core > -- > _______________________________________________ > Openembedded-core mailing list > Openembedded-core@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-core ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-05-03 2:54 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-04-26 13:58 [PATCH 1/2] mesa-gl: add missing MESA_CRYPTO to PACKAGECONFIG Ross Burton 2016-04-26 13:58 ` [PATCH 2/2] mesa: add PACKAGECONFIG for gbm Ross Burton 2016-04-26 14:49 ` Denys Dmytriyenko 2016-05-03 2:54 ` Denys Dmytriyenko
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox