From 2b9120b6b5df7e09836db27d5e99b58c733033f8 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 29 Apr 2008 18:38:53 +0000 Subject: [PATCH] Merged improvements to autoconf-like configure script [SVN r44894] --- configure | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 60391df0da..b7f115e000 100755 --- a/configure +++ b/configure @@ -185,7 +185,28 @@ my_dir="." # Determine the toolset, if not already decided if test "x$TOOLSET" = x; then - TOOLSET=`$my_dir/tools/jam/src/build.sh --guess-toolset` + guessed_toolset=`$my_dir/tools/jam/src/build.sh --guess-toolset` + case $guessed_toolset in + acc | darwin | gcc | como | mipspro | pathscale | pgi | qcc | vacpp ) + TOOLSET=$guessed_toolset + ;; + + intel-* ) + TOOLSET=intel + ;; + + mingw ) + TOOLSET=gcc + ;; + + sun* ) + TOOLSET=sun + ;; + + * ) + # Not supported by Boost.Build + ;; + esac fi rm -f config.log