]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* doc/libtool.texi (Distributing libltdl): Clarify that
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 17 Jan 2008 04:47:41 +0000 (04:47 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 17 Jan 2008 04:47:41 +0000 (04:47 +0000)
LTDL_INIT goes after LT_INIT; also show the latter in the
respective examples.
* tests/subproject.at: Adjust order.

ChangeLog
doc/libtool.texi
tests/subproject.at

index c8a2b3b975dd12fd7e85ae1470fd75df65e3a135..8fd72abe8e934944a4cc1d75618c26661fbdc0fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * 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  <Ralf.Wildenhues@gmx.de>
 
        * libltdl/m4/ltdl.m4 (_LT_ENABLE_INSTALL): Use AM_CONDITIONAL
index ec993d0647b8d24810d2b36052242b5e96cae2e4..fdd5c7627b9dad95a14ebc2cf39994080b430234 100644 (file)
@@ -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
index 60f2571f549b1e04f8b14c43482427d0038550dd..0477fa7d6468959b1fff181c5fe50a93ed539c16 100644 (file)
@@ -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
 ]])