From: Ralf Wildenhues Date: Thu, 17 Jan 2008 04:47:41 +0000 (+0000) Subject: * doc/libtool.texi (Distributing libltdl): Clarify that X-Git-Tag: release-2-1b~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b74786b252d01773f2a0fb2bf16cba786b15a0df;p=thirdparty%2Flibtool.git * doc/libtool.texi (Distributing libltdl): Clarify that LTDL_INIT goes after LT_INIT; also show the latter in the respective examples. * tests/subproject.at: Adjust order. --- diff --git a/ChangeLog b/ChangeLog index c8a2b3b97..8fd72abe8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-01-17 Ralf Wildenhues + + * doc/libtool.texi (Distributing libltdl): Clarify that + LTDL_INIT goes after LT_INIT; also show the latter in the + respective examples. + * tests/subproject.at: Adjust order. + 2008-01-16 Ralf Wildenhues * libltdl/m4/ltdl.m4 (_LT_ENABLE_INSTALL): Use AM_CONDITIONAL diff --git a/doc/libtool.texi b/doc/libtool.texi index ec993d064..fdd5c7627 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -4378,7 +4378,8 @@ unnecessary but makes it easy to forget to upgrade @file{acinclude.m4} if you move to a different release of libltdl. @c }. Having made the macros available, you must add a call to the -@samp{LTDL_INIT} macro to your package's @file{configure.ac} to +@samp{LTDL_INIT} macro (after the call to @samp{LT_INIT} +to your package's @file{configure.ac} to perform the configure time checks required to build the library correctly. Unfortunately, this method has problems if you then try to link the package binaries with an installed libltdl, or a library that @@ -4489,6 +4490,7 @@ need releases of Autoconf and Automake that support AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_HEADERS([config.h]) LT_CONFIG_LTDL_DIR([libltdl]) +LT_INIT([dlopen]) LTDL_INIT([nonrecursive]) @end example @@ -4531,6 +4533,7 @@ mode, you should add to your @file{configure.ac}: AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) LT_CONFIG_LTDL_DIR([libltdl]) +LT_INIT([dlopen]) LTDL_INIT([recursive]) AC_CONFIG_FILES([libltdl/Makefile]) @end example diff --git a/tests/subproject.at b/tests/subproject.at index 60f2571f5..0477fa7d6 100644 --- a/tests/subproject.at +++ b/tests/subproject.at @@ -33,8 +33,8 @@ LT_CONFIG_LTDL_DIR([sub/ltdl]) AC_CONFIG_AUX_DIR([sub/ltdl/config]) AC_CONFIG_MACRO_DIR([sub/ltdl/m4]) AM_INIT_AUTOMAKE([foreign]) -LT_WITH_LTDL LT_INIT +LT_WITH_LTDL AC_CONFIG_FILES([Makefile]) AC_OUTPUT ]])