mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
634 B

  1. --- ./libguile/guile.c.vanilla 2005-12-12 23:23:05.000000000 +0100
  2. +++ ./libguile/guile.c 2005-12-12 23:23:56.000000000 +0100
  3. @@ -88,8 +88,9 @@
  4. {
  5. #ifdef DYNAMIC_LINKING
  6. /* libtool automagically inserts this variable into your executable... */
  7. - extern const scm_lt_dlsymlist lt_preloaded_symbols[];
  8. - scm_lt_dlpreload_default (lt_preloaded_symbols);
  9. +// commenting the next two lines out for gcc4 as suggested on the guile ml
  10. +// extern const scm_lt_dlsymlist lt_preloaded_symbols[];
  11. +// scm_lt_dlpreload_default (lt_preloaded_symbols);
  12. #endif
  13. scm_boot_guile (argc, argv, inner_main, 0);
  14. return 0; /* never reached */