diff --git a/ChangeLog b/ChangeLog index feb6bf9e7..f1ab490e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2002-10-25 Marius Vollmer + + Integrated libguile-ltdl/ from HEAD branch. + + * configure.in: Do not call AC_LTDL_INSTALLABLE and do not recurse + into libltdl subdirectory. Call AC_LIB_LTDL. Do not substitute + INCLLTDL and LIBLTDL, they are not needed. Create + libguile-ltdl/Makefile.am and libguile-ltdl/upstream/Makefile.am. + * libguile-ltdl/: Copied from HEAD branch. + * autogen.sh: Do not populate libltdl/ directory. + * Makefile.am (SUBDIRS): Use libguile-ltdl instead of libltdl. + 2002-09-04 Rob Browning * Guile 1.6.0 released. diff --git a/Makefile.am b/Makefile.am index d41a50968..d5a0331d2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ AUTOMAKE_OPTIONS = 1.5 -SUBDIRS = oop qt libltdl libguile ice-9 guile-config guile-readline \ +SUBDIRS = oop qt libguile-ltdl libguile ice-9 guile-config guile-readline \ scripts srfi doc examples test-suite am bin_SCRIPTS = guile-tools diff --git a/autogen.sh b/autogen.sh index f1d987082..9f7c046c0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -44,41 +44,7 @@ $mscripts/render-bugs > BUGS ### Libtool setup. # Get a clean version. -rm -rf libltdl -libtoolize --force --copy --automake --ltdl - -# Make sure we use a ./configure.in compatible autoconf in ./libltdl/ -mv libltdl/configure.in libltdl/configure.tmp -echo 'AC_PREREQ(2.50)' > libltdl/configure.in -cat libltdl/configure.tmp >> libltdl/configure.in -rm libltdl/configure.tmp - -# Maybe patch ltdl.c. This is only needed for 1.4.2 and earlier. -if patch libltdl/ltdl.c <