diff --git a/ChangeLog b/ChangeLog index a7cc991c2..f93272162 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2002-10-04 Marius Vollmer + + * configure.in: Use AC_LIBLTDL_CONVENIENCE instead of + AC_LIBLTDL_INSTALLABLE. + +2002-10-03 Marius Vollmer + + * autogen.sh: Do not instruct libtoolize to copy libltdl into our + sources. Do not patch it. We have our own version now that is + only being used as a convenience library. + 2002-08-24 Marius Vollmer * configure.in: Check for __libc_stack_end. diff --git a/autogen.sh b/autogen.sh index f06a127ac..c4924e6d8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -44,44 +44,7 @@ $mscripts/render-bugs > BUGS ### Libtool setup. # Get a clean version. -rm -rf libltdl -libtoolize --force --copy --automake --ltdl - -# Fix older versions of libtool. -# Make sure we use a ./configure.in compatible autoconf in ./libltdl/ -if [ -f libltdl/configure.in ]; then - 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 -fi - -# Maybe patch ltdl.c. This is only needed for 1.4.2 and earlier. -if patch libltdl/ltdl.c <