Re: Guile-SDL 0.4.0 available

2011-12-16 Thread Andy Wingo
On Fri 16 Dec 2011 12:10, Thien-Thi Nguyen writes: > () Ian Price > () Fri, 16 Dec 2011 01:32:29 + > >Andy Wingo writes: > >> It works with Guile 2.0 if you replace: >> >> #define MAKE_HASH_TABLE(size) \ >> (scm_make_vector (REASONABLE_BUCKET_COUNT (size), SCM_

Re: Guile-SDL 0.4.0 available

2011-12-16 Thread Thien-Thi Nguyen
() Ian Price () Fri, 16 Dec 2011 01:32:29 + Andy Wingo writes: > It works with Guile 2.0 if you replace: > > #define MAKE_HASH_TABLE(size) \ > (scm_make_vector (REASONABLE_BUCKET_COUNT (size), SCM_EOL)) > > with > > #define MAKE_HASH_TABLE(size) \

Re: Guile-SDL 0.4.0 available

2011-12-15 Thread Ian Price
Andy Wingo writes: > It works with Guile 2.0 if you replace: > > #define MAKE_HASH_TABLE(size) \ > (scm_make_vector (REASONABLE_BUCKET_COUNT (size), SCM_EOL)) > > with > > #define MAKE_HASH_TABLE(size) \ > (scm_c_make_hash_table (size)) I can confirm that with this change it

Re: Guile-SDL 0.4.0 available

2011-12-15 Thread Andy Wingo
On Thu 15 Dec 2011 12:14, Thien-Thi Nguyen writes: > This directory contains Guile-SDL, a set of modules that provide > bindings for SDL (Simple DirectMedia Layer) to enable Guile > programmers to do all the nice things you can do with SDL. Cool! It works with Guile 2.0 if you replace:

Guile-SDL 0.4.0 available

2011-12-15 Thread Thien-Thi Nguyen
release notes: The price of portability is some increased ugliness; hackers please see ‘%%Guile-SDL-obtw’ and suggest alternatives. Special thanks go to Brian Templeton for the patch that inspired my change of heart wrt Guile 1.8. (That code is not in Guile-SDL, but the ideas it expres