Re: [Chicken-users] Optimizer bug

2010-09-05 Thread Sven Hartrumpf
Sat, 04 Sep 2010 20:30:07 +0200 (CEST), hartrumpf wrote: Sat, 04 Sep 2010 12:19:48 +0200 (CEST), felix wrote: Are these redefinitions genuine or are the warnings bogus? The warnings are ok because I define the three functions myself. Can this be a problem here? To answer my own question: I

Re: [Chicken-users] Optimizer bug

2010-09-05 Thread Felix
From: Sven Hartrumpf hartru...@gmx.net Subject: Re: [Chicken-users] Optimizer bug Date: Sun, 05 Sep 2010 10:02:46 +0200 (CEST) Sat, 04 Sep 2010 20:30:07 +0200 (CEST), hartrumpf wrote: Sat, 04 Sep 2010 12:19:48 +0200 (CEST), felix wrote: Are these redefinitions genuine or are the warnings

[Chicken-users] Status of 4.5.0 vs. 4.5.7 / TinyCLOS

2010-09-05 Thread Mike Anderson
Hello, I'm new to Chicken, and confused as to what is the current stable release. According to the Download link at call-cc.org, the current release is 4.5.0, but in the Development snapshots, there is 4.5.7. Meanwhile, I tried to install the TinyCLOS egg, and it seems that it depends on a

[Chicken-users] A proposal for the egg index

2010-09-05 Thread Alaric Snell-Pym
Re http://wiki.call-cc.org/chicken-projects/egg-index-4.html Here's a few ideas I had. Do people think there's merit in them? 1) Alongside/under the version link for each egg, provide a browse source link to http://bugs.call-cc.org/browser/release/4/EGG/tags/VERSION or to

[Chicken-users] Incremental build, tricks or tips anyone?

2010-09-05 Thread Matthew Welland
I am updating some old code and the build broke because chicken-config no longer exists. It took a while but I finally found that all I had to do was replace chicken-config with csc. I.e. csc -cflags in place of chicken-config -cflags. My question is, does anyone have a nicer way of doing

[Chicken-users] tinyclos fails to install ...

2010-09-05 Thread Matthew Welland
I don't see any options to force chicken-install to use an older version of an egg. Is my only option to either manually get the older egg or manually make a new chicken? sudo chicken-install tinyclos ... checking dependencies for `tinyclos' ... install order: (tinyclos)

Re: [Chicken-users] A proposal for the egg index

2010-09-05 Thread Peter Bex
On Sun, Sep 05, 2010 at 10:21:35PM +0100, Alaric Snell-Pym wrote: Re http://wiki.call-cc.org/chicken-projects/egg-index-4.html Here's a few ideas I had. Do people think there's merit in them? 1) Alongside/under the version link for each egg, provide a browse source link to

Re: [Chicken-users] tinyclos fails to install ...

2010-09-05 Thread Matthew Welland
Nevermind. I just did the following and am able to move forward: chicken-install -r tinyclos;cd tinyclos perl -pi.bak -e 's/-no-procedure-checks-for-toplevel-bindings//' *.setup chicken-install -sudo On Sunday 05 September 2010 03:24:27 pm Matthew Welland wrote: I don't see any options to force

Re: [Chicken-users] A proposal for the egg index

2010-09-05 Thread Ivan Raikov
Hi Alaric, The script that generates egg pages is make-egg-index.scm (found under directory scripts in the core Chicken distribution). I like the idea of linking to the source, so let's see what the egg table would look like if this link is added. Although it might make more sense to add this

Re: [Chicken-users] Incremental build, tricks or tips anyone?

2010-09-05 Thread Jim Ursetto
Matthew, Would it be possible for you to use the make macro that is built into setup-api (and therefore chicken-install), along with 'csc -t' for example to do the translation from .c to .o, rather than manually invoking gcc? csc can also be called in a separate step to link your object files

Re: [Chicken-users] tinyclos fails to install ...

2010-09-05 Thread Jim Ursetto
On Sep 5, 2010, at 17:24, Matthew Welland m...@kiatoa.com wrote: I don't see any options to force chicken-install to use an older version of an egg. Is my only option to either manually get the older egg or manually make a new chicken? chicken-install tinyclos:1.6.4

Re: [Chicken-users] tinyclos fails to install ...

2010-09-05 Thread Matthew Welland
- Original message - On Sep 5, 2010, at 17:24, Matthew Welland m...@kiatoa.com wrote: I don't see any options to force chicken-install to use an older version of  an egg. Is my only option to either manually get the older egg or manually  make a new chicken? chicken-install