summaryrefslogtreecommitdiff
path: root/libguile/guile.c
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2002-10-05 04:55:28 +0000
committerRob Browning <rlb@defaultvalue.org>2002-10-05 04:55:28 +0000
commit823b49519f6ec2305994ae2e6eb77ad5bf934a70 (patch)
treeb322852f0e8ad8391cedff92970918e007f41b11 /libguile/guile.c
parent66d4f5ccaab3289b299544d19f47db49335f69d4 (diff)
downloadguile-823b49519f6ec2305994ae2e6eb77ad5bf934a70.tar.gz
* guile.c (main): switch to scm_lt_dlset_preloaded_symbols;
Diffstat (limited to 'libguile/guile.c')
-rw-r--r--libguile/guile.c4
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 */