1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2002-10-05 04:55:43 +00:00
parent 823b49519f
commit 1360a142de
3 changed files with 34 additions and 0 deletions

View file

@ -1,7 +1,9 @@
BUGS
Makefile
Makefile.in
aclocal.m4
autom4te.cache
benchmark-guile
check-guile
check-guile.log
config.build-subdirs

View file

@ -1,3 +1,22 @@
2002-10-04 Rob Browning <rlb@defaultvalue.org>
* libltdl: moved to libguile-ltdl.
* Makefile.am (SUBDIRS): remove libltdl.
* autogen.sh: remove support for libltdl sub-configure.
(ac_version): widen support check to any 2.5? autoconf version.
2.54 is out now.
* configure.in: turn on -Werror by default. We're now clean. I'd
like to stay that way. If we want, we can turn it off by default
when we make the stable release, but I caught a lot of bugs this
way. Accomodate libguile-ltdl -- therea are some ltdl things that
are commented out now INCLTDL and LIBLTDL. I think we may not
need them anymore, but I'll leave them until we're sure. We also
killed off the libltdl dir and related options including the
AC_CONFIG_SUBDIRS.
2002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
* configure.in: Use AC_LIBLTDL_CONVENIENCE instead of

View file

@ -1,5 +1,18 @@
2002-10-04 Rob Browning <rlb@defaultvalue.org>
* guile.c (main): switch to scm_lt_dlset_preloaded_symbols;
* dynl.c (sysdep_dynl_link): switch to scm_lt_dlhandle,
scm_lt_dlopenext, and scm_lt_dlerror.
(sysdep_dynl_unlink): switch to scm_lt_dlhandle, scm_lt_dlclose,
and scm_lt_dlerror.
(sysdep_dynl_func): switch to scm_lt_dlhandle, scm_lt_dlsym,
and scm_lt_dlerror.
(sysdep_dynl_init): switch to scm_lt_dlinit();
* Makefile.am (libguile_la_LIBADD): switch to use
libguile-ltdl.la.
* numbers.c (s_scm_integer_expt): (expt 0 1) should be 1.
2002-10-04 Marius Vollmer <mvo@zagadka.ping.de>