On Thu, 26 Feb 2004 23:06:30 +0000, Bill Bedford wrote:
> I'm trying to install gnumeric on OS10.2.8.
>
> I finally got as far as building gnumeric when the following happens.
> Can anyone explain it please?
>
>
> gcc -DHAVE_CONFIG_H -I. -I. -I../..
> -DGNOMELOCALEDIR=\"/opt/local/share/locale\" -I../../src -I../../src
> -DORBIT2=1 -I/opt/local/include/glib-2.0
Etc, etc
To answer my own question........
It seems that applix-read.c need some double quotes to be escaped.
130c130
< if (*buf == '"') {
---
> if (*buf == '\"') {
132c132
< while (*src && *src != '"') {
---
> while (*src && *src != '\"') {
137c137
< g_return_val_if_fail (*src == '"', NULL);
---
> g_return_val_if_fail (*src == '\"', NULL);
Bill Bedford
"Nothing is as important as model railways and even that isn't very
important"
-some wiseguy somewhere
|