summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2011-11-08 16:06:25 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2011-11-08 16:06:25 +0000
commit298c66d96719f98e870b7deedeac9b4611849194 (patch)
tree257f6d91d2117a12fa1ed620ee8ebfeabd03a360 /configure
parenta1942f0c9db4c65c6b61950cbda4d92e449a972b (diff)
downloadgcc-298c66d96719f98e870b7deedeac9b4611849194.tar.gz
Check for libitm support at top-level.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181168 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure26
1 files changed, 11 insertions, 15 deletions
diff --git a/configure b/configure
index 03d00483411..b9cf0f1d0ff 100755
--- a/configure
+++ b/configure
@@ -3057,22 +3057,18 @@ if test x$enable_libgomp = x ; then
esac
fi
-# Disable libitm on non POSIX hosted systems.
-if test x$enable_libitm = x ; then
- # Enable libitm by default on hosted POSIX systems.
- case "${target}" in
- *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu)
- ;;
- *-*-netbsd* | *-*-freebsd* | *-*-openbsd*)
- ;;
- *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11*)
- ;;
- *-*-darwin* | *-*-aix*)
- ;;
- *)
+# Disable libitm on unsupported hosted systems.
+if test x$enable_libitm = x; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libitm support" >&5
+$as_echo_n "checking for libitm support... " >&6; }
+ if (. ${srcdir}/libitm/configure.tgt; test -n "$UNSUPPORTED"); then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
noconfigdirs="$noconfigdirs target-libitm"
- ;;
- esac
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+ fi
fi
# Disable libssp for some systems.