Re: [Fink-devel] gnumeric gabber crashes - libsigc++, gtkmm, gnomemm

2002-02-03 Thread David R. Morrison

Max Horn [EMAIL PROTECTED] wrote:

 Gnumeric crashes for me upong launch. never has been different. But 
 now also gabber crashes for me when I try to login. Looking at my 
 stack trace, both crash inside some gtkmm/gnomemm function... I 
 wonder if there is something deeper going on there...
 
 
 In any case, I am using new updated gnomemm/gtkmm versions here. It's 
 possible they are the culprit.
 
 I am going to add these two to unstable-CVS now. If you so far have 
 used gabber/gnumeric without problems, and they start to crash after 
 you updated to the latest gtkmm/gnomemm, please contact me ASAP.
 

Hi Max.  I didn't have libsigc++, gtkmm, or gnomemm installed at all, but
gnumeric works for me.

I installed them (unstable versions), and gnumeric still works.

I rebuilt gnumeric with these programs installed (in case there was an
implicit dependency that we had missed) but configure produced the same
Makefiles, otool reveals no connection with these libraries in the new
gnumeric, and gnumeric still runs.

  -- Dave



___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



Re: [Fink-devel] gnumeric gabber crashes - libsigc++, gtkmm,gnomemm

2002-02-03 Thread Max Horn

At 9:22 Uhr -0500 03.02.2002, David R. Morrison wrote:

[...]

Hi Max.  I didn't have libsigc++, gtkmm, or gnomemm installed at all, but
gnumeric works for me.

I installed them (unstable versions), and gnumeric still works.

I rebuilt gnumeric with these programs installed (in case there was an
implicit dependency that we had missed) but configure produced the same
Makefiles, otool reveals no connection with these libraries in the new
gnumeric, and gnumeric still runs.

OK, weird. But I see now that I was mistaken regarding gnumeric, I 
only took a brief glance at the BT, saw marshal, signal, emit 
etc. and thought oh, sigc++. Obviously that was wrong, stupid 
little me :)


Anyway, I have latest gnumeric installed. when I run it, it 
immediatly crashes. Here's a stack backtrace:


#0  0x01ee8fec in gnome_canvas_item_marshal_signal_1 (object=0x1, 
func=0x1ee8fec gnome_canvas_item_marshal_signal_1+40, 
func_data=0xa00221, args=0x0) at gnome-canvas.c:543
#1  0x02652b3c in gtk_signal_real_emit (object=0x1c8b280, 
signal_id=165, params=0xbfffee38) at gtksignal.c:1492
#2  0x026501d8 in gtk_signal_emit (object=0x1c8b280, signal_id=165) 
at gtksignal.c:552
#3  0x01eedd40 in emit_event (canvas=0x1c8b280, event=0xb210) at 
gnome-canvas.c:2817
#4  0x01eee198 in pick_current_item (canvas=0x1c8b010, 
event=0xa0021b) at gnome-canvas.c:2971
#5  0x01eeea68 in gnome_canvas_crossing (widget=0x1c8b010, 
event=0xb210) at gnome-canvas.c:3129
#6  0x02617314 in gtk_marshal_BOOL__POINTER (object=0x1, 
func=0x1ee8fec gnome_canvas_item_marshal_signal_1+40, 
func_data=0xa00221, args=0x0) at gtkmarshal.c:28
#7  0x02652b3c in gtk_signal_real_emit (object=0x1c8b010, 
signal_id=37, params=0x1c8b0f0) at gtksignal.c:1492
#8  0x026501d8 in gtk_signal_emit (object=0x1c8b010, signal_id=37) at 
gtksignal.c:552
#9  0x02694378 in gtk_widget_event (widget=0x1c8b010, 
event=0x241afa8) at gtkwidget.c:2864
#10 0x02616010 in gtk_main_do_event (event=0x241afa8) at gtkmain.c:824
#11 0x01cf4a78 in gdk_event_dispatch (source_data=0x1, 
current_time=0xa0021b user_data=0xa00221) at gdkevents.c:2139
#12 0x01de48ec in g_main_dispatch (dispatch_time=0xb878) at gmain.c:656
#13 0x01de508c in g_main_iterate (block=31429280, dispatch=1) at gmain.c:877
#14 0x01de528c in g_main_run (loop=0x1c72a10) at gmain.c:935
#15 0x026156e8 in gtk_main () at gtkmain.c:524
#16 0x00048b2c in main (argc=29837328, argv=0xba80) at main.c:288
#17 0x23dc in _start ()
#18 0x220c in start ()


Not that I expect that to help in the least :)




Max
-- 
---
Max Horn
Software Developer

email: mailto:[EMAIL PROTECTED]
phone: (+49) 6151-494890

___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



Re: [Fink-devel] gnumeric gabber crashes - libsigc++, gtkmm,gnomemm

2002-02-03 Thread Martin Costabel

Max Horn wrote:

  /usr/lib/libSystem.B.dylib (compatibility version 1.0.0,
 current version 50.0.0)

This is suspicious: The current version of libSystem.dylib is 55.0.0 in
OSX 10.1.2. I think 50.0.0 is pre-OSX 10.1.

-- 
Martin

___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



Re: [Fink-devel] gnumeric gabber crashes - libsigc++, gtkmm,gnomemm

2002-02-03 Thread Max Horn

Good news! Rebuilding gtk+ helped indeed, gnumeric now seems to run just fine!

I hacked together a quickdirty shell script that finds all libs that 
are still linked against 50.0.0. It's quite slow and certainly can be 
improved, but for me it served its purpose and I am now rebuilding 
all the packages it listed to me:


#!/bin/sh
libs=`find /sw/lib -name *.dylib -type f`
trouble=
for p in $libs; do
 if (otool -L $p | grep -q 50.0.0); then
 trouble=$trouble $p
 fi
done
dpkg -S $trouble | cut -f1 -d: | sort | uniq




Cheers,

Max
-- 
---
Max Horn
Software Developer

email: mailto:[EMAIL PROTECTED]
phone: (+49) 6151-494890

___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



Re: [Fink-devel] gnumeric gabber crashes - libsigc++, gtkmm,gnomemm

2002-02-03 Thread David R. Morrison

Great!  I think I can finally put gnumeric back into stable, then.

  -- Dave

___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel



[Fink-devel] gnumeric gabber crashes - libsigc++, gtkmm, gnomemm

2002-02-02 Thread Max Horn

Gnumeric crashes for me upong launch. never has been different. But 
now also gabber crashes for me when I try to login. Looking at my 
stack trace, both crash inside some gtkmm/gnomemm function... I 
wonder if there is something deeper going on there...


In any case, I am using new updated gnomemm/gtkmm versions here. It's 
possible they are the culprit.

I am going to add these two to unstable-CVS now. If you so far have 
used gabber/gnumeric without problems, and they start to crash after 
you updated to the latest gtkmm/gnomemm, please contact me ASAP.


Cheers,

Max
-- 
---
Max Horn
Software Developer

email: mailto:[EMAIL PROTECTED]
phone: (+49) 6151-494890

___
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel