From 16787ac3458082a802b22b801888bbb547f36f4f Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Wed, 7 Mar 2018 07:58:58 +0000 Subject: [PATCH] changed the default value of --enable-libltdl to no --- moo/configure | 4 ++-- moo/configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/moo/configure b/moo/configure index 57f684c..3b75ae0 100755 --- a/moo/configure +++ b/moo/configure @@ -1481,7 +1481,7 @@ Optional Features: --enable-dynamic-module enable dynamic module capability(default. yes) --enable-static-module build modules statically into the main library(default. no) - --enable-libltdl use libltdl(default. yes) + --enable-libltdl use libltdl(default. no) --enable-mod-con enable mod/con (default. yes) --enable-mod-ffi enable mod/ffi (default. yes) --enable-mod-sck enable mod/sck (default. yes) @@ -21431,7 +21431,7 @@ fi if test "${enable_libltdl+set}" = set; then : enableval=$enable_libltdl; enable_libltdl_is=$enableval else - enable_libltdl_is=yes + enable_libltdl_is=no fi diff --git a/moo/configure.ac b/moo/configure.ac index 18a6c8b..7e4e556 100644 --- a/moo/configure.ac +++ b/moo/configure.ac @@ -704,9 +704,9 @@ AM_CONDITIONAL(ENABLE_STATIC_MODULE, test "${enable_static_module_is}" = "yes") dnl ===== enable-libltdl ===== AC_ARG_ENABLE([libltdl], - [AS_HELP_STRING([--enable-libltdl],[use libltdl(default. yes)])], + [AS_HELP_STRING([--enable-libltdl],[use libltdl(default. no)])], enable_libltdl_is=$enableval, - enable_libltdl_is=yes + enable_libltdl_is=no ) if test "${enable_libltdl_is}" = "yes" then