Re: Antwort: Re: SIGTRAP when sending signal on closing dbus connection

2015-06-16 Thread Simon McVittie
On 16/06/15 12:45, jean-pierre.bog...@continental-corporation.com wrote: For sure it is a bad idea to use the object, if the timing is like this: 1. g_object_unref(conn); 2. g_dbus_connection_emit_signal(conn); = Object is already freed. User deserves the crash ;) Sure. But what is, if

Re: Outdated win32 bundle

2015-06-16 Thread Paul Davis
On Tue, Jun 16, 2015 at 11:26 AM, LRN lrn1...@gmail.com wrote: On 11.06.2015 15:44, anatoly techtonik wrote: Can GTK be cross-compiled for Windows? It should be possible. Just for the record, the Ardour project does automated builds of the entire GTK(2) stack for Windows by

Re: Misconduct of GTK+/glib Bugtracker Admins

2015-06-16 Thread Wouter Verhelst
Dude, seriously. There is no conspiracy. Red Hat is not an evil empire. If you have a problem, spit it out already. Otherwise, ranting about how Red Hat is taking over the world!!1! is not doing anyone a favour. You've made your point. It would appear that people are not really in agreement with

Misconduct of GTK+/glib Bugtracker Admins

2015-06-16 Thread IgnorantGuru
Greetings. Not sure where is the best place to bring this - input welcome - but this email is an official complaint against the conduct of: Matthias Clasen Emmanuele Bassi André Klapper Specially, their conduct administering the GTK+ bugtracker in the case of bug

Re: Misconduct of GTK+/glib Bugtracker Admins

2015-06-16 Thread Gergely Polonkai
Hello, I’m sorry to say that, but I find your name very appropriate in this case: *Ignorant* Guru. You seem to ignore every statement that says something else that you do. GNOME is not a Red Hat product. It is a GNOME Foundation product, if you want to put it anywhere. It is led by several

Re: Outdated win32 bundle

2015-06-16 Thread anatoly techtonik
On Mon, Jun 8, 2015 at 9:22 PM, Emmanuele Bassi eba...@gmail.com wrote: The current stance of everyone involved in the Windows backend for GLib and GTK+ is to stop advertising binary builds for Windows — as we don't do that for any other platform, and nobody sticks around long enough to keep

Re: Outdated win32 bundle

2015-06-16 Thread John Ralls
On Jun 11, 2015, at 6:22 AM, Emmanuele Bassi eba...@gmail.com wrote: Hey; On 11 June 2015 at 14:19, Ignacio Casal Quinteiro nacho.r...@gmail.com wrote: For the record following Emmanuele mail, you can find an example on how to create an installer for your application using msys2 here:

Re: Misconduct of GTK+/glib Bugtracker Admins

2015-06-16 Thread Gergely Polonkai
Hello, I didn’t really want you to believe me, I just shared my experiences, that’s all. I got help several times from these “Red Hat employees” before, although I wouldn’t say it came in an instant; I must confess that sometimes I bugged them or IRC before they answered my calls. The keywords

Re: Outdated win32 bundle

2015-06-16 Thread LRN
On 11.06.2015 15:44, anatoly techtonik wrote: On Mon, Jun 8, 2015 at 9:22 PM, Emmanuele Bassi wrote: Developers using the G* core platform libraries on Windows are strongly encouraged to use the MSYS2 distribution: https://msys2.github.io/ Like Git? Ship 200Mb of additional value on top?

Re: Misconduct of GTK+/glib Bugtracker Admins

2015-06-16 Thread Lucas Levrel
Le 7 juin 2015, IgnorantGuru a écrit : As for who agrees with me and who doesn't, outside of fanboy lists and such, most people I encounter are QUITE unhappy with GTK 3, and often ask why I use it at all. Indeed, can't you go back and use GTK 2 instead ? (Maybe does this bug exist in GTK2

Re: Outdated win32 bundle

2015-06-16 Thread Andoni Morales
Hi all, In GStreamer we have been using, for a couple a years now, a build system named cerbero to build and package the GStreamer SDK for Linux, Windows, OS X, Android and iOS (http://gstreamer.freedesktop.org/download/) and we are also using it for continuous integration with Jenkins

Re: Outdated win32 bundle

2015-06-16 Thread anatoly techtonik
On Fri, Jun 12, 2015 at 2:42 PM, Emmanuele Bassi eba...@gmail.com wrote: On 12 June 2015 at 12:27, anatoly techtonik techto...@gmail.com wrote: On Thu, Jun 11, 2015 at 4:15 PM, Emmanuele Bassi eba...@gmail.com wrote: Currently, we advertise ad hoc Windows builds on gtk.org; those are out of

Re: Outdated win32 bundle

2015-06-16 Thread anatoly techtonik
On Thu, Jun 11, 2015 at 4:15 PM, Emmanuele Bassi eba...@gmail.com wrote: Currently, we advertise ad hoc Windows builds on gtk.org; those are out of date, and lack many of the bug fixes that went into GTK. I see two problems here: - [ ] http://www.gtk.org/download/win32.php - doesn't say this

Re: SIGTRAP when sending signal on closing dbus connection

2015-06-16 Thread Simon McVittie
On 16/06/15 11:28, Ignacio Casal Quinteiro wrote: you should not be using the same object from different threads, instead you should probably idle to the main thread and to the signal from there. In the specific case of GDBus it is actually OK to use the same GDBusConnection from different

Using DnD from a GtkImage

2015-06-16 Thread Wouter Verhelst
Hi, I've been trying to set up an application so that a user can perform a drag and drop operation by dragging from a GtkImage and dropping it to an external application, but I seem to be having no luck. I currently have the following: void setup_dnd() { GtkWidget *photo =

Re: SIGTRAP when sending signal on closing dbus connection

2015-06-16 Thread Ignacio Casal Quinteiro
Hi Jean-Pierre, you should not be using the same object from different threads, instead you should probably idle to the main thread and to the signal from there. Cheers. Adding you to the gtk mailing list btw. On Tue, Jun 16, 2015 at 12:14 PM, jean-pierre.bog...@continental-corporation.com