- Added --with-included-libtool to configure to allow

forcing the use of the included libltdl
This commit is contained in:
Thomas Ries
2011-09-15 20:07:43 +00:00
parent d73cc59dc3
commit 504501411b
2 changed files with 9 additions and 1 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
0.8.2
=====
10-Jul-2011: - Added --with-included-libtool to configure to allow
forcing the use of the included libltdl
0.8.1
=====
+7
View File
@@ -51,6 +51,8 @@ dnl 26-Apr-2010 tries Fresh building from distribuion TAR did fail if
dnl the host-installed libltdl lib is used (and not the
dnl convenience lib)
dnl 09-Jan-2011 tries use CFLAGS -Wall only with GCC compiler
dnl 15-Sep-2011 tries added --with-included-libtool to force the
dnl use of the included libltdl
dnl
dnl
@@ -141,6 +143,11 @@ AC_CHECK_LIB(ltdl, lt_dlopen, [
use_native_ltdl="no";
],)
AC_ARG_WITH(included-libtool,
[ --with-included-libtool force the use of included libltdl (libtool)],
use_native_ltdl="no";echo "*** FORCED to use included convenience libltdl",
)
if test "x$use_native_ltdl" = "xno"; then
AC_LIBLTDL_CONVENIENCE
AM_CONDITIONAL(use_convenience_ltdl,true)