Re: [Chicken-users] Out-of-date arguments in some egg setups

2005-07-18 Thread felix winkelmann
On 7/17/05, Kon Lovett [EMAIL PROTECTED] wrote: postgresql.setup-hygienic rfc3339.setup -H srfi-42.setup -H srfi-57.setup -H test-infrastructure.setup -H utf8.setup -syntax

Re: [Chicken-users] Re: bug report: inexact-exact srfi-18

2005-07-18 Thread felix winkelmann
On 7/17/05, Kon Lovett [EMAIL PROTECTED] wrote: Using Chicken 2.0 # (require-extension srfi-18) ; loading library srfi-18 ... # (seconds-time 1) Here's a patch. Thanks! 120,121c120,121 (let* ([n2 (- n C_startup_time_seconds)] ; seconds since startup [ms (truncate (* 1000

[Chicken-users] libffi in chicken-2.0

2005-07-18 Thread Daniel B. Faken
Hello all, I'm trying to build the new release with --with-libffi, but it appears that the configuration is messed up. (my compiler output is appended) Specifically, it seems that libffi is *not* compiled into libchicken, and so to use libchicken, libffi.a must be explicitly included when

Re: [Chicken-users] non-blocking (read)

2005-07-18 Thread Daishi Kato
For example, an application would be a server program that is controlable by a user through some kind of commands. In other words, a server program with CUI. Currently I could do it by csi, since it does not block the server thread, but what if I would like to compile it into a single executable?