OpenSDE Packages Database (without history before r20070)
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.

31 lines
1.2 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../guile/libtool-fix.patch
  5. # Copyright (C) 2008 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. diff -Nur guile-1.8.4-orig/libguile/guile.c guile-1.8.4/libguile/guile.c
  17. --- guile-1.8.4-orig/libguile/guile.c 2008-04-12 13:41:17.000000000 +0000
  18. +++ guile-1.8.4/libguile/guile.c 2008-04-12 13:43:21.000000000 +0000
  19. @@ -66,11 +66,6 @@
  20. int
  21. main (int argc, char **argv)
  22. {
  23. -#if !defined (__MINGW32__)
  24. - /* libtool automagically inserts this variable into your executable... */
  25. - extern const lt_dlsymlist lt_preloaded_symbols[];
  26. - lt_dlpreload_default (lt_preloaded_symbols);
  27. -#endif
  28. scm_boot_guile (argc, argv, inner_main, 0);
  29. return 0; /* never reached */
  30. }