* Gmfsk 0.6beta3 segmentation fault with Mandrake 10
@ 2004-03-13 8:27 Pär
2004-03-13 13:02 ` Tomi Manninen
0 siblings, 1 reply; 4+ messages in thread
From: Pär @ 2004-03-13 8:27 UTC (permalink / raw)
To: Linux Hams
Hi all,
Has anyone tried getting gmfsk to work with Mandrake 10 ?
It compiles and installs nicely but when I try to run it crashes
after the initial wizard. It will present a nice "segmentation
fault" every time now. Any hints ?
I'm travelling to Mallorca in april and I'll bring my FT-817 and
wanted to run gmfsk but I'll try mandrake 9.2 instead.
73 de Per/sm0rwo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Gmfsk 0.6beta3 segmentation fault with Mandrake 10
2004-03-13 8:27 Gmfsk 0.6beta3 segmentation fault with Mandrake 10 Pär
@ 2004-03-13 13:02 ` Tomi Manninen
2004-03-14 9:05 ` Pär
2004-03-14 22:24 ` Wilbert Knol
0 siblings, 2 replies; 4+ messages in thread
From: Tomi Manninen @ 2004-03-13 13:02 UTC (permalink / raw)
To: Pär; +Cc: Linux Hams
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
On Sat, 2004-03-13 at 10:27, Pär wrote:
> Has anyone tried getting gmfsk to work with Mandrake 10 ?
> It compiles and installs nicely but when I try to run it crashes
> after the initial wizard. It will present a nice "segmentation
> fault" every time now. Any hints ?
This seems to happen with certain versions of Gnome libs. Please
try the attached patch.
--
Tomi Manninen / OH2BNS / KP20ME04
[-- Attachment #2: gmfsk-modes.patch --]
[-- Type: text/x-patch, Size: 1577 bytes --]
diff -ruN gmfsk-0.6beta3.orig/src/main.c gmfsk-0.6beta3/src/main.c
--- gmfsk-0.6beta3.orig/src/main.c 2004-02-20 02:29:28.000000000 +0200
+++ gmfsk-0.6beta3/src/main.c 2004-03-13 14:59:28.000000000 +0200
@@ -688,37 +688,37 @@
switch (trx_get_mode()) {
default:
case MODE_MFSK16:
- w = find_menu_item("Mode/MFSK16");
+ w = find_menu_item("_Mode/MFSK16");
break;
case MODE_MFSK8:
- w = find_menu_item("Mode/MFSK8");
+ w = find_menu_item("_Mode/MFSK8");
break;
case MODE_RTTY:
- w = find_menu_item("Mode/RTTY");
+ w = find_menu_item("_Mode/RTTY");
break;
case MODE_THROB1:
- w = find_menu_item("Mode/THROB (1 throb/s)");
+ w = find_menu_item("_Mode/THROB (1 throb/s)");
break;
case MODE_THROB2:
- w = find_menu_item("Mode/THROB (2 throbs/s)");
+ w = find_menu_item("_Mode/THROB (2 throbs/s)");
break;
case MODE_THROB4:
- w = find_menu_item("Mode/THROB (4 throbs/s)");
+ w = find_menu_item("_Mode/THROB (4 throbs/s)");
break;
case MODE_BPSK31:
- w = find_menu_item("Mode/PSK31 (BPSK)");
+ w = find_menu_item("_Mode/PSK31 (BPSK)");
break;
case MODE_QPSK31:
- w = find_menu_item("Mode/PSK31 (QPSK)");
+ w = find_menu_item("_Mode/PSK31 (QPSK)");
break;
case MODE_PSK63:
- w = find_menu_item("Mode/PSK63");
+ w = find_menu_item("_Mode/PSK63");
break;
case MODE_MT63:
- w = find_menu_item("Mode/MT63");
+ w = find_menu_item("_Mode/MT63");
break;
case MODE_FELDHELL:
- w = find_menu_item("Mode/FELDHELL");
+ w = find_menu_item("_Mode/FELDHELL");
break;
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Gmfsk 0.6beta3 segmentation fault with Mandrake 10
2004-03-13 13:02 ` Tomi Manninen
@ 2004-03-14 9:05 ` Pär
2004-03-14 22:24 ` Wilbert Knol
1 sibling, 0 replies; 4+ messages in thread
From: Pär @ 2004-03-14 9:05 UTC (permalink / raw)
Cc: Linux Hams
Tomi Manninen wrote:
>On Sat, 2004-03-13 at 10:27, Pär wrote:
>
>
>
>>Has anyone tried getting gmfsk to work with Mandrake 10 ?
>>It compiles and installs nicely but when I try to run it crashes
>>after the initial wizard. It will present a nice "segmentation
>>fault" every time now. Any hints ?
>>
>>
>
>This seems to happen with certain versions of Gnome libs. Please
>try the attached patch.
>
>
>
I tried switching to Mandrake 9.2.1 and got the same segfault there as
well. I've applied the patch and it seems to work, no segfaults now.
I'll retry it on Mandrake 10 but as I got the same errors in 9.2.1 as in
10 I guess it will work in 10 as well now (will check).
Thank you !
/Pär
-
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Gmfsk 0.6beta3 segmentation fault with Mandrake 10
2004-03-13 13:02 ` Tomi Manninen
2004-03-14 9:05 ` Pär
@ 2004-03-14 22:24 ` Wilbert Knol
1 sibling, 0 replies; 4+ messages in thread
From: Wilbert Knol @ 2004-03-14 22:24 UTC (permalink / raw)
To: linux-hams
0.6beta3 compiled (and runs) OK on this Mdk 9.1 box.
No need for the patch.
Also OK on SuSE 8.1 Pro
Wilbert, ZL2BSJ
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2004-03-14 22:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-03-13 8:27 Gmfsk 0.6beta3 segmentation fault with Mandrake 10 Pär
2004-03-13 13:02 ` Tomi Manninen
2004-03-14 9:05 ` Pär
2004-03-14 22:24 ` Wilbert Knol
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.