Pango-1.17.3 released [unstable]

2007-06-18 Thread Behdad Esfahbod
Pango-1.17.1 is now available for download at: http://download.gnome.org/sources/pango/1.17/ or ftp://ftp.gtk.org/pub/pango/1.17 e27c59d04bcb7bd92bacc9c700389266 pango-1.17.3.tar.bz2 6fd8ff063a8c31c0df27ac2e55c19ee2 pango-1.17.3.tar.gz This is the a development release in a series leading

Re: GTK+ 2.11.3 released

2007-06-18 Thread Hubert Figuiere
Elijah Newren wrote: > Do all embedded platforms have a C++ compiler? You tell me. So far I don't see any that do not. Remember that C++ is widely in use outside of Gnome. > And are there really > that many C++-specific keywords? No. But again why reinventing the wheel? Note: I wanted to prov

Re: GTK+ 2.11.3 released

2007-06-18 Thread Behdad Esfahbod
On Mon, 2007-06-18 at 21:08 -0400, Elijah Newren wrote: > On 6/18/07, Hubert Figuiere <[EMAIL PROTECTED]> wrote: > > > > > A simpler and faster solution would just be to scan all public headers > > > for known C++ keywords, it would also avoid the (build time) dependency > > > of a C++ compiler. >

Re: GTK+ 2.11.3 released

2007-06-18 Thread Elijah Newren
On 6/18/07, Hubert Figuiere <[EMAIL PROTECTED]> wrote: > > > A simpler and faster solution would just be to scan all public headers > > for known C++ keywords, it would also avoid the (build time) dependency > > of a C++ compiler. > > I don't agree with that one. It is much simplier to add a C++ co

Re: GtkBuilder Public API - Last call

2007-06-18 Thread Torsten Schoenfeld
On Mon, 2007-06-18 at 09:55 -0300, Johan Dahlin wrote: > >> void (* set_property)(GtkBuildable *buildable, > >> GtkBuilder*builder, > >> const gchar *name, > >>

GLib 2.13.5 released

2007-06-18 Thread Matthias Clasen
GLib 2.13.5 is now available for download at: ftp://ftp.gtk.org/pub/gtk/2.13/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.13/ glib-2.13.5.tar.bz2 md5sum: 4f895af6d4f0c554b279437209f464ff glib-2.13.5.tar.gz md5sum: 7ecc80535a70f23bd3611b1036044fca This is another development release lead

Re: GtkBuilder Public API - Last call

2007-06-18 Thread Alberto Ruiz
2007/6/18, Johan Dahlin <[EMAIL PROTECTED]>: Torsten Schoenfeld wrote: > On Tue, 2007-06-12 at 18:26 -0300, Johan Dahlin wrote: > >> gtkbuildable.h >> == >> >> GtkBuildable is an interface which is implementable to allow a GObject >> subclass to customize the behavior of how it is go

Re: GTK+ 2.11.3 released

2007-06-18 Thread Hubert Figuiere
> A simpler and faster solution would just be to scan all public headers > for known C++ keywords, it would also avoid the (build time) dependency > of a C++ compiler. I don't agree with that one. It is much simplier to add a C++ compile test. Afterall, which platform does not have a C++ compiler

Re: GTK+ 2.11.3 released

2007-06-18 Thread Johan Dahlin
Hubert Figuiere wrote: > Murray Cumming wrote: > In the new header file of gtkbuilder, it use typename as parameter's name, typename is a keyword of C++, so when compile C++ application such as gtkmm, thunderbird, it will cause compile error, so it is better to change it to ano

Re: GTK+ 2.11.3 released

2007-06-18 Thread Hubert Figuiere
Murray Cumming wrote: >>> In the new header file of gtkbuilder, it use typename as parameter's >>> name, typename is a keyword of C++, so when compile C++ application such >>> as gtkmm, thunderbird, it will cause compile error, so it is better to >>> change it to another name like gtypename. >> Th

Re: GTK+ 2.11.3 released

2007-06-18 Thread Matthias Clasen
On 6/18/07, Murray Cumming <[EMAIL PROTECTED]> wrote: > On Sun, 2007-06-17 at 20:22 -0400, Matthias Clasen wrote: > > On 6/17/07, younker <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > > > In the new header file of gtkbuilder, it use typename as parameter's > > > name, typename is a keyword of C++, s

Re: GtkBuilder Public API - Last call

2007-06-18 Thread Johan Dahlin
Torsten Schoenfeld wrote: > On Tue, 2007-06-12 at 18:26 -0300, Johan Dahlin wrote: > >> gtkbuildable.h >> == >> >> GtkBuildable is an interface which is implementable to allow a GObject >> subclass to customize the behavior of how it is going to be built. > > Some of the GtkBuildable

Re: Using static types from a GTypeModule

2007-06-18 Thread Tim Janik
On Mon, 18 Jun 2007, Alberto Mardegan wrote: > Still, the point applies to other libraries, such as DBus-glib (it uses > g_boxed_type_register_static()) or any library which registers any static > GType: the application cannot know what libraries the plugins are linked to, > and in most cases e

Re: Using static types from a GTypeModule

2007-06-18 Thread Alberto Mardegan
ext Tim Janik wrote: > in your case, it sounds like your plugin loads the gtk library > on demand, so it gets unloaded once your plugin is unloaded. > if that is the case, fix your code so Gtk+ never gets unloaded > (usually it's best to have the application link against Gtk+, > so dynamic plugins

Re: Using static types from a GTypeModule

2007-06-18 Thread Tim Janik
On Mon, 18 Jun 2007, Alberto Mardegan wrote: > Hello everybody, > I have an application using some plugins which define some dynamic > types by means of the GTypeModule API. So far, so good. > But if one of this plugins is dynamically linked to a library (say, > Gtk+) that registers static types

Re: GTK+ 2.11.3 released

2007-06-18 Thread Murray Cumming
On Sun, 2007-06-17 at 20:22 -0400, Matthias Clasen wrote: > On 6/17/07, younker <[EMAIL PROTECTED]> wrote: > > Hi, > > > > In the new header file of gtkbuilder, it use typename as parameter's > > name, typename is a keyword of C++, so when compile C++ application such > > as gtkmm, thunderbird, it

Using static types from a GTypeModule

2007-06-18 Thread Alberto Mardegan
Hello everybody, I have an application using some plugins which define some dynamic types by means of the GTypeModule API. So far, so good. But if one of this plugins is dynamically linked to a library (say, Gtk+) that registers static types, then the plugin cannot be unloaded and loaded agai