Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libglib2: bump version number to 2.22
@ 2009-11-24 14:32 Daniel Mack
  2009-11-24 18:55 ` Peter Korsgaard
  2009-12-26 16:00 ` [Buildroot] [PATCH] libglib2: bump to 2.22.3 Lionel Landwerlin
  0 siblings, 2 replies; 4+ messages in thread
From: Daniel Mack @ 2009-11-24 14:32 UTC (permalink / raw)
  To: buildroot

When building gvfs, I encountered the following error:

  checking for GLIB... configure: error: Package requirements (glib-2.0 >= 2.21.2 gthread-2.0 gobject-2.0 gmodule-no-export-2.0 gio-unix-2.0 gio-2.0 ) were not met:
  Requested 'glib-2.0 >= 2.21.2' but version of GLib is 2.20.5

Signed-off-by: Daniel Mack <daniel@caiaq.de>
---
 package/libglib2/libglib2.mk |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
index 7100800..c7d69f3 100644
--- a/package/libglib2/libglib2.mk
+++ b/package/libglib2/libglib2.mk
@@ -3,8 +3,8 @@
 # libglib2
 #
 #############################################################
-LIBGLIB2_VERSION_MAJOR = 2.20
-LIBGLIB2_VERSION_MINOR = 5
+LIBGLIB2_VERSION_MAJOR = 2.22
+LIBGLIB2_VERSION_MINOR = 2
 LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).$(LIBGLIB2_VERSION_MINOR)
 LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.bz2
 LIBGLIB2_SITE = http://ftp.gtk.org/pub/glib/$(LIBGLIB2_VERSION_MAJOR)
-- 
1.6.5.2

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

* [Buildroot] [PATCH] libglib2: bump version number to 2.22
  2009-11-24 14:32 [Buildroot] [PATCH] libglib2: bump version number to 2.22 Daniel Mack
@ 2009-11-24 18:55 ` Peter Korsgaard
  2009-12-26 16:00 ` [Buildroot] [PATCH] libglib2: bump to 2.22.3 Lionel Landwerlin
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2009-11-24 18:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Daniel" == Daniel Mack <daniel@caiaq.de> writes:

 Daniel> When building gvfs, I encountered the following error:
 Daniel>   checking for GLIB... configure: error: Package requirements (glib-2.0 >= 2.21.2 gthread-2.0 gobject-2.0 gmodule-no-export-2.0 gio-unix-2.0 gio-2.0 ) were not met:
 Daniel>   Requested 'glib-2.0 >= 2.21.2' but version of GLib is 2.20.5

Thanks, but the new libglib2 version needs ipv6 support to build and
might cause other problems, so I'm selecting the safe option and simply
revert the gvfs update for now.

We can do the update after 2009.11.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] libglib2: bump to 2.22.3
  2009-11-24 14:32 [Buildroot] [PATCH] libglib2: bump version number to 2.22 Daniel Mack
  2009-11-24 18:55 ` Peter Korsgaard
@ 2009-12-26 16:00 ` Lionel Landwerlin
  2010-01-28 16:08   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Lionel Landwerlin @ 2009-12-26 16:00 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
---
 package/libglib2/libglib2.mk |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libglib2/libglib2.mk b/package/libglib2/libglib2.mk
index 04e3f2d..5f6ce05 100644
--- a/package/libglib2/libglib2.mk
+++ b/package/libglib2/libglib2.mk
@@ -3,8 +3,8 @@
 # libglib2
 #
 #############################################################
-LIBGLIB2_VERSION_MAJOR = 2.20
-LIBGLIB2_VERSION_MINOR = 5
+LIBGLIB2_VERSION_MAJOR = 2.22
+LIBGLIB2_VERSION_MINOR = 3
 LIBGLIB2_VERSION = $(LIBGLIB2_VERSION_MAJOR).$(LIBGLIB2_VERSION_MINOR)
 LIBGLIB2_SOURCE = glib-$(LIBGLIB2_VERSION).tar.bz2
 LIBGLIB2_SITE = http://ftp.gtk.org/pub/glib/$(LIBGLIB2_VERSION_MAJOR)
-- 
1.6.5.7

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

* [Buildroot] [PATCH] libglib2: bump to 2.22.3
  2009-12-26 16:00 ` [Buildroot] [PATCH] libglib2: bump to 2.22.3 Lionel Landwerlin
@ 2010-01-28 16:08   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2010-01-28 16:08 UTC (permalink / raw)
  To: buildroot

>>>>> "Lionel" == Lionel Landwerlin <llandwerlin@gmail.com> writes:

 Lionel> Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>

Committed, thanks. I updated it to 2.22.4 and fixed the build when ipv6
is disabled.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2010-01-28 16:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24 14:32 [Buildroot] [PATCH] libglib2: bump version number to 2.22 Daniel Mack
2009-11-24 18:55 ` Peter Korsgaard
2009-12-26 16:00 ` [Buildroot] [PATCH] libglib2: bump to 2.22.3 Lionel Landwerlin
2010-01-28 16:08   ` Peter Korsgaard

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