aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTsvetkova Alexandra <aleksandra.tsvetkova@intel.com>2015-11-13 06:48:20 +0000
committerIlya Enkovich <ienkovich@gcc.gnu.org>2015-11-13 06:48:20 +0000
commit54985c70aa21fe6cf49f2d109a6bd51f0a4c964f (patch)
tree97e5d1df24ca19da4ed69e95ab4f34748e863afd
parentd93861237f5136949e6c80a65439aa796e2af224 (diff)
downloadgcc-54985c70aa21fe6cf49f2d109a6bd51f0a4c964f.zip
gcc-54985c70aa21fe6cf49f2d109a6bd51f0a4c964f.tar.gz
gcc-54985c70aa21fe6cf49f2d109a6bd51f0a4c964f.tar.bz2
configure.ac: Enable libmpx by default.
2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com> * configure.ac: Enable libmpx by default. * configure: Regenerated. From-SVN: r230288
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
3 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ff868f..f665a3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
+
+ * configure.ac: Enable libmpx by default.
+ * configure: Regenerated.
+
2015-10-23 Steve Ellcey <sellcey@imgtec.com>
* MAINTAINERS: Update email address.
diff --git a/configure b/configure
index f66f424..7dcaa24 100755
--- a/configure
+++ b/configure
@@ -3320,7 +3320,7 @@ fi
# Enable libmpx on supported systems by request.
if test -d ${srcdir}/libmpx; then
- if test x$enable_libmpx = xyes; then
+ if test x$enable_libmpx = x; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libmpx support" >&5
$as_echo_n "checking for libmpx support... " >&6; }
if (srcdir=${srcdir}/libmpx; \
@@ -3334,8 +3334,6 @@ $as_echo "no" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
fi
- else
- noconfigdirs="$noconfigdirs target-libmpx"
fi
fi
diff --git a/configure.ac b/configure.ac
index cb6ca24..55f9ab0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -660,7 +660,7 @@ fi
# Enable libmpx on supported systems by request.
if test -d ${srcdir}/libmpx; then
- if test x$enable_libmpx = xyes; then
+ if test x$enable_libmpx = x; then
AC_MSG_CHECKING([for libmpx support])
if (srcdir=${srcdir}/libmpx; \
. ${srcdir}/configure.tgt; \
@@ -671,8 +671,6 @@ if test -d ${srcdir}/libmpx; then
else
AC_MSG_RESULT([yes])
fi
- else
- noconfigdirs="$noconfigdirs target-libmpx"
fi
fi