Re: [racket] Failing to compile PLT Scheme v372

2011-01-26 Thread João Ricardo Sares Teles de Matos
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It worked :) The other function that needed it was scheme_eqv(), right below double_eqv() in bool.c. Adding the second #ifdef block after scheme_eqv() instead of after double_eqv() seems to suffice. With this, it finished compiling without furt

Re: [racket] Failing to compile PLT Scheme v372

2011-01-17 Thread Robby Findler
Turns out that that did work on Fedora 14 but didn't work in Fedora 13 (or maybe 12). Robby 2011/1/17 Matthew Flatt : > You can try modifying the source code to add > >  #ifdef MZ_XFORM >  START_XFORM_SKIP; >  #endif > > before the double_eqv() function in "bool.c" (line 127) and then > >  #ifdef

Re: [racket] Failing to compile PLT Scheme v372

2011-01-17 Thread Matthew Flatt
You can try modifying the source code to add #ifdef MZ_XFORM START_XFORM_SKIP; #endif before the double_eqv() function in "bool.c" (line 127) and then #ifdef MZ_XFORM END_XFORM_SKIP; #endif after the function. I think you'll have to do that for one or two other functions that trigger th