summaryrefslogtreecommitdiff
path: root/libguile/guile.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-10-22 13:01:59 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-10-22 13:01:59 +0000
commita8255dca087b3ea05dbd95e0b0ddd85c1d94641d (patch)
tree581e2e53ca2834b9fdc47f104f521240359b8675 /libguile/guile.c
parentc62a2bb99f84fa019fc5b0c5d8ee84ad029b1d42 (diff)
downloadguile-a8255dca087b3ea05dbd95e0b0ddd85c1d94641d.tar.gz
* Makefile.am (INCLUDES): Use @LTDLINC@ instead of
"-I$(top_srcdir)/libguile-ltdl". (libguile_la_LIBADD): Use @LIBLTDL@ instead of "../libguile-ltdl/libguile-ltdl.a". * guile.c, dynl.c: Switched to using libltdl directly. Replaced all references to scm_lt_* with just lt_*. Include <ltdl.h> instead of <libguile-ltdl.h>.
Diffstat (limited to 'libguile/guile.c')
-rw-r--r--libguile/guile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/guile.c b/libguile/guile.c
index 7fe2604bb..f153be4d3 100644
--- a/libguile/guile.c
+++ b/libguile/guile.c
@@ -34,7 +34,7 @@
#ifdef HAVE_CONFIG_H
#include <libguile/scmconfig.h>
#endif
-#include <guile-ltdl.h>
+#include <ltdl.h>
#ifdef HAVE_WINSOCK2_H
#include <winsock2.h>
@@ -68,8 +68,8 @@ main (int argc, char **argv)
{
#if !defined (__MINGW32__)
/* libtool automagically inserts this variable into your executable... */
- extern const scm_lt_dlsymlist lt_preloaded_symbols[];
- scm_lt_dlpreload_default (lt_preloaded_symbols);
+ 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 */