Re: [Chicken-users] Making an extension of various files

2005-11-11 Thread Pupeno
On Monday 07 November 2005 02:53, felix winkelmann wrote: I think, adding a (declare (uses sc-mfl2)) in sc-mfl1.scm should work. This may seem to work. -- Pupeno [EMAIL PROTECTED] (http://pupeno.com) pgpPjf0jojk2v.pgp Description: PGP signature

[Chicken-users] hash table segfault?

2005-11-11 Thread David Janssens
I think i found a bug in chicken: (set! h (make-hash-table))(hash-table-set! h foo bar)(hash-table-fold h (lambda (k c acc) #f) '())Segmentation fault (core dumped) chicken v2,2 on tested on cygwin and linux. David Janssens ___ Chicken-users mailing

Re: [Chicken-users] Amb egg setup

2005-11-11 Thread Thomas Chust
Am 11.11.2005, 03:34 Uhr, schrieb Kon Lovett [EMAIL PROTECTED]: Attached is a corrected setup for the amb egg. [...] Argh! Thanks for the correction -- I am generating the .setup files automatically and hadn't configured my Makefile correctly for an extension with syntax :( cu, Thomas

Re: [Chicken-users] hash table segfault?

2005-11-11 Thread felix winkelmann
On 11/10/05, David Janssens [EMAIL PROTECTED] wrote: I think i found a bug in chicken: (set! h (make-hash-table)) (hash-table-set! h foo bar) (hash-table-fold h (lambda (k c acc) #f) '()) Segmentation fault (core dumped) Indeed. Here a patch for extras.scm: 1788,1789c1788,1789

[Chicken-users] [ANN] scons-chicken 0.1.0 released

2005-11-11 Thread Pupeno
scons-chicken is an add-on for SCons (http://www.scons.org), a building system (much like make and autotools, all in one), that adds support for Chicken (http://www.call-with-current-continuation.org/), a Scheme-to-C compiler. Download scons-chicken:

[Chicken-users] s11n + rpc

2005-11-11 Thread Zbigniew
I was testing out the RPC egg and noticed it didn't work between a Mac and a PC. This stems from endian issues in the s11n egg. Now, I don't know if serialization was ever intended to work across architectures, but I went ahead and made a simple patch [attached] to the s11n egg. With this, the

Re: [Chicken-users] s11n + rpc

2005-11-11 Thread Thomas Chust
Am 11.11.2005, 22:30 Uhr, schrieb Zbigniew [EMAIL PROTECTED]: I was testing out the RPC egg and noticed it didn't work between a Mac and a PC. This stems from endian issues in the s11n egg. Now, I don't know if serialization was ever intended to work across architectures, but I went ahead and