diff options
author | Andy Wingo <wingo@pobox.com> | 2009-01-12 21:36:39 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-01-12 21:36:39 +0100 |
commit | c32929d14d40f9e00c3fd10d3f51d54733ebf687 (patch) | |
tree | c803163a177580b5a8506052a18664a48504ba00 /libguile/guile.c | |
parent | c41350777d6faf05f80627f97ca01cd5c8fac47b (diff) | |
parent | dc686d7b0a1490e26482e018489dec040b79b952 (diff) | |
download | guile-c32929d14d40f9e00c3fd10d3f51d54733ebf687.tar.gz |
Merge commit 'origin/master' into vm
Conflicts:
.gitignore
guile-tools.in
srfi/srfi-19.scm
Diffstat (limited to 'libguile/guile.c')
-rw-r--r-- | libguile/guile.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libguile/guile.c b/libguile/guile.c index 2015ae8c8..c8341c24f 100644 --- a/libguile/guile.c +++ b/libguile/guile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996,1997,2000,2001, 2006 Free Software Foundation, Inc. +/* Copyright (C) 1996,1997,2000,2001, 2006, 2008 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -66,11 +66,6 @@ inner_main (void *closure SCM_UNUSED, int argc, char **argv) int main (int argc, char **argv) { -#if !defined (__MINGW32__) - /* libtool automagically inserts this variable into your executable... */ - extern const lt_dlsymlist lt_preloaded_symbols[]; - lt_dlpreload_default (lt_preloaded_symbols); -#endif scm_boot_guile (argc, argv, inner_main, 0); return 0; /* never reached */ } |