* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
@ 2019-12-24 11:23 Michael Trimarchi
2019-12-24 12:45 ` Thomas Petazzoni
0 siblings, 1 reply; 7+ messages in thread
From: Michael Trimarchi @ 2019-12-24 11:23 UTC (permalink / raw)
To: buildroot
The build with BR2_PACKAGE_XORG7 and BR2_PACKAGE_OPENJDK
was failing for missing include of uuid support.
The BR2_PACKAGE_UTIL_LINUX_UUIDD select automatically
BR2_PACKAGE_UTIL_LINUX_LIBUUID but the first one is needed
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---
package/fontconfig/Config.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/fontconfig/Config.in b/package/fontconfig/Config.in
index d274b06350..e92e184119 100644
--- a/package/fontconfig/Config.in
+++ b/package/fontconfig/Config.in
@@ -3,7 +3,7 @@ config BR2_PACKAGE_FONTCONFIG
select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_EXPAT
select BR2_PACKAGE_UTIL_LINUX
- select BR2_PACKAGE_UTIL_LINUX_LIBUUID
+ select BR2_PACKAGE_UTIL_LINUX_UUIDD
help
Fontconfig is a library for configuring and customizing font
access.
--
2.17.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
2019-12-24 11:23 [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency Michael Trimarchi
@ 2019-12-24 12:45 ` Thomas Petazzoni
2019-12-24 12:56 ` Michael Nazzareno Trimarchi
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-12-24 12:45 UTC (permalink / raw)
To: buildroot
Hello Michael,
On Tue, 24 Dec 2019 12:23:30 +0100
Michael Trimarchi <michael@amarulasolutions.com> wrote:
> The build with BR2_PACKAGE_XORG7 and BR2_PACKAGE_OPENJDK
> was failing for missing include of uuid support.
> The BR2_PACKAGE_UTIL_LINUX_UUIDD select automatically
> BR2_PACKAGE_UTIL_LINUX_LIBUUID but the first one is needed
>
> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Thanks for your patch! Could you give some more details about the
configuration that is failing and the exact error you are getting ?
Indeed, fontconfig does not fail to build in the autobuilders, so I'd
like to understand what is the exact issue, and make sure we are doing
the right fix.
Thanks a lot!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
2019-12-24 12:45 ` Thomas Petazzoni
@ 2019-12-24 12:56 ` Michael Nazzareno Trimarchi
2019-12-24 13:36 ` Thomas Petazzoni
0 siblings, 1 reply; 7+ messages in thread
From: Michael Nazzareno Trimarchi @ 2019-12-24 12:56 UTC (permalink / raw)
To: buildroot
Hi Thomas
On Tue, Dec 24, 2019 at 1:45 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Hello Michael,
>
> On Tue, 24 Dec 2019 12:23:30 +0100
> Michael Trimarchi <michael@amarulasolutions.com> wrote:
>
> > The build with BR2_PACKAGE_XORG7 and BR2_PACKAGE_OPENJDK
> > was failing for missing include of uuid support.
> > The BR2_PACKAGE_UTIL_LINUX_UUIDD select automatically
> > BR2_PACKAGE_UTIL_LINUX_LIBUUID but the first one is needed
> >
> > Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
>
> Thanks for your patch! Could you give some more details about the
> configuration that is failing and the exact error you are getting ?
>
> Indeed, fontconfig does not fail to build in the autobuilders, so I'd
> like to understand what is the exact issue, and make sure we are doing
> the right fix.
Give time to build from clean again. I will send you the log
Michael
>
> Thanks a lot!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
--
| Michael Nazzareno Trimarchi Amarula Solutions BV |
| COO - Founder Cruquiuskade 47 |
| +31(0)851119172 Amsterdam 1018 AM NL |
| [`as] http://www.amarulasolutions.com |
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
2019-12-24 12:56 ` Michael Nazzareno Trimarchi
@ 2019-12-24 13:36 ` Thomas Petazzoni
2019-12-24 13:39 ` Michael Nazzareno Trimarchi
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-12-24 13:36 UTC (permalink / raw)
To: buildroot
On Tue, 24 Dec 2019 13:56:37 +0100
Michael Nazzareno Trimarchi <michael@amarulasolutions.com> wrote:
> > Indeed, fontconfig does not fail to build in the autobuilders, so I'd
> > like to understand what is the exact issue, and make sure we are doing
> > the right fix.
>
> Give time to build from clean again. I will send you the log
Could you also share the .config, or even better, a minimal
configuration that exhibits the issue ?
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
2019-12-24 13:36 ` Thomas Petazzoni
@ 2019-12-24 13:39 ` Michael Nazzareno Trimarchi
2019-12-24 14:08 ` Thomas Petazzoni
0 siblings, 1 reply; 7+ messages in thread
From: Michael Nazzareno Trimarchi @ 2019-12-24 13:39 UTC (permalink / raw)
To: buildroot
Hi
On Tue, Dec 24, 2019 at 2:36 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> On Tue, 24 Dec 2019 13:56:37 +0100
> Michael Nazzareno Trimarchi <michael@amarulasolutions.com> wrote:
>
> > > Indeed, fontconfig does not fail to build in the autobuilders, so I'd
> > > like to understand what is the exact issue, and make sure we are doing
> > > the right fix.
> >
> > Give time to build from clean again. I will send you the log
>
> Could you also share the .config, or even better, a minimal
> configuration that exhibits the issue ?
I created the config in two steps. Now I'm thinking that was only
happen after I have added the XORG
and OPENJDK. I have added this two components without re-build from
scratch. Basically libconfig was looking for uuid and fail
to find in the filesystem. I was thinking looking at the config.in
that the right thing to do is adding
that one instead of LIBUIID. I'm checking now
Michael
>
> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
--
| Michael Nazzareno Trimarchi Amarula Solutions BV |
| COO - Founder Cruquiuskade 47 |
| +31(0)851119172 Amsterdam 1018 AM NL |
| [`as] http://www.amarulasolutions.com |
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
2019-12-24 13:39 ` Michael Nazzareno Trimarchi
@ 2019-12-24 14:08 ` Thomas Petazzoni
2019-12-24 14:12 ` Michael Nazzareno Trimarchi
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2019-12-24 14:08 UTC (permalink / raw)
To: buildroot
On Tue, 24 Dec 2019 14:39:12 +0100
Michael Nazzareno Trimarchi <michael@amarulasolutions.com> wrote:
> I created the config in two steps. Now I'm thinking that was only
> happen after I have added the XORG
> and OPENJDK. I have added this two components without re-build from
> scratch. Basically libconfig was looking for uuid and fail
> to find in the filesystem. I was thinking looking at the config.in
> that the right thing to do is adding
> that one instead of LIBUIID. I'm checking now
This feels like you did some partial build: util-linux was first build
with libuuid, and then you enabled something that needed libuuid,
without doing a full rebuild, or at least without forcing the rebuild
of util-linux.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency
2019-12-24 14:08 ` Thomas Petazzoni
@ 2019-12-24 14:12 ` Michael Nazzareno Trimarchi
0 siblings, 0 replies; 7+ messages in thread
From: Michael Nazzareno Trimarchi @ 2019-12-24 14:12 UTC (permalink / raw)
To: buildroot
Hi Thomas
On Tue, Dec 24, 2019 at 3:08 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> On Tue, 24 Dec 2019 14:39:12 +0100
> Michael Nazzareno Trimarchi <michael@amarulasolutions.com> wrote:
>
> > I created the config in two steps. Now I'm thinking that was only
> > happen after I have added the XORG
> > and OPENJDK. I have added this two components without re-build from
> > scratch. Basically libconfig was looking for uuid and fail
> > to find in the filesystem. I was thinking looking at the config.in
> > that the right thing to do is adding
> > that one instead of LIBUIID. I'm checking now
>
> This feels like you did some partial build: util-linux was first build
> with libuuid, and then you enabled something that needed libuuid,
> without doing a full rebuild, or at least without forcing the rebuild
> of util-linux.
Well. I have done in this way, but you are right. It works fine.
Michael
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
--
| Michael Nazzareno Trimarchi Amarula Solutions BV |
| COO - Founder Cruquiuskade 47 |
| +31(0)851119172 Amsterdam 1018 AM NL |
| [`as] http://www.amarulasolutions.com |
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-12-24 14:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-24 11:23 [Buildroot] [PATCH] package/fontconfig: Fix UUIDD dependency Michael Trimarchi
2019-12-24 12:45 ` Thomas Petazzoni
2019-12-24 12:56 ` Michael Nazzareno Trimarchi
2019-12-24 13:36 ` Thomas Petazzoni
2019-12-24 13:39 ` Michael Nazzareno Trimarchi
2019-12-24 14:08 ` Thomas Petazzoni
2019-12-24 14:12 ` Michael Nazzareno Trimarchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox