diff options
author | Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com> | 2015-11-13 06:48:20 +0000 |
---|---|---|
committer | Ilya Enkovich <ienkovich@gcc.gnu.org> | 2015-11-13 06:48:20 +0000 |
commit | 54985c70aa21fe6cf49f2d109a6bd51f0a4c964f (patch) | |
tree | 97e5d1df24ca19da4ed69e95ab4f34748e863afd | |
parent | d93861237f5136949e6c80a65439aa796e2af224 (diff) | |
download | gcc-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-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 7 insertions, 6 deletions
@@ -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. @@ -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 |