It seems that g_thread_init () is not called but I've not this problem
(what is your distro, version of webkit-gtk ... )

here is a small patch don't know if it solves your problem : in
gst-gtk.c in gst_gtk_init ()
before gtk_init (&argc, &argv); add this line :

if (!g_thread_supported ()) g_thread_init (NULL);

and in the Makefile.am

update gst_gtk_la_LDFLAGS with
gst_gtk_la_LDFLAGS = $(gst_module_ldflags) -pthread -lgthread-2.0 -lrt
-lglib-2.0

On Wed, Jul 1, 2009 at 2:47 PM, Stefan Schmiedl<[email protected]> wrote:
> On Wed, 1 Jul 2009 11:56:58 +0200
> Gwenael Casaccio <[email protected]> wrote:
>
>> On Wednesday 01 July 2009 11:19:57 you wrote:
>> > On Wednesday 01 July 2009 10:16:06 Stefan Schmiedl wrote:
>> > > On Wed, 1 Jul 2009 10:04:59 +0200
>> > >
>> > > Gwenael Casaccio <[email protected]> wrote:
>> > > > Finally I've fixed the shortcut bug (when you're doing a
>> > > > shortcut the browser is open two times). And we've a initial
>> > > > support for debugging not perfect but a good starting point and
>> > > > I will present VisualGST for the ESUG awards ;)
>> > >
>> > > Good work, Gwenael!
>> > >
>> > > rev 136:
>> > > gst-package -t ~/.st package.xml
>> > > ./gst-VisualGST
>> > > In VisualGST window, click on Tools > Assistant
>> >
>> > I've change the menu API but not yet update the GtkAssistant tool ^^
>>
>> Fixed
>
> Now I get another error:
>
> (gst:28875): GLib-ERROR **: The thread system is not yet initialized.
> (ip 14)CFunctionDescriptor(CCallable)>>#callInto:
> (ip 8)GtkWebView class>>#new
> (ip 10)GtkAssistant>>#buildCentralWidget
> (ip 44)GtkAssistant>>#initialize
> (ip 6)GtkAssistant class(GtkMainWindow class)>>#openSized:
> (ip 12)GtkAssistant class>>#open
> (ip 6)VisualGST>>#gtkAssistant
>
> I can open a Browser in its own window, though.
>
> s.
>
>
> _______________________________________________
> help-smalltalk mailing list
> [email protected]
> http://lists.gnu.org/mailman/listinfo/help-smalltalk
>


_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to