bug#9851: No configure file in git cloned guile despite what README says

2011-10-24 Thread Mark H Weaver
J. Greg Davidson j...@well.com writes: I used the git command git clone git://git.sv.gnu.org/guile.git from the guile webpage https://www.gnu.org/software/guile/download.html and got a nice directory with a README file which tells me to run ./configure which does not exist. The README

bug#9851: No configure file in git cloned guile despite what README says

2011-10-24 Thread J. Greg Davidson
Thank you for pointing me to the HACKING file. I hope that someone will fix the README to reference it. It would also be appropriate to correct the HACKING file which says Then you must run the autogen.sh script, as described below. but I do not recognize anything below as explaining

bug#9851: No configure file in git cloned guile despite what README says

2011-10-24 Thread Andy Wingo
On Mon 24 Oct 2011 23:39, J. Greg Davidson j...@well.com writes: Perhaps my libgc is too new (7.3alpha1) I'll fiddle around and see what works. That could be. I'll have to update my checkout and see what happens. Apologies for the mess! Andy -- http://wingolog.org/

bug#9857: starting repl from C broken

2011-10-24 Thread Tristan Colgate
Hi, The folliowing fails for me on current master: #include libguile.h static void inner_main (void *closure, int argc, char **argv) {  scm_c_use_module(system repl repl);  scm_c_eval_string((start-repl)); } int main (int argc, char **argv) {  scm_boot_guile (argc, argv, inner_main, 0);