[Chicken-users] egg path?

2009-04-16 Thread Shawn Rutledge
With Chicken 3, (use egg) can load a compiled egg.so in the cwd. This is especially handy during egg development - you can compile and test repeatedly without having to install. Chicken 4 doesn't seem to do that. Is there some concept of an egg path, where it will look for the library?

Re: [Chicken-users] Keyword parameters bug?

2009-04-16 Thread felix winkelmann
Should be fixed in svn rev. 14268. Thanks for reporting this. cheers, felix ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users

Re: [Chicken-users] chicken-install: prefix problem

2009-04-16 Thread felix winkelmann
On Tue, Apr 14, 2009 at 10:28 PM, fulvio ciriaco oiv...@gmail.com wrote: I installed from svn trunk and chicken-install works fine now. It took some time to understand how to teach the build system where system libraries are kept. Perhaps README or Makefile.$(PLATFORM)  should document

Re: [Chicken-users] egg path?

2009-04-16 Thread Jim Ursetto
On Thu, Apr 16, 2009 at 2:40 AM, Shawn Rutledge shawn.t.rutle...@gmail.com wrote: With Chicken 3, (use egg) can load a compiled egg.so in the cwd.  This is especially handy during egg development - you can compile and test repeatedly without having to install.  Chicken 4 doesn't seem to do

Re: [Chicken-users] egg path?

2009-04-16 Thread Shawn Rutledge
On Thu, Apr 16, 2009 at 2:15 AM, felix winkelmann bunny...@gmail.com wrote: On Thu, Apr 16, 2009 at 9:40 AM, Shawn Rutledge shawn.t.rutle...@gmail.com wrote: With Chicken 3, (use egg) can load a compiled egg.so in the cwd.  This is especially handy during egg development - you can compile and

Re: [Chicken-users] egg path?

2009-04-16 Thread Shawn Rutledge
On Thu, Apr 16, 2009 at 11:09 AM, Shawn Rutledge shawn.t.rutle...@gmail.com wrote: #;1 (use dbus) Error: (import) during expansion of (import ...) - cannot import from undefined module: dbus It didn't say ; loading ./dbus.so ... though, which is why I don't think it did. #;1 (use dbus) ...

[Chicken-users] Dumbass newbie questions. Sorry.

2009-04-16 Thread neil . baylis
First question: For various reasons, I can't switch to chicken 4 any time soon. But I can't find the eggs for 3.4 etc. Where are they? Second question: What's the canonical scheme (esp. Chicken) way to do pexpect like things? Ie, spawn a long lived process, send strings to its stdin, and

Re: [Chicken-users] Dumbass newbie questions. Sorry.

2009-04-16 Thread Nicholas Indy Ray
On 4/16/09, neil.bay...@gmail.com neil.bay...@gmail.com wrote: First question: For various reasons, I can't switch to chicken 4 any time soon. But I can't find the eggs for 3.4 etc. Where are they? Chicken-setup will download the chicken eggs, the ref is here:

Re: [Chicken-users] Dumbass newbie questions. Sorry.

2009-04-16 Thread Nicholas Indy Ray
err http://chicken.wiki.br/man/3/Unit%20posix#pipes for the third link. Indy On 4/16/09, Nicholas Indy Ray arel...@gmail.com wrote: On 4/16/09, neil.bay...@gmail.com neil.bay...@gmail.com wrote: First question: For various reasons, I can't switch to chicken 4 any time soon. But I can't

Re: [Chicken-users] Dumbass newbie questions. Sorry.

2009-04-16 Thread Neil Baylis
On Thu, Apr 16, 2009 at 3:28 PM, Nicholas Indy Ray arel...@gmail.comwrote: err http://chicken.wiki.br/man/3/Unit%20posix#pipes for the third link. Indy On 4/16/09, Nicholas Indy Ray arel...@gmail.com wrote: On 4/16/09, neil.bay...@gmail.com neil.bay...@gmail.com wrote: First question:

Re: [Chicken-users] Dumbass newbie questions. Sorry.

2009-04-16 Thread Shawn Rutledge
2009/4/16 Neil Baylis neil.bay...@gmail.com: Re processes/pipes, I had found those by looking in the manual, but am not yet sharp enough in scheme to understand them. It looks as though (process...) is what I need, but I'm not sure how to use it. It will give you ports for stdin/stdout. e.g.

Re: [Chicken-users] Dumbass newbie questions. Sorry.

2009-04-16 Thread Neil Baylis
Excellent, thanks. That works for me. On Thu, Apr 16, 2009 at 3:58 PM, Shawn Rutledge shawn.t.rutle...@gmail.comwrote: 2009/4/16 Neil Baylis neil.bay...@gmail.com: Re processes/pipes, I had found those by looking in the manual, but am not yet sharp enough in scheme to understand them. It