Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] spice-protocol: bump to version 0.12.6
@ 2013-10-10  3:01 Axel Lin
  2013-10-10  3:06 ` [Buildroot] [PATCH 2/2] spice: bump to version 0.12.4 Axel Lin
  0 siblings, 1 reply; 4+ messages in thread
From: Axel Lin @ 2013-10-10  3:01 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 package/spice-protocol/spice-protocol.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/spice-protocol/spice-protocol.mk b/package/spice-protocol/spice-protocol.mk
index 62a028d..fda87b6 100644
--- a/package/spice-protocol/spice-protocol.mk
+++ b/package/spice-protocol/spice-protocol.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SPICE_PROTOCOL_VERSION         = 0.12.2
+SPICE_PROTOCOL_VERSION         = 0.12.6
 SPICE_PROTOCOL_SOURCE          = spice-protocol-$(SPICE_PROTOCOL_VERSION).tar.bz2
 SPICE_PROTOCOL_SITE            = http://www.spice-space.org/download/releases/
 SPICE_PROTOCOL_LICENSE         = BSD-3c
-- 
1.8.1.2

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

* [Buildroot] [PATCH 2/2] spice: bump to version 0.12.4
  2013-10-10  3:01 [Buildroot] [PATCH 1/2] spice-protocol: bump to version 0.12.6 Axel Lin
@ 2013-10-10  3:06 ` Axel Lin
  2013-10-10  3:41   ` Baruch Siach
  0 siblings, 1 reply; 4+ messages in thread
From: Axel Lin @ 2013-10-10  3:06 UTC (permalink / raw)
  To: buildroot

According to the ChangeLog, spice needs glib2 since 0.12.2.
Thus add libglib2 dependency to fix build error if !BR2_PACKAGE_LIBGLIB2.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 package/spice/Config.in | 1 +
 package/spice/spice.mk  | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/spice/Config.in b/package/spice/Config.in
index cd91833..5b28e68 100644
--- a/package/spice/Config.in
+++ b/package/spice/Config.in
@@ -9,6 +9,7 @@ config BR2_PACKAGE_SPICE
 	select BR2_PACKAGE_ALSA_LIB
 	select BR2_PACKAGE_CELT051
 	select BR2_PACKAGE_JPEG
+	select BR2_PACKAGE_LIBGLIB2
 	select BR2_PACKAGE_OPENSSL
 	select BR2_PACKAGE_PIXMAN
 	select BR2_PACKAGE_PYTHON_PYPARSING
diff --git a/package/spice/spice.mk b/package/spice/spice.mk
index a016da6..d44e3bf 100644
--- a/package/spice/spice.mk
+++ b/package/spice/spice.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SPICE_VERSION         = 0.12.0
+SPICE_VERSION         = 0.12.4
 SPICE_SOURCE          = spice-$(SPICE_VERSION).tar.bz2
 SPICE_SITE            = http://www.spice-space.org/download/releases/
 SPICE_LICENSE         = LGPLv2.1+
@@ -14,6 +14,7 @@ SPICE_DEPENDENCIES    = \
     alsa-lib            \
     celt051             \
     jpeg                \
+    libglib2		\
     openssl             \
     pixman              \
     python-pyparsing    \
-- 
1.8.1.2

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

* [Buildroot] [PATCH 2/2] spice: bump to version 0.12.4
  2013-10-10  3:06 ` [Buildroot] [PATCH 2/2] spice: bump to version 0.12.4 Axel Lin
@ 2013-10-10  3:41   ` Baruch Siach
  2013-10-10  5:21     ` Axel Lin
  0 siblings, 1 reply; 4+ messages in thread
From: Baruch Siach @ 2013-10-10  3:41 UTC (permalink / raw)
  To: buildroot

Hi Axel,

