···11+Fix libgc initialization in the presence of Guile 2.0.
22+33+--- elinks-0.12pre5/src/main/main.c 2009-07-07 14:23:17.000000000 +0200
44++++ elinks-0.12pre5/src/main/main.c 2011-04-28 23:20:15.000000000 +0200
55+@@ -339,6 +339,11 @@ int
66+ main(int argc, char *argv[])
77+ {
88+ #ifdef CONFIG_GC
99++ /* Guile 2.x uses libgc too and it initializes it this way, so we
1010++ * must make sure to initialize it the same way, or it will just
1111++ * segfault. */
1212++ GC_all_interior_pointers = 0;
1313++
1414+ GC_INIT();
1515+ GC_set_warn_proc(gc_warning);
1616+ #endif
1717+