From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v14 05/20] mesa3d: Add dri3 support
Date: Wed, 16 Jul 2014 20:46:48 +0200 [thread overview]
Message-ID: <20140716204648.066145c2@free-electrons.com> (raw)
In-Reply-To: <1405451955-10204-6-git-send-email-bernd.kuhls@t-online.de>
Dear Bernd Kuhls,
On Tue, 15 Jul 2014 21:19:00 +0200, Bernd Kuhls wrote:
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/mesa3d/mesa3d.mk | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
> index 6282503..9fdb7bc 100644
> --- a/package/mesa3d/mesa3d.mk
> +++ b/package/mesa3d/mesa3d.mk
> @@ -24,6 +24,13 @@ MESA3D_DEPENDENCIES = \
> host-xutil_makedepend \
> libdrm
>
> +ifeq ($(BR2_PACKAGE_XPROTO_DRI3PROTO),y)
> +MESA3D_DEPENDENCIES += xproto_dri3proto
> +MESA3D_CONF_OPT += --enable-dri3
> +else
> +MESA3D_CONF_OPT += --disable-dri3
> +endif
Why is this outside of the X.org condition? I believe DRI 3 support
only makes sense when DRI is enabled, so I believe your condition here
is misplaced.
Moreover, this fix is needed even for the current Mesa3D version, I've
run into the following build issue:
======================================================================
configure: error: Package requirements (dri3proto >= 1.0) were not met:
Package dri3proto was not found in the pkg-config search path.
Perhaps you should add the directory containing `dri3proto.pc'
to the PKG_CONFIG_PATH environment variable
No package 'dri3proto' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables DRI3PROTO_CFLAGS
and DRI3PROTO_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
make[1]: *** [/home/test/outputs/va-x86/build/mesa3d-10.2.1/.stamp_configured] Error 1
======================================================================
Could you send an updated patch series that has just the mesa3d updates, the
libglu, libglew, sdl and intel driver update (i.e not with the XBMC
patches) ? And in this series, please make sure each patch has a commit
log, that the reason for the changes are properly explained, and that
the changes are ordered properly.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
next prev parent reply other threads:[~2014-07-16 18:46 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-15 19:18 [Buildroot] [PATCH v14 00/20] package/xbmc: Add support for uClibc, libva and additional packages Bernd Kuhls
2014-07-15 19:18 ` [Buildroot] [PATCH v14 01/20] package/mesa3d: Bump to version 10.2.3 Bernd Kuhls
2014-07-15 19:18 ` [Buildroot] [PATCH v14 02/20] package/mesa3d: Depend on xorg meta package instead of xserver_xorg-server Bernd Kuhls
2014-07-16 18:00 ` Thomas Petazzoni
2014-07-15 19:18 ` [Buildroot] [PATCH v14 03/20] package/mesa3d: add dependency xproto_presentproto Bernd Kuhls
2014-07-15 19:22 ` Thomas Petazzoni
2014-07-15 19:18 ` [Buildroot] [PATCH v14 04/20] package/mesa3d: Remove dependency for the libxml2 module of host-python Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 05/20] mesa3d: Add dri3 support Bernd Kuhls
2014-07-16 18:46 ` Thomas Petazzoni [this message]
2014-07-15 19:19 ` [Buildroot] [PATCH v14 06/20] libva: new package Bernd Kuhls
2014-07-16 18:44 ` Thomas Petazzoni
2014-07-15 19:19 ` [Buildroot] [PATCH v14 07/20] libva-intel-driver: " Bernd Kuhls
2014-07-16 18:44 ` Thomas Petazzoni
2014-07-18 22:43 ` Thomas Petazzoni
2014-07-15 19:19 ` [Buildroot] [PATCH v14 08/20] ffmpeg: Add libva support Bernd Kuhls
2014-07-16 18:44 ` Thomas Petazzoni
2014-07-15 19:19 ` [Buildroot] [PATCH v14 09/20] libglu: new package Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 10/20] sdl: Add new dependency libglu for opengl support Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 11/20] libglew: new package Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 12/20] xdriver_xf86-video-intel: Bump version to 2.99.911 Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 13/20] xbmc: Add missing egl-related cflags Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 14/20] xbmc: Allow compilation with uClibc Bernd Kuhls
2014-07-19 13:11 ` Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 15/20] xbmc: Add alsa support Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 16/20] xbmc: Add lame support Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 17/20] xbmc: Fix TexturePacker compile Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 18/20] xbmc: Add X.org/OpenGL support Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 19/20] xbmc: Add option for Goom screensaver Bernd Kuhls
2014-07-15 19:19 ` [Buildroot] [PATCH v14 20/20] xbmc: Add VA-API support Bernd Kuhls
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140716204648.066145c2@free-electrons.com \
--to=thomas.petazzoni@free-electrons.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox