Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] wine: Depend on shared libraries
@ 2018-03-15 19:45 André Hentschel
  2018-03-15 20:24 ` Baruch Siach
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: André Hentschel @ 2018-03-15 19:45 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
---
 package/wine/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/wine/Config.in b/package/wine/Config.in
index 627a9a7..52d7d2e 100644
--- a/package/wine/Config.in
+++ b/package/wine/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_WINE
 	bool "wine"
+	depends on !BR2_STATIC_LIBS
 	# Wine only builds on certain architectures
 	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
 	           BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] wine: Depend on shared libraries
  2018-03-15 19:45 [Buildroot] [PATCH] wine: Depend on shared libraries André Hentschel
@ 2018-03-15 20:24 ` Baruch Siach
  2018-03-15 21:16 ` Thomas Petazzoni
  2018-03-31 20:43 ` Thomas Petazzoni
  2 siblings, 0 replies; 6+ messages in thread
From: Baruch Siach @ 2018-03-15 20:24 UTC (permalink / raw)
  To: buildroot

Hi Andr?,

On Thu, Mar 15, 2018 at 08:45:54PM +0100, Andr? Hentschel wrote:
> Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
> ---
>  package/wine/Config.in | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/wine/Config.in b/package/wine/Config.in
> index 627a9a7..52d7d2e 100644
> --- a/package/wine/Config.in
> +++ b/package/wine/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_WINE
>  	bool "wine"
> +	depends on !BR2_STATIC_LIBS

A dependency comment would be nice.

baruch

>  	# Wine only builds on certain architectures
>  	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" || \
>  	           BR2_HOSTARCH = "powerpc" || BR2_HOSTARCH = "arm" || \

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] wine: Depend on shared libraries
  2018-03-15 19:45 [Buildroot] [PATCH] wine: Depend on shared libraries André Hentschel
  2018-03-15 20:24 ` Baruch Siach
@ 2018-03-15 21:16 ` Thomas Petazzoni
  2018-03-25 21:21   ` Thomas Petazzoni
  2018-03-31 20:43 ` Thomas Petazzoni
  2 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2018-03-15 21:16 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 15 Mar 2018 20:45:54 +0100, Andr? Hentschel wrote:
> Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
> ---
>  package/wine/Config.in | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/wine/Config.in b/package/wine/Config.in
> index 627a9a7..52d7d2e 100644
> --- a/package/wine/Config.in
> +++ b/package/wine/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_WINE
>  	bool "wine"
> +	depends on !BR2_STATIC_LIBS

It would be good to explain in the commit log why you're adding this,
and perhaps add a comment on top of this line to explain why we have
this dependency.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
http://bootlin.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] wine: Depend on shared libraries
  2018-03-15 21:16 ` Thomas Petazzoni
@ 2018-03-25 21:21   ` Thomas Petazzoni
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2018-03-25 21:21 UTC (permalink / raw)
  To: buildroot

Hello Andr?,

On Thu, 15 Mar 2018 22:16:29 +0100, Thomas Petazzoni wrote:

> On Thu, 15 Mar 2018 20:45:54 +0100, Andr? Hentschel wrote:
> > Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
> > ---
> >  package/wine/Config.in | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/package/wine/Config.in b/package/wine/Config.in
> > index 627a9a7..52d7d2e 100644
> > --- a/package/wine/Config.in
> > +++ b/package/wine/Config.in
> > @@ -1,5 +1,6 @@
> >  config BR2_PACKAGE_WINE
> >  	bool "wine"
> > +	depends on !BR2_STATIC_LIBS  
> 
> It would be good to explain in the commit log why you're adding this,
> and perhaps add a comment on top of this line to explain why we have
> this dependency.

Ping ? :-)

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] wine: Depend on shared libraries
  2018-03-15 19:45 [Buildroot] [PATCH] wine: Depend on shared libraries André Hentschel
  2018-03-15 20:24 ` Baruch Siach
  2018-03-15 21:16 ` Thomas Petazzoni
@ 2018-03-31 20:43 ` Thomas Petazzoni
  2018-04-03 16:57   ` André Hentschel
  2 siblings, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2018-03-31 20:43 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 15 Mar 2018 20:45:54 +0100, Andr? Hentschel wrote:
> Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>

I did a test build, and indeed discovered that wine tries to
unconditionally build a shared library.

I've added a Config.in comment, which required adding a
BR2_PACKAGE_WINE_ARCH_SUPPORTS hidden boolean, and extended the commit
log significantly to explain why we do this change.

And then I've applied.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] wine: Depend on shared libraries
  2018-03-31 20:43 ` Thomas Petazzoni
@ 2018-04-03 16:57   ` André Hentschel
  0 siblings, 0 replies; 6+ messages in thread
From: André Hentschel @ 2018-04-03 16:57 UTC (permalink / raw)
  To: buildroot

Am 31.03.2018 um 22:43 schrieb Thomas Petazzoni:
> Hello,
> 
> On Thu, 15 Mar 2018 20:45:54 +0100, Andr? Hentschel wrote:
>> Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
> 
> I did a test build, and indeed discovered that wine tries to
> unconditionally build a shared library.
> 
> I've added a Config.in comment, which required adding a
> BR2_PACKAGE_WINE_ARCH_SUPPORTS hidden boolean, and extended the commit
> log significantly to explain why we do this change.
> 
> And then I've applied.
> 
> Thanks,
> 
> Thomas
> 

Thanks for that! Had no time for it yet

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-04-03 16:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-15 19:45 [Buildroot] [PATCH] wine: Depend on shared libraries André Hentschel
2018-03-15 20:24 ` Baruch Siach
2018-03-15 21:16 ` Thomas Petazzoni
2018-03-25 21:21   ` Thomas Petazzoni
2018-03-31 20:43 ` Thomas Petazzoni
2018-04-03 16:57   ` André Hentschel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox