diff options
author | Rob Browning <rlb@defaultvalue.org> | 2002-10-05 04:55:28 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2002-10-05 04:55:28 +0000 |
commit | 823b49519f6ec2305994ae2e6eb77ad5bf934a70 (patch) | |
tree | b322852f0e8ad8391cedff92970918e007f41b11 /libguile/guile.c | |
parent | 66d4f5ccaab3289b299544d19f47db49335f69d4 (diff) | |
download | guile-823b49519f6ec2305994ae2e6eb77ad5bf934a70.tar.gz |
* guile.c (main): switch to scm_lt_dlset_preloaded_symbols;
Diffstat (limited to 'libguile/guile.c')
-rw-r--r-- | libguile/guile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/guile.c b/libguile/guile.c index ae17a9606..b96262008 100644 --- a/libguile/guile.c +++ b/libguile/guile.c @@ -55,7 +55,7 @@ #include <libguile/scmconfig.h> #endif #ifdef DYNAMIC_LINKING -#include <libltdl/ltdl.h> +#include <guile-ltdl.h> #endif #ifdef HAVE_WINSOCK2_H @@ -89,7 +89,7 @@ int main (int argc, char **argv) { #if defined (DYNAMIC_LINKING) && !defined (__MINGW32__) - LTDL_SET_PRELOADED_SYMBOLS (); + scm_lt_dlset_preloaded_symbols (); #endif scm_boot_guile (argc, argv, inner_main, 0); return 0; /* never reached */ |