1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2004-10-22 13:04:09 +00:00
parent a8255dca08
commit 6191ccecf1
3 changed files with 28 additions and 4 deletions

View file

@ -1,3 +1,17 @@
2004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
Removed usage of libguile-ltdl.
* configure.in: Call AC_LIBLTDL_INSTALLABLE instead of
AC_LIB_LTDL.
(AC_CONFIG_SUBDIRS): Added libltdl.
(DLPREOPEN, LTDLINC, LIBLTDL): Moved AC_SUBST near other libtool
stuff. Also subst LTDLINC instead of INCLTDL.
(AC_CONFIG_FILES): Removed libguile-ltdl/Makefile and
libguile-ltdl/upstream/Makefile.
* Makefile.am (SUBDIRS): Replaced libguile-ltdl with libltdl.
2004-09-28 Marius Vollmer <marius.vollmer@uni-dortmund.de> 2004-09-28 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* ABOUT-NLS: New, from gettext 0.14.1. * ABOUT-NLS: New, from gettext 0.14.1.

5
NEWS
View file

@ -115,10 +115,9 @@ This is an implementation of SRFI-31 which provides a special form
The modules are still available, tho, and you could use them together The modules are still available, tho, and you could use them together
with a renaming import, for example. with a renaming import, for example.
** Guile now includes its own version of libltdl. ** Guile no longer includes its own version of libltdl.
We now use a modified version of libltdl that allows us to make The official version is good enough now.
improvements to it without having to rely on libtool releases.
** The --enable-htmldoc option has been removed from 'configure'. ** The --enable-htmldoc option has been removed from 'configure'.

View file

@ -1,3 +1,14 @@
2004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* 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>.
2004-10-20 Marius Vollmer <mvo@zagadka.de> 2004-10-20 Marius Vollmer <mvo@zagadka.de>
* sort.c (quicksort): Copy pivot out of the array while * sort.c (quicksort): Copy pivot out of the array while
@ -14,7 +25,7 @@
scm_out_of_range. scm_out_of_range.
* sort.c (scm_restricted_vector_sort_x): Validate startpos <= * sort.c (scm_restricted_vector_sort_x): Validate startpos <=
endpos. State inclusiveness/exclusiveness if bounds in docstring. endpos. State inclusiveness/exclusiveness of bounds in docstring.
* unif.c (scm_array_p): When no prototype is given, explicitely * unif.c (scm_array_p): When no prototype is given, explicitely
test for allowable types, do not simply return true. Thanks to test for allowable types, do not simply return true. Thanks to