On Thu, Oct 10, 2013 at 11:06:23AM +0800, Axel Lin wrote:
> According to the ChangeLog, spice needs glib2 since 0.12.2.
> Thus add libglib2 dependency to fix build error if !BR2_PACKAGE_LIBGLIB2.
> 
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
>  package/spice/Config.in | 1 +
>  package/spice/spice.mk  | 3 ++-
>  2 files changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/package/spice/Config.in b/package/spice/Config.in
> index cd91833..5b28e68 100644
> --- a/package/spice/Config.in
> +++ b/package/spice/Config.in
> @@ -9,6 +9,7 @@ config BR2_PACKAGE_SPICE
>  	select BR2_PACKAGE_ALSA_LIB
>  	select BR2_PACKAGE_CELT051
>  	select BR2_PACKAGE_JPEG
> +	select BR2_PACKAGE_LIBGLIB2
>  	select BR2_PACKAGE_OPENSSL
>  	select BR2_PACKAGE_PIXMAN
>  	select BR2_PACKAGE_PYTHON_PYPARSING

You also need to copy libglib2 dependencies here, specifically, wchar and 
threads.

baruch

> diff --git a/package/spice/spice.mk b/package/spice/spice.mk
> index a016da6..d44e3bf 100644
> --- a/package/spice/spice.mk
> +++ b/package/spice/spice.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -SPICE_VERSION         = 0.12.0
> +SPICE_VERSION         = 0.12.4
>  SPICE_SOURCE          = spice-$(SPICE_VERSION).tar.bz2
>  SPICE_SITE            = http://www.spice-space.org/download/releases/
>  SPICE_LICENSE         = LGPLv2.1+
> @@ -14,6 +14,7 @@ SPICE_DEPENDENCIES    = \
>      alsa-lib            \
>      celt051             \
>      jpeg                \
> +    libglib2		\
>      openssl             \
>      pixman              \
>      python-pyparsing    \

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

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

* [Buildroot] [PATCH 2/2] spice: bump to version 0.12.4
  2013-10-10  3:41   ` Baruch Siach
@ 2013-10-10  5:21     ` Axel Lin
  0 siblings, 0 replies; 4+ messages in thread
From: Axel Lin @ 2013-10-10  5:21 UTC (permalink / raw)
  To: buildroot

2013/10/10 Baruch Siach <baruch@tkos.co.il>:
> Hi Axel,
>
> On Thu, Oct 10, 2013 at 11:06:23AM +0800, Axel Lin wrote:
>> According to the ChangeLog, spice needs glib2 since 0.12.2.
>> Thus add libglib2 dependency to fix build error if !BR2_PACKAGE_LIBGLIB2.
>>
>> Signed-off-by: Axel Lin <axel.lin@ingics.com>
>> ---
>>  package/spice/Config.in | 1 +
>>  package/spice/spice.mk  | 3 ++-
>>  2 files changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/package/spice/Config.in b/package/spice/Config.in
>> index cd91833..5b28e68 100644
>> --- a/package/spice/Config.in
>> +++ b/package/spice/Config.in
>> @@ -9,6 +9,7 @@ config BR2_PACKAGE_SPICE
>>       select BR2_PACKAGE_ALSA_LIB
>>       select BR2_PACKAGE_CELT051
>>       select BR2_PACKAGE_JPEG
>> +     select BR2_PACKAGE_LIBGLIB2
>>       select BR2_PACKAGE_OPENSSL
>>       select BR2_PACKAGE_PIXMAN
>>       select BR2_PACKAGE_PYTHON_PYPARSING
>
> You also need to copy libglib2 dependencies here, specifically, wchar and
> threads.

Hi Baruch,
Thanks for the review.
I also hit a build error when BR2_PACKAGE_SPICE_TUNNEL is enabled.
(I have sent the build fix upstream, I'm waiting for the response from
spice maintainer.)
I'll send a v2 latter.

Regards,
Axel

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

end of thread, other threads:[~2013-10-10  5:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-10  3:01 [Buildroot] [PATCH 1/2] spice-protocol: bump to version 0.12.6 Axel Lin
2013-10-10  3:06 ` [Buildroot] [PATCH 2/2] spice: bump to version 0.12.4 Axel Lin
2013-10-10  3:41   ` Baruch Siach
2013-10-10  5:21     ` Axel Lin

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