[Chicken-users] Passing Scheme callbacks to Swig wraps.

2007-02-28 Thread Tony Sidaway
I've been using Swig to wrap a medium sized C++ library. Part of the task involves enabling the dynamic method pointers built into this particular class hierarchy to be manipulated by the Scheme programmer. As a concrete example, I want to enable the Scheme programmer to be able override the menu

[Chicken-users] Re: Passing Scheme callbacks to Swig wraps.

2007-02-28 Thread Tony Sidaway
On 2/28/07, Tony Sidaway <[EMAIL PROTECTED]> wrote: As a concrete example, I want to enable the Scheme programmer to be able override the menubar method with a method written as a Chicken Scheme callback (define-external) procedure, by passing a pointer to that callback to the setter for the C++

[Chicken-users] How do I download chicken 2.3?

2007-02-28 Thread Nelson Castillo
Hi :) If they're still available in the server, perhaps we could create a Wiki page saying how to download the old (important) versions, I guess that means the latest mayor stable release. It's OK if I can retrieve the right version using Subversion. Regards, N.- -- http://arhuaco.org http://e

[Chicken-users] bb.egg problem

2007-02-28 Thread Nico Amtsberg
Hello everyone, I figured out a problem using the bb.egg. The code given below fails under the following circumstances: holding the space key to toggle the first button continously gives the following error after an amount of time (about 100 to 300 calls of the callback) Error: (for-each) argumen

[Chicken-users] Re: How do I download chicken 2.3?

2007-02-28 Thread Nelson Castillo
On 2/28/07, Nelson Castillo <[EMAIL PROTECTED]> wrote: Hi :) If they're still available in the server, perhaps we could create a Wiki page saying how to download the old (important) versions, I guess that means the latest mayor stable release. I found 2.3 (patch for .1) here: http://packages.

Re: [Chicken-users] bb.egg problem

2007-02-28 Thread Mario Domenech Goulart
Hi Nico, On Wed, 28 Feb 2007 14:57:41 +0100 Nico Amtsberg <[EMAIL PROTECTED]> wrote: > I figured out a problem using the bb.egg. The code given below fails under > the following circumstances: > holding the space key to toggle the first button continously gives the > following error after an amou

Re: [Chicken-users] broken chicken on one of two solaris/sparcs

2007-02-28 Thread Graham Fawcett
On 2/27/07, John Cowan <[EMAIL PROTECTED]> wrote: Graham Fawcett scripsit: > On the first machine, "good", Chicken builds and runs just fine. But > on the second machine, "bad", I can build, but the resultant system > dumps core whenever I try to load a shared library. For example, My guess is

Re: [Chicken-users] Release candidate for 2.6 available

2007-02-28 Thread Paulo Jabardo
I was able to compile in Linux IA-64 using GCC. Apparently it is working fine. --- felix winkelmann <[EMAIL PROTECTED]> escreveu: > Hi! > > A release canditate for CHICKEN 2.6 is now available > at > the web-site. If you find the time, please give it a > try. > > I've forgotten the updated NEW

Re: [Chicken-users] Release candidate for 2.6 available

2007-02-28 Thread Paulo Jabardo
Using the Intel compiler on Linux IA-64, chicken compiles fine but when I execute csi, I have the following messages [EMAIL PROTECTED]:~/temp/chicken/chicken-2.6rc1-ICC> csi csi(28782): unaligned access to 0x2083e97c, ip=0x20015cf0 csi(28782): unaligned access to 0x2083e97c,

[Chicken-users] I need some help to edit a tree

2007-02-28 Thread minh thu
Hi, I'd like to do something that I thought would be very easy to do with Scheme but I'm getting lost. I want to have a global *TREE* symbol to hold nested list. (Each node is either a string or a list of node, but in this mail I make the description with only lists) Initially it is (define *tre

[Chicken-users] Re: I need some help to edit a tree

2007-02-28 Thread minh thu
2007/2/28, minh thu <[EMAIL PROTECTED]>: Hi, I'd like to do something that I thought would be very easy to do with Scheme but I'm getting lost. I want to have a global *TREE* symbol to hold nested list. (Each node is either a string or a list of node, but in this mail I make the description wit