From: Will Wagner <will_wagner@carallon.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 15/16] xserver_xorg-server: bump version, improve option support
Date: Wed, 14 Apr 2010 12:50:28 +0100 [thread overview]
Message-ID: <4BC5AC04.90408@carallon.com> (raw)
In-Reply-To: <87vdc1lnbs.fsf@macbook.be.48ers.dk>
On 08/04/2010 21:08, Peter Korsgaard wrote:
>>>>>> "Will" == Will Wagner<will_wagner@carallon.com> writes:
>>>>>>
> Hi,
>
> Will> Later version of xserver no longer need configure hack to say where
> Will> mesa3d is located.
>
> Thanks, but ..
>
> Will> --- a/package/x11r7/xserver_xorg-server/Config.in
> Will> +++ b/package/x11r7/xserver_xorg-server/Config.in
> Will> @@ -1,23 +1,26 @@
> Will> config BR2_PACKAGE_XSERVER_XORG_SERVER
> Will> bool "xorg-server"
> Will> - select BR2_PACKAGE_XLIB_LIBXFONT
> Will> select BR2_PACKAGE_LIBDRM
> Will> + select BR2_PACKAGE_MCOOKIE
> Will> + select BR2_PACKAGE_MESA3D if BR2_PACKAGE_XSERVER_xorg
> Will> select BR2_PACKAGE_OPENSSL
> Will> - select BR2_PACKAGE_XPROTO_COMPOSITEPROTO
> Will> - select BR2_PACKAGE_XPROTO_DAMAGEPROTO
> Will> - select BR2_PACKAGE_XPROTO_FIXESPROTO
> Will> - select BR2_PACKAGE_XPROTO_GLPROTO
> Will> - select BR2_PACKAGE_XPROTO_KBPROTO
> Will> - select BR2_PACKAGE_XPROTO_RANDRPROTO
>
> Will> @@ -38,6 +38,7 @@ XSERVER_XORG_SERVER_DEPENDENCIES = \
> Will> xproto_bigreqsproto \
> Will> xproto_compositeproto \
> Will> xproto_damageproto \
> Will> + xproto_dri2proto \
> Will> xproto_evieext \
> Will> xproto_fixesproto \
> Will> xproto_fontsproto \
>
> Why are you removing these selects if they are still Makefile
> dependencies?
>
As I said previously, no dependencies are removed, there are just so
many I have reordered them alphabetically. Also worth noting that this
patch has the dependacy fix for libpciaccess that Paulis posted.
> Will> -config BR2_PACKAGE_XSERVER_XORG_SERVER_BUILTIN_FONTS
> Will> - bool "Use Builtin Fonts"
> Will> - depends on BR2_PACKAGE_XSERVER_XORG_SERVER
> Will> - help
> Will> - Enable/Use Builtin fonts.
>
> Is this gone? Should we select a font or 2 then so the user doesn't end
> up with a broken system?
>
This option has gone from xserver.
The package font-misc-misc gets selected, so you will always have a font.
>
> Will> ifeq ($(BR2_PACKAGE_FREETYPE),y)
> Will> XSERVER_XORG_SERVER_DEPENDENCIES += freetype
> Will> -XSERVER_XORG_SERVER_CONF_OPT += --enable-freetype
>
> Is this option gone? Does it still work to build without freetype?
>
>
This option has gone from xserver.
If you selected xserver then freetype is selected for you by a number of
packages (xlib_libXfont, xlib_libXft, fontconfig... ) so you can not
select this without freetype.
Does that answer your queries? Can this get applied?
next prev parent reply other threads:[~2010-04-14 11:50 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-01 12:46 [Buildroot] [PATCH 01/16] libdrm: bump version to 2.4.19 Will Wagner
2010-04-01 12:46 ` [Buildroot] [PATCH 02/16] pixman: bump version Will Wagner
2010-04-01 12:54 ` Lionel Landwerlin
2010-04-08 19:36 ` Peter Korsgaard
2010-04-08 19:36 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 03/16] mesa3d: bump version and convert to autotools Will Wagner
2010-04-08 19:38 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 04/16] correct name of xapp_xinput.mk Will Wagner
2010-04-08 19:42 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 05/16] xlib_libXau: remove duplicate dependancies Will Wagner
2010-04-01 18:09 ` Thomas Petazzoni
2010-04-08 19:43 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 06/16] pthread-stubs: bump version Will Wagner
2010-04-08 19:44 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 07/16] xproto_dri2proto: " Will Wagner
2010-04-08 19:47 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 08/16] xproto_fontcacheproto: " Will Wagner
2010-04-08 19:50 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 09/16] xproto_xf86miscproto: " Will Wagner
2010-04-08 19:51 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 10/16] xlib_libpciaccess: " Will Wagner
2010-04-08 19:59 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 11/16] xlib_libXfontcache: " Will Wagner
2010-04-08 19:58 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 12/16] xkeyboard-config: " Will Wagner
2010-04-08 19:59 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 13/16] xproto_evieext: " Will Wagner
2010-04-08 20:01 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 14/16] xlib_libXxf86misc: " Will Wagner
2010-04-08 20:02 ` Peter Korsgaard
2010-04-01 12:46 ` [Buildroot] [PATCH 15/16] xserver_xorg-server: bump version, improve option support Will Wagner
2010-04-08 20:08 ` Peter Korsgaard
2010-04-08 22:01 ` Will Wagner
2010-04-14 11:50 ` Will Wagner [this message]
2010-04-14 13:00 ` Paulius Zaleckas
2010-04-14 13:09 ` Paulius Zaleckas
2010-04-14 13:52 ` Will Wagner
2010-04-01 12:46 ` [Buildroot] [PATCH 16/16] xdriver_xf86-video-intel: bump version Signed-off-by: Will Wagner <will_wagner@carallon.com> Will Wagner
2010-04-08 20:11 ` Peter Korsgaard
2010-04-01 12:51 ` [Buildroot] [PATCH 01/16] libdrm: bump version to 2.4.19 Will Wagner
2010-04-01 19:08 ` Paulius Zaleckas
2010-04-01 21:12 ` Thomas Petazzoni
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=4BC5AC04.90408@carallon.com \
--to=will_wagner@carallon.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