[Chicken-users] Chicken release 3.2.0 now available

2008-04-30 Thread Ivan Raikov
Hi all, Release 3.2.0 of Chicken is now available. It is based on development snapshot 3.1.10, except it does not include the precompiled header option. This release includes some minor bug fixes, and two new units srfi-69 and data-structures, which have been factored out of unit extras. Rele

Re: [Chicken-users] can't install bb.egg

2008-04-30 Thread Ivan Raikov
Yes, this is a common error in 64-bit environments. Try replacing the following line in bb-support.cpp: #define widget_type(x) ((int)((x)[ 2 ]) >> 1) with: #define widget_type(x) ((long)((x)[ 2 ]) >> 1) and see if that works for you. -Ivan Mario Domenech Goulart <[EMAIL PROTECTED

Re: [Chicken-users] can't install bb.egg

2008-04-30 Thread Mario Domenech Goulart
Hi, On Wed, 30 Apr 2008 13:12:46 +0200 Ignaz Peter Hochgemuth <[EMAIL PROTECTED]> wrote: >I try to install bb.egg in a fresh chicken-3.1.0, but I get the > following errors. I'm using gcc 4.1.2 on AMD64 (Debian etch) > What's wrong? Any idea? Thanks. > > Peter > > karolinger:/home/hgm/buil

[Chicken-users] can't install bb.egg

2008-04-30 Thread Ignaz Peter Hochgemuth
Hi, I try to install bb.egg in a fresh chicken-3.1.0, but I get the following errors. I'm using gcc 4.1.2 on AMD64 (Debian etch) What's wrong? Any idea? Thanks. Peter karolinger:/home/hgm/build# chicken-setup -k bb The extension bb does not exist. Do you want to download it ? (yes/no/abort)

Re: [Chicken-users] Chicken pre-release 3.2.0

2008-04-30 Thread felix winkelmann
On Tue, Apr 29, 2008 at 1:14 PM, Leonardo Valeri Manera <[EMAIL PROTECTED]> wrote: > 2008/4/29 Ivan Raikov <[EMAIL PROTECTED]>: > > > > > Hi all, > > > >I have updated the Chicken prerelease branch in the SVN repository > > with what will become Chicken release 3.2.0. This includes severa