Re: guile: Stack overflow

1999-07-05 Thread linas

It's been rumoured that Carey Stevens said:
> 
> gnucash: bootstrap file is /usr/share/gnucash/scm/bootstrap.scm
> guile: Stack overflow
> 
> The guile on my system is version 1.2

You need guile 1.3 

--linas
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: guile: Stack overflow

1999-07-05 Thread Carey Stevens

Yeah, sorry dumb question. Don't know how I missed that. I have since
got it up and running with all features working.

Thanks eveyone for a great product.

Carey


[EMAIL PROTECTED] wrote:

> It's been rumoured that Carey Stevens said:
> >
> > gnucash: bootstrap file is /usr/share/gnucash/scm/bootstrap.scm
> > guile: Stack overflow
> >
> > The guile on my system is version 1.2
>
> You need guile 1.3
>
> --linas

- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: guile: Stack overflow

1999-07-03 Thread Rob Browning

Carey Stevens <[EMAIL PROTECTED]> writes:

> Hi,
> 
> I have just compiled and installed motif gnucash-1.2.0 on an out of the
> box Redhat 5.2 system on a Pentium Pro with 64M RAM. It compiled fine,
> however when I try to run it I get only the following
> 
> gnucash: bootstrap file is /usr/share/gnucash/scm/bootstrap.scm
> guile: Stack overflow
> 
> The guile on my system is version 1.2
> 
> Does anybody know what the problem is, or have any suggestions?

Your guile is too old.  Check the README.  You need 1.3 or better.

-- 
Rob Browning <[EMAIL PROTECTED]> PGP=E80E0D04F521A094 532B97F5D64E3930
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



guile: Stack overflow

1999-07-03 Thread Carey Stevens

Hi,

I have just compiled and installed motif gnucash-1.2.0 on an out of the
box Redhat 5.2 system on a Pentium Pro with 64M RAM. It compiled fine,
however when I try to run it I get only the following

gnucash: bootstrap file is /usr/share/gnucash/scm/bootstrap.scm
guile: Stack overflow

The guile on my system is version 1.2

Does anybody know what the problem is, or have any suggestions?

Thanks in advance.

Carey

- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: Motif compilation - success; running get guile stack overflow

1998-11-20 Thread Rob Browning

[EMAIL PROTECTED] writes:

> I tried hacking around this but everything I tried didn't work. 
> Any ideas?

Don't waste any more time.  I've got it fixed.  I'll send a patch soon.

-- 
Rob Browning <[EMAIL PROTECTED]> PGP=E80E0D04F521A094 532B97F5D64E3930
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: Motif compilation - success; running get guile stack overflow

1998-11-19 Thread linas

It's been rumoured that Amos Shapira said:
>
> gnucash: startup-file is NONE/share/gnucash/scm/startup/init.scm
> guile: No such file or directory: "NONE/share/gnucash/scm/startup/init.scm"
> 
> I think I tracked it down to lines 2504 and 2505 of "configure", where
> GNC_SHAREDIR and GNC_CONFIGDIR get expanded a tad too early -
> 
>   2504  GNC_RUNTIME_SHAREDIR=`eval echo ${GNC_SHAREDIR}`
>   2505  GNC_RUNTIME_CONFIGDIR=`eval echo ${GNC_CONFIGDIR}`
> 
> These depend on ${datadir}, which depends on ${prefix} which doesn't
> get set at this point (unless if they are set from the command line),
> and defaults to 'NONE'.  Adding a (redundant) "--prefix=/usr/local"
> configure's command line fixed that.


I tried hacking around this but everything I tried didn't work. 
Any ideas?

--linas

- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: Motif compilation - success; running get guile stack overflow

1998-11-19 Thread linas

> > gnucash: startup-file is /usr/local/share/gnucash/scm/startup/init.scm
> > guile: Stack overflow

I vaguely remeber this as being typical of a guile 1.2 setup ...

--linas
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: Motif compilation - success; running get guile stack overflow

1998-11-19 Thread Rob Browning

Rob Browning <[EMAIL PROTECTED]> writes:


