GNOME Bugzilla – Bug 103416
Error running make in gnome-terminal-2.1.4
Last modified: 2004-12-22 21:47:04 UTC
Hi, I've had an error building gnome-terminal-2.1.4. make in "gnome-terminal-2.1.4" says: encoding.c:356: parse error before `*' encoding.c:374: `encoding' undeclared (first use in this function) I just switched lines 355 and 356 in "gnome-terminal-2.1.4/src/encoding.c" to run make successfully! I think it's the right usage of a "TerminalEncoding". Best Regards Hajo Beckefeld Here's the very simple diff: --- gnome-terminal-2.1.4/src/encoding.c Fri Jan 10 06:08:03 2003 +++ gnome-terminal-2.1.4-patched/src/encoding.c Mon Jan 13 21:48:55 2003 @@ -352,9 +352,9 @@ for (tmp = strings; tmp != NULL; tmp = tmp->next) { const TerminalEncoding *e; - charset = tmp->data; TerminalEncoding *encoding; - + charset = tmp->data; + if (strcmp (charset, "current") == 0) g_get_charset (&charset);
*** This bug has been marked as a duplicate of 103065 ***