+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
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
AM_INIT_AUTOMAKE([subdir-objects])
AC_CONFIG_HEADERS([config.h])
LT_CONFIG_LTDL_DIR([libltdl])
+LT_INIT([dlopen])
LTDL_INIT([nonrecursive])
@end example
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
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
]])