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]> writes:

> Just installed a fresh chicken 3.1.0 and the bb egg on an Ubuntu x86
> box.  I could not reproduce the problem.
>
> Would it be a 64bit arch specific problem?


_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to