> > These depend on ${datadir}, which depends on ${prefix} which doesn't
> > get set at this point (unless if they are set from the command line),
> > and defaults to 'NONE'.  Adding a (redundant) "--prefix=/usr/local"
> > configure's command line fixed that.
> 
> This is a problem.  It looks like this may be hard to fix.  I'll have
> to to re-work the configure stuff again.  For now I guess, everyone
> will just have to use --prefix explicitly.

OK, I've fixed it.  Getting runtime vs install time settings embedded
in the right places at the right times really has turned out to me
more a pain than I would have expected.

In this case I had to call a command *after* the AC_OUTPUT in
configure.in so that I can use ${prefix} once we're sure it has been
given a value.

I'll generate a patch after my last one gets incorporated.  (Now back
to my real work...)

-- 
Rob Browning <[EMAIL PROTECTED]> PGP=E80E0D04F521A094 532B97F5D64E3930
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Re: Motif compilation - success; running get guile stack overflow

1998-11-19 Thread Rob Browning

[EMAIL PROTECTED] (Amos Shapira) writes:


> For this stage, I'd like to suggest you to give what are the file
> names that are looked for under --with-xmhtml-includes (and to a
> lesser degree, --with-xmhtml-libraries).  An instruction to give
> absolute path names would also prevnt confusion, IMHO.

This is a good idea.  If you feel up to it, submit doc patches to
Linas.

> These depend on ${datadir}, which depends on ${prefix} which doesn't
> get set at this point (unless if they are set from the command line),
> and defaults to 'NONE'.  Adding a (redundant) "--prefix=/usr/local"
> configure's command line fixed that.

This is a problem.  It looks like this may be hard to fix.  I'll have
to to re-work the configure stuff again.  For now I guess, everyone
will just have to use --prefix explicitly.

> Now I just get the following when I run it:
> 
> |butch| gnucash 
> gnucash: startup-file is /usr/local/share/gnucash/scm/startup/init.scm
> guile: Stack overflow
> |butch|

Hmm, now this one I don't know about.  Does it work from the build
directory when run like this?

  ./gnucash

-- 
Rob Browning <[EMAIL PROTECTED]> PGP=E80E0D04F521A094 532B97F5D64E3930
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body



Motif compilation - success; running get guile stack overflow

1998-11-18 Thread Amos Shapira

Finally managed to compile it:

1. Downloaded XmHTML 1.1.5 from the gnucash directory
2. Used a fresh CVS download, where "-I../../.." seems to have been already
   added to the right makefile.

For this stage, I'd like to suggest you to give what are the file
names that are looked for under --with-xmhtml-includes (and to a
lesser degree, --with-xmhtml-libraries).  An instruction to give
absolute path names would also prevnt confusion, IMHO.

When it runs, it complained with:

gnucash: startup-file is NONE/share/gnucash/scm/startup/init.scm
guile: No such file or directory: "NONE/share/gnucash/scm/startup/init.scm"

I think I tracked it down to lines 2504 and 2505 of "configure", where
GNC_SHAREDIR and GNC_CONFIGDIR get expanded a tad too early -

  2504  GNC_RUNTIME_SHAREDIR=`eval echo ${GNC_SHAREDIR}`
  2505  GNC_RUNTIME_CONFIGDIR=`eval echo ${GNC_CONFIGDIR}`

These depend on ${datadir}, which depends on ${prefix} which doesn't
get set at this point (unless if they are set from the command line),
and defaults to 'NONE'.  Adding a (redundant) "--prefix=/usr/local"
configure's command line fixed that.

Now I just get the following when I run it:

|butch| gnucash 
gnucash: startup-file is /usr/local/share/gnucash/scm/startup/init.scm
guile: Stack overflow
|butch|

Thanks,

--Amos

--Amos Shapira| "Of course Australia was marked for
133 Shlomo Ben-Yosef st.  |  glory, for its people had been chosen
Jerusalem 93 805  |  by the finest judges in England."
ISRAEL   [EMAIL PROTECTED]  | -- Anonymous
- %<  >% --
The GnuCash / X-Accountant Mailing List
To unsubscribe, send mail to [EMAIL PROTECTED] and
put "unsubscribe gnucash-devel [EMAIL PROTECTED]" in the body