From 504501411be5d26ef0c5d6993ec7fb2d3eeaba1a Mon Sep 17 00:00:00 2001 From: Thomas Ries Date: Thu, 15 Sep 2011 20:07:43 +0000 Subject: [PATCH] - Added --with-included-libtool to configure to allow forcing the use of the included libltdl --- ChangeLog | 3 ++- configure.in | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 01350ea..391ec8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ===== diff --git a/configure.in b/configure.in index c4dfdae..6e6f4dd 100644 --- a/configure.in +++ b/configure.in @@ -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)