aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2005-11-18 21:37:58 +0000
committerMax Horn2005-11-18 21:37:58 +0000
commit250071f8676b2c262277f9dc9eb0a3bb2b2523c0 (patch)
treedf2e78a6887ff9d1fe7e0c7045995a7babb979bc
parent11c52c06db0d368afe060a69db6b64dca44f5974 (diff)
downloadscummvm-rg350-250071f8676b2c262277f9dc9eb0a3bb2b2523c0.tar.gz
scummvm-rg350-250071f8676b2c262277f9dc9eb0a3bb2b2523c0.tar.bz2
scummvm-rg350-250071f8676b2c262277f9dc9eb0a3bb2b2523c0.zip
Make configure message regarding plugin support less ambigious
svn-id: r19646
-rwxr-xr-xconfigure7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure b/configure
index 7c2121aa5b..b9c0d3c5d0 100755
--- a/configure
+++ b/configure
@@ -884,10 +884,13 @@ fi
#
# Check whether plugin support is requested and possible
#
-echocheck "Plugin support"
+echo_n "Checking whether building plugins was requested... "
+echo "$_build_plugins"
_mak_plugins=
_def_plugin=
+
if test "$_build_plugins" = yes ; then
+ echo_n "Checking whether building plugins is supported... "
case $_host_os in
linux*)
_def_plugin='
@@ -947,8 +950,8 @@ LIBS += -ldl
_def_plugin=
;;
esac
+ echo "$_build_plugins"
fi
-echo "$_build_plugins"